Paid Memberships Pro - Version 1.8.8

Version Description

  • BUG: Fixed issue where recurring Stripe orders were being created with $0 totals.
  • BUG: Fixed issues in pmpro_has_membership_access() that was affecting some sites with files locked down for members. (Thanks, MannyC on GitHub)
  • BUG: Fixed issue where data in the Signups vs Cancellations detailed view chart was shifted back one day. (Thanks, TYT)
  • BUG: Fixed issue where whitespace in email addresses and user names could confuse the pre-existing user checks.
  • BUG: Added some closing HTML tags where needed.
  • BUG: Fixed issue where discount codes could be created with special characters even though only letters, numbers, and - will work at checkout.
  • BUG: Some fixes to the pt_BR language. (Thanks, )
  • ENHANCEMENT: Refactored the members list CSV to use less memory and scale better. It should work faster in general and better on large sites. (Thanks, Thomas Sjolshagen)
  • ENHANCEMENT: Added pmpro_reports_signups_sql and pmpro_reports_get_cancellations_sql filters to filter SQL that generates cancellation numbers in reports.
  • ENHANCEMENT: Now setting the timeout on PayPal API calls to 60 seconds from 5 seconds.
  • ENHANCEMENT: Now checking admin capabilities on each load in the dashboard in case PMPro-related admin capabilities have been changed. This avoids issues where users were upgrading PMPro but wouldn't have access to updates or new features without deactivating and reactivating PMPro.
  • ENHANCEMENT: Added a pmpro_paypal_level_description filter that can be used to filter the description of the level sent to PayPal.
  • ENHANCEMENT: Added Catalan translations (ca, ca_AD, ca_ES). (Thanks, Jordi Martn)
  • ENHANCEMENT: Added Estonian translations (et_EE). (Thanks, Enriko Ojala)
Download this release

Release Info

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

Code changes from version 1.8.7.3 to 1.8.8

Files changed (155) hide show
  1. adminpages/discountcodes.php +2 -1
  2. adminpages/membershiplevels.php +3 -3
  3. adminpages/memberslist-csv.php +402 -115
  4. adminpages/reports/memberships.php +26 -1
  5. adminpages/updates.php +4 -0
  6. classes/class.memberorder.php +1 -1
  7. classes/gateways/class.pmprogateway_payflowpro.php +3 -2
  8. classes/gateways/class.pmprogateway_paypal.php +3 -1
  9. classes/gateways/class.pmprogateway_paypalexpress.php +4 -3
  10. classes/gateways/class.pmprogateway_paypalstandard.php +2 -1
  11. classes/gateways/class.pmprogateway_stripe.php +12 -2
  12. includes/capabilities.php +68 -0
  13. includes/content.php +12 -11
  14. includes/functions.php +6 -6
  15. includes/updates.php +10 -2
  16. includes/updates/upgrade_1.php +50 -0
  17. includes/updates/upgrade_1_1_15.php +138 -0
  18. includes/updates/upgrade_1_2_3.php +42 -0
  19. includes/updates/upgrade_1_3_18.php +12 -0
  20. includes/updates/upgrade_1_4.php +16 -0
  21. includes/updates/upgrade_1_4_2.php +17 -0
  22. includes/updates/upgrade_1_4_8.php +20 -0
  23. includes/updates/upgrade_1_5.php +26 -0
  24. includes/updates/upgrade_1_5_9.php +14 -0
  25. includes/updates/upgrade_1_6.php +14 -0
  26. includes/updates/upgrade_1_7.php +8 -0
  27. includes/updates/upgrade_1_8_6_9.php +94 -0
  28. includes/updates/upgrade_1_8_7.php +35 -0
  29. includes/updates/upgrade_1_8_8.php +109 -0
  30. includes/upgradecheck.php +55 -501
  31. js/updates.js +9 -5
  32. languages/email/ca/admin_change.html +7 -0
  33. languages/email/ca/admin_change_admin.html +5 -0
  34. languages/email/ca/billable_invoice.html +6 -0
  35. languages/email/ca/billing.html +16 -0
  36. languages/email/ca/billing_admin.html +17 -0
  37. languages/email/ca/billing_failure.html +11 -0
  38. languages/email/ca/billing_failure_admin.html +11 -0
  39. languages/email/ca/cancel.html +3 -0
  40. languages/email/ca/cancel_admin.html +8 -0
  41. languages/email/ca/checkout_check.html +17 -0
  42. languages/email/ca/checkout_check_admin.html +17 -0
  43. languages/email/ca/checkout_express.html +14 -0
  44. languages/email/ca/checkout_express_admin.html +14 -0
  45. languages/email/ca/checkout_free.html +8 -0
  46. languages/email/ca/checkout_free_admin.html +8 -0
  47. languages/email/ca/checkout_freetrial.html +19 -0
  48. languages/email/ca/checkout_freetrial_admin.html +19 -0
  49. languages/email/ca/checkout_paid.html +23 -0
  50. languages/email/ca/checkout_paid_admin.html +23 -0
  51. languages/email/ca/checkout_trial.html +23 -0
  52. languages/email/ca/checkout_trial_admin.html +23 -0
  53. languages/email/ca/credit_card_expiring.html +13 -0
  54. languages/email/ca/default.html +1 -0
  55. languages/email/ca/footer.html +4 -0
  56. languages/email/ca/header.html +1 -0
  57. languages/email/ca/invoice.html +19 -0
  58. languages/email/ca/membership_expired.html +7 -0
  59. languages/email/ca/membership_expiring.html +6 -0
  60. languages/email/ca/trial_ending.html +8 -0
  61. languages/email/ca_AD/admin_change.html +7 -0
  62. languages/email/ca_AD/admin_change_admin.html +5 -0
  63. languages/email/ca_AD/billable_invoice.html +6 -0
  64. languages/email/ca_AD/billing.html +16 -0
  65. languages/email/ca_AD/billing_admin.html +17 -0
  66. languages/email/ca_AD/billing_failure.html +11 -0
  67. languages/email/ca_AD/billing_failure_admin.html +11 -0
  68. languages/email/ca_AD/cancel.html +3 -0
  69. languages/email/ca_AD/cancel_admin.html +8 -0
  70. languages/email/ca_AD/checkout_check.html +17 -0
  71. languages/email/ca_AD/checkout_check_admin.html +17 -0
  72. languages/email/ca_AD/checkout_express.html +14 -0
  73. languages/email/ca_AD/checkout_express_admin.html +14 -0
  74. languages/email/ca_AD/checkout_free.html +8 -0
  75. languages/email/ca_AD/checkout_free_admin.html +8 -0
  76. languages/email/ca_AD/checkout_freetrial.html +19 -0
  77. languages/email/ca_AD/checkout_freetrial_admin.html +19 -0
  78. languages/email/ca_AD/checkout_paid.html +23 -0
  79. languages/email/ca_AD/checkout_paid_admin.html +23 -0
  80. languages/email/ca_AD/checkout_trial.html +23 -0
  81. languages/email/ca_AD/checkout_trial_admin.html +23 -0
  82. languages/email/ca_AD/credit_card_expiring.html +13 -0
  83. languages/email/ca_AD/default.html +1 -0
  84. languages/email/ca_AD/footer.html +4 -0
  85. languages/email/ca_AD/header.html +1 -0
  86. languages/email/ca_AD/invoice.html +19 -0
  87. languages/email/ca_AD/membership_expired.html +7 -0
  88. languages/email/ca_AD/membership_expiring.html +6 -0
  89. languages/email/ca_AD/trial_ending.html +8 -0
  90. languages/email/ca_ES/admin_change.html +7 -0
  91. languages/email/ca_ES/admin_change_admin.html +5 -0
  92. languages/email/ca_ES/billable_invoice.html +6 -0
  93. languages/email/ca_ES/billing.html +16 -0
  94. languages/email/ca_ES/billing_admin.html +17 -0
  95. languages/email/ca_ES/billing_failure.html +11 -0
  96. languages/email/ca_ES/billing_failure_admin.html +11 -0
  97. languages/email/ca_ES/cancel.html +3 -0
  98. languages/email/ca_ES/cancel_admin.html +8 -0
  99. languages/email/ca_ES/checkout_check.html +17 -0
  100. languages/email/ca_ES/checkout_check_admin.html +17 -0
  101. languages/email/ca_ES/checkout_express.html +14 -0
  102. languages/email/ca_ES/checkout_express_admin.html +14 -0
  103. languages/email/ca_ES/checkout_free.html +8 -0
  104. languages/email/ca_ES/checkout_free_admin.html +8 -0
  105. languages/email/ca_ES/checkout_freetrial.html +19 -0
  106. languages/email/ca_ES/checkout_freetrial_admin.html +19 -0
  107. languages/email/ca_ES/checkout_paid.html +23 -0
  108. languages/email/ca_ES/checkout_paid_admin.html +23 -0
  109. languages/email/ca_ES/checkout_trial.html +23 -0
  110. languages/email/ca_ES/checkout_trial_admin.html +23 -0
  111. languages/email/ca_ES/credit_card_expiring.html +13 -0
  112. languages/email/ca_ES/default.html +1 -0
  113. languages/email/ca_ES/footer.html +4 -0
  114. languages/email/ca_ES/header.html +1 -0
  115. languages/email/ca_ES/invoice.html +19 -0
  116. languages/email/ca_ES/membership_expired.html +7 -0
  117. languages/email/ca_ES/membership_expiring.html +6 -0
  118. languages/email/ca_ES/trial_ending.html +8 -0
  119. languages/email/et_EE/admin_change.html +7 -0
  120. languages/email/et_EE/admin_change_admin.html +5 -0
  121. languages/email/et_EE/billable_invoice.html +6 -0
  122. languages/email/et_EE/billing.html +16 -0
  123. languages/email/et_EE/billing_admin.html +17 -0
  124. languages/email/et_EE/billing_failure.html +11 -0
  125. languages/email/et_EE/billing_failure_admin.html +11 -0
  126. languages/email/et_EE/cancel.html +3 -0
  127. languages/email/et_EE/cancel_admin.html +8 -0
  128. languages/email/et_EE/checkout_check.html +17 -0
  129. languages/email/et_EE/checkout_check_admin.html +17 -0
  130. languages/email/et_EE/checkout_express.html +14 -0
  131. languages/email/et_EE/checkout_express_admin.html +14 -0
  132. languages/email/et_EE/checkout_free.html +8 -0
  133. languages/email/et_EE/checkout_free_admin.html +8 -0
  134. languages/email/et_EE/checkout_freetrial.html +19 -0
  135. languages/email/et_EE/checkout_freetrial_admin.html +19 -0
  136. languages/email/et_EE/checkout_paid.html +23 -0
  137. languages/email/et_EE/checkout_paid_admin.html +23 -0
  138. languages/email/et_EE/checkout_trial.html +23 -0
  139. languages/email/et_EE/checkout_trial_admin.html +23 -0
  140. languages/email/et_EE/credit_card_expiring.html +15 -0
  141. languages/email/et_EE/default.html +1 -0
  142. languages/email/et_EE/footer.html +4 -0
  143. languages/email/et_EE/header.html +1 -0
  144. languages/email/et_EE/invoice.html +19 -0
  145. languages/email/et_EE/membership_expired.html +7 -0
  146. languages/email/et_EE/membership_expiring.html +6 -0
  147. languages/email/et_EE/trial_ending.html +8 -0
  148. languages/pmpro-ca.mo +0 -0
  149. languages/pmpro-ca.po +5616 -0
  150. languages/pmpro-ca_AD.mo +0 -0
  151. languages/pmpro-ca_AD.po +5616 -0
  152. languages/pmpro-ca_ES.mo +0 -0
  153. languages/pmpro-ca_ES.po +5616 -0
  154. languages/pmpro-et_EE.mo +0 -0
  155. languages/pmpro-et_EE.po +4049 -0
adminpages/discountcodes.php CHANGED
@@ -26,7 +26,8 @@
26
  if($saveid)
27
  {
28
  //get vars
29
- $code = sanitize_text_field($_POST['code']);
 
30
  $starts_month = intval($_POST['starts_month']);
31
  $starts_day = intval($_POST['starts_day']);
32
  $starts_year = intval($_POST['starts_year']);
26
  if($saveid)
27
  {
28
  //get vars
29
+ //disallow/strip all non-alphanumeric characters except -
30
+ $code = preg_replace("/[^A-Za-z0-9\-]/", "", sanitize_text_field($_POST['code']));
31
  $starts_month = intval($_POST['starts_month']);
32
  $starts_day = intval($_POST['starts_day']);
33
  $starts_year = intval($_POST['starts_year']);
adminpages/membershiplevels.php CHANGED
@@ -113,7 +113,7 @@
113
  $wpdb->query($sqlQuery);
114
 
115
  pmpro_updateMembershipCategories( $saveid, $ml_categories );
116
- if(!mysql_errno())
117
  {
118
  $edit = false;
119
  $msg = 2;
@@ -133,7 +133,7 @@
133
  VALUES
134
  ( '" . esc_sql($ml_name) . "', '" . esc_sql($ml_description) . "', '" . esc_sql($ml_confirmation) . "', '" . esc_sql($ml_initial_payment) . "', '" . esc_sql($ml_billing_amount) . "', '" . esc_sql($ml_cycle_number) . "', '" . esc_sql($ml_cycle_period) . "', '" . esc_sql($ml_billing_limit) . "', '" . esc_sql($ml_trial_amount) . "', '" . esc_sql($ml_trial_limit) . "', '" . esc_sql($ml_expiration_number) . "', '" . esc_sql($ml_expiration_period) . "', '" . esc_sql($ml_allow_signups) . "' )";
135
  $wpdb->query($sqlQuery);
136
- if(!mysql_errno())
137
  {
138
  $saveid = $wpdb->insert_id;
139
  pmpro_updateMembershipCategories( $saveid, $ml_categories );
@@ -467,7 +467,7 @@
467
 
468
  <tr>
469
  <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'pmpro');?>:</label></th>
470
- <td><input id="expiration" name="expiration" type="checkbox" value="yes" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#expiration').is(':checked')) { jQuery('.expiration_info').show(); } else { jQuery('.expiration_info').hide();}" /> <label for="expiration"><?php _e('Check this to set when membership access expires.', 'pmpro');?></a></td>
471
  </tr>
472
 
473
  <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
113
  $wpdb->query($sqlQuery);
114
 
115
  pmpro_updateMembershipCategories( $saveid, $ml_categories );
116
+ if(empty($wpdb->last_error))
117
  {
118
  $edit = false;
119
  $msg = 2;
133
  VALUES
134
  ( '" . esc_sql($ml_name) . "', '" . esc_sql($ml_description) . "', '" . esc_sql($ml_confirmation) . "', '" . esc_sql($ml_initial_payment) . "', '" . esc_sql($ml_billing_amount) . "', '" . esc_sql($ml_cycle_number) . "', '" . esc_sql($ml_cycle_period) . "', '" . esc_sql($ml_billing_limit) . "', '" . esc_sql($ml_trial_amount) . "', '" . esc_sql($ml_trial_limit) . "', '" . esc_sql($ml_expiration_number) . "', '" . esc_sql($ml_expiration_period) . "', '" . esc_sql($ml_allow_signups) . "' )";
135
  $wpdb->query($sqlQuery);
136
+ if(empty($wpdb->last_error))
137
  {
138
  $saveid = $wpdb->insert_id;
139
  pmpro_updateMembershipCategories( $saveid, $ml_categories );
467
 
468
  <tr>
469
  <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'pmpro');?>:</label></th>
470
+ <td><input id="expiration" name="expiration" type="checkbox" value="yes" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#expiration').is(':checked')) { jQuery('.expiration_info').show(); } else { jQuery('.expiration_info').hide();}" /> <label for="expiration"><?php _e('Check this to set when membership access expires.', 'pmpro');?></label></a></td>
471
  </tr>
472
 
473
  <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
adminpages/memberslist-csv.php CHANGED
@@ -1,18 +1,46 @@
1
  <?php
2
- //only admins can get this
3
  if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_memberslistcsv")))
4
  {
5
  die(__("You do not have permissions to perform this action.", "pmpro"));
6
  }
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  global $wpdb;
9
 
10
- //get users
11
  if(isset($_REQUEST['s']))
12
  $s = sanitize_text_field($_REQUEST['s']);
13
  else
14
  $s = "";
15
 
 
16
  if(isset($_REQUEST['l']))
17
  $l = sanitize_text_field($_REQUEST['l']);
18
  else
@@ -40,94 +68,29 @@
40
  $start = NULL;
41
  }
42
 
43
- if($s)
44
- {
45
- $sqlQuery = "SELECT SQL_CALC_FOUND_ROWS u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(u.user_registered) as joindate, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, mu.cycle_number, mu.billing_limit, mu.trial_amount, mu.trial_limit, UNIX_TIMESTAMP(mu.startdate) as startdate, UNIX_TIMESTAMP(mu.enddate) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->usermeta um ON u.ID = um.user_id LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id ";
46
-
47
- if($l == "oldmembers" || $l == "expired" || $l == "cancelled")
48
- $sqlQuery .= " LEFT JOIN $wpdb->pmpro_memberships_users mu2 ON u.ID = mu2.user_id AND mu2.status = 'active' ";
49
-
50
- $sqlQuery .= " WHERE mu.membership_id > 0 AND (u.user_login LIKE '%" . esc_sql($s) . "%' OR u.user_email LIKE '%" . esc_sql($s) . "%' OR um.meta_value LIKE '%" . esc_sql($s) . "%') ";
51
-
52
- if($l == "oldmembers")
53
- $sqlQuery .= " AND mu.status <> 'active' AND mu2.status IS NULL ";
54
- elseif($l == "expired")
55
- $sqlQuery .= " AND mu.status = 'expired' AND mu2.status IS NULL ";
56
- elseif($l == "cancelled")
57
- $sqlQuery .= " AND mu.status IN('cancelled', 'admin_cancelled') AND mu2.status IS NULL ";
58
- elseif($l)
59
- $sqlQuery .= " AND mu.status = 'active' AND mu.membership_id = '" . esc_sql($l) . "' ";
60
- else
61
- $sqlQuery .= " AND mu.status = 'active' ";
62
-
63
- $sqlQuery .= "GROUP BY u.ID ";
64
-
65
- if($l == "oldmembers" || $l == "expired" || $l == "cancelled")
66
- $sqlQuery .= "ORDER BY enddate DESC ";
67
- else
68
- $sqlQuery .= "ORDER BY u.user_registered DESC ";
69
-
70
- if(!empty($limit))
71
- $sqlQuery .= "LIMIT $start, $limit";
72
- }
73
- else
74
- {
75
- $sqlQuery = "SELECT SQL_CALC_FOUND_ROWS u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(u.user_registered) as joindate, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, mu.cycle_number, mu.billing_limit, mu.trial_amount, mu.trial_limit, UNIX_TIMESTAMP(mu.startdate) as startdate, UNIX_TIMESTAMP(mu.enddate) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id";
76
-
77
- if($l == "oldmembers" || $l == "expired" || $l == "cancelled")
78
- $sqlQuery .= " LEFT JOIN $wpdb->pmpro_memberships_users mu2 ON u.ID = mu2.user_id AND mu2.status = 'active' ";
79
-
80
- $sqlQuery .= " WHERE mu.membership_id > 0 ";
81
-
82
- if($l == "oldmembers")
83
- $sqlQuery .= " AND mu.status <> 'active' AND mu2.status IS NULL ";
84
- elseif($l == "expired")
85
- $sqlQuery .= " AND mu.status = 'expired' AND mu2.status IS NULL ";
86
- elseif($l == "cancelled")
87
- $sqlQuery .= " AND mu.status IN('cancelled', 'admin_cancelled') AND mu2.status IS NULL ";
88
- elseif($l)
89
- $sqlQuery .= " AND mu.status = 'active' AND mu.membership_id = '" . esc_sql($l) . "' ";
90
- else
91
- $sqlQuery .= " AND mu.status = 'active' ";
92
- $sqlQuery .= "GROUP BY u.ID ";
93
-
94
- if($l == "oldmembers" || $l == "expired" || $l == "cancelled")
95
- $sqlQuery .= "ORDER BY enddate DESC ";
96
- else
97
- $sqlQuery .= "ORDER BY u.user_registered DESC ";
98
-
99
- if(!empty($limit))
100
- $sqlQuery .= "LIMIT $start, $limit";
101
- }
102
 
103
- //filter
104
- $sqlQuery = apply_filters("pmpro_members_list_sql", $sqlQuery);
105
-
106
- //get users
107
- $theusers = $wpdb->get_col($sqlQuery);
108
-
109
- //begin output
110
- header("Content-type: text/csv");
111
  if($s && $l == "oldmembers")
112
- header("Content-Disposition: attachment; filename=members_list_expired_" . sanitize_file_name($s) . ".csv");
113
  elseif($s && $l)
114
- header("Content-Disposition: attachment; filename=members_list_" . intval($l) . "_level_" . sanitize_file_name($s) . ".csv");
115
  elseif($s)
116
- header("Content-Disposition: attachment; filename=members_list_" . sanitize_file_name($s) . ".csv");
117
  elseif($l == "oldmembers")
118
- header("Content-Disposition: attachment; filename=members_list_expired.csv");
119
  else
120
- header("Content-Disposition: attachment; filename=members_list.csv");
121
 
122
- $heading = "id,username,firstname,lastname,email,billing firstname,billing lastname,address1,address2,city,state,zipcode,country,phone,membership,initial payment,fee,term,discount_code_id,discount_code,joined";
 
123
 
124
  if($l == "oldmembers")
125
- $heading .= ",ended";
126
  else
127
- $heading .= ",expires";
128
 
129
- $heading = apply_filters("pmpro_members_list_csv_heading", $heading);
130
- $csvoutput = $heading;
131
 
132
  //these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
133
  $default_columns = array(
@@ -157,39 +120,260 @@
157
  //filter
158
  $default_columns = apply_filters("pmpro_members_list_csv_default_columns", $default_columns);
159
 
 
 
 
160
  //any extra columns
161
  $extra_columns = apply_filters("pmpro_members_list_csv_extra_columns", array());
162
  if(!empty($extra_columns))
163
  {
164
  foreach($extra_columns as $heading => $callback)
165
  {
166
- $csvoutput .= "," . $heading;
167
  }
168
  }
169
 
170
- $csvoutput .= "\n";
 
 
 
 
 
 
 
 
 
171
 
172
- //output
173
- echo $csvoutput;
174
- $csvoutput = "";
175
 
176
- if($theusers)
 
 
 
177
  {
178
- foreach($theusers as $user_id)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  {
180
- //MULTI: This query will need to be updated to support multiple levels per user. Should probably just dump multiple rows for each membership.
181
- //get meta
 
182
 
183
- if($l == "oldmembers")
184
- $theuser = $wpdb->get_row("SELECT u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(u.user_registered) as joindate, u.user_login, u.user_nicename, u.user_url, u.user_registered, u.user_status, u.display_name, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, UNIX_TIMESTAMP(mu.enddate) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->usermeta um ON u.ID = um.user_id LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id WHERE u.ID = '" . $user_id . "' ORDER BY mu.id DESC LIMIT 1");
185
- else
186
- $theuser = $wpdb->get_row("SELECT u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(u.user_registered) as joindate, u.user_login, u.user_nicename, u.user_url, u.user_registered, u.user_status, u.display_name, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, UNIX_TIMESTAMP(mu.enddate) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->usermeta um ON u.ID = um.user_id LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id AND mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id WHERE u.ID = '" . $user_id . "' LIMIT 1");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
 
188
- $sqlQuery = "SELECT meta_key as `key`, meta_value as `value` FROM $wpdb->usermeta WHERE $wpdb->usermeta.user_id = '" . $user_id . "'";
189
- $metavalues = pmpro_getMetavalues($sqlQuery);
190
  $theuser->metavalues = $metavalues;
191
- $sqlQuery = "SELECT c.id, c.code FROM $wpdb->pmpro_discount_codes_uses cu LEFT JOIN $wpdb->pmpro_discount_codes c ON cu.code_id = c.id WHERE cu.user_id = '" . $theuser->ID . "' ORDER BY c.id DESC LIMIT 1";
192
- $discount_code = $wpdb->get_row($sqlQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  //default columns
195
  if(!empty($default_columns))
@@ -197,54 +381,157 @@
197
  $count = 0;
198
  foreach($default_columns as $col)
199
  {
200
- //add comma after the first item
201
- $count++;
202
- if($count > 1)
203
- $csvoutput .= ",";
204
-
205
  //checking $object->property. note the double $$
206
- if(!empty($$col[0]->$col[1]))
207
- $csvoutput .= pmpro_enclose($$col[0]->$col[1]); //output the value
208
  }
209
  }
210
 
211
  //joindate and enddate
212
- $csvoutput .= "," . pmpro_enclose(date("Y-m-d", $theuser->joindate)) . ",";
213
 
214
  if($theuser->membership_id)
215
  {
216
  if($theuser->enddate)
217
- $csvoutput .= pmpro_enclose(apply_filters("pmpro_memberslist_expires_column", date("Y-m-d", $theuser->enddate), $theuser));
218
  else
219
- $csvoutput .= pmpro_enclose(apply_filters("pmpro_memberslist_expires_column", "Never", $theuser));
220
  }
221
  elseif($l == "oldmembers" && $theuser->enddate)
222
  {
223
- $csvoutput .= pmpro_enclose(date("Y-m-d", $theuser->enddate));
224
  }
225
  else
226
- $csvoutput .= "N/A";
227
 
228
  //any extra columns
229
  if(!empty($extra_columns))
230
  {
231
  foreach($extra_columns as $heading => $callback)
232
  {
233
- $csvoutput .= "," . pmpro_enclose(call_user_func($callback, $theuser, $heading));
234
  }
235
  }
236
 
237
- $csvoutput .= "\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
- //output
240
- echo $csvoutput;
241
- $csvoutput = "";
 
 
242
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  }
244
 
245
- print $csvoutput;
 
 
 
 
 
 
246
 
247
  function pmpro_enclose($s)
248
  {
249
  return "\"" . str_replace("\"", "\\\"", $s) . "\"";
250
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
+
3
  if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_memberslistcsv")))
4
  {
5
  die(__("You do not have permissions to perform this action.", "pmpro"));
6
  }
7
 
8
+ if (!defined('PMPRO_BENCHMARK'))
9
+ define('PMPRO_BENCHMARK', false);
10
+
11
+ if (PMPRO_BENCHMARK)
12
+ {
13
+ error_log(str_repeat('-', 10) . date('Y-m-d H:i:s') . str_repeat('-', 10));
14
+ $start_time = microtime(true);
15
+ $start_memory = memory_get_usage(true);
16
+ }
17
+
18
+
19
+ /**
20
+ * Filter to set max number of records to process at a time
21
+ * for the export (helps manage memory footprint)
22
+ *
23
+ * Rule of thumb: 2000 records: ~50-60 MB of addl. memory (memory_limit needs to be between 128MB and 256MB)
24
+ * 4000 records: ~70-100 MB of addl. memory (memory_limit needs to be >= 256MB)
25
+ * 6000 records: ~100-140 MB of addl. memory (memory_limit needs to be >= 256MB)
26
+ *
27
+ * NOTE: Use the pmpro_before_members_list_csv_export hook to increase memory "on-the-fly"
28
+ * Can reset with the pmpro_after_members_list_csv_export hook
29
+ *
30
+ * @since 1.8.7
31
+ */
32
+ //set the number of users we'll load to try and protect ourselves from OOM errors
33
+ $max_users_per_loop = apply_filters('pmpro_set_max_user_per_export_loop', 2000);
34
+
35
  global $wpdb;
36
 
37
+ //get users (search input field)
38
  if(isset($_REQUEST['s']))
39
  $s = sanitize_text_field($_REQUEST['s']);
40
  else
41
  $s = "";
42
 
43
+ // requested a level id
44
  if(isset($_REQUEST['l']))
45
  $l = sanitize_text_field($_REQUEST['l']);
46
  else
68
  $start = NULL;
69
  }
70
 
71
+ $headers = array();
72
+ $headers[] = "Content-type: text/csv";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
 
 
 
 
 
 
 
 
74
  if($s && $l == "oldmembers")
75
+ $headers[] = "Content-Disposition: attachment; filename=members_list_expired_" . sanitize_file_name($s) . ".csv";
76
  elseif($s && $l)
77
+ $headers[] = "Content-Disposition: attachment; filename=members_list_" . intval($l) . "_level_" . sanitize_file_name($s) . ".csv";
78
  elseif($s)
79
+ $headers[] = "Content-Disposition: attachment; filename=members_list_" . sanitize_file_name($s) . ".csv";
80
  elseif($l == "oldmembers")
81
+ $headers[] = "Content-Disposition: attachment; filename=members_list_expired.csv";
82
  else
83
+ $headers[] = "Content-Disposition: attachment; filename=members_list.csv";
84
 
85
+ //set default CSV file headers, using comma as delimiter
86
+ $csv_file_header = "id,username,firstname,lastname,email,billing firstname,billing lastname,address1,address2,city,state,zipcode,country,phone,membership,initial payment,fee,term,discount_code_id,discount_code,joined";
87
 
88
  if($l == "oldmembers")
89
+ $csv_file_header .= ",ended";
90
  else
91
+ $csv_file_header .= ",expires";
92
 
93
+ $csv_file_header = apply_filters("pmpro_members_list_csv_heading", $csv_file_header);
 
94
 
95
  //these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
96
  $default_columns = array(
120
  //filter
121
  $default_columns = apply_filters("pmpro_members_list_csv_default_columns", $default_columns);
122
 
123
+ //set the preferred date format:
124
+ $dateformat = apply_filters("pmpro_memberslist_csv_dateformat","Y-m-d");
125
+
126
  //any extra columns
127
  $extra_columns = apply_filters("pmpro_members_list_csv_extra_columns", array());
128
  if(!empty($extra_columns))
129
  {
130
  foreach($extra_columns as $heading => $callback)
131
  {
132
+ $csv_file_header .= "," . $heading;
133
  }
134
  }
135
 
136
+ $csv_file_header .= "\n";
137
+
138
+ //generate SQL for list of users to process
139
+ $sqlQuery = "
140
+ SELECT
141
+ DISTINCT u.ID
142
+ FROM $wpdb->users u ";
143
+
144
+ if ($s)
145
+ $sqlQuery .= "LEFT JOIN {$wpdb->usermeta} um ON u.ID = um.user_id ";
146
 
147
+ $sqlQuery .= "LEFT JOIN {$wpdb->pmpro_memberships_users} mu ON u.ID = mu.user_id ";
148
+ $sqlQuery .= "LEFT JOIN {$wpdb->pmpro_membership_levels} m ON mu.membership_id = m.id ";
 
149
 
150
+ $former_members = in_array($l, array( "oldmembers", "expired", "cancelled"));
151
+ $former_member_join = null;
152
+
153
+ if($former_members)
154
  {
155
+ $former_member_join = "LEFT JOIN {$wpdb->pmpro_memberships_users} mu2 ON u.ID = mu2.user_id AND mu2.status = 'active' ";
156
+ $sqlQuery .= $former_member_join;
157
+ }
158
+
159
+ $sqlQuery .= "WHERE mu.membership_id > 0 ";
160
+
161
+ // looking for a specific user
162
+ if($s)
163
+ $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) ."%') ";
164
+
165
+ // if ($former_members)
166
+ // $sqlQuery .= "AND mu2.status = 'active' ";
167
+
168
+ $filter = null;
169
+
170
+ //records where the user is NOT an active member
171
+ //if $l == "oldmembers"
172
+ $filter = ($l == "oldmembers" ? " AND mu.status <> 'active' AND mu2.status IS NULL " : $filter);
173
+
174
+ // prepare the status to use in the filter
175
+ // elseif ($l == "expired") elseif ($l == "cancelled")
176
+ $f_status = ($l == "expired" ? array( 'expired' ) : ( $l == "cancelled" ? array('cancelled', 'admin_cancelled') : null));
177
+
178
+ //records where the user is expired or cancelled
179
+ $filter = ( ($l == "expired" || $l == "cancelled") && is_null($filter)) ? "AND mu.status IN ('" . implode("','", $f_status) . "') AND mu2.status IS NULL " : $filter;
180
+
181
+ //records for active users with the requested membership level
182
+ // elseif($l)
183
+ $filter = ( (is_null($filter) && is_numeric($l)) ? " AND mu.status = 'active' AND mu.membership_id = " . esc_sql($l) . " " : $filter);
184
+
185
+ //any active users
186
+ // else
187
+ $filter = (is_null($filter) ? " AND mu.status = 'active' " : $filter);
188
+
189
+ //add the filter
190
+ $sqlQuery .= $filter;
191
+
192
+ //process based on limit value(s).
193
+ $sqlQuery .= "ORDER BY u.ID ";
194
+
195
+ if(!empty($limit))
196
+ $sqlQuery .= "LIMIT {$start}, {$limit}";
197
+
198
+ // Generate a temporary file to store the data in.
199
+ $tmp_dir = sys_get_temp_dir();
200
+ $filename = tempnam( $tmp_dir, 'pmpro_ml_');
201
+
202
+ // open in append mode
203
+ $csv_fh = fopen($filename, 'a');
204
+
205
+ //write the CSV header to the file
206
+ fprintf($csv_fh, '%s', $csv_file_header );
207
+
208
+ //get users
209
+ $theusers = $wpdb->get_col($sqlQuery);
210
+
211
+ //if no records just transmit file with only CSV header as content
212
+ if (empty($theusers)) {
213
+
214
+ // send the data to the remote browser
215
+ pmpro_transmit_content($csv_fh, $filename, $headers);
216
+ }
217
+
218
+ $users_found = count($theusers);
219
+
220
+ if (PMPRO_BENCHMARK)
221
+ {
222
+ $pre_action_time = microtime(true);
223
+ $pre_action_memory = memory_get_usage(true);
224
+ }
225
+
226
+ do_action('pmpro_before_members_list_csv_export', $theusers);
227
+
228
+ $i_start = 0;
229
+ $i_limit = 0;
230
+ $iterations = 1;
231
+
232
+ $csvoutput = array();
233
+
234
+ if($users_found >= $max_users_per_loop)
235
+ {
236
+ $iterations = ceil($users_found / $max_users_per_loop);
237
+ $i_limit = $max_users_per_loop;
238
+ }
239
+
240
+ $end = 0;
241
+ $time_limit = ini_get('max_execution_time');
242
+
243
+ if (PMPRO_BENCHMARK)
244
+ {
245
+ error_log("PMPRO_BENCHMARK - Total records to process: {$users_found}");
246
+ error_log("PMPRO_BENCHMARK - Will process {$iterations} iterations of max {$max_users_per_loop} records per iteration.");
247
+ $pre_iteration_time = microtime(true);
248
+ $pre_iteration_memory = memory_get_usage(true);
249
+ }
250
+
251
+ //to manage memory footprint, we'll iterate through the membership list multiple times
252
+ for ( $ic = 1 ; $ic <= $iterations ; $ic++ ) {
253
+
254
+ if (PMPRO_BENCHMARK)
255
  {
256
+ $start_iteration_time = microtime(true);
257
+ $start_iteration_memory = memory_get_usage(true);
258
+ }
259
 
260
+ //make sure we don't timeout
261
+ if ($end != 0) {
262
+
263
+ $iteration_diff = $end - $start;
264
+ $new_time_limit = ceil($iteration_diff*$iterations * 1.2);
265
+
266
+ if ($time_limit < $new_time_limit )
267
+ {
268
+ $time_limit = $new_time_limit;
269
+ set_time_limit( $time_limit );
270
+ }
271
+ }
272
+
273
+ $start = current_time('timestamp');
274
+
275
+ // get first and last user ID to use
276
+ $first_uid = $theusers[$i_start];
277
+
278
+ //get last UID, will depend on which iteration we're on.
279
+ if ( $ic != $iterations )
280
+ $last_uid = $theusers[($i_start + ( $max_users_per_loop - 1))];
281
+ else
282
+ // Final iteration, so last UID is the last record in the users array
283
+ $last_uid = $theusers[($users_found - 1)];
284
+
285
+ //increment starting position
286
+ if(0 < $iterations)
287
+ {
288
+ $i_start += $max_users_per_loop;
289
+ }
290
+
291
+ $userSql = $wpdb->prepare("
292
+ SELECT
293
+ DISTINCT u.ID,
294
+ u.user_login,
295
+ u.user_email,
296
+ UNIX_TIMESTAMP(u.user_registered) as joindate,
297
+ u.user_login,
298
+ u.user_nicename,
299
+ u.user_url,
300
+ u.user_registered,
301
+ u.user_status,
302
+ u.display_name,
303
+ mu.membership_id,
304
+ mu.initial_payment,
305
+ mu.billing_amount,
306
+ mu.cycle_period,
307
+ UNIX_TIMESTAMP(mu.enddate) as enddate,
308
+ m.name as membership
309
+ FROM {$wpdb->users} u
310
+ LEFT JOIN {$wpdb->usermeta} um ON u.ID = um.user_id
311
+ LEFT JOIN {$wpdb->pmpro_memberships_users} mu ON u.ID = mu.user_id
312
+ LEFT JOIN {$wpdb->pmpro_membership_levels} m ON mu.membership_id = m.id
313
+ {$former_member_join}
314
+ WHERE u.ID BETWEEN %d AND %d AND mu.membership_id > 0 {$filter}
315
+ -- GROUP BY u.ID
316
+ ORDER BY u.ID",
317
+ $first_uid,
318
+ $last_uid
319
+ );
320
+
321
+ // TODO: Only return the latest record for the user(s) current (and prior) levels IDs?
322
+
323
+ $usr_data = $wpdb->get_results($userSql);
324
+ $userSql = null;
325
+
326
+ if (PMPRO_BENCHMARK)
327
+ {
328
+ $pre_userdata_time = microtime(true);
329
+ $pre_userdata_memory = memory_get_usage(true);
330
+ }
331
+
332
+ // process the actual data we want to export
333
+ foreach($usr_data as $theuser) {
334
+
335
+ $csvoutput = array();
336
+
337
+ //process usermeta
338
+ $metavalues = new stdClass();
339
+
340
+ // Returns array of meta keys containing array(s) of metavalues.
341
+ $um_values = get_user_meta($theuser->ID);
342
+
343
+ foreach( $um_values as $key => $value ) {
344
+
345
+ $metavalues->{$key} = $value[0];
346
+ }
347
 
 
 
348
  $theuser->metavalues = $metavalues;
349
+
350
+ $um_values = null;
351
+
352
+ //grab discount code info
353
+ $disSql = $wpdb->prepare("
354
+ SELECT
355
+ c.id,
356
+ c.code
357
+ FROM {$wpdb->pmpro_discount_codes_uses} cu
358
+ LEFT JOIN $wpdb->pmpro_discount_codes c ON cu.code_id = c.id
359
+ WHERE cu.user_id = %d
360
+ ORDER BY c.id DESC
361
+ LIMIT 1",
362
+ $theuser->ID
363
+ );
364
+
365
+ $discount_code = $wpdb->get_row($disSql);
366
+
367
+ //make sure there's data for the discount code info
368
+ if (empty($discount_code))
369
+ {
370
+ $empty_dc = new stdClass();
371
+ $empty_dc->id = '';
372
+ $empty_dc->code = '';
373
+ $discount_code = $empty_dc;
374
+ }
375
+
376
+ unset($disSql);
377
 
378
  //default columns
379
  if(!empty($default_columns))
381
  $count = 0;
382
  foreach($default_columns as $col)
383
  {
 
 
 
 
 
384
  //checking $object->property. note the double $$
385
+ array_push($csvoutput, pmpro_enclose(${$col[0]}->{$col[1]})); //output the value
 
386
  }
387
  }
388
 
389
  //joindate and enddate
390
+ array_push($csvoutput, pmpro_enclose(date($dateformat, $theuser->joindate)));
391
 
392
  if($theuser->membership_id)
393
  {
394
  if($theuser->enddate)
395
+ array_push($csvoutput, pmpro_enclose(apply_filters("pmpro_memberslist_expires_column", date($dateformat, $theuser->enddate), $theuser)));
396
  else
397
+ array_push($csvoutput, pmpro_enclose(apply_filters("pmpro_memberslist_expires_column", "Never", $theuser)));
398
  }
399
  elseif($l == "oldmembers" && $theuser->enddate)
400
  {
401
+ array_push($csvoutput, pmpro_enclose(date($dateformat, $theuser->enddate)));
402
  }
403
  else
404
+ array_push($csvoutput, "N/A");
405
 
406
  //any extra columns
407
  if(!empty($extra_columns))
408
  {
409
  foreach($extra_columns as $heading => $callback)
410
  {
411
+ array_push($csvoutput, pmpro_enclose(call_user_func($callback, $theuser, $heading)));
412
  }
413
  }
414
 
415
+ //free memory for user records
416
+ $metavalues = null;
417
+ $discount_code = null;
418
+ $theuser = null;
419
+
420
+ // $csvoutput .= "\n";
421
+ $line = implode(',', $csvoutput) . "\n";
422
+
423
+ fprintf($csv_fh, "%s", $line);
424
+
425
+ //reset
426
+ $line = null;
427
+ $csvoutput = null;
428
+ } // end of foreach usr_data
429
+
430
+ if (PMPRO_BENCHMARK)
431
+ {
432
+ $end_of_iteration_time = microtime(true);
433
+ $end_of_iteration_memory = memory_get_usage(true);
434
+ }
435
+
436
+ //keep memory consumption low(ish)
437
+ wp_cache_flush();
438
+
439
+ if (PMPRO_BENCHMARK)
440
+ {
441
+ $after_flush_time = microtime(true);
442
+ $after_flush_memory = memory_get_usage(true);
443
+
444
+ $time_in_iteration = $end_of_iteration_time - $start_iteration_time;
445
+ $time_flushing = $after_flush_time - $end_of_iteration_time;
446
+ $userdata_time = $end_of_iteration_time - $pre_userdata_time;
447
+
448
+ list($iteration_sec, $iteration_usec) = explode('.', $time_in_iteration);
449
+ list($udata_sec, $udata_usec) = explode('.', $userdata_time);
450
+ list($flush_sec, $flush_usec) = explode('.', $time_flushing);
451
+
452
+ $memory_used = $end_of_iteration_memory - $start_iteration_memory;
453
 
454
+ error_log("PMPRO_BENCHMARK - For iteration #{$ic} of {$iterations} - Records processed: " . count($usr_data));
455
+ error_log("PMPRO_BENCHMARK - \tTime processing whole iteration: " . date("H:i:s", $iteration_sec) . ".{$iteration_sec}");
456
+ error_log("PMPRO_BENCHMARK - \tTime processing user data for iteration: " . date("H:i:s", $udata_sec) . ".{$udata_sec}");
457
+ error_log("PMPRO_BENCHMARK - \tTime flushing cache: " . date("H:i:s", $flush_sec) . ".{$flush_usec}");
458
+ error_log("PMPRO_BENCHMARK - \tAdditional memory used during iteration: ".number_format($memory_used, 2, '.', ',') . " bytes");
459
  }
460
+
461
+ //need to increase max running time?
462
+ $end = current_time('timestamp');
463
+
464
+ } // end of foreach iteration
465
+
466
+ if (PMPRO_BENCHMARK)
467
+ {
468
+ $after_data_time = microtime(true);
469
+ $after_data_memory = memory_get_peak_usage(true);
470
+
471
+ $time_processing_data = $after_data_time - $start_time;
472
+ $memory_processing_data = $after_data_memory - $start_memory;
473
+
474
+ list($sec, $usec) = explode('.', $time_processing_data);
475
+
476
+ error_log("PMPRO_BENCHMARK - Time processing data: {$sec}.{$usec} seconds");
477
+ error_log("PMPRO_BENCHMARK - Peak memory usage: " . number_format($memory_processing_data, false, '.', ',') . " bytes");
478
  }
479
 
480
+ // free memory
481
+ $usr_data = null;
482
+
483
+ // send the data to the remote browser
484
+ pmpro_transmit_content($csv_fh, $filename, $headers);
485
+
486
+ exit;
487
 
488
  function pmpro_enclose($s)
489
  {
490
  return "\"" . str_replace("\"", "\\\"", $s) . "\"";
491
+ }
492
+
493
+ // responsible for trasnmitting content of file to remote browser
494
+ function pmpro_transmit_content( $csv_fh, $filename, $headers = array() ) {
495
+
496
+ //close the temp file
497
+ fclose($csv_fh);
498
+
499
+ //make sure we get the right file size
500
+ clearstatcache( true, $filename );
501
+
502
+ //did we accidentally send errors/warnings to browser?
503
+ if (headers_sent())
504
+ {
505
+ echo str_repeat('-', 75) . "<br/>\n";
506
+ echo 'Please open a support case and paste in the warnings/errors you see above this text to\n ';
507
+ echo 'the <a href="http://paidmembershipspro.com/support/" target="_blank">Paid Memberships Pro support forum</a><br/>\n';
508
+ echo str_repeat("=", 75) . "<br/>\n";
509
+ echo file_get_contents($filename);
510
+ echo str_repeat("=", 75) . "<br/>\n";
511
+ }
512
+
513
+ //transmission
514
+ if (! empty($headers) )
515
+ {
516
+ //set the download size
517
+ $headers[] = "Content/Length: " . filesize($filename);
518
+
519
+ //set headers
520
+ foreach($headers as $header)
521
+ {
522
+ header($header . "\r\n");
523
+ }
524
+
525
+ // open and send the file contents to the remote location
526
+ $fh = fopen( $filename, 'rb' );
527
+ fpassthru($fh);
528
+ fclose($fh);
529
+
530
+ // remove the temp file
531
+ unlink($filename);
532
+ }
533
+
534
+ //allow user to clean up after themselves
535
+ do_action('pmpro_after_members_list_csv_export');
536
+ exit;
537
+ }
adminpages/reports/memberships.php CHANGED
@@ -164,7 +164,7 @@ function pmpro_report_memberships_page()
164
  $cols[$i]->signups = 0;
165
  foreach($dates as $day => $date)
166
  {
167
- if( $day == $i ) {
168
  $cols[$i]->signups = $date->signups;
169
  }
170
  }
@@ -234,6 +234,19 @@ function pmpro_report_memberships_page()
234
 
235
  $sqlQuery .= " GROUP BY date ORDER BY date ";
236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  $cdates = $wpdb->get_results($sqlQuery, OBJECT_K);
238
 
239
  foreach( $dates as $day => &$date )
@@ -518,6 +531,18 @@ function pmpro_getCancellations($period = false, $levels = 'all', $status = arra
518
  if(!empty($levels) && $levels != 'all')
519
  $sqlQuery .= "AND membership_id IN(" . $levels . ") ";
520
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  $cancellations = $wpdb->get_var($sqlQuery);
522
 
523
  //save in cache
164
  $cols[$i]->signups = 0;
165
  foreach($dates as $day => $date)
166
  {
167
+ if( $date->date == $i ) {
168
  $cols[$i]->signups = $date->signups;
169
  }
170
  }
234
 
235
  $sqlQuery .= " GROUP BY date ORDER BY date ";
236
 
237
+ /**
238
+ * Filter query to get cancellation numbers in signups vs cancellations detailed report.
239
+ *
240
+ * @since 1.8.8
241
+ *
242
+ * @param string $sqlQuery The current SQL
243
+ * @param string $type report type
244
+ * @param string $startdate Start Date in YYYY-MM-DD format
245
+ * @param string $enddate End Date in YYYY-MM-DD format
246
+ * @param int $l Level ID
247
+ */
248
+ $sqlQuery = apply_filters('pmpro_reports_signups_sql', $sqlQuery, $type, $startdate, $enddate, $l);
249
+
250
  $cdates = $wpdb->get_results($sqlQuery, OBJECT_K);
251
 
252
  foreach( $dates as $day => &$date )
531
  if(!empty($levels) && $levels != 'all')
532
  $sqlQuery .= "AND membership_id IN(" . $levels . ") ";
533
 
534
+ /**
535
+ * Filter query to get cancellation numbers in signups vs cancellations detailed report.
536
+ *
537
+ * @since 1.8.8
538
+ *
539
+ * @param string $sqlQuery The current SQL
540
+ * @param string $period Period for report. today, this month, this year, empty string for all time.
541
+ * @param array(int) $levels Level IDs to include in report.
542
+ * @param array(string) $status Statuses to include as cancelled.
543
+ */
544
+ $sqlQuery = apply_filters('pmpro_reports_get_cancellations_sql', $sqlQuery, $period, $levels, $status);
545
+
546
  $cancellations = $wpdb->get_var($sqlQuery);
547
 
548
  //save in cache
adminpages/updates.php CHANGED
@@ -5,6 +5,9 @@
5
  die(__("You do not have permissions to perform this action.", "pmpro"));
6
  }
7
 
 
 
 
8
  require_once(dirname(__FILE__) . "/admin_header.php");
9
  ?>
10
 
@@ -16,6 +19,7 @@
16
  //let's process the first one
17
  ?>
18
  <p id="pmpro_updates_intro"><?php _e('Updates are processing. This may take a few minutes to complete.', 'pmpro');?></p>
 
19
  <textarea id="pmpro_updates_status" rows="10" cols="60">Loading...</textarea>
20
 
21
  <?php
5
  die(__("You do not have permissions to perform this action.", "pmpro"));
6
  }
7
 
8
+ //reset this transient so we know the page was just loaded
9
+ set_transient('pmpro_updates_first_load', true, 60*60*24);
10
+
11
  require_once(dirname(__FILE__) . "/admin_header.php");
12
  ?>
13
 
19
  //let's process the first one
20
  ?>
21
  <p id="pmpro_updates_intro"><?php _e('Updates are processing. This may take a few minutes to complete.', 'pmpro');?></p>
22
+ <p id="pmpro_updates_progress">[...]</p>
23
  <textarea id="pmpro_updates_status" rows="10" cols="60">Loading...</textarea>
24
 
25
  <?php
classes/class.memberorder.php CHANGED
@@ -576,7 +576,7 @@
576
  '" . esc_sql($this->billing->zip) . "',
577
  '" . esc_sql($this->billing->country) . "',
578
  '" . cleanPhone($this->billing->phone) . "',
579
- '" . $amount . "',
580
  '" . $tax . "',
581
  '" . $this->couponamount. "',
582
  " . intval($this->certificate_id) . ",
576
  '" . esc_sql($this->billing->zip) . "',
577
  '" . esc_sql($this->billing->country) . "',
578
  '" . cleanPhone($this->billing->phone) . "',
579
+ '" . $subtotal . "',
580
  '" . $tax . "',
581
  '" . $this->couponamount. "',
582
  " . intval($this->certificate_id) . ",
classes/gateways/class.pmprogateway_payflowpro.php CHANGED
@@ -381,7 +381,7 @@
381
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
382
  //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount;
383
 
384
- $nvpStr .= "&PROFILENAME=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
385
 
386
  $nvpStr .= "&PAYPERIOD=" . $payperiod;
387
 
@@ -484,7 +484,7 @@
484
  $nvpStr = "&ORIGPROFILEID=" . $order->subscription_transaction_id . "&ACTION=M";
485
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
486
 
487
- $nvpStr .= "&PROFILENAME=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
488
 
489
  $nvpStr .= "&CUSTIP=" . $_SERVER['REMOTE_ADDR']; // . "&INVNUM=" . $order->code;
490
 
@@ -587,6 +587,7 @@
587
 
588
  //post to PayPal
589
  $response = wp_remote_post( $API_Endpoint, array(
 
590
  'sslverify' => FALSE,
591
  'httpversion' => '1.1',
592
  'body' => $nvpreq
381
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
382
  //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount;
383
 
384
+ $nvpStr .= "&PROFILENAME=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
385
 
386
  $nvpStr .= "&PAYPERIOD=" . $payperiod;
387
 
484
  $nvpStr = "&ORIGPROFILEID=" . $order->subscription_transaction_id . "&ACTION=M";
485
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
486
 
487
+ $nvpStr .= "&PROFILENAME=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
488
 
489
  $nvpStr .= "&CUSTIP=" . $_SERVER['REMOTE_ADDR']; // . "&INVNUM=" . $order->code;
490
 
587
 
588
  //post to PayPal
589
  $response = wp_remote_post( $API_Endpoint, array(
590
+ 'timeout' => 60,
591
  'sslverify' => FALSE,
592
  'httpversion' => '1.1',
593
  'body' => $nvpreq
classes/gateways/class.pmprogateway_paypal.php CHANGED
@@ -471,11 +471,12 @@
471
 
472
  //paypal profile stuff
473
  $nvpStr = "";
 
474
  if(!empty($order->Token))
475
  $nvpStr .= "&TOKEN=" . $order->Token;
476
  $nvpStr .="&AMT=" . $order->PaymentAmount . "&TAXAMT=" . $amount_tax . "&CURRENCYCODE=" . $pmpro_currency . "&PROFILESTARTDATE=" . $order->ProfileStartDate;
477
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
478
- $nvpStr .= "&DESC=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
479
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
480
  //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount;
481
 
@@ -638,6 +639,7 @@
638
 
639
  //post to PayPal
640
  $response = wp_remote_post( $API_Endpoint, array(
 
641
  'sslverify' => FALSE,
642
  'httpversion' => '1.1',
643
  'body' => $nvpreq
471
 
472
  //paypal profile stuff
473
  $nvpStr = "";
474
+
475
  if(!empty($order->Token))
476
  $nvpStr .= "&TOKEN=" . $order->Token;
477
  $nvpStr .="&AMT=" . $order->PaymentAmount . "&TAXAMT=" . $amount_tax . "&CURRENCYCODE=" . $pmpro_currency . "&PROFILESTARTDATE=" . $order->ProfileStartDate;
478
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
479
+ $nvpStr .= "&DESC=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
480
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
481
  //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount;
482
 
639
 
640
  //post to PayPal
641
  $response = wp_remote_post( $API_Endpoint, array(
642
+ 'timeout' => 60,
643
  'sslverify' => FALSE,
644
  'httpversion' => '1.1',
645
  'body' => $nvpreq
classes/gateways/class.pmprogateway_paypalexpress.php CHANGED
@@ -490,7 +490,7 @@
490
  $nvpStr .= "&PROFILESTARTDATE=" . $order->ProfileStartDate;
491
  if(!empty($order->BillingFrequency))
492
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling&L_BILLINGTYPE0=RecurringPayments";
493
- $nvpStr .= "&DESC=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
494
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
495
  $nvpStr .= "&NOSHIPPING=1&L_BILLINGAGREEMENTDESCRIPTION0=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127)) . "&L_PAYMENTTYPE0=Any";
496
 
@@ -625,7 +625,7 @@
625
  */
626
  if(!empty($order->BillingFrequency))
627
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
628
- $nvpStr .= "&DESC=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
629
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
630
  $nvpStr .= "&NOSHIPPING=1";
631
 
@@ -684,7 +684,7 @@
684
  $nvpStr .= "&TAXAMT=" . $amount_tax;
685
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
686
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
687
- $nvpStr .= "&DESC=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127));
688
 
689
  //if billing cycles are defined
690
  if(!empty($order->TotalBillingCycles))
@@ -849,6 +849,7 @@
849
 
850
  //post to PayPal
851
  $response = wp_remote_post( $API_Endpoint, array(
 
852
  'sslverify' => FALSE,
853
  'httpversion' => '1.1',
854
  'body' => $nvpreq
490
  $nvpStr .= "&PROFILESTARTDATE=" . $order->ProfileStartDate;
491
  if(!empty($order->BillingFrequency))
492
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling&L_BILLINGTYPE0=RecurringPayments";
493
+ $nvpStr .= "&DESC=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
494
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
495
  $nvpStr .= "&NOSHIPPING=1&L_BILLINGAGREEMENTDESCRIPTION0=" . urlencode(substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127)) . "&L_PAYMENTTYPE0=Any";
496
 
625
  */
626
  if(!empty($order->BillingFrequency))
627
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
628
+ $nvpStr .= "&DESC=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
629
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
630
  $nvpStr .= "&NOSHIPPING=1";
631
 
684
  $nvpStr .= "&TAXAMT=" . $amount_tax;
685
  $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLAMT=AddToNextBilling";
686
  $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler");
687
+ $nvpStr .= "&DESC=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) );
688
 
689
  //if billing cycles are defined
690
  if(!empty($order->TotalBillingCycles))
849
 
850
  //post to PayPal
851
  $response = wp_remote_post( $API_Endpoint, array(
852
+ 'timeout' => 60,
853
  'sslverify' => FALSE,
854
  'httpversion' => '1.1',
855
  'body' => $nvpreq
classes/gateways/class.pmprogateway_paypalstandard.php CHANGED
@@ -497,6 +497,7 @@
497
 
498
  //post to PayPal
499
  $response = wp_remote_post( $API_Endpoint, array(
 
500
  'sslverify' => FALSE,
501
  'httpversion' => '1.1',
502
  'body' => $nvpreq
@@ -505,7 +506,7 @@
505
 
506
  if ( is_wp_error( $response ) ) {
507
  $error_message = $response->get_error_message();
508
- die( "methodName_ failed: $error_message" );
509
  } else {
510
  //extract the response details
511
  $httpParsedResponseAr = array();
497
 
498
  //post to PayPal
499
  $response = wp_remote_post( $API_Endpoint, array(
500
+ 'timeout' => 60,
501
  'sslverify' => FALSE,
502
  'httpversion' => '1.1',
503
  'body' => $nvpreq
506
 
507
  if ( is_wp_error( $response ) ) {
508
  $error_message = $response->get_error_message();
509
+ die( "{$methodName_} failed: $error_message" );
510
  } else {
511
  //extract the response details
512
  $httpParsedResponseAr = array();
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -1186,7 +1186,13 @@
1186
  }
1187
 
1188
  //get name and email values from order in case we update
1189
- $name = trim($order->FirstName . " " . $order->LastName);
 
 
 
 
 
 
1190
  if(empty($name) && !empty($user->ID))
1191
  {
1192
  $name = trim($user->first_name . " " . $user->last_name);
@@ -1198,8 +1204,12 @@
1198
  elseif(empty($name))
1199
  $name = "No Name";
1200
 
 
 
 
 
1201
  $email = $order->Email;
1202
- if(empty($email) && !empty($user->ID))
1203
  {
1204
  $email = $user->user_email;
1205
  }
1186
  }
1187
 
1188
  //get name and email values from order in case we update
1189
+ if(!empty($order->FirstName) && !empty($order->LastName))
1190
+ $name = trim($order->FirstName . " " . $order->LastName);
1191
+ elseif(!empty($order->FirstName))
1192
+ $name = $order->FirstName;
1193
+ elseif(!empty($order->LastName))
1194
+ $name = $order->LastName;
1195
+
1196
  if(empty($name) && !empty($user->ID))
1197
  {
1198
  $name = trim($user->first_name . " " . $user->last_name);
1204
  elseif(empty($name))
1205
  $name = "No Name";
1206
 
1207
+ if(!empty($order->Email))
1208
+ $email = $order->Email;
1209
+ else
1210
+ $email = "";
1211
  $email = $order->Email;
1212
+ if(empty($email) && !empty($user->ID) && !empty($user->user_email))
1213
  {
1214
  $email = $user->user_email;
1215
  }
includes/capabilities.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //make sure administrators have correct capabilities
3
+ function pmpro_check_admin_capabilities()
4
+ {
5
+ // Grab the defined (needed) admin capabilities
6
+ $roles = pmpro_get_capability_defs('administrator');
7
+
8
+ $caps_configured = true;
9
+
10
+ // check whether the current user has those capabilities already
11
+ foreach( $roles as $r )
12
+ {
13
+ $caps_configured = $caps_configured && current_user_can($r);
14
+ }
15
+
16
+ // if not, set the
17
+ if ( false === $caps_configured && current_user_can('administrator'))
18
+ {
19
+ pmpro_set_capabilities_for_role('administrator');
20
+ }
21
+ }
22
+ add_action('admin_init', 'pmpro_check_admin_capabilities', 10, 2);
23
+
24
+ // use the capability definition for $role_name and add/remove capabilities as requested
25
+ function pmpro_set_capabilities_for_role( $role_name, $action = 'enable' )
26
+ {
27
+ $cap_array = pmpro_get_capability_defs($role_name);
28
+
29
+ //add caps to specified role
30
+ $role = get_role( $role_name );
31
+
32
+ // Iterate through the relevant caps for the role & add or remove them
33
+ foreach( $cap_array as $cap_name )
34
+ {
35
+ if ( $action == 'enable' )
36
+ $role->add_cap($cap_name);
37
+
38
+ if ( $action == 'disable' )
39
+ $role->remove_cap($cap_name);
40
+ }
41
+ }
42
+
43
+ // used to define what capabilities goes with what role.
44
+ function pmpro_get_capability_defs($role)
45
+ {
46
+ // TODO: Add other standard roles (if/when needed)
47
+
48
+ // caps for the administrator role
49
+ $cap_array = array(
50
+ 'pmpro_memberships_menu',
51
+ 'pmpro_membershiplevels',
52
+ 'pmpro_edit_memberships',
53
+ 'pmpro_pagesettings',
54
+ 'pmpro_paymentsettings',
55
+ 'pmpro_emailsettings',
56
+ 'pmpro_advancedsettings',
57
+ 'pmpro_addons',
58
+ 'pmpro_memberslist',
59
+ 'pmpro_memberslistcsv',
60
+ 'pmpro_reports',
61
+ 'pmpro_orders',
62
+ 'pmpro_orderscsv',
63
+ 'pmpro_discountcodes',
64
+ 'pmpro_updates'
65
+ );
66
+
67
+ return apply_filters( "pmpro_assigned_{$role}_capabilities", $cap_array);
68
+ }
includes/content.php CHANGED
@@ -5,22 +5,23 @@
5
  function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_membership_levels = false)
6
  {
7
  global $post, $wpdb, $current_user;
8
- //use globals if no values supplied
9
- if(!$post_id && !empty($post))
10
- $post_id = $post->ID;
11
- if(!$user_id)
12
- $user_id = $current_user->ID;
13
 
 
 
 
 
 
14
  //no post, return true (changed from false in version 1.7.2)
15
  if(!$post_id)
16
  return true;
17
-
18
- if (!isset($post->post_type))
19
- return true;
20
-
 
21
  //if no post or current_user object, set them up
22
- if( isset($post->ID) && !empty($post->ID) && $post_id == $post->ID)
23
- $mypost = $post;
24
  else
25
  $mypost = get_post($post_id);
26
 
5
  function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_membership_levels = false)
6
  {
7
  global $post, $wpdb, $current_user;
 
 
 
 
 
8
 
9
+ //use queried object if no value is supplied
10
+ $queried_object = get_queried_object();
11
+ if(!$post_id && !empty($queried_object) && !empty($queried_object->ID))
12
+ $post_id = $queried_object->ID;
13
+
14
  //no post, return true (changed from false in version 1.7.2)
15
  if(!$post_id)
16
  return true;
17
+
18
+ //use current user if no value is supplied
19
+ if(!$user_id)
20
+ $user_id = $current_user->ID;
21
+
22
  //if no post or current_user object, set them up
23
+ if( isset($queried_object->ID) && !empty($queried_object->ID) && $post_id == $queried_object->ID)
24
+ $mypost = $queried_object;
25
  else
26
  $mypost = get_post($post_id);
27
 
includes/functions.php CHANGED
@@ -739,7 +739,7 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
739
 
740
  if(!$wpdb->query($sql))
741
  {
742
- $pmpro_error = __("Error interacting with database", "pmpro") . ": ".(mysql_errno()?mysql_error():'unavailable');
743
 
744
  return false;
745
  }
@@ -812,7 +812,7 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
812
 
813
  if(!$wpdb->query($sql))
814
  {
815
- $pmpro_error = __("Error interacting with database", "pmpro") . ": ".(mysql_errno()?mysql_error():'unavailable');
816
  return false;
817
  }
818
  }
@@ -836,7 +836,7 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
836
 
837
  if(!$wpdb->query($sql))
838
  {
839
- $pmpro_error = __("Error interacting with database", "pmpro") . ": ".(mysql_errno()?mysql_error():'unavailable');
840
  return false;
841
  }
842
  }
@@ -886,13 +886,13 @@ function pmpro_toggleMembershipCategory( $level, $category, $value )
886
  {
887
  $sql = "REPLACE INTO {$wpdb->pmpro_memberships_categories} (`membership_id`,`category_id`) VALUES ('$level','$category')";
888
  $wpdb->query($sql);
889
- if(mysql_errno()) return mysql_error();
890
  }
891
  else
892
  {
893
  $sql = "DELETE FROM {$wpdb->pmpro_memberships_categories} WHERE `membership_id` = '$level' AND `category_id` = '$category' LIMIT 1";
894
  $wpdb->query($sql);
895
- if(mysql_errno()) return mysql_error();
896
  }
897
 
898
  return true;
@@ -924,7 +924,7 @@ function pmpro_updateMembershipCategories($level, $categories)
924
  // remove all existing links...
925
  $sqlQuery = "DELETE FROM $wpdb->pmpro_memberships_categories WHERE `membership_id` = '" . esc_sql($level) . "'";
926
  $wpdb->query($sqlQuery);
927
- if(mysql_errno()) return mysql_error();
928
 
929
  // add the given links [back?] in...
930
  foreach($categories as $cat)
739
 
740
  if(!$wpdb->query($sql))
741
  {
742
+ $pmpro_error = __("Error interacting with database", "pmpro") . ": ".($wpdb->last_error?$wpdb->last_error:'unavailable');
743
 
744
  return false;
745
  }
812
 
813
  if(!$wpdb->query($sql))
814
  {
815
+ $pmpro_error = __("Error interacting with database", "pmpro") . ": ".($wpdb->last_error?$wpdb->last_error:'unavailable');
816
  return false;
817
  }
818
  }
836
 
837
  if(!$wpdb->query($sql))
838
  {
839
+ $pmpro_error = __("Error interacting with database", "pmpro") . ": ".($wpdb->last_error?$wpdb->last_error:'unavailable');
840
  return false;
841
  }
842
  }
886
  {
887
  $sql = "REPLACE INTO {$wpdb->pmpro_memberships_categories} (`membership_id`,`category_id`) VALUES ('$level','$category')";
888
  $wpdb->query($sql);
889
+ if($wpdb->last_error) return $wpdb->last_error;
890
  }
891
  else
892
  {
893
  $sql = "DELETE FROM {$wpdb->pmpro_memberships_categories} WHERE `membership_id` = '$level' AND `category_id` = '$category' LIMIT 1";
894
  $wpdb->query($sql);
895
+ if($wpdb->last_error) return $wpdb->last_error;
896
  }
897
 
898
  return true;
924
  // remove all existing links...
925
  $sqlQuery = "DELETE FROM $wpdb->pmpro_memberships_categories WHERE `membership_id` = '" . esc_sql($level) . "'";
926
  $wpdb->query($sqlQuery);
927
+ if($wpdb->last_error) return $wpdb->last_error;
928
 
929
  // add the given links [back?] in...
930
  foreach($categories as $cat)
includes/updates.php CHANGED
@@ -44,7 +44,7 @@ function pmpro_removeUpdate($update) {
44
  */
45
  function pmpro_enqueue_update_js() {
46
  if(!empty($_REQUEST['page']) && $_REQUEST['page'] == 'pmpro-updates') {
47
- wp_enqueue_script( 'pmpro-updates', plugin_dir_url( dirname(__FILE__) ) . 'js/updates.js' );
48
  }
49
  }
50
  add_action('admin_enqueue_scripts', 'pmpro_enqueue_update_js');
@@ -62,8 +62,16 @@ function pmpro_wp_ajax_pmpro_updates() {
62
  call_user_func($updates[0]);
63
  echo ". ";
64
  } else {
65
- echo "done";
66
  }
 
 
 
 
 
 
 
 
67
 
68
  exit;
69
  }
44
  */
45
  function pmpro_enqueue_update_js() {
46
  if(!empty($_REQUEST['page']) && $_REQUEST['page'] == 'pmpro-updates') {
47
+ wp_enqueue_script( 'pmpro-updates', plugin_dir_url( dirname(__FILE__) ) . 'js/updates.js', array('jquery'), PMPRO_VERSION );
48
  }
49
  }
50
  add_action('admin_enqueue_scripts', 'pmpro_enqueue_update_js');
62
  call_user_func($updates[0]);
63
  echo ". ";
64
  } else {
65
+ echo "[done]";
66
  }
67
+
68
+ //reset this transient so we know AJAX is running
69
+ set_transient('pmpro_updates_first_load', false, 60*60*24);
70
+
71
+ //show progress
72
+ global $pmpro_updates_progress;
73
+ if(!empty($pmpro_updates_progress))
74
+ echo $pmpro_updates_progress;
75
 
76
  exit;
77
  }
includes/updates/upgrade_1.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1()
3
+ {
4
+ /*
5
+ default options
6
+ */
7
+ $nonmembertext = sprintf( __( 'This content is for !!levels!! members only.<br /><a href="%s">Register</a>', 'pmpro' ), wp_login_url() . "?action=register" );
8
+ pmpro_setOption("nonmembertext", $nonmembertext);
9
+
10
+ $notloggedintext = sprintf( __( 'This content is for !!levels!! members only.<br /><a href="%s">Log In</a> <a href="%s">Register</a>', 'pmpro' ), wp_login_url(), wp_login_url() . "?action=register" );
11
+ '?action=register">Register</a>';
12
+ pmpro_setOption("notloggedintext", $notloggedintext);
13
+
14
+ $rsstext = __( "This content is for !!levels!! members only. Visit the site and log in/register to read.", 'pmpro' );
15
+ pmpro_setOption("rsstext", $rsstext);
16
+
17
+ $gateway_environment = "sandbox";
18
+ pmpro_setOption("gateway_environment", $gateway_environment);
19
+
20
+ $pmpro_currency = "USD";
21
+ pmpro_setOption("currency", $pmpro_currency);
22
+
23
+ $pmpro_accepted_credit_cards = "Visa,Mastercard,American Express,Discover";
24
+ pmpro_setOption("accepted_credit_cards", $pmpro_accepted_credit_cards);
25
+
26
+ $parsed = parse_url(home_url());
27
+ $hostname = $parsed['host'];
28
+ $hostparts = explode(".", $hostname);
29
+ $email_domain = $hostparts[count($hostparts) - 2] . "." . $hostparts[count($hostparts) - 1];
30
+ $from_email = "wordpress@" . $email_domain;
31
+ pmpro_setOption("from_email", $from_email);
32
+
33
+ $from_name = "WordPress";
34
+ pmpro_setOption("from_name", $from_name);
35
+
36
+ //setting new email settings defaults
37
+ pmpro_setOption("email_admin_checkout", "1");
38
+ pmpro_setOption("email_admin_changes", "1");
39
+ pmpro_setOption("email_admin_cancels", "1");
40
+ pmpro_setOption("email_admin_billing", "1");
41
+
42
+ pmpro_setOption("tospage", "");
43
+
44
+ //db update
45
+ pmpro_db_delta();
46
+
47
+ //update version and return
48
+ pmpro_setOption("db_version", "1.71"); //no need to run other updates
49
+ return 1.71;
50
+ }
includes/updates/upgrade_1_1_15.php ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_1_15()
3
+ {
4
+ /*
5
+ DB table setup
6
+ */
7
+ global $wpdb;
8
+ $wpdb->hide_errors();
9
+ $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
10
+ $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
11
+ $wpdb->pmpro_memberships_categories = $wpdb->prefix . 'pmpro_memberships_categories';
12
+ $wpdb->pmpro_memberships_pages = $wpdb->prefix . 'pmpro_memberships_pages';
13
+ $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
14
+ $wpdb->pmpro_discount_codes = $wpdb->prefix . 'pmpro_discount_codes';
15
+ $wpdb->pmpro_discount_codes_levels = $wpdb->prefix . 'pmpro_discount_codes_levels';
16
+ $wpdb->pmpro_discount_codes_uses = $wpdb->prefix . 'pmpro_discount_codes_uses';
17
+
18
+ /*
19
+ Changing some id columns to unsigned.
20
+ */
21
+ $sqlQuery = "
22
+ ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT
23
+ ";
24
+ $wpdb->query($sqlQuery);
25
+
26
+ $sqlQuery = "
27
+ ALTER TABLE `" . $wpdb->pmpro_memberships_categories . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
28
+ ";
29
+ $wpdb->query($sqlQuery);
30
+
31
+ $sqlQuery = "
32
+ ALTER TABLE `" . $wpdb->pmpro_memberships_categories . "` CHANGE `category_id` `category_id` INT( 11 ) UNSIGNED NOT NULL
33
+ ";
34
+ $wpdb->query($sqlQuery);
35
+
36
+ $sqlQuery = "
37
+ ALTER TABLE `" . $wpdb->pmpro_memberships_pages . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
38
+ ";
39
+ $wpdb->query($sqlQuery);
40
+
41
+ $sqlQuery = "
42
+ ALTER TABLE `" . $wpdb->pmpro_memberships_pages . "` CHANGE `page_id` `page_id` INT( 11 ) UNSIGNED NOT NULL
43
+ ";
44
+ $wpdb->query($sqlQuery);
45
+
46
+ $sqlQuery = "
47
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` CHANGE `user_id` `user_id` INT( 11 ) UNSIGNED NOT NULL
48
+ ";
49
+ $wpdb->query($sqlQuery);
50
+
51
+ $sqlQuery = "
52
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
53
+ ";
54
+ $wpdb->query($sqlQuery);
55
+
56
+ $sqlQuery = "
57
+ ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT
58
+ ";
59
+ $wpdb->query($sqlQuery);
60
+
61
+ $sqlQuery = "
62
+ ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `user_id` `user_id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0'
63
+ ";
64
+ $wpdb->query($sqlQuery);
65
+
66
+ $sqlQuery = "
67
+ ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0'
68
+ ";
69
+ $wpdb->query($sqlQuery);
70
+
71
+ $sqlQuery = "
72
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `code_id` INT UNSIGNED NOT NULL AFTER `membership_id` ;
73
+ ";
74
+ $wpdb->query($sqlQuery);
75
+
76
+ $sqlQuery = "
77
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD INDEX ( `code_id` )
78
+ ";
79
+ $wpdb->query($sqlQuery);
80
+
81
+ /*
82
+ New tables for discount codes
83
+ */
84
+
85
+ //wp_pmpro_discount_codes
86
+ $sqlQuery = "
87
+ CREATE TABLE `" . $wpdb->pmpro_discount_codes . "` (
88
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
89
+ `code` varchar(32) NOT NULL,
90
+ `starts` date NOT NULL,
91
+ `expires` date NOT NULL,
92
+ `uses` int(11) NOT NULL,
93
+ PRIMARY KEY (`id`),
94
+ UNIQUE KEY `code` (`code`),
95
+ KEY `starts` (`starts`),
96
+ KEY `expires` (`expires`)
97
+ );
98
+ ";
99
+ $wpdb->query($sqlQuery);
100
+
101
+ //wp_pmpro_discount_codes_levels
102
+ $sqlQuery = "
103
+ CREATE TABLE `" . $wpdb->pmpro_discount_codes_levels . "` (
104
+ `code_id` int(11) unsigned NOT NULL,
105
+ `level_id` int(11) unsigned NOT NULL,
106
+ `initial_payment` decimal(10,2) NOT NULL DEFAULT '0.00',
107
+ `billing_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
108
+ `cycle_number` int(11) NOT NULL DEFAULT '0',
109
+ `cycle_period` enum('Day','Week','Month','Year') DEFAULT 'Month',
110
+ `billing_limit` int(11) NOT NULL COMMENT 'After how many cycles should billing stop?',
111
+ `trial_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
112
+ `trial_limit` int(11) NOT NULL DEFAULT '0',
113
+ PRIMARY KEY (`code_id`,`level_id`),
114
+ KEY `initial_payment` (`initial_payment`)
115
+ );
116
+ ";
117
+ $wpdb->query($sqlQuery);
118
+
119
+ //wp_pmpro_discount_codes_uses
120
+ $sqlQuery = "
121
+ CREATE TABLE `" . $wpdb->pmpro_discount_codes_uses . "` (
122
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
123
+ `code_id` int(10) unsigned NOT NULL,
124
+ `user_id` int(10) unsigned NOT NULL,
125
+ `order_id` int(10) unsigned NOT NULL,
126
+ `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
127
+ PRIMARY KEY (`id`),
128
+ KEY `user_id` (`user_id`),
129
+ KEY `timestamp` (`timestamp`)
130
+ );
131
+ ";
132
+ $wpdb->query($sqlQuery);
133
+
134
+ pmpro_setOption("db_version", "1.115");
135
+
136
+ //do the next update
137
+ return 1.115;
138
+ }
includes/updates/upgrade_1_2_3.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_2_3()
3
+ {
4
+ global $wpdb;
5
+ $wpdb->hide_errors();
6
+ $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
7
+ $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
8
+ $wpdb->pmpro_memberships_categories = $wpdb->prefix . 'pmpro_memberships_categories';
9
+ $wpdb->pmpro_memberships_pages = $wpdb->prefix . 'pmpro_memberships_pages';
10
+ $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
11
+ $wpdb->pmpro_discount_codes = $wpdb->prefix . 'pmpro_discount_codes';
12
+ $wpdb->pmpro_discount_codes_levels = $wpdb->prefix . 'pmpro_discount_codes_levels';
13
+ $wpdb->pmpro_discount_codes_uses = $wpdb->prefix . 'pmpro_discount_codes_uses';
14
+
15
+ //expiration number and period for levels
16
+ $sqlQuery = "
17
+ ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` ADD `expiration_number` INT UNSIGNED NOT NULL ,
18
+ ADD `expiration_period` ENUM( 'Day', 'Week', 'Month', 'Year' ) NOT NULL
19
+ ";
20
+ $wpdb->query($sqlQuery);
21
+
22
+ //expiration number and period for discount code levels
23
+ $sqlQuery = "
24
+ ALTER TABLE `" . $wpdb->pmpro_discount_codes_levels . "` ADD `expiration_number` INT UNSIGNED NOT NULL ,
25
+ ADD `expiration_period` ENUM( 'Day', 'Week', 'Month', 'Year' ) NOT NULL
26
+ ";
27
+ $wpdb->query($sqlQuery);
28
+
29
+ //end date for members
30
+ $sqlQuery = "
31
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `enddate` DATETIME NULL AFTER `startdate`
32
+ ";
33
+ $wpdb->query($sqlQuery);
34
+
35
+ $sqlQuery = "
36
+ ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD INDEX ( `enddate` )
37
+ ";
38
+ $wpdb->query($sqlQuery);
39
+
40
+ pmpro_setOption("db_version", "1.23");
41
+ return 1.23;
42
+ }
includes/updates/upgrade_1_3_18.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_3_18()
3
+ {
4
+ //setting new email settings defaults
5
+ pmpro_setOption("email_admin_checkout", "1");
6
+ pmpro_setOption("email_admin_changes", "1");
7
+ pmpro_setOption("email_admin_cancels", "1");
8
+ pmpro_setOption("email_admin_billing", "1");
9
+
10
+ pmpro_setOption("db_version", "1.318");
11
+ return 1.318;
12
+ }
includes/updates/upgrade_1_4.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_4()
3
+ {
4
+ global $wpdb;
5
+ $wpdb->hide_errors();
6
+ $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
7
+
8
+ //confirmation message
9
+ $sqlQuery = "
10
+ ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` ADD `confirmation` LONGTEXT NOT NULL AFTER `description`
11
+ ";
12
+ $wpdb->query($sqlQuery);
13
+
14
+ pmpro_setOption("db_version", "1.4");
15
+ return 1.4;
16
+ }
includes/updates/upgrade_1_4_2.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_4_2()
3
+ {
4
+ /*
5
+ Setting the new use_ssl setting.
6
+ PayPal Website Payments Pro, Authorize.net, and Stripe will default to use ssl.
7
+ PayPal Express and the test gateway (no gateway) will default to not use ssl.
8
+ */
9
+ $gateway = pmpro_getOption("gateway");
10
+ if($gateway == "paypal" || $gateway == "authorizenet" || $gateway == "stripe")
11
+ pmpro_setOption("use_ssl", 1);
12
+ else
13
+ pmpro_setOption("use_ssl", 0);
14
+
15
+ pmpro_setOption("db_version", "1.42");
16
+ return 1.42;
17
+ }
includes/updates/upgrade_1_4_8.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_4_8()
3
+ {
4
+ /*
5
+ Adding a billing_country field to the orders table.
6
+ */
7
+
8
+ global $wpdb;
9
+ $wpdb->hide_errors();
10
+ $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
11
+
12
+ //billing_country
13
+ $sqlQuery = "
14
+ ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` ADD `billing_country` VARCHAR( 128 ) NOT NULL AFTER `billing_zip`
15
+ ";
16
+ $wpdb->query($sqlQuery);
17
+
18
+ pmpro_setOption("db_version", "1.48");
19
+ return 1.48;
20
+ }
includes/updates/upgrade_1_5.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_5()
3
+ {
4
+ /*
5
+ Add the id and status fields to pmpro_memberships_users, change primary key to id instead of user_id
6
+ */
7
+
8
+ global $wpdb;
9
+ $wpdb->hide_errors();
10
+ $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
11
+
12
+ //remove primary key
13
+ $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` DROP PRIMARY KEY";
14
+ $wpdb->query($sqlQuery);
15
+
16
+ //id
17
+ $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `id` BIGINT( 20 ) UNSIGNED AUTO_INCREMENT FIRST, ADD PRIMARY KEY(id)";
18
+ $wpdb->query($sqlQuery);
19
+
20
+ //status
21
+ $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `status` varchar( 20 ) NOT NULL DEFAULT 'active' AFTER `trial_limit`";
22
+ $wpdb->query($sqlQuery);
23
+
24
+ pmpro_setOption("db_version", "1.5");
25
+ return 1.5;
26
+ }
includes/updates/upgrade_1_5_9.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_5_9()
3
+ {
4
+ global $wpdb;
5
+ $wpdb->hide_errors();
6
+ $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
7
+
8
+ //fix firstpayment statuses
9
+ $sqlQuery = "UPDATE " . $wpdb->pmpro_membership_orders . " SET status = 'success' WHERE status = 'firstpayment'";
10
+ $wpdb->query($sqlQuery);
11
+
12
+ pmpro_setOption("db_version", "1.59");
13
+ return 1.59;
14
+ }
includes/updates/upgrade_1_6.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_6()
3
+ {
4
+ global $wpdb;
5
+ $wpdb->hide_errors();
6
+ $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
7
+
8
+ //add notes column to orders
9
+ $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` ADD `notes` TEXT NOT NULL";
10
+ $wpdb->query($sqlQuery);
11
+
12
+ pmpro_setOption("db_version", "1.6");
13
+ return 1.6;
14
+ }
includes/updates/upgrade_1_7.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function pmpro_upgrade_1_7()
3
+ {
4
+ pmpro_db_delta(); //just a db delta
5
+
6
+ pmpro_setOption("db_version", "1.7");
7
+ return 1.7;
8
+ }
includes/updates/upgrade_1_8_6_9.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Upgrade to 1.8.6.9
4
+
5
+ 1. Find all orders for stripe gateway with a subscription_transaction_id LIKE 'cus_%'
6
+ 2. Search for an order for the same user_id and membership_id with a subscription_transaction_id LIKE 'sub_%'
7
+ 3. Replace subscription_transaction_id field.
8
+ */
9
+ function pmpro_upgrade_1_8_6_9() {
10
+ global $wpdb;
11
+ $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%'");
12
+
13
+ if(!empty($orders)) {
14
+ if(count($orders) > 100) {
15
+ //if more than 100 orders, we'll need to do this via AJAX
16
+ pmpro_addUpdate('pmpro_upgrade_1_8_6_9_ajax');
17
+ } else {
18
+ //less than 100, let's just do them now
19
+ $subids = array();
20
+
21
+ foreach($orders as $order) {
22
+ if(!empty($subids[$order->subscription_transaction_id])) {
23
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
24
+
25
+ //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
26
+ }
27
+ elseif(isset($subids[$order->subscription_transaction_id])) {
28
+ //no sub id found, so let it go
29
+
30
+ //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . " in cache.<br />";
31
+ }
32
+ else {
33
+ //need to look for a sub id in the database
34
+ $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
35
+ $subids[$order->subscription_transaction_id] = $subid;
36
+ if(!empty($subid)) {
37
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
38
+
39
+ //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
40
+ }
41
+ else {
42
+ //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
43
+ }
44
+ }
45
+ }
46
+ }
47
+ }
48
+
49
+ pmpro_setOption("db_version", "1.869");
50
+ return 1.869;
51
+ }
52
+
53
+ /*
54
+ If a site has > 100 orders then we run this pasrt of the update via AJAX from the updates page.
55
+ */
56
+ function pmpro_upgrade_1_8_6_9_ajax() {
57
+ global $wpdb;
58
+
59
+ //keeping track of which order we're working on
60
+ $last_order_id = get_option('pmpro_upgrade_1_8_6_9_last_order_id', 0);
61
+
62
+ //get orders
63
+ $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE id > $last_order_id AND gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%' ORDER BY id LIMIT 100");
64
+
65
+ if(empty($orders)) {
66
+ //done with this update
67
+ pmpro_removeUpdate('pmpro_upgrade_1_8_6_9_ajax');
68
+ delete_option('pmpro_upgrade_1_8_6_9_last_order_id');
69
+ } else {
70
+ $subids = array(); //cache of subids found
71
+ foreach($orders as $order) {
72
+ $last_order_id = $order->id; //keeping track of the last order we processed
73
+ if(!empty($subids[$order->subscription_transaction_id])) {
74
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
75
+ }
76
+ elseif(isset($subids[$order->subscription_transaction_id])) {
77
+ //no sub id found, so let it go
78
+ }
79
+ else {
80
+ //need to look for a sub id in the database
81
+ $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
82
+ $subids[$order->subscription_transaction_id] = $subid;
83
+ if(!empty($subid)) {
84
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
85
+ }
86
+ else {
87
+ //no sub id found, so let it go
88
+ }
89
+ }
90
+ }
91
+
92
+ update_option('pmpro_upgrade_1_8_6_9_last_order_id', $last_order_id);
93
+ }
94
+ }
includes/updates/upgrade_1_8_7.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Remove extra cron jobs inserted in version 1.8.7 and 1.8.7.1
4
+ */
5
+ function pmpro_upgrade_1_8_7() {
6
+
7
+ //fix cron jobs
8
+ $jobs = _get_cron_array();
9
+
10
+ // Remove all pmpro cron jobs (for now).
11
+ foreach( $jobs as $when => $job_array ) {
12
+
13
+ foreach($job_array as $name => $job) {
14
+ //delete pmpro cron
15
+ if ( false !== stripos( $name, 'pmpro_cron') )
16
+ unset($jobs[$when][$name]);
17
+ }
18
+
19
+ //delete empty cron time slots
20
+ if( empty($jobs[$when]) )
21
+ unset($jobs[$when]);
22
+ }
23
+
24
+ // Save the data
25
+ _set_cron_array($jobs);
26
+
27
+ //add the three we want back
28
+ pmpro_maybe_schedule_event(current_time('timestamp'), 'daily', 'pmpro_cron_expire_memberships');
29
+ pmpro_maybe_schedule_event(current_time('timestamp')+1, 'daily', 'pmpro_cron_expiration_warnings');
30
+ pmpro_maybe_schedule_event(current_time('timestamp'), 'monthly', 'pmpro_cron_credit_card_expiring_warnings');
31
+
32
+ pmpro_setOption("db_version", "1.87");
33
+
34
+ return 1.87;
35
+ }
includes/updates/upgrade_1_8_8.php ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Upgrade to 1.8.8
4
+ * Running the cron job cleanup again.
5
+ * Fixing old Authorize.net orders with empty status.
6
+ * Fixing old $0 Stripe orders.
7
+ */
8
+ function pmpro_upgrade_1_8_8() {
9
+ global $wpdb;
10
+
11
+ //Running the cron job cleanup again.
12
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_8_7.php");
13
+ pmpro_upgrade_1_8_7();
14
+
15
+ //Fixing old Authorize.net orders with empty status.
16
+ $sqlQuery = "UPDATE $wpdb->pmpro_membership_orders SET status = 'success' WHERE gateway = 'authorizenet' AND status = ''";
17
+ $wpdb->query($sqlQuery);
18
+
19
+ //Fixing old $0 Stripe orders. (Sets up update via AJAX)
20
+ $orders = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_membership_orders WHERE gateway = 'stripe' AND total = 0");
21
+ if(!empty($orders))
22
+ pmpro_addUpdate('pmpro_upgrade_1_8_8_ajax');
23
+
24
+ pmpro_setOption("db_version", "1.88");
25
+ return 1.88;
26
+ }
27
+
28
+ /*
29
+ If a site has > 100 orders then we run this pasrt of the update via AJAX from the updates page.
30
+ */
31
+ function pmpro_upgrade_1_8_8_ajax() {
32
+ global $wpdb;
33
+
34
+ //keeping track of which order we're working on
35
+ $last_order_id = get_option('pmpro_upgrade_1_8_8_last_order_id', 0);
36
+
37
+ //Fixing old $0 Stripe orders.
38
+ $orders = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_membership_orders WHERE id > $last_order_id AND gateway = 'stripe' AND total = 0 ORDER BY id LIMIT 2");
39
+
40
+ //track progress
41
+ $first_load = get_transient('pmpro_updates_first_load');
42
+ if($first_load) {
43
+ $total_orders = $wpdb->get_var("SELECT COUNT(id) FROM $wpdb->pmpro_membership_orders WHERE id > $last_order_id AND gateway = 'stripe' AND total = 0");
44
+ update_option('pmpro_upgrade_1_8_8_total', $total_orders, 'no');
45
+ $progress = 0;
46
+ } else {
47
+ $total_orders = get_option('pmpro_upgrade_1_8_8_total', 0);
48
+ $progress = get_option('pmpro_upgrade_1_8_8_progress', 0);
49
+ }
50
+ update_option('pmpro_upgrade_1_8_8_progress', $progress + count($orders), 'no');
51
+ global $pmpro_updates_progress;
52
+ if($total_orders > 0)
53
+ $pmpro_updates_progress = "[" . $progress . "/" . $total_orders . "]";
54
+ else
55
+ $pmpro_updates_progress = "";
56
+
57
+ if(empty($orders)) {
58
+ //done with this update
59
+ pmpro_removeUpdate('pmpro_upgrade_1_8_8_ajax');
60
+ delete_option('pmpro_upgrade_1_8_8_last_order_id');
61
+ delete_option('pmpro_upgrade_1_8_8_total');
62
+ delete_option('pmpro_upgrade_1_8_8_progress');
63
+ } else {
64
+ //need to keep working
65
+ foreach($orders as $order_id) {
66
+ $last_order_id = $order_id; //keeping track of the last order we processed
67
+
68
+ //get order
69
+ $order = new MemberOrder($order_id);
70
+
71
+ //get customer
72
+ $order->Gateway->getCustomer($order);
73
+
74
+ //get all invoices
75
+ if(!empty($order->Gateway->customer)) {
76
+ try {
77
+ $invoices = $order->Gateway->customer->invoices();
78
+ } catch(Exception $e) {
79
+ //probably no invoices, stay quiet
80
+ }
81
+
82
+ //get our invoice
83
+ if(!empty($invoices)) {
84
+ try {
85
+ $invoice = $invoices->retrieve($order->payment_transaction_id);
86
+ } catch(Exception $e) {
87
+ //probably no invoice, stay quiet
88
+ }
89
+
90
+ //get total
91
+ if(!empty($invoice)) {
92
+ if($invoice->total > 0) {
93
+ //invoice we accidentally saved $0 for. update the real total.
94
+ $order->subtotal = (! empty( $invoice->subtotal ) ? $invoice->subtotal / 100 : 0);
95
+ $order->tax = (! empty($invoice->tax) ? $invoice->tax / 100 : null);
96
+ $order->total = (! empty($invoice->total) ? $invoice->total / 100 : 0);
97
+ $order->saveOrder();
98
+ } else {
99
+ //we don't want to track $0 invoices. delete it.
100
+ $order->deleteMe();
101
+ }
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ update_option('pmpro_upgrade_1_8_8_last_order_id', $last_order_id, 'no');
108
+ }
109
+ }
includes/upgradecheck.php CHANGED
@@ -14,35 +14,65 @@ function pmpro_checkForUpgrades()
14
  if(!$table_exists)
15
  $pmpro_db_version = 0;
16
 
17
- if(!$pmpro_db_version)
 
 
18
  $pmpro_db_version = pmpro_upgrade_1();
 
19
 
20
- if($pmpro_db_version < 1.115)
 
 
21
  $pmpro_db_version = pmpro_upgrade_1_1_15();
 
22
 
23
- if($pmpro_db_version < 1.23)
 
 
24
  $pmpro_db_version = pmpro_upgrade_1_2_3();
 
25
 
26
- if($pmpro_db_version < 1.318)
 
 
27
  $pmpro_db_version = pmpro_upgrade_1_3_18();
 
28
 
29
- if($pmpro_db_version < 1.4)
 
 
30
  $pmpro_db_version = pmpro_upgrade_1_4();
 
31
 
32
- if($pmpro_db_version < 1.42)
 
 
33
  $pmpro_db_version = pmpro_upgrade_1_4_2();
 
34
 
35
- if($pmpro_db_version < 1.48)
 
 
36
  $pmpro_db_version = pmpro_upgrade_1_4_8();
 
37
 
38
- if($pmpro_db_version < 1.5)
 
 
39
  $pmpro_db_version = pmpro_upgrade_1_5();
 
40
 
41
- if($pmpro_db_version < 1.59)
 
 
42
  $pmpro_db_version = pmpro_upgrade_1_5_9();
 
43
 
44
- if($pmpro_db_version < 1.6)
 
 
45
  $pmpro_db_version = pmpro_upgrade_1_6();
 
46
 
47
  //fix for fresh 1.7 installs
48
  if($pmpro_db_version == 1.7)
@@ -53,6 +83,7 @@ function pmpro_checkForUpgrades()
53
  if($wpdb->last_error == "Unknown column 'id' in 'field list'")
54
  {
55
  //redo 1.5 fix
 
56
  pmpro_upgrade_1_5();
57
  }
58
 
@@ -70,6 +101,7 @@ function pmpro_checkForUpgrades()
70
  $pmpro_db_version = 1.71;
71
  }
72
 
 
73
  if($pmpro_db_version < 1.72)
74
  {
75
  //schedule the credit card expiring cron
@@ -79,12 +111,7 @@ function pmpro_checkForUpgrades()
79
  $pmpro_db_version = 1.72;
80
  }
81
 
82
- /*
83
- 1.7.3
84
- - default Stripe Billing Fields to true
85
- - unless Stripe Lite is activated, then deactivate Stripe Lite and set Stripe Billing Fields to false
86
- */
87
-
88
  if($pmpro_db_version < 1.79)
89
  {
90
  //need to register caps for menu
@@ -107,500 +134,27 @@ function pmpro_checkForUpgrades()
107
  }
108
 
109
  //fix subscription ids on stripe orders
 
110
  if($pmpro_db_version < 1.869) {
111
  $pmpro_db_version = pmpro_upgrade_1_8_6_9();
112
  }
113
 
114
  //Remove extra cron jobs inserted in version 1.8.7 and 1.8.7.1
115
- if($pmpro_db_version < 1.87) {
 
116
  $pmpro_db_version = pmpro_upgrade_1_8_7();
117
  }
118
- }
119
-
120
- /*
121
- Remove extra cron jobs inserted in version 1.8.7 and 1.8.7.1
122
- */
123
- function pmpro_upgrade_1_8_7() {
124
 
125
- //fix cron jobs
126
- $jobs = _get_cron_array();
127
-
128
- // Remove all pmpro cron jobs (for now).
129
- foreach( $jobs as $when => $job_array ) {
130
-
131
- foreach($job_array as $name => $job) {
132
- //delete pmpro cron
133
- if ( false !== stripos( $name, 'pmpro_cron') )
134
- unset($jobs[$when][$name]);
135
- }
136
-
137
- //delete empty cron time slots
138
- if( empty($jobs[$when]) )
139
- unset($jobs[$when]);
140
- }
141
-
142
- // Save the data
143
- _set_cron_array($jobs);
144
-
145
- //add the three we want back
146
- pmpro_maybe_schedule_event(current_time('timestamp'), 'daily', 'pmpro_cron_expire_memberships');
147
- pmpro_maybe_schedule_event(current_time('timestamp')+1, 'daily', 'pmpro_cron_expiration_warnings');
148
- pmpro_maybe_schedule_event(current_time('timestamp'), 'monthly', 'pmpro_cron_credit_card_expiring_warnings');
149
-
150
- pmpro_setOption("db_version", "1.87");
151
-
152
- return 1.87;
153
- }
154
-
155
- /*
156
- Upgrade to 1.8.6.9
157
-
158
- 1. Find all orders for stripe gateway with a subscription_transaction_id LIKE 'cus_%'
159
- 2. Search for an order for the same user_id and membership_id with a subscription_transaction_id LIKE 'sub_%'
160
- 3. Replace subscription_transaction_id field.
161
- */
162
- function pmpro_upgrade_1_8_6_9() {
163
- global $wpdb;
164
- $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%'");
165
-
166
- if(!empty($orders)) {
167
- if(count($orders) > 100) {
168
- //if more than 100 orders, we'll need to do this via AJAX
169
- pmpro_addUpdate('pmpro_upgrade_1_8_6_9_ajax');
170
- } else {
171
- //less than 100, let's just do them now
172
- $subids = array();
173
-
174
- foreach($orders as $order) {
175
- if(!empty($subids[$order->subscription_transaction_id])) {
176
- $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
177
-
178
- //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
179
- }
180
- elseif(isset($subids[$order->subscription_transaction_id])) {
181
- //no sub id found, so let it go
182
-
183
- //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . " in cache.<br />";
184
- }
185
- else {
186
- //need to look for a sub id in the database
187
- $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
188
- $subids[$order->subscription_transaction_id] = $subid;
189
- if(!empty($subid)) {
190
- $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
191
-
192
- //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
193
- }
194
- else {
195
- //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
196
- }
197
- }
198
- }
199
- }
200
- }
201
-
202
- pmpro_setOption("db_version", "1.869");
203
- return 1.869;
204
- }
205
-
206
- /*
207
- If a site has > 100 orders then we run this pasrt of the update via AJAX from the updates page.
208
- */
209
- function pmpro_upgrade_1_8_6_9_ajax() {
210
- global $wpdb;
211
-
212
- //keeping track of which order we're working on
213
- $last_order_id = get_option('pmpro_upgrade_1_8_6_9_last_order_id', 0);
214
-
215
- //get orders
216
- $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE id > $last_order_id AND gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%' ORDER BY id LIMIT 100");
217
-
218
- if(empty($orders)) {
219
- //done with this update
220
- pmpro_removeUpdate('pmpro_upgrade_1_8_6_9_ajax');
221
- delete_option('pmpro_upgrade_1_8_6_9_last_order_id');
222
- } else {
223
- $subids = array(); //cache of subids found
224
- foreach($orders as $order) {
225
- $last_order_id = $order->id; //keeping track of the last order we processed
226
- if(!empty($subids[$order->subscription_transaction_id])) {
227
- $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
228
- }
229
- elseif(isset($subids[$order->subscription_transaction_id])) {
230
- //no sub id found, so let it go
231
- }
232
- else {
233
- //need to look for a sub id in the database
234
- $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
235
- $subids[$order->subscription_transaction_id] = $subid;
236
- if(!empty($subid)) {
237
- $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
238
- }
239
- else {
240
- //no sub id found, so let it go
241
- }
242
- }
243
- }
244
-
245
- update_option('pmpro_upgrade_1_8_6_9_last_order_id', $last_order_id);
246
- }
247
- }
248
-
249
- function pmpro_upgrade_1_7()
250
- {
251
- pmpro_db_delta(); //just a db delta
252
-
253
- pmpro_setOption("db_version", "1.7");
254
- return 1.7;
255
- }
256
-
257
- function pmpro_upgrade_1_6()
258
- {
259
- global $wpdb;
260
- $wpdb->hide_errors();
261
- $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
262
-
263
- //add notes column to orders
264
- $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` ADD `notes` TEXT NOT NULL";
265
- $wpdb->query($sqlQuery);
266
-
267
- pmpro_setOption("db_version", "1.6");
268
- return 1.6;
269
- }
270
-
271
- function pmpro_upgrade_1_5_9()
272
- {
273
- global $wpdb;
274
- $wpdb->hide_errors();
275
- $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
276
-
277
- //fix firstpayment statuses
278
- $sqlQuery = "UPDATE " . $wpdb->pmpro_membership_orders . " SET status = 'success' WHERE status = 'firstpayment'";
279
- $wpdb->query($sqlQuery);
280
-
281
- pmpro_setOption("db_version", "1.59");
282
- return 1.59;
283
- }
284
-
285
- function pmpro_upgrade_1_5()
286
- {
287
- /*
288
- Add the id and status fields to pmpro_memberships_users, change primary key to id instead of user_id
289
- */
290
-
291
- global $wpdb;
292
- $wpdb->hide_errors();
293
- $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
294
-
295
- //remove primary key
296
- $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` DROP PRIMARY KEY";
297
- $wpdb->query($sqlQuery);
298
-
299
- //id
300
- $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `id` BIGINT( 20 ) UNSIGNED AUTO_INCREMENT FIRST, ADD PRIMARY KEY(id)";
301
- $wpdb->query($sqlQuery);
302
-
303
- //status
304
- $sqlQuery = "ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `status` varchar( 20 ) NOT NULL DEFAULT 'active' AFTER `trial_limit`";
305
- $wpdb->query($sqlQuery);
306
-
307
- pmpro_setOption("db_version", "1.5");
308
- return 1.5;
309
- }
310
-
311
- function pmpro_upgrade_1_4_8()
312
- {
313
- /*
314
- Adding a billing_country field to the orders table.
315
- */
316
-
317
- global $wpdb;
318
- $wpdb->hide_errors();
319
- $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
320
-
321
- //billing_country
322
- $sqlQuery = "
323
- ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` ADD `billing_country` VARCHAR( 128 ) NOT NULL AFTER `billing_zip`
324
- ";
325
- $wpdb->query($sqlQuery);
326
-
327
- pmpro_setOption("db_version", "1.48");
328
- return 1.48;
329
- }
330
-
331
- function pmpro_upgrade_1_4_2()
332
- {
333
- /*
334
- Setting the new use_ssl setting.
335
- PayPal Website Payments Pro, Authorize.net, and Stripe will default to use ssl.
336
- PayPal Express and the test gateway (no gateway) will default to not use ssl.
337
- */
338
- $gateway = pmpro_getOption("gateway");
339
- if($gateway == "paypal" || $gateway == "authorizenet" || $gateway == "stripe")
340
- pmpro_setOption("use_ssl", 1);
341
- else
342
- pmpro_setOption("use_ssl", 0);
343
-
344
- pmpro_setOption("db_version", "1.42");
345
- return 1.42;
346
- }
347
-
348
- function pmpro_upgrade_1_4()
349
- {
350
- global $wpdb;
351
- $wpdb->hide_errors();
352
- $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
353
-
354
- //confirmation message
355
- $sqlQuery = "
356
- ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` ADD `confirmation` LONGTEXT NOT NULL AFTER `description`
357
- ";
358
- $wpdb->query($sqlQuery);
359
-
360
- pmpro_setOption("db_version", "1.4");
361
- return 1.4;
362
- }
363
-
364
- function pmpro_upgrade_1_3_18()
365
- {
366
- //setting new email settings defaults
367
- pmpro_setOption("email_admin_checkout", "1");
368
- pmpro_setOption("email_admin_changes", "1");
369
- pmpro_setOption("email_admin_cancels", "1");
370
- pmpro_setOption("email_admin_billing", "1");
371
-
372
- pmpro_setOption("db_version", "1.318");
373
- return 1.318;
374
- }
375
-
376
- function pmpro_upgrade_1_2_3()
377
- {
378
- global $wpdb;
379
- $wpdb->hide_errors();
380
- $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
381
- $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
382
- $wpdb->pmpro_memberships_categories = $wpdb->prefix . 'pmpro_memberships_categories';
383
- $wpdb->pmpro_memberships_pages = $wpdb->prefix . 'pmpro_memberships_pages';
384
- $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
385
- $wpdb->pmpro_discount_codes = $wpdb->prefix . 'pmpro_discount_codes';
386
- $wpdb->pmpro_discount_codes_levels = $wpdb->prefix . 'pmpro_discount_codes_levels';
387
- $wpdb->pmpro_discount_codes_uses = $wpdb->prefix . 'pmpro_discount_codes_uses';
388
-
389
- //expiration number and period for levels
390
- $sqlQuery = "
391
- ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` ADD `expiration_number` INT UNSIGNED NOT NULL ,
392
- ADD `expiration_period` ENUM( 'Day', 'Week', 'Month', 'Year' ) NOT NULL
393
- ";
394
- $wpdb->query($sqlQuery);
395
-
396
- //expiration number and period for discount code levels
397
- $sqlQuery = "
398
- ALTER TABLE `" . $wpdb->pmpro_discount_codes_levels . "` ADD `expiration_number` INT UNSIGNED NOT NULL ,
399
- ADD `expiration_period` ENUM( 'Day', 'Week', 'Month', 'Year' ) NOT NULL
400
- ";
401
- $wpdb->query($sqlQuery);
402
-
403
- //end date for members
404
- $sqlQuery = "
405
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `enddate` DATETIME NULL AFTER `startdate`
406
- ";
407
- $wpdb->query($sqlQuery);
408
-
409
- $sqlQuery = "
410
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD INDEX ( `enddate` )
411
- ";
412
- $wpdb->query($sqlQuery);
413
-
414
- pmpro_setOption("db_version", "1.23");
415
- return 1.23;
416
- }
417
-
418
- function pmpro_upgrade_1_1_15()
419
- {
420
- /*
421
- DB table setup
422
- */
423
- global $wpdb;
424
- $wpdb->hide_errors();
425
- $wpdb->pmpro_membership_levels = $wpdb->prefix . 'pmpro_membership_levels';
426
- $wpdb->pmpro_memberships_users = $wpdb->prefix . 'pmpro_memberships_users';
427
- $wpdb->pmpro_memberships_categories = $wpdb->prefix . 'pmpro_memberships_categories';
428
- $wpdb->pmpro_memberships_pages = $wpdb->prefix . 'pmpro_memberships_pages';
429
- $wpdb->pmpro_membership_orders = $wpdb->prefix . 'pmpro_membership_orders';
430
- $wpdb->pmpro_discount_codes = $wpdb->prefix . 'pmpro_discount_codes';
431
- $wpdb->pmpro_discount_codes_levels = $wpdb->prefix . 'pmpro_discount_codes_levels';
432
- $wpdb->pmpro_discount_codes_uses = $wpdb->prefix . 'pmpro_discount_codes_uses';
433
-
434
- /*
435
- Changing some id columns to unsigned.
436
- */
437
- $sqlQuery = "
438
- ALTER TABLE `" . $wpdb->pmpro_membership_levels . "` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT
439
- ";
440
- $wpdb->query($sqlQuery);
441
-
442
- $sqlQuery = "
443
- ALTER TABLE `" . $wpdb->pmpro_memberships_categories . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
444
- ";
445
- $wpdb->query($sqlQuery);
446
-
447
- $sqlQuery = "
448
- ALTER TABLE `" . $wpdb->pmpro_memberships_categories . "` CHANGE `category_id` `category_id` INT( 11 ) UNSIGNED NOT NULL
449
- ";
450
- $wpdb->query($sqlQuery);
451
-
452
- $sqlQuery = "
453
- ALTER TABLE `" . $wpdb->pmpro_memberships_pages . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
454
- ";
455
- $wpdb->query($sqlQuery);
456
-
457
- $sqlQuery = "
458
- ALTER TABLE `" . $wpdb->pmpro_memberships_pages . "` CHANGE `page_id` `page_id` INT( 11 ) UNSIGNED NOT NULL
459
- ";
460
- $wpdb->query($sqlQuery);
461
-
462
- $sqlQuery = "
463
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` CHANGE `user_id` `user_id` INT( 11 ) UNSIGNED NOT NULL
464
- ";
465
- $wpdb->query($sqlQuery);
466
-
467
- $sqlQuery = "
468
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL
469
- ";
470
- $wpdb->query($sqlQuery);
471
-
472
- $sqlQuery = "
473
- ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT
474
- ";
475
- $wpdb->query($sqlQuery);
476
-
477
- $sqlQuery = "
478
- ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `user_id` `user_id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0'
479
- ";
480
- $wpdb->query($sqlQuery);
481
-
482
- $sqlQuery = "
483
- ALTER TABLE `" . $wpdb->pmpro_membership_orders . "` CHANGE `membership_id` `membership_id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0'
484
- ";
485
- $wpdb->query($sqlQuery);
486
-
487
- $sqlQuery = "
488
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD `code_id` INT UNSIGNED NOT NULL AFTER `membership_id` ;
489
- ";
490
- $wpdb->query($sqlQuery);
491
-
492
- $sqlQuery = "
493
- ALTER TABLE `" . $wpdb->pmpro_memberships_users . "` ADD INDEX ( `code_id` )
494
- ";
495
- $wpdb->query($sqlQuery);
496
-
497
- /*
498
- New tables for discount codes
499
- */
500
-
501
- //wp_pmpro_discount_codes
502
- $sqlQuery = "
503
- CREATE TABLE `" . $wpdb->pmpro_discount_codes . "` (
504
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
505
- `code` varchar(32) NOT NULL,
506
- `starts` date NOT NULL,
507
- `expires` date NOT NULL,
508
- `uses` int(11) NOT NULL,
509
- PRIMARY KEY (`id`),
510
- UNIQUE KEY `code` (`code`),
511
- KEY `starts` (`starts`),
512
- KEY `expires` (`expires`)
513
- );
514
- ";
515
- $wpdb->query($sqlQuery);
516
-
517
- //wp_pmpro_discount_codes_levels
518
- $sqlQuery = "
519
- CREATE TABLE `" . $wpdb->pmpro_discount_codes_levels . "` (
520
- `code_id` int(11) unsigned NOT NULL,
521
- `level_id` int(11) unsigned NOT NULL,
522
- `initial_payment` decimal(10,2) NOT NULL DEFAULT '0.00',
523
- `billing_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
524
- `cycle_number` int(11) NOT NULL DEFAULT '0',
525
- `cycle_period` enum('Day','Week','Month','Year') DEFAULT 'Month',
526
- `billing_limit` int(11) NOT NULL COMMENT 'After how many cycles should billing stop?',
527
- `trial_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
528
- `trial_limit` int(11) NOT NULL DEFAULT '0',
529
- PRIMARY KEY (`code_id`,`level_id`),
530
- KEY `initial_payment` (`initial_payment`)
531
- );
532
- ";
533
- $wpdb->query($sqlQuery);
534
-
535
- //wp_pmpro_discount_codes_uses
536
- $sqlQuery = "
537
- CREATE TABLE `" . $wpdb->pmpro_discount_codes_uses . "` (
538
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
539
- `code_id` int(10) unsigned NOT NULL,
540
- `user_id` int(10) unsigned NOT NULL,
541
- `order_id` int(10) unsigned NOT NULL,
542
- `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
543
- PRIMARY KEY (`id`),
544
- KEY `user_id` (`user_id`),
545
- KEY `timestamp` (`timestamp`)
546
- );
547
- ";
548
- $wpdb->query($sqlQuery);
549
-
550
- pmpro_setOption("db_version", "1.115");
551
-
552
- //do the next update
553
- return pmpro_upgrade_1_2_2();
554
- }
555
-
556
- function pmpro_upgrade_1()
557
- {
558
  /*
559
- default options
560
- */
561
- $nonmembertext = sprintf( __( 'This content is for !!levels!! members only.<br /><a href="%s">Register</a>', 'pmpro' ), wp_login_url() . "?action=register" );
562
- pmpro_setOption("nonmembertext", $nonmembertext);
563
-
564
- $notloggedintext = sprintf( __( 'This content is for !!levels!! members only.<br /><a href="%s">Log In</a> <a href="%s">Register</a>', 'pmpro' ), wp_login_url(), wp_login_url() . "?action=register" );
565
- '?action=register">Register</a>';
566
- pmpro_setOption("notloggedintext", $notloggedintext);
567
-
568
- $rsstext = __( "This content is for !!levels!! members only. Visit the site and log in/register to read.", 'pmpro' );
569
- pmpro_setOption("rsstext", $rsstext);
570
-
571
- $gateway_environment = "sandbox";
572
- pmpro_setOption("gateway_environment", $gateway_environment);
573
-
574
- $pmpro_currency = "USD";
575
- pmpro_setOption("currency", $pmpro_currency);
576
-
577
- $pmpro_accepted_credit_cards = "Visa,Mastercard,American Express,Discover";
578
- pmpro_setOption("accepted_credit_cards", $pmpro_accepted_credit_cards);
579
-
580
- $parsed = parse_url(home_url());
581
- $hostname = $parsed['host'];
582
- $hostparts = explode(".", $hostname);
583
- $email_domain = $hostparts[count($hostparts) - 2] . "." . $hostparts[count($hostparts) - 1];
584
- $from_email = "wordpress@" . $email_domain;
585
- pmpro_setOption("from_email", $from_email);
586
-
587
- $from_name = "WordPress";
588
- pmpro_setOption("from_name", $from_name);
589
-
590
- //setting new email settings defaults
591
- pmpro_setOption("email_admin_checkout", "1");
592
- pmpro_setOption("email_admin_changes", "1");
593
- pmpro_setOption("email_admin_cancels", "1");
594
- pmpro_setOption("email_admin_billing", "1");
595
-
596
- pmpro_setOption("tospage", "");
597
-
598
- //db update
599
- pmpro_db_delta();
600
-
601
- //update version and return
602
- pmpro_setOption("db_version", "1.71"); //no need to run other updates
603
- return 1.71;
604
  }
605
 
606
  function pmpro_db_delta()
14
  if(!$table_exists)
15
  $pmpro_db_version = 0;
16
 
17
+ //default options
18
+ if(!$pmpro_db_version) {
19
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1.php");
20
  $pmpro_db_version = pmpro_upgrade_1();
21
+ }
22
 
23
+ //upgrading from early early versions of PMPro
24
+ if($pmpro_db_version < 1.115) {
25
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_1_15.php");
26
  $pmpro_db_version = pmpro_upgrade_1_1_15();
27
+ }
28
 
29
+ //upgrading from early early versions of PMPro
30
+ if($pmpro_db_version < 1.23) {
31
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_2_3.php");
32
  $pmpro_db_version = pmpro_upgrade_1_2_3();
33
+ }
34
 
35
+ //upgrading from early early versions of PMPro
36
+ if($pmpro_db_version < 1.318) {
37
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_3_18.php");
38
  $pmpro_db_version = pmpro_upgrade_1_3_18();
39
+ }
40
 
41
+ //upgrading from early early versions of PMPro
42
+ if($pmpro_db_version < 1.4) {
43
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_4.php");
44
  $pmpro_db_version = pmpro_upgrade_1_4();
45
+ }
46
 
47
+ //upgrading from early early versions of PMPro
48
+ if($pmpro_db_version < 1.42) {
49
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_4_2.php");
50
  $pmpro_db_version = pmpro_upgrade_1_4_2();
51
+ }
52
 
53
+ //upgrading from early early versions of PMPro
54
+ if($pmpro_db_version < 1.48) {
55
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_4_8.php");
56
  $pmpro_db_version = pmpro_upgrade_1_4_8();
57
+ }
58
 
59
+ //upgrading from early early versions of PMPro
60
+ if($pmpro_db_version < 1.5) {
61
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_5.php");
62
  $pmpro_db_version = pmpro_upgrade_1_5();
63
+ }
64
 
65
+ //upgrading from early early versions of PMPro
66
+ if($pmpro_db_version < 1.59) {
67
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_5_9.php");
68
  $pmpro_db_version = pmpro_upgrade_1_5_9();
69
+ }
70
 
71
+ //upgrading from early early versions of PMPro
72
+ if($pmpro_db_version < 1.6) {
73
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_6.php");
74
  $pmpro_db_version = pmpro_upgrade_1_6();
75
+ }
76
 
77
  //fix for fresh 1.7 installs
78
  if($pmpro_db_version == 1.7)
83
  if($wpdb->last_error == "Unknown column 'id' in 'field list'")
84
  {
85
  //redo 1.5 fix
86
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_5.php");
87
  pmpro_upgrade_1_5();
88
  }
89
 
101
  $pmpro_db_version = 1.71;
102
  }
103
 
104
+ //schedule the credit card expiring cron
105
  if($pmpro_db_version < 1.72)
106
  {
107
  //schedule the credit card expiring cron
111
  $pmpro_db_version = 1.72;
112
  }
113
 
114
+ //register capabilities required for menus now
 
 
 
 
 
115
  if($pmpro_db_version < 1.79)
116
  {
117
  //need to register caps for menu
134
  }
135
 
136
  //fix subscription ids on stripe orders
137
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_8_6_9.php"); //need to include this for AJAX calls
138
  if($pmpro_db_version < 1.869) {
139
  $pmpro_db_version = pmpro_upgrade_1_8_6_9();
140
  }
141
 
142
  //Remove extra cron jobs inserted in version 1.8.7 and 1.8.7.1
143
+ if($pmpro_db_version < 1.87) {
144
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_8_7.php");
145
  $pmpro_db_version = pmpro_upgrade_1_8_7();
146
  }
 
 
 
 
 
 
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  /*
149
+ v1.8.8
150
+ * Running the cron job cleanup again.
151
+ * Fixing old $0 Stripe orders.
152
+ * Fixing old Authorize.net orders with empty status.
153
+ */
154
+ require_once(PMPRO_DIR . "/includes/updates/upgrade_1_8_8.php");
155
+ if($pmpro_db_version < 1.88) {
156
+ $pmpro_db_version = pmpro_upgrade_1_8_8();
157
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  }
159
 
160
  function pmpro_db_delta()
js/updates.js CHANGED
@@ -21,12 +21,12 @@ jQuery(document).ready(function() {
21
  alert('Error with update. Try refreshing.');
22
  },
23
  success: function(responseHTML){
24
- if (responseHTML == 'error')
25
  {
26
  alert('Error with update. Try refreshing.');
27
  document.title = $title;
28
  }
29
- else if(responseHTML == 'done')
30
  {
31
  $status.html($status.html() + '\nDone!');
32
  document.title = '! ' + $title;
@@ -36,9 +36,13 @@ jQuery(document).ready(function() {
36
  else
37
  {
38
  $count++;
39
- $status.html($status.html() + responseHTML);
 
 
 
 
40
  document.title = $cycles[$count%4] + ' ' + $title;
41
- $update_timer = setTimeout(function() { pmpro_updates();}, 500);
42
  }
43
 
44
  //scroll the text area unless the mouse is over it
@@ -49,6 +53,6 @@ jQuery(document).ready(function() {
49
  });
50
  }
51
 
52
- var $update_timer = setTimeout(function() { pmpro_updates();}, 500);
53
  }
54
  });
21
  alert('Error with update. Try refreshing.');
22
  },
23
  success: function(responseHTML){
24
+ if (responseHTML.indexOf('[error]') > -1)
25
  {
26
  alert('Error with update. Try refreshing.');
27
  document.title = $title;
28
  }
29
+ else if(responseHTML.indexOf('[done]') > -1)
30
  {
31
  $status.html($status.html() + '\nDone!');
32
  document.title = '! ' + $title;
36
  else
37
  {
38
  $count++;
39
+ re = /\[.*\]/;
40
+ progress = re.exec(responseHTML);
41
+ if(progress.length > 0)
42
+ jQuery('#pmpro_updates_progress').html(progress + ' ' + parseInt(eval(progress[0].replace(/\[|\]/ig, ''))*100) + '%');
43
+ $status.html($status.html() + responseHTML.replace(re, ''));
44
  document.title = $cycles[$count%4] + ' ' + $title;
45
+ $update_timer = setTimeout(function() { pmpro_updates();}, 200);
46
  }
47
 
48
  //scroll the text area unless the mouse is over it
53
  });
54
  }
55
 
56
+ var $update_timer = setTimeout(function() { pmpro_updates();}, 200);
57
  }
58
  });
languages/email/ca/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat el teu nivell de subscripció.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Si no has demanat aquest canvi i vols més informació, si us plau contacta amb nosaltres a !!siteemail!!</p>
6
+
7
+ <p>Log in al teu compte de subscripció aquí: !!login_link!!</p>
languages/email/ca/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat un nivell de subscripció per !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Log in al teu WordPress admin aquí: !!login_link!!</p>
languages/email/ca/billable_invoice.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha la teva factura #: !!order_code!!</p>
2
+
3
+ !!invoice!!
4
+
5
+ <p>Log in al teu compte aquí: !!login_link!!</p>
6
+ <p>Per veure una versió online de la teva factura, clica aquí: !!invoice_link!!</p>
languages/email/ca/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La teva informació de facturació a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Expira: !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Si no has demanat un canvi de la informació de facturació, si us plau contacta amb nosaltres a !!siteemail!!</p>
15
+
16
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La informació de facturació per a !!display_name!! a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Expira: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Log in al teu escriptori de WordPress aquí: !!login_link!!</p>
languages/email/ca/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>L'actual pagament de subscripció per !!sitename!! ha fallat. <strong>Si us plau, clica el següent enllaç per log in i actualitzar la teva informació de facturació i així evitar la suspensió del compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més recent que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Error de pagament</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>La informació més recent del compte en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha esta cancel·lada.</p>
2
+
3
+ <p>Si no havies sol·licitat aquesta cancel·lació i vols més informació, si us plau contacta'ns a !!siteemail!!</p>
languages/email/ca/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>La subscripció de !!user_login!! a !!sitename!! ha estat cancel·lada.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+ <p>Data d'inici: !!startdate!!</p>
6
+ <p>Data de cancel·lació: !!enddate!!</p>
7
+
8
+ <p>Log in al teu escriptori d'administrador de WordPress aquí: !!login_link!!</p>
languages/email/ca/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+
3
+ <p><strong>Ha escollit pagar amb check.</strong></p>
4
+
5
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_express.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_free_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expira: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expires: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_paid_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte i un rebut per la teva factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/checkout_trial_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls de la nova subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/credit_card_expiring.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>El pagament utilitzat per la teva subscripció a !!sitename!! aviat caducarà. <strong>Si us plau clica el següent link per log in per a actualitzar la teva informació de facturació i així evitar que se't suspengui el compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més actualitzada que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_name!!</br />
7
+ !!billing_address!!
8
+ </p>
9
+
10
+ <p>
11
+ !!cardtype!!: !!accountnumber!!<br />
12
+ Expira: !!expirationmonth!!/!!expirationyear!!
13
+ </p>
languages/email/ca/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/ca/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Cordialment,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/ca/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Benvolgut/da !!name!!,</p>
languages/email/ca/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha el rebut de la teva última factura.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
6
+ Total: !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Informació de facturació:<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Expira: !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Log in al teu compte aquí: !!login_link!!</p>
19
+ <p>Per veure la versió online d'aquesta factura, clica aquí: !!invoice_link!!</p>
languages/email/ca/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha finalitzat.</p>
2
+
3
+ <p>Moltes gràcies.</p>
4
+
5
+ <p>Pots veure les subscripcions que tenim actualment aquí: !!levels_link!!</p>
6
+
7
+ <p>Log in per editar el teu compte aquí: !!login_link!!</p>
languages/email/ca/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. Et recordem que la teva subscripció finalitzarà !!enddate!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu període de prova ha acabat !!trial_end!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Se't cobrarà !!trial_amount!! a !!billing_amount!! cada !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat el teu nivell de subscripció.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Si no has demanat aquest canvi i vols més informació, si us plau contacta amb nosaltres a !!siteemail!!</p>
6
+
7
+ <p>Log in al teu compte de subscripció aquí: !!login_link!!</p>
languages/email/ca_AD/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat un nivell de subscripció per !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Log in al teu WordPress admin aquí: !!login_link!!</p>
languages/email/ca_AD/billable_invoice.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha la teva factura #: !!order_code!!</p>
2
+
3
+ !!invoice!!
4
+
5
+ <p>Log in al teu compte aquí: !!login_link!!</p>
6
+ <p>Per veure una versió online de la teva factura, clica aquí: !!invoice_link!!</p>
languages/email/ca_AD/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La teva informació de facturació a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Expira: !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Si no has demanat un canvi de la informació de facturació, si us plau contacta amb nosaltres a !!siteemail!!</p>
15
+
16
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La informació de facturació per a !!display_name!! a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Expira: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Log in al teu escriptori de WordPress aquí: !!login_link!!</p>
languages/email/ca_AD/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>L'actual pagament de subscripció per !!sitename!! ha fallat. <strong>Si us plau, clica el següent enllaç per log in i actualitzar la teva informació de facturació i així evitar la suspensió del compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més recent que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca_AD/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Error de pagament</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>La informació més recent del compte en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca_AD/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha esta cancel·lada.</p>
2
+
3
+ <p>Si no havies sol·licitat aquesta cancel·lació i vols més informació, si us plau contacta'ns a !!siteemail!!</p>
languages/email/ca_AD/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>La subscripció de !!user_login!! a !!sitename!! ha estat cancel·lada.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+ <p>Data d'inici: !!startdate!!</p>
6
+ <p>Data de cancel·lació: !!enddate!!</p>
7
+
8
+ <p>Log in al teu escriptori d'administrador de WordPress aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+
3
+ <p><strong>Ha escollit pagar amb check.</strong></p>
4
+
5
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_express.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_free_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expira: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expires: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_paid_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte i un rebut per la teva factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/checkout_trial_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls de la nova subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/credit_card_expiring.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>El pagament utilitzat per la teva subscripció a !!sitename!! aviat caducarà. <strong>Si us plau clica el següent link per log in per a actualitzar la teva informació de facturació i així evitar que se't suspengui el compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més actualitzada que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_name!!</br />
7
+ !!billing_address!!
8
+ </p>
9
+
10
+ <p>
11
+ !!cardtype!!: !!accountnumber!!<br />
12
+ Expira: !!expirationmonth!!/!!expirationyear!!
13
+ </p>
languages/email/ca_AD/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/ca_AD/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Cordialment,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/ca_AD/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Benvolgut/da !!name!!,</p>
languages/email/ca_AD/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha el rebut de la teva última factura.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
6
+ Total: !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Informació de facturació:<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Expira: !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Log in al teu compte aquí: !!login_link!!</p>
19
+ <p>Per veure la versió online d'aquesta factura, clica aquí: !!invoice_link!!</p>
languages/email/ca_AD/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha finalitzat.</p>
2
+
3
+ <p>Moltes gràcies.</p>
4
+
5
+ <p>Pots veure les subscripcions que tenim actualment aquí: !!levels_link!!</p>
6
+
7
+ <p>Log in per editar el teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. Et recordem que la teva subscripció finalitzarà !!enddate!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_AD/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu període de prova ha acabat !!trial_end!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Se't cobrarà !!trial_amount!! a !!billing_amount!! cada !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat el teu nivell de subscripció.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Si no has demanat aquest canvi i vols més informació, si us plau contacta amb nosaltres a !!siteemail!!</p>
6
+
7
+ <p>Log in al teu compte de subscripció aquí: !!login_link!!</p>
languages/email/ca_ES/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Un administrador de !!sitename!! ha canviat un nivell de subscripció per !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Log in al teu WordPress admin aquí: !!login_link!!</p>
languages/email/ca_ES/billable_invoice.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha la teva factura #: !!order_code!!</p>
2
+
3
+ !!invoice!!
4
+
5
+ <p>Log in al teu compte aquí: !!login_link!!</p>
6
+ <p>Per veure una versió online de la teva factura, clica aquí: !!invoice_link!!</p>
languages/email/ca_ES/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La teva informació de facturació a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Expira: !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Si no has demanat un canvi de la informació de facturació, si us plau contacta amb nosaltres a !!siteemail!!</p>
15
+
16
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La informació de facturació per a !!display_name!! a !!sitename!! ha canviat.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Informació de facturació:<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Expira: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Log in al teu escriptori de WordPress aquí: !!login_link!!</p>
languages/email/ca_ES/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>L'actual pagament de subscripció per !!sitename!! ha fallat. <strong>Si us plau, clica el següent enllaç per log in i actualitzar la teva informació de facturació i així evitar la suspensió del compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més recent que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca_ES/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Error de pagament</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>La informació més recent del compte en arxiu és:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expira: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/ca_ES/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha esta cancel·lada.</p>
2
+
3
+ <p>Si no havies sol·licitat aquesta cancel·lació i vols més informació, si us plau contacta'ns a !!siteemail!!</p>
languages/email/ca_ES/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>La subscripció de !!user_login!! a !!sitename!! ha estat cancel·lada.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+ <p>Data d'inici: !!startdate!!</p>
6
+ <p>Data de cancel·lació: !!enddate!!</p>
7
+
8
+ <p>Log in al teu escriptori d'administrador de WordPress aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+
3
+ <p><strong>Ha escollit pagar amb check.</strong></p>
4
+
5
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
6
+
7
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
8
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
9
+ <p>Preu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
14
+ Total: $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_express.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_free_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expira: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Informació de facturació a l'arxiu:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expires: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls de la teva subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_paid_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls del nou compte i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu compte ja està actiu.</p>
2
+ <p>A sota hi ha els detalls del teu compte i un rebut per la teva factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/checkout_trial_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Hi ha hagut un nou checkout a !!sitename!!.</p>
2
+ <p>A sota hi ha els detalls de la nova subscripció i el rebut de la factura inicial.</p>
3
+
4
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
5
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
6
+ <p>Preu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
11
+ Total: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Informació de facturació:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expira: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/credit_card_expiring.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>El pagament utilitzat per la teva subscripció a !!sitename!! aviat caducarà. <strong>Si us plau clica el següent link per log in per a actualitzar la teva informació de facturació i així evitar que se't suspengui el compte. !!login_link!!</strong></p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>L'informació més actualitzada que tenim en arxiu és:</p>
5
+
6
+ <p>!!billing_name!!</br />
7
+ !!billing_address!!
8
+ </p>
9
+
10
+ <p>
11
+ !!cardtype!!: !!accountnumber!!<br />
12
+ Expira: !!expirationmonth!!/!!expirationyear!!
13
+ </p>
languages/email/ca_ES/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/ca_ES/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Cordialment,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/ca_ES/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Benvolgut/da !!name!!,</p>
languages/email/ca_ES/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. A sota hi ha el rebut de la teva última factura.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Factura #!!invoice_id!! on !!invoice_date!!<br />
6
+ Total: !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Informació de facturació:<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Expira: !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Log in al teu compte aquí: !!login_link!!</p>
19
+ <p>Per veure la versió online d'aquesta factura, clica aquí: !!invoice_link!!</p>
languages/email/ca_ES/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>La teva subscripció a !!sitename!! ha finalitzat.</p>
2
+
3
+ <p>Moltes gràcies.</p>
4
+
5
+ <p>Pots veure les subscripcions que tenim actualment aquí: !!levels_link!!</p>
6
+
7
+ <p>Log in per editar el teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. Et recordem que la teva subscripció finalitzarà !!enddate!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/ca_ES/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Moltes gràcies per la teva subscripció a !!sitename!!. El teu període de prova ha acabat !!trial_end!!.</p>
2
+
3
+ <p>Compte: !!display_name!! (!!user_email!!)</p>
4
+ <p>Nivell de subscripció: !!membership_level_name!!</p>
5
+
6
+ <p>Se't cobrarà !!trial_amount!! a !!billing_amount!! cada !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Log in al teu compte aquí: !!login_link!!</p>
languages/email/et_EE/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Haldaja veebilehel !!sitename!! muutis sinu rolli taset.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Kui Te ei soovinud oma rolli muutmist ja sooviksite rohkem informatsiooni, siis võtke ühendust !!siteemail!!</p>
6
+
7
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Haldaja veebilehel !!sitename!! muutis liikme taset !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Logi sisse oma WordPress'i adminiga: !!login_link!!</p>
languages/email/et_EE/billable_invoice.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Tänan, et tellisite liikme staatuse veebilehel !!sitename!!. Siin all on arve tellimus #: !!order_code!!</p>
2
+
3
+ !!invoice!!
4
+
5
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
6
+ <p>Vaadage oma arvet, interneti versioonil siin: !!invoice_link!!</p>
languages/email/et_EE/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Teie arve informatsioon !!sitename!! on muutunud.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Arve informatsioon:<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Kui Te ei tellinud arve informatsiooni muutust, siis palun võtke ühendust !!siteemail!!</p>
15
+
16
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Arve informatsioon !!display_name!! lehel !!sitename!! on muutunud.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Arve informatsioon:<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Teie praegune tellimus !!sitename!! nurjus. <strong>Palun vajutage järgmist linki, et sisse logida ja uuendada oma arve informatsiooni, et hoiduda konto peatumist. !!login_link!!</strong></p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>Kõige hiljutisem konto informatsioon meil faili peal on:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/et_EE/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Makse tõrge</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>Kõige hiljutisem konto informatsioon meil faili peal on:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/et_EE/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>Teie liikme staatus !!sitename!! on tühistatud.</p>
2
+
3
+ <p>Kui Te ei soovinud seda tühistamist ja soovite rohkem informatsiooni, siis võtke ühendust !!siteemail!!</p>
languages/email/et_EE/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Liikme !!user_login!! lehel !!sitename!! on tühistatud.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>Liikme tase: !!membership_level_name!!</p>
5
+ <p>Algus kuupäev: !!startdate!!</p>
6
+ <p>Tühistamis kuupäev: !!enddate!!</p>
7
+
8
+ <p>Logi sisse oma WordPress'i adminiga: !!login_link!!</p>
languages/email/et_EE/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>Siin all on detailid Teie liikmelisuse konto kohta ja Teie esialgne arve.</p>
6
+
7
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
8
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
9
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Arve #!!invoice_id!! !!invoice_date!!<br />
14
+ Kogu maksumus: !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+
3
+ <p><strong>Tema on valinud maksta arvega.</strong></p>
4
+
5
+ <p>Siin all on detailid Teie liikmelisuse konto kohta ja Teie esialgne arve.</p>
6
+
7
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
8
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
9
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Arve #!!invoice_id!! !!invoice_date!!<br />
14
+ Kogu maksumus: $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_express.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+ <p>Siin all on detailid Teie maksnud kasutajakonto kohta ja Teie esialgne arve.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+ <p>Siin all on detailid uue liikmelisuse konto kohta ja esialgse arve kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+ <p>All on detailid Teie konto kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_free_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+ <p>All on detailid uue konto kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+ <p>All on detailid Teie konto kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve informatsioon faili peal:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+ <p>All on detailid uue konto kohta ja arve liikme kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve informatsioon faili peal:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+ <p>Siin all on detailid Teie liikmelisuse konto kohta ja Teie esialgne arve.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Arve informatsioon:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_paid_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+ <p>Siin all on detailid uue liikmelisuse konto kohta ja esialgse arve kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Arve informatsioon:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie konto on nüüd aktiivne.</p>
2
+ <p>Siin all on detailid Teie liikmelisuse konto kohta ja Teie esialgne arve.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Arve informatsioon:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/checkout_trial_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Uus liige on liitunud !!sitename!!.</p>
2
+ <p>Siin all on detailid uue liikmelisuse konto kohta ja esialgse arve kohta.</p>
3
+
4
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
5
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
6
+ <p>Liikmelisuse tasu: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Arve #!!invoice_id!! !!invoice_date!!<br />
11
+ Kogu maksumus: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Arve informatsioon:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/credit_card_expiring.html ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Teie konto maksmis meetod !!sitename!! lõppeb varsti.
2
+ <strong>Palun vajutage järgmist linki, et sisse logida ja uuendada oma arve informatsiooni, et hoiduda konto tase langemist. !!login_link!!</strong>
3
+ </p>
4
+
5
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
6
+ <p>Kõige hiljutisem konto informatsioon:</p>
7
+
8
+ <p>!!billing_name!!</br />
9
+ !!billing_address!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
languages/email/et_EE/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/et_EE/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Lugupidavalt,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/et_EE/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Lugupeetud !!name!!,</p>
languages/email/et_EE/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. All on Teie kõige hiljutisem arve.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Arve #!!invoice_id!! !!invoice_date!!<br />
6
+ Kogu maksumus: !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Arve informatsioon:<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Lõppeb: !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
19
+ <p>Vaadage oma arvet, interneti versioonil siin: !!invoice_link!!</p>
languages/email/et_EE/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Teie liikme staatus !!sitename!! lõppes.</p>
2
+
3
+ <p>Aitäh, et toetasite meid!</p>
4
+
5
+ <p>Vaadage meie praegusi pakkumisi: !!levels_link!!</p>
6
+
7
+ <p>Logige sisse, et näha on praegust konto seisu: !!login_link!!</p>
languages/email/et_EE/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. See on lihtsalt meeldetuletus, et Teie maksnud kasutaja staatus lõppeb: !!enddate!!.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
5
+
6
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/email/et_EE/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Tänan Teid, liitumise eest !!sitename!!. Teie proovi periood lõppeb: !!trial_end!!.</p>
2
+
3
+ <p>Konto: !!display_name!! (!!user_email!!)</p>
4
+ <p>Liikmelisuse tase: !!membership_level_name!!</p>
5
+
6
+ <p>Teie makse muutub !!trial_amount!! !!billing_amount!! iga !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Logige sisse oma kontoga siin: !!login_link!!</p>
languages/pmpro-ca.mo ADDED
Binary file
languages/pmpro-ca.po ADDED
@@ -0,0 +1,5616 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-31 12:04+0100\n"
9
+ "PO-Revision-Date: 2016-02-06 17:11+0100\n"
10
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "Last-Translator: \n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: ca\n"
18
+
19
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
20
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
21
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
22
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
23
+ #: adminpages/orders-print.php:12 adminpages/orders.php:5
24
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
25
+ #: adminpages/updates.php:5 includes/license.php:36 adminpages/addons.php:21
26
+ #: adminpages/pagesettings.php:5
27
+ msgid "You do not have permissions to perform this action."
28
+ msgstr "Vostè no té permisos per a realitzar aquesta acció."
29
+
30
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170
31
+ #: includes/adminpages.php:53 includes/adminpages.php:151
32
+ #: adminpages/addons.php:80 adminpages/admin_header.php:133
33
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14
34
+ #: includes/adminpages.php:52 includes/adminpages.php:69
35
+ #: includes/adminpages.php:135 includes/adminpages.php:142
36
+ #: includes/adminpages.php:146
37
+ msgid "Add Ons"
38
+ msgstr "Complement"
39
+
40
+ #: adminpages/addons.php:71 adminpages/addons.php:87
41
+ #, php-format
42
+ msgid "Last checked on %s at %s."
43
+ msgstr "Darrera comprovació: %s a %s."
44
+
45
+ #: adminpages/addons.php:72 adminpages/addons.php:88
46
+ msgid "Check Again"
47
+ msgstr "Comproveu una vegada més"
48
+
49
+ #: adminpages/addons.php:76 adminpages/orders.php:712 adminpages/addons.php:92
50
+ #: adminpages/orders.php:605 adminpages/orders.php:741
51
+ msgid "All"
52
+ msgstr "Tot"
53
+
54
+ #: adminpages/addons.php:77 adminpages/addons.php:93
55
+ msgid "Active"
56
+ msgstr "Actiu"
57
+
58
+ #: adminpages/addons.php:78 adminpages/addons.php:94
59
+ msgid "Inactive"
60
+ msgstr "Inactiu"
61
+
62
+ #: adminpages/addons.php:79 adminpages/addons.php:95
63
+ msgid "Update Available"
64
+ msgstr "Actualització disponible"
65
+
66
+ #: adminpages/addons.php:80 adminpages/addons.php:96
67
+ msgid "Not Installed"
68
+ msgstr "No instal·lat"
69
+
70
+ #: adminpages/addons.php:93 adminpages/addons.php:109
71
+ msgid "Add On Name"
72
+ msgstr "Add On Nom"
73
+
74
+ #: adminpages/addons.php:94 adminpages/addons.php:110
75
+ msgid "Type"
76
+ msgstr "Tipus"
77
+
78
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:296
80
+ #: adminpages/membershiplevels.php:298
81
+ msgid "Description"
82
+ msgstr "Descripció"
83
+
84
+ #: adminpages/addons.php:118 adminpages/addons.php:134
85
+ msgid "No Add Ons found."
86
+ msgstr "No s’ha trobat Add Ons"
87
+
88
+ #: adminpages/addons.php:179 adminpages/addons.php:184
89
+ #: adminpages/addons.php:196 adminpages/addons.php:195
90
+ #: adminpages/addons.php:200 adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr "Instal · la ara"
93
+
94
+ #: adminpages/addons.php:185 adminpages/addons.php:191
95
+ #: adminpages/addons.php:197 adminpages/addons.php:203
96
+ #: adminpages/addons.php:201 adminpages/addons.php:207
97
+ #: adminpages/addons.php:213 adminpages/addons.php:219
98
+ msgid "Download"
99
+ msgstr "Descarrega"
100
+
101
+ #: adminpages/addons.php:190 adminpages/addons.php:202
102
+ #: adminpages/addons.php:206 adminpages/addons.php:218
103
+ msgid "Update License"
104
+ msgstr "Actualitza Llicència"
105
+
106
+ #: adminpages/addons.php:208 adminpages/addons.php:224
107
+ msgid "Deactivate"
108
+ msgstr "Desactiva"
109
+
110
+ #: adminpages/addons.php:208 adminpages/addons.php:224
111
+ #, php-format
112
+ msgid "Deactivate %s"
113
+ msgstr "Desactiva %s"
114
+
115
+ #: adminpages/addons.php:212 adminpages/addons.php:228
116
+ msgid "Activate"
117
+ msgstr "Activa"
118
+
119
+ #: adminpages/addons.php:212 adminpages/addons.php:228
120
+ #, php-format
121
+ msgid "Activate %s"
122
+ msgstr "Activa %s"
123
+
124
+ #: adminpages/addons.php:213 adminpages/addons.php:229
125
+ msgid "Delete"
126
+ msgstr "Esborra"
127
+
128
+ #: adminpages/addons.php:213 adminpages/addons.php:229
129
+ #, php-format
130
+ msgid "Delete %s"
131
+ msgstr "Esborra %s"
132
+
133
+ #: adminpages/addons.php:223 adminpages/addons.php:239
134
+ msgid "PMPro Free"
135
+ msgstr "PMPro Free"
136
+
137
+ #: adminpages/addons.php:225 adminpages/addons.php:241
138
+ msgid "PMPro Core"
139
+ msgstr "PMPro Core"
140
+
141
+ #: adminpages/addons.php:227 adminpages/addons.php:243
142
+ msgid "PMPro Plus"
143
+ msgstr "PMPro Plus"
144
+
145
+ #: adminpages/addons.php:229 adminpages/addons.php:245
146
+ msgid "WordPress.org"
147
+ msgstr "WordPress.org"
148
+
149
+ #: adminpages/addons.php:231 adminpages/addons.php:247
150
+ msgid "N/A"
151
+ msgstr "N/A"
152
+
153
+ #: adminpages/addons.php:240 adminpages/addons.php:256
154
+ #, php-format
155
+ msgid "Version %s"
156
+ msgstr "Versió %s"
157
+
158
+ #: adminpages/addons.php:245 adminpages/addons.php:261
159
+ #, php-format
160
+ msgid "By %s"
161
+ msgstr "Per %s"
162
+
163
+ #: adminpages/addons.php:252 adminpages/addons.php:268
164
+ #, php-format
165
+ msgid "More information about %s"
166
+ msgstr "Mes informació sobre %s"
167
+
168
+ #: adminpages/addons.php:254 adminpages/addons.php:270
169
+ msgid "View details"
170
+ msgstr "Mira detalls"
171
+
172
+ #: adminpages/addons.php:259 adminpages/addons.php:275
173
+ msgid "Visit plugin site"
174
+ msgstr "Visita el lloc del plugin"
175
+
176
+ #: adminpages/admin_header.php:25
177
+ msgid "Add a membership level to get started."
178
+ msgstr "Afegeix un nivell de subscripció per començar"
179
+
180
+ #: adminpages/admin_header.php:27
181
+ msgid "Set up the membership pages"
182
+ msgstr "Configura les pàgines de subscripció"
183
+
184
+ #: adminpages/admin_header.php:29
185
+ msgid "Set up your SSL certificate and payment gateway"
186
+ msgstr "Configureu el vostre certificat SSL i la passarel·la de pagament"
187
+
188
+ #: adminpages/admin_header.php:38
189
+ msgid ""
190
+ "The billing details for some of your membership levels is not supported by "
191
+ "Stripe."
192
+ msgstr ""
193
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
194
+ "compatible amb Stripe."
195
+
196
+ #: adminpages/admin_header.php:46
197
+ msgid ""
198
+ "The billing details for this level are not supported by Stripe. Please "
199
+ "review the notes in the Billing Details section below."
200
+ msgstr ""
201
+ "Les dades de facturació per a aquest nivell no són compatibles amb Stripe , "
202
+ "Llegiu les notes de la secció Detalls de facturació a sota."
203
+
204
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
205
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
206
+ msgid "The levels with issues are highlighted below."
207
+ msgstr "Els nivells amb problemes es destaquen a continuació."
208
+
209
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
210
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
211
+ msgid "Please edit your levels"
212
+ msgstr "Si us plau, editi els seus nivells"
213
+
214
+ #: adminpages/admin_header.php:58
215
+ msgid ""
216
+ "The billing details for some of your membership levels is not supported by "
217
+ "Payflow."
218
+ msgstr ""
219
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
220
+ "compatible amb Payflow."
221
+
222
+ #: adminpages/admin_header.php:66
223
+ msgid ""
224
+ "The billing details for this level are not supported by Payflow. Please "
225
+ "review the notes in the Billing Details section below."
226
+ msgstr ""
227
+ "Les dades de facturació per a aquest nivell no són compatibles amb Payflow, "
228
+ "Llegiu les notes de la secció Detalls de facturació a sota."
229
+
230
+ #: adminpages/admin_header.php:78
231
+ msgid ""
232
+ "The billing details for some of your membership levels is not supported by "
233
+ "Braintree."
234
+ msgstr ""
235
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
236
+ "compatible amb Braintree."
237
+
238
+ #: adminpages/admin_header.php:86
239
+ msgid ""
240
+ "The billing details for this level are not supported by Braintree. Please "
241
+ "review the notes in the Billing Details section below."
242
+ msgstr ""
243
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
244
+ "Braintree. Llegiu les notes de la secció Detalls de facturació a sota."
245
+
246
+ #: adminpages/admin_header.php:98
247
+ msgid ""
248
+ "The billing details for some of your membership levels is not supported by "
249
+ "TwoCheckout."
250
+ msgstr ""
251
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
252
+ "compatible amb TwoCheckout."
253
+
254
+ #: adminpages/admin_header.php:107
255
+ msgid ""
256
+ "The billing details for this level are not supported by 2Checkout. Please "
257
+ "review the notes in the Billing Details section below."
258
+ msgstr ""
259
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
260
+ "2Checkout. Llegiu les notes de la secció Detalls de facturació a sota."
261
+
262
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
263
+ msgid "Plugin Support"
264
+ msgstr "Suport per al Plugin"
265
+
266
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
267
+ msgid "User Forum"
268
+ msgstr "Fòrum dels usuaris"
269
+
270
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
271
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:69
272
+ #: includes/adminpages.php:70 includes/adminpages.php:116
273
+ #: includes/metaboxes.php:131 adminpages/admin_header.php:128
274
+ #: adminpages/admin_header.php:149 adminpages/membershiplevels.php:490
275
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
276
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
277
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
278
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:44
279
+ #: includes/adminpages.php:64 includes/adminpages.php:65
280
+ #: includes/adminpages.php:100 includes/adminpages.php:107
281
+ #: includes/adminpages.php:111 includes/metaboxes.php:126
282
+ msgid "Membership Levels"
283
+ msgstr "Nivells de subscripció"
284
+
285
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
286
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
287
+ #: adminpages/pagesettings.php:120
288
+ msgid "Pages"
289
+ msgstr "Pàgines"
290
+
291
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
292
+ #: adminpages/admin_header.php:151
293
+ msgid "Payment Gateway &amp; SSL"
294
+ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
295
+
296
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
297
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
298
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
299
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
300
+ #: pages/account.php:52 pages/account.php:56 pages/account.php:77
301
+ #: shortcodes/pmpro_account.php:106
302
+ msgid "Email"
303
+ msgstr "Correu electrònic"
304
+
305
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
306
+ #: adminpages/admin_header.php:153
307
+ msgid "Advanced"
308
+ msgstr "Avançat"
309
+
310
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
311
+ #: adminpages/advancedsettings.php:42
312
+ msgid "Your advanced settings have been updated."
313
+ msgstr "La vostra configuració avançada s’han actualitzat."
314
+
315
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
316
+ #, php-format
317
+ msgid ""
318
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
319
+ "a>."
320
+ msgstr ""
321
+ "Aquest contingut és per a subscriptors de nivell !!levels!! . <a href=\"%s"
322
+ "\">Registra’t aquí</a>."
323
+
324
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
325
+ #, php-format
326
+ msgid ""
327
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
328
+ "\">Register here</a>.)"
329
+ msgstr ""
330
+ "Si us plau <a href=\"%s\">login</a> per a veure aquest contingut. (<a href="
331
+ "\"%s\">Registra’t aquí</a>.)"
332
+
333
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
334
+ msgid ""
335
+ "This content is for members only. Visit the site and log in/register to read."
336
+ msgstr ""
337
+ "Aquest contingut és només per a subscriptors. Visita el lloc i registra’t/"
338
+ "log in per a llegir."
339
+
340
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:52
341
+ #: includes/adminpages.php:144 adminpages/advancedsettings.php:79
342
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
343
+ #: includes/adminpages.php:51 includes/adminpages.php:64
344
+ #: includes/adminpages.php:128 includes/adminpages.php:135
345
+ #: includes/adminpages.php:139
346
+ msgid "Advanced Settings"
347
+ msgstr "Configuració Avançada"
348
+
349
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
350
+ #: adminpages/advancedsettings.php:92
351
+ msgid "Message for Logged-in Non-members"
352
+ msgstr "Missatge per a No subscriptors “Logged-in”"
353
+
354
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
355
+ #: adminpages/advancedsettings.php:96
356
+ msgid ""
357
+ "This message replaces the post content for non-members. Available variables"
358
+ msgstr ""
359
+ "Aquest missatge reemplaça el contingut de l’entrada per als no membres. Hi "
360
+ "ha variables disponibles"
361
+
362
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
363
+ #: adminpages/advancedsettings.php:101
364
+ msgid "Message for Logged-out Users"
365
+ msgstr "Missatge per als usuaris desconnectats (Logged-out)"
366
+
367
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
368
+ #: adminpages/advancedsettings.php:105
369
+ msgid "This message replaces the post content for logged-out visitors."
370
+ msgstr ""
371
+ "Aquest missatge remplaça el contingut del post per a visitants desconnectats "
372
+ "(logged-out)"
373
+
374
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
375
+ #: adminpages/advancedsettings.php:110
376
+ msgid "Message for RSS Feed"
377
+ msgstr "Missatge per a RSS Feed"
378
+
379
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
380
+ #: adminpages/advancedsettings.php:114
381
+ msgid "This message replaces the post content in RSS feeds."
382
+ msgstr ""
383
+ "Aquest missatge reemplaça el contingut del seu missatge en els canals RSS."
384
+
385
+ #: adminpages/advancedsettings.php:122
386
+ msgid "Filter searches and archives?"
387
+ msgstr "Filtra recerques i arxius?"
388
+
389
+ #: adminpages/advancedsettings.php:126
390
+ msgid ""
391
+ "No - Non-members will see restricted posts/pages in searches and archives."
392
+ msgstr ""
393
+ "No - No subscriptors veuran posts restringits/pàgines en les recerques i els "
394
+ "arxius."
395
+
396
+ #: adminpages/advancedsettings.php:127
397
+ msgid ""
398
+ "Yes - Only members will see restricted posts/pages in searches and archives."
399
+ msgstr ""
400
+ "Sí - Només els subscriptors veuran posts restringits/pàgines en les "
401
+ "recerques i els arxius."
402
+
403
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
404
+ #: adminpages/advancedsettings.php:120
405
+ msgid "Show Excerpts to Non-Members?"
406
+ msgstr "Mostrar extractes als no membres?"
407
+
408
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
409
+ #: adminpages/advancedsettings.php:124
410
+ msgid "No - Hide excerpts."
411
+ msgstr "No - Amaga extractes."
412
+
413
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
414
+ #: adminpages/advancedsettings.php:125
415
+ msgid "Yes - Show excerpts."
416
+ msgstr "Sí - Mostra extractes."
417
+
418
+ #: adminpages/advancedsettings.php:144
419
+ msgid "Hide Ads From Members?"
420
+ msgstr "Amaga els anuncis als subscriptors?"
421
+
422
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
423
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
424
+ #: adminpages/paymentsettings.php:210
425
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
426
+ #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
427
+ #: adminpages/advancedsettings.php:187 adminpages/advancedsettings.php:194
428
+ #: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:206
429
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
430
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
431
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
432
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:414
433
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
434
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
435
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
436
+ #: classes/gateways/class.pmprogateway_stripe.php:173
437
+ #: classes/gateways/class.pmprogateway_stripe.php:174
438
+ #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:101
439
+ #: includes/profile.php:105 includes/profile.php:121 includes/profile.php:123
440
+ msgid "No"
441
+ msgstr "No"
442
+
443
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
444
+ #: adminpages/advancedsettings.php:136
445
+ msgid "Hide Ads From All Members"
446
+ msgstr "Amaga Anuncis de tots els subscriptors"
447
+
448
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
449
+ #: adminpages/advancedsettings.php:137
450
+ msgid "Hide Ads From Certain Members"
451
+ msgstr "Amaga els anuncis a certs subscriptors"
452
+
453
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
454
+ #: adminpages/advancedsettings.php:144
455
+ msgid "Ads from the following plugins will be automatically turned off"
456
+ msgstr "Els anuncis dels següents plugins seràn desactivats automàticament"
457
+
458
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
459
+ #: adminpages/advancedsettings.php:145
460
+ msgid "To hide ads in your template code, use code like the following"
461
+ msgstr ""
462
+ "Per amagar els anuncis al codi de la plantilla, utilitzeu el codi següent"
463
+
464
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
465
+ #: adminpages/advancedsettings.php:156
466
+ msgid "Choose Levels to Hide Ads From"
467
+ msgstr "Escull els nivells on amagar els anuncis"
468
+
469
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
470
+ #: adminpages/advancedsettings.php:190
471
+ msgid "Redirect all traffic from registration page to /susbcription/?"
472
+ msgstr "Redirigir tot el trànsit de la pàgina de registre a /susbcription/?"
473
+
474
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
475
+ #: adminpages/advancedsettings.php:190
476
+ msgid "multisite only"
477
+ msgstr "només “multisite”"
478
+
479
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
480
+ #: adminpages/paymentsettings.php:211
481
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
482
+ #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
483
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
484
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
485
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
486
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:415
487
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
488
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
489
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
490
+ #: adminpages/paymentsettings.php:462
491
+ #: classes/gateways/class.pmprogateway_stripe.php:174
492
+ #: classes/gateways/class.pmprogateway_stripe.php:175
493
+ #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:102
494
+ #: includes/profile.php:106 includes/profile.php:122 includes/profile.php:124
495
+ msgid "Yes"
496
+ msgstr "Sí"
497
+
498
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
499
+ #: adminpages/advancedsettings.php:202
500
+ msgid "Use reCAPTCHA?"
501
+ msgstr "Utilitzar reCAPTCHA?"
502
+
503
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
504
+ #: adminpages/advancedsettings.php:207
505
+ msgid "Yes - Free memberships only."
506
+ msgstr "Sí - Només subscripcions gratuïtes"
507
+
508
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
509
+ #: adminpages/advancedsettings.php:208
510
+ msgid "Yes - All memberships."
511
+ msgstr "Sí - Tots els subscriptors"
512
+
513
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
514
+ #: adminpages/advancedsettings.php:210
515
+ msgid "A free reCAPTCHA key is required."
516
+ msgstr "Una clau reCAPTCHA gratuïta és necessària"
517
+
518
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
519
+ #: adminpages/advancedsettings.php:210
520
+ msgid "Click here to signup for reCAPTCHA"
521
+ msgstr "Clica aquí per a signar per al reCAPTCHA"
522
+
523
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
524
+ #: adminpages/advancedsettings.php:216
525
+ msgid "reCAPTCHA Public Key"
526
+ msgstr "reCAPTCHA clau pública (Public Key)"
527
+
528
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
529
+ #: adminpages/advancedsettings.php:219
530
+ msgid "reCAPTCHA Private Key"
531
+ msgstr "reCAPTCHA clau privada (Private Key)"
532
+
533
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
534
+ #: adminpages/advancedsettings.php:225
535
+ msgid "Require Terms of Service on signups?"
536
+ msgstr "Requerir Termes de Servei per a les subscripcions?"
537
+
538
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
539
+ #: adminpages/advancedsettings.php:232
540
+ msgid ""
541
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
542
+ "using the dropdown above."
543
+ msgstr ""
544
+ "Si és així, crear una pàgina de WordPress que conté el contracte d’agraïment "
545
+ "i assignar-lo utilitzant el desplegable de dalt."
546
+
547
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
548
+ msgid "selected"
549
+ msgstr "Seleccionat"
550
+
551
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
552
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
553
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
554
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
555
+ #: adminpages/pagesettings.php:254 adminpages/paymentsettings.php:485
556
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
557
+ #: adminpages/paymentsettings.php:534
558
+ msgid "Save Settings"
559
+ msgstr "Desa la configuració"
560
+
561
+ #: adminpages/discountcodes.php:48
562
+ msgid "Discount code updated successfully."
563
+ msgstr "Codi promocional actualitzat correctament."
564
+
565
+ #: adminpages/discountcodes.php:55
566
+ msgid "Error updating discount code. That code may already be in use."
567
+ msgstr ""
568
+ "Error actualitzant el codi de descompte. Aquest codi pot estar ja en ús."
569
+
570
+ #: adminpages/discountcodes.php:64
571
+ msgid "Discount code added successfully."
572
+ msgstr "Codi de descompte afegit correctament."
573
+
574
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
575
+ msgid "Error adding discount code. That code may already be in use."
576
+ msgstr "Error en afegir codi de descompte. Aquest codi pot estar ja en ús."
577
+
578
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
579
+ #, php-format
580
+ msgid "Error saving values for the %s level."
581
+ msgstr "Error guardant els valors per al nivell %s "
582
+
583
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
584
+ msgid "There were errors updating the level values: "
585
+ msgstr "Hi ha hagut errors actualitzatn els valors del nivell:"
586
+
587
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
588
+ #: adminpages/discountcodes.php:237
589
+ #, php-format
590
+ msgid "Code %s deleted successfully."
591
+ msgstr "Codi %s esborrat correctament"
592
+
593
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
594
+ #: adminpages/discountcodes.php:242
595
+ msgid ""
596
+ "Error deleting discount code. The code was only partially deleted. Please "
597
+ "try again."
598
+ msgstr ""
599
+ "Error esborrant el codi de descompte. El codi ha estat esborrat parcialment. "
600
+ "Si us plau torna a intentar-ho."
601
+
602
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
603
+ #: adminpages/discountcodes.php:248
604
+ msgid "Error deleting code. Please try again."
605
+ msgstr "Error esborrant el codi de descompte. Si us plau torna a intentar-ho."
606
+
607
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
608
+ #: adminpages/discountcodes.php:254
609
+ msgid "Code not found."
610
+ msgstr "No s’ha trobat el codi."
611
+
612
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
613
+ #: adminpages/discountcodes.php:267
614
+ msgid "Edit Discount Code"
615
+ msgstr "Edita el codi de descompte"
616
+
617
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
618
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
619
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
620
+ #: adminpages/discountcodes.php:557
621
+ msgid "Add New Discount Code"
622
+ msgstr "Afegeix un nou codi de descompte"
623
+
624
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
625
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
626
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
627
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
628
+ #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
629
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
630
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
631
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
632
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
633
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
634
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
635
+ #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
636
+ #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
637
+ #: adminpages/orders.php:597 adminpages/orders.php:900
638
+ #: adminpages/orders.php:910 adminpages/orders.php:966
639
+ #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
640
+ msgid "ID"
641
+ msgstr "ID"
642
+
643
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
644
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
645
+ #: adminpages/orders.php:211 adminpages/orders.php:261
646
+ #: adminpages/orders.php:362
647
+ msgid "This will be generated when you save."
648
+ msgstr "Es generarà quan salvis."
649
+
650
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
651
+ #: adminpages/orders.php:337 adminpages/orders.php:938
652
+ #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
653
+ #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
654
+ #: adminpages/discountcodes.php:586 adminpages/orders.php:215
655
+ #: adminpages/orders.php:265 adminpages/orders.php:366
656
+ #: adminpages/orders.php:598 adminpages/orders.php:901
657
+ #: adminpages/orders.php:911 adminpages/orders.php:967
658
+ msgid "Code"
659
+ msgstr "Codi"
660
+
661
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
662
+ #: adminpages/discountcodes.php:352
663
+ msgid "Start Date"
664
+ msgstr "Data d’inici"
665
+
666
+ #: adminpages/discountcodes.php:371
667
+ #: classes/gateways/class.pmprogateway_braintree.php:323
668
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
669
+ #: pages/checkout.php:575 adminpages/discountcodes.php:367
670
+ #: adminpages/discountcodes.php:370
671
+ #: classes/gateways/class.pmprogateway_braintree.php:308
672
+ #: classes/gateways/class.pmprogateway_braintree.php:321
673
+ #: classes/gateways/class.pmprogateway_stripe.php:454
674
+ #: classes/gateways/class.pmprogateway_stripe.php:455
675
+ #: classes/gateways/class.pmprogateway_stripe.php:465
676
+ #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:249
677
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
678
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
679
+ #: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
680
+ msgid "Expiration Date"
681
+ msgstr "Data final (d’expiració)"
682
+
683
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
684
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
685
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
686
+ #: adminpages/discountcodes.php:589
687
+ msgid "Uses"
688
+ msgstr "Utilitza"
689
+
690
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
691
+ #: adminpages/discountcodes.php:391
692
+ msgid "Leave blank for unlimited uses."
693
+ msgstr "Deixa en blanc per a usos ilimitats."
694
+
695
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
696
+ msgid "Which Levels Will This Code Apply To?"
697
+ msgstr "A quins nivells s’aplicarà aquest codi?"
698
+
699
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
700
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
701
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
702
+ #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:507
703
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
704
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
705
+ msgid "Initial Payment"
706
+ msgstr "Pagament inicial"
707
+
708
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
709
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
710
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
711
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
712
+ #: adminpages/membershiplevels.php:353
713
+ msgid "The initial amount collected at registration."
714
+ msgstr "El pagament inicial efectuat en el registre"
715
+
716
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
717
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
718
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
719
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
720
+ #: adminpages/membershiplevels.php:357
721
+ msgid "Recurring Subscription"
722
+ msgstr "Subscripció recurrent"
723
+
724
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
725
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
726
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
727
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
728
+ #: adminpages/membershiplevels.php:358
729
+ msgid "Check if this level has a recurring subscription payment."
730
+ msgstr "Clica si aquest nivell té un pagament de subscripció recurrent"
731
+
732
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
733
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
734
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
735
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:362
736
+ msgid "Billing Amount"
737
+ msgstr "Total a facturar"
738
+
739
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
740
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
741
+ #: classes/gateways/class.pmprogateway_stripe.php:562
742
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
743
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
744
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
745
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
746
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
747
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
748
+ #: classes/gateways/class.pmprogateway_stripe.php:521
749
+ #: classes/gateways/class.pmprogateway_stripe.php:522
750
+ #: classes/gateways/class.pmprogateway_stripe.php:532
751
+ #: classes/gateways/class.pmprogateway_stripe.php:536
752
+ msgid "Day(s)"
753
+ msgstr "Dia(es)"
754
+
755
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
756
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
757
+ #: classes/gateways/class.pmprogateway_stripe.php:562
758
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
759
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
760
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
761
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
762
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
763
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
764
+ #: classes/gateways/class.pmprogateway_stripe.php:521
765
+ #: classes/gateways/class.pmprogateway_stripe.php:522
766
+ #: classes/gateways/class.pmprogateway_stripe.php:532
767
+ #: classes/gateways/class.pmprogateway_stripe.php:536
768
+ msgid "Month(s)"
769
+ msgstr "Mes(os)"
770
+
771
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
772
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
773
+ #: classes/gateways/class.pmprogateway_stripe.php:562
774
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
775
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
776
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
777
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
778
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
779
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
780
+ #: classes/gateways/class.pmprogateway_stripe.php:521
781
+ #: classes/gateways/class.pmprogateway_stripe.php:522
782
+ #: classes/gateways/class.pmprogateway_stripe.php:532
783
+ #: classes/gateways/class.pmprogateway_stripe.php:536
784
+ msgid "Week(s)"
785
+ msgstr "Setmana(es)"
786
+
787
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
788
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
789
+ #: classes/gateways/class.pmprogateway_stripe.php:562
790
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
791
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
792
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
793
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
794
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
795
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
796
+ #: classes/gateways/class.pmprogateway_stripe.php:521
797
+ #: classes/gateways/class.pmprogateway_stripe.php:522
798
+ #: classes/gateways/class.pmprogateway_stripe.php:532
799
+ #: classes/gateways/class.pmprogateway_stripe.php:536
800
+ msgid "Year(s)"
801
+ msgstr "Any(s)"
802
+
803
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
804
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
805
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
806
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
807
+ #: adminpages/membershiplevels.php:386
808
+ msgid "The amount to be billed one cycle after the initial payment."
809
+ msgstr "Total a facturar en un cicle després del pagament inicial"
810
+
811
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
812
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
813
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
814
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
815
+ #: adminpages/membershiplevels.php:404
816
+ msgid "Billing Cycle Limit"
817
+ msgstr "Límit de cicle de facturació"
818
+
819
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
820
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
821
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
822
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
823
+ #: adminpages/membershiplevels.php:408
824
+ msgid ""
825
+ "The <strong>total</strong> number of recurring billing cycles for this "
826
+ "level, including the trial period (if applicable) but not including the "
827
+ "initial payment. Set to zero if membership is indefinite."
828
+ msgstr ""
829
+ "El <strong>total</strong> de cicles de pagament recurrent per a aquest "
830
+ "nivell, incloent el període de prova (si s’aplica) però sense incloure el "
831
+ "pagament inicial. Deixa-ho a zero si la subscripció és infinita."
832
+
833
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
834
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
835
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
836
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
837
+ #: adminpages/membershiplevels.php:417
838
+ msgid "Custom Trial"
839
+ msgstr "Prova personalitzada"
840
+
841
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
842
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
843
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
844
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
845
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:419
846
+ msgid "Check to add a custom trial period."
847
+ msgstr "Clica per afegir un període de prova personalitzat."
848
+
849
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
850
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
851
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
852
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
853
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:428
854
+ msgid "Trial Billing Amount"
855
+ msgstr "Facturació per al període de prova"
856
+
857
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
858
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
859
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
860
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
861
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:439
862
+ msgid "for the first"
863
+ msgstr "per al primer"
864
+
865
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
866
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
867
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
868
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
869
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:441
870
+ msgid "subscription payments"
871
+ msgstr "pagaments de subscripció"
872
+
873
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
874
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
875
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
876
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
877
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
878
+ #: adminpages/membershiplevels.php:470
879
+ msgid "Membership Expiration"
880
+ msgstr "Venciment de la subscripció"
881
+
882
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
883
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
884
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
885
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
886
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:471
887
+ msgid "Check this to set when membership access expires."
888
+ msgstr "Clica per afegir quan expira l’accés del subscriptor"
889
+
890
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
891
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
892
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
893
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
894
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
895
+ #: adminpages/membershiplevels.php:475
896
+ msgid "Expires In"
897
+ msgstr "Expira En"
898
+
899
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
900
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
901
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
902
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
903
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:488
904
+ msgid ""
905
+ "Set the duration of membership access. Note that the any future payments "
906
+ "(recurring subscription, if any) will be cancelled when the membership "
907
+ "expires."
908
+ msgstr ""
909
+ "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol "
910
+ "pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la "
911
+ "subscripció caduqui."
912
+
913
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
914
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
915
+ msgid "Memberships Discount Codes"
916
+ msgstr "Codis de descompte per a subscripcions"
917
+
918
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
919
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
920
+ msgid "Search Discount Codes"
921
+ msgstr "Cerca codis de descompte"
922
+
923
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:99
924
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
925
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
926
+ #: adminpages/reports/login.php:83
927
+ msgid "Search"
928
+ msgstr "Cerca"
929
+
930
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
931
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
932
+ msgid "Starts"
933
+ msgstr "Comença"
934
+
935
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
936
+ #: adminpages/reports/login.php:163 includes/profile.php:107
937
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
938
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
939
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
940
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
941
+ #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:118
942
+ #: includes/profile.php:120
943
+ msgid "Expires"
944
+ msgstr "Acaba"
945
+
946
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
947
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
948
+ msgid "Levels"
949
+ msgstr "Nivells"
950
+
951
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
952
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
953
+ msgid "Create your first discount code now"
954
+ msgstr "Crea el teu primer codi de descompte ara"
955
+
956
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
957
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
958
+ msgid ""
959
+ "Discount codes allow you to offer your memberships at discounted prices to "
960
+ "select customers."
961
+ msgstr "Els codis de descompte et permeten oferir"
962
+
963
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
964
+ #: adminpages/orders.php:1021 adminpages/discountcodes.php:614
965
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
966
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
967
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
968
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
969
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
970
+ #: adminpages/orders.php:658 adminpages/orders.php:961
971
+ #: adminpages/orders.php:979 adminpages/orders.php:989
972
+ #: adminpages/orders.php:992 adminpages/orders.php:1050
973
+ msgid "edit"
974
+ msgstr "Edita"
975
+
976
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
977
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
978
+ #: adminpages/discountcodes.php:651
979
+ #, php-format
980
+ msgid ""
981
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
982
+ "existing users will not change, but new users will not be able to use this "
983
+ "code anymore."
984
+ msgstr ""
985
+ "Estàs segur que vols esborrar el codi de descompte %s ? Les subscripcions "
986
+ "per als usuaris existents no canviaran, però els nous usuaris no podran "
987
+ "utilitzar aquest codi mai més."
988
+
989
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
990
+ #: adminpages/orders.php:1027 adminpages/discountcodes.php:617
991
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
992
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
993
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
994
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
995
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
996
+ #: adminpages/orders.php:664 adminpages/orders.php:967
997
+ #: adminpages/orders.php:985 adminpages/orders.php:995
998
+ #: adminpages/orders.php:998 adminpages/orders.php:1056
999
+ msgid "delete"
1000
+ msgstr "esborra"
1001
+
1002
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:51
1003
+ #: includes/adminpages.php:137 adminpages/emailsettings.php:60
1004
+ #: includes/adminpages.php:12 includes/adminpages.php:50
1005
+ #: includes/adminpages.php:59 includes/adminpages.php:121
1006
+ #: includes/adminpages.php:128 includes/adminpages.php:132
1007
+ msgid "Email Settings"
1008
+ msgstr "Configuració de correu electrònic"
1009
+
1010
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
1011
+ msgid ""
1012
+ "By default, system generated emails are sent from "
1013
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
1014
+ "address using the fields below."
1015
+ msgstr ""
1016
+ "Per defecte, els correus electrònics generats són enviats desde "
1017
+ "<em><strong>wordpress@yourdomain.com</strong></em>. Pots modificar-ho "
1018
+ "utilitzant els camps que hi ha a continuació."
1019
+
1020
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
1021
+ msgid ""
1022
+ "To modify the appearance of system generated emails, add the files "
1023
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
1024
+ "directory. This will modify both the WordPress default messages as well as "
1025
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
1026
+ "- Member Communications\" target=\"_blank\" href=\"http://www."
1027
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
1028
+ "learn more about Paid Memberships Pro emails</a>."
1029
+ msgstr ""
1030
+ "Per modificar l’aparença dels emails generats pel sistema, afegeix els "
1031
+ "arxius <em>email_header.html</em> and <em>email_footer.html</em> al "
1032
+ "directori del teu tema. Així es modificarà el missatge per defecte de "
1033
+ "WordPress i els del plugin Paid Memberships Pro. <a title=\"Paid Memberships "
1034
+ "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
1035
+ "paidmembershipspro.com/documentation/member-communications/\">Clica aquí per "
1036
+ "saber més sobre Paid Memberships Pro emails</a>."
1037
+
1038
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
1039
+ msgid "From Email"
1040
+ msgstr "Del Correu Electrònic"
1041
+
1042
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
1043
+ msgid "From Name"
1044
+ msgstr "Del Nom"
1045
+
1046
+ #: adminpages/emailsettings.php:94
1047
+ msgid "Only Filter PMPro Emails?"
1048
+ msgstr "Filtra només els correus de PMPro?"
1049
+
1050
+ #: adminpages/emailsettings.php:98
1051
+ #, php-format
1052
+ msgid ""
1053
+ "If unchecked, all emails from \"WordPress &lt;%s&gt;\" will be filtered to "
1054
+ "use the above settings."
1055
+ msgstr ""
1056
+ "Si no està clicat, tots els correus de \"WordPress &lt;%s&gt;\" seran "
1057
+ "filtrats per utilitzar la configuració de dalt."
1058
+
1059
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
1060
+ #: adminpages/emailsettings.php:104
1061
+ msgid "Send the site admin emails"
1062
+ msgstr "Envia els correus electrònics dels administradors del lloc web"
1063
+
1064
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
1065
+ #: adminpages/emailsettings.php:110
1066
+ msgid "Checkout"
1067
+ msgstr "Checkout"
1068
+
1069
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
1070
+ #: adminpages/emailsettings.php:114
1071
+ msgid "when a member checks out."
1072
+ msgstr "quan un subscriptor fa el checkout"
1073
+
1074
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
1075
+ #: adminpages/emailsettings.php:119
1076
+ msgid "Admin Changes"
1077
+ msgstr "Canvis d’administrador"
1078
+
1079
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
1080
+ #: adminpages/emailsettings.php:123
1081
+ msgid "when an admin changes a user's membership level through the dashboard."
1082
+ msgstr ""
1083
+ "quan un administrador canvia la subscripció d’un usuari des del “dashboard”"
1084
+
1085
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
1086
+ #: adminpages/emailsettings.php:128
1087
+ msgid "Cancellation"
1088
+ msgstr "Cancel·lació"
1089
+
1090
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
1091
+ #: adminpages/emailsettings.php:132
1092
+ msgid "when a user cancels his or her account."
1093
+ msgstr "quan un usuari cancel·la el seu compte"
1094
+
1095
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
1096
+ #: adminpages/emailsettings.php:137
1097
+ msgid "Bill Updates"
1098
+ msgstr "Actualitzacions de facturació"
1099
+
1100
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
1101
+ #: adminpages/emailsettings.php:141
1102
+ msgid "when a user updates his or her billing information."
1103
+ msgstr "quan un usuari actualitza la seva informació de facturació"
1104
+
1105
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
1106
+ #: adminpages/emailsettings.php:147
1107
+ msgid "Send members emails"
1108
+ msgstr "Envia els correus electrònics dels subscriptors"
1109
+
1110
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
1111
+ #: adminpages/emailsettings.php:153
1112
+ msgid "New Users"
1113
+ msgstr "Nous usuaris"
1114
+
1115
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
1116
+ #: adminpages/emailsettings.php:157
1117
+ msgid ""
1118
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
1119
+ "still get an email confirmation from PMPro after checkout.)"
1120
+ msgstr ""
1121
+ "Notificació per defecte de WP per correu. (Recomanat: no el cliquis. Els "
1122
+ "usuaris rebran un correu electrònic de confirmació desde PMPro després del "
1123
+ "“checkout”.)"
1124
+
1125
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1126
+ msgid "Membership level updated successfully."
1127
+ msgstr "Nivell de subscripció actualitzada correctament."
1128
+
1129
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1130
+ msgid "Error updating membership level."
1131
+ msgstr "Error actualitzant el nivell de subscripció."
1132
+
1133
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1134
+ msgid "Membership level added successfully."
1135
+ msgstr "Nivell de subscripció afegit correctament."
1136
+
1137
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1138
+ msgid "Error adding membership level."
1139
+ msgstr "Error afegint nivell de subscripció."
1140
+
1141
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1142
+ #: adminpages/membershiplevels.php:181
1143
+ #, php-format
1144
+ msgid ""
1145
+ "There was an error canceling the subscription for user with ID=%d. You will "
1146
+ "want to check your payment gateway to see if their subscription is still "
1147
+ "active."
1148
+ msgstr ""
1149
+ "Hi ha hagut un error cancel·lant la subscripció de l’usuari ID=%d. Comprova "
1150
+ "la teva passarel·la de pagament per veure si la seva subscripció encara hi "
1151
+ "és."
1152
+
1153
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1154
+ #: adminpages/membershiplevels.php:184
1155
+ msgid "Last Invoice"
1156
+ msgstr "Darrera factura."
1157
+
1158
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1159
+ #: adminpages/membershiplevels.php:198
1160
+ msgid "Membership level deleted successfully."
1161
+ msgstr "Nivell de subscripció esborrat correctament."
1162
+
1163
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1164
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1165
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1166
+ msgid "Error deleting membership level."
1167
+ msgstr "Error esborrant nivell de subscripció."
1168
+
1169
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1170
+ #: adminpages/membershiplevels.php:224
1171
+ msgid "Edit Membership Level"
1172
+ msgstr "Edita el nivell de subscripció"
1173
+
1174
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1175
+ #: adminpages/membershiplevels.php:226
1176
+ msgid "Add New Membership Level"
1177
+ msgstr "Afegeix un nou nivell de subscripció"
1178
+
1179
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1180
+ #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1181
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1182
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1183
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1184
+ #: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:638
1185
+ #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1186
+ msgid "Name"
1187
+ msgstr "Nom"
1188
+
1189
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1190
+ #: adminpages/membershiplevels.php:316
1191
+ msgid "Confirmation Message"
1192
+ msgstr "Missatge de confirmació"
1193
+
1194
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1195
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1196
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:543
1197
+ #: adminpages/membershiplevels.php:585 adminpages/membershiplevels.php:639
1198
+ msgid "Billing Details"
1199
+ msgstr "Detalls de facturació"
1200
+
1201
+ #: adminpages/membershiplevels.php:372
1202
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1203
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1204
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:373
1205
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1206
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1207
+ #: classes/gateways/class.pmprogateway_stripe.php:630
1208
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1209
+ msgid "per"
1210
+ msgstr "per"
1211
+
1212
+ #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1213
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:388
1214
+ msgid ""
1215
+ "Stripe integration currently only supports billing periods of \"Week\", "
1216
+ "\"Month\" or \"Year\"."
1217
+ msgstr ""
1218
+ "La integració d’Stripe actualment només suporta períodes de facturació de "
1219
+ "“setmana”, “mes” o “any”."
1220
+
1221
+ #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1222
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1223
+ #: adminpages/membershiplevels.php:390
1224
+ msgid ""
1225
+ "Braintree integration currently only supports billing periods of \"Month\" "
1226
+ "or \"Year\"."
1227
+ msgstr ""
1228
+ "La integració de Braintree actualment només suporta períodes de facturació "
1229
+ "de “mes” o “any”."
1230
+
1231
+ #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1232
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1233
+ #: adminpages/membershiplevels.php:392
1234
+ msgid ""
1235
+ "Payflow integration currently only supports billing frequencies of 1 and "
1236
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1237
+ msgstr ""
1238
+ "La integració de Payflow actualment només suporta períodes de facturació de "
1239
+ "1 “setmana”, “mes” o “any”."
1240
+
1241
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1242
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1243
+ #: adminpages/membershiplevels.php:396
1244
+ msgid ""
1245
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1246
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1247
+ "<em>pmpro_#</em>, where # is the level ID."
1248
+ msgstr ""
1249
+ "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al "
1250
+ "dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to "
1251
+ "<em>pmpro_#</em>, on # és el level ID."
1252
+
1253
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1254
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1255
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1256
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1257
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1258
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1259
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1260
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1261
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1262
+ #: adminpages/paymentsettings.php:179
1263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1264
+ msgid "Note"
1265
+ msgstr "Nota"
1266
+
1267
+ #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1268
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1269
+ #: adminpages/membershiplevels.php:398
1270
+ msgid ""
1271
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1272
+ "settings and the \"Plan ID\" set to"
1273
+ msgstr ""
1274
+ "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configuració "
1275
+ "\"Plan ID\" "
1276
+
1277
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1278
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1279
+ #: adminpages/membershiplevels.php:410
1280
+ msgid ""
1281
+ "Stripe integration currently does not support billing limits. You can still "
1282
+ "set an expiration date below."
1283
+ msgstr ""
1284
+ "La integració d’Stripe no suporta límits de facturació actualment. Pots "
1285
+ "posar una data de límit de facturació a sota."
1286
+
1287
+ #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1288
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1289
+ #: adminpages/membershiplevels.php:422
1290
+ msgid ""
1291
+ "2Checkout integration does not support custom trials. You can do one period "
1292
+ "trials by setting an initial payment different from the billing amount."
1293
+ msgstr ""
1294
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
1295
+ "període de prova configurant un pagament inicial diferent del total de "
1296
+ "facturació."
1297
+
1298
+ #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1299
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1300
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:444
1301
+ msgid ""
1302
+ "Stripe integration currently does not support trial amounts greater than $0."
1303
+ msgstr "La integració d’Stripe no suporta preus de prova majors que $0."
1304
+
1305
+ #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1306
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1307
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:448
1308
+ msgid ""
1309
+ "Braintree integration currently does not support trial amounts greater than "
1310
+ "$0."
1311
+ msgstr "La integració de Braintree no suporta preus de prova majors que $0."
1312
+
1313
+ #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1314
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1315
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:452
1316
+ msgid ""
1317
+ "Payflow integration currently does not support trial amounts greater than $0."
1318
+ msgstr "La integració de Payflow no suporta preus de prova majors que $0."
1319
+
1320
+ #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1321
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1322
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1323
+ #: adminpages/membershiplevels.php:461
1324
+ msgid "Other Settings"
1325
+ msgstr "Configuració, altres"
1326
+
1327
+ #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1328
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1329
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1330
+ #: adminpages/membershiplevels.php:465
1331
+ msgid "Disable New Signups"
1332
+ msgstr "Deshabilita nous “signups”"
1333
+
1334
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1335
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1336
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1337
+ #: adminpages/membershiplevels.php:466
1338
+ msgid ""
1339
+ "Check to hide this level from the membership levels page and disable "
1340
+ "registration."
1341
+ msgstr ""
1342
+ "Clica per amagar aquest nivell de la pàgina de nivells de subscripció i no "
1343
+ "permetre’n el registre."
1344
+
1345
+ #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1346
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1347
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1348
+ #: adminpages/membershiplevels.php:496
1349
+ msgid "Content Settings"
1350
+ msgstr "Configuració de continguts"
1351
+
1352
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1353
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1354
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1355
+ #: adminpages/membershiplevels.php:500
1356
+ msgid "Categories"
1357
+ msgstr "Categories"
1358
+
1359
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:517
1360
+ msgid "Save Level"
1361
+ msgstr "Salva nivell"
1362
+
1363
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1364
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1365
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:511
1366
+ #: adminpages/orders.php:561 adminpages/orders.php:662 pages/account.php:44
1367
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1368
+ #: pages/billing.php:339 pages/billing.php:342 shortcodes/pmpro_account.php:70
1369
+ msgid "Cancel"
1370
+ msgstr "Cancel·la"
1371
+
1372
+ #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:490
1373
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1374
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1375
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
1376
+ msgid "Add New Level"
1377
+ msgstr "Afegeix un nou nivell"
1378
+
1379
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1380
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1381
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1382
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1383
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1384
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1385
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1386
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1387
+ msgid "Search Levels"
1388
+ msgstr "Cerca Nivells"
1389
+
1390
+ #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:579
1391
+ #: adminpages/membershiplevels.php:631
1392
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1393
+ msgstr ""
1394
+ "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la "
1395
+ "pàgina de nivells"
1396
+
1397
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53
1398
+ #: pages/confirmation.php:83 pages/invoice.php:70
1399
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1400
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1401
+ #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1402
+ #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:640
1403
+ #: pages/account.php:20 pages/confirmation.php:81 pages/invoice.php:68
1404
+ msgid "Expiration"
1405
+ msgstr "Data final (d’expiració)"
1406
+
1407
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:511
1408
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1409
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1410
+ #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:641
1411
+ msgid "Allow Signups"
1412
+ msgstr "Permet nous “signups”"
1413
+
1414
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:534
1415
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1416
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1417
+ #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:656
1418
+ msgid "FREE"
1419
+ msgstr "GRATUÏT"
1420
+
1421
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:560
1422
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1423
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1424
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:665
1425
+ msgid "After"
1426
+ msgstr "Després"
1427
+
1428
+ #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:566
1429
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1430
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1431
+ #: adminpages/membershiplevels.php:660
1432
+ #, php-format
1433
+ msgid ""
1434
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1435
+ "be cancelled."
1436
+ msgstr ""
1437
+ "Estàs segur que vols esborrar el nivell de subscripció %s? Tots els "
1438
+ "Subscriptors seran cancel·lats."
1439
+
1440
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1441
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1442
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1443
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1444
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:661
1445
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1446
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1447
+ #: adminpages/orders.php:1053
1448
+ msgid "copy"
1449
+ msgstr "copia"
1450
+
1451
+ #: adminpages/memberslist.php:25 includes/adminpages.php:54
1452
+ #: includes/adminpages.php:158 includes/adminpages.php:15
1453
+ #: includes/adminpages.php:53 includes/adminpages.php:74
1454
+ #: includes/adminpages.php:142 includes/adminpages.php:149
1455
+ #: includes/adminpages.php:153
1456
+ msgid "Members List"
1457
+ msgstr "Llistat de subscriptors"
1458
+
1459
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1460
+ #: adminpages/orders.php:522 adminpages/orders.php:591
1461
+ #: adminpages/orders.php:727
1462
+ msgid "Export to CSV"
1463
+ msgstr "Exporta a CSV"
1464
+
1465
+ #: adminpages/memberslist.php:30 adminpages/orders.php:710
1466
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:263
1467
+ #: adminpages/reports/sales.php:202 adminpages/orders.php:603
1468
+ #: adminpages/orders.php:739 adminpages/reports/login.php:65
1469
+ #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:256
1470
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1471
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1472
+ msgid "Show"
1473
+ msgstr "Mostra"
1474
+
1475
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1476
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1477
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:69
1478
+ #: adminpages/reports/memberships.php:281
1479
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1480
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1481
+ msgid "All Levels"
1482
+ msgstr "Tots els nivells"
1483
+
1484
+ #: adminpages/memberslist.php:42
1485
+ msgid "Cancelled Members"
1486
+ msgstr "Subscriptors cancel·lats"
1487
+
1488
+ #: adminpages/memberslist.php:43
1489
+ msgid "Expired Members"
1490
+ msgstr "Subscriptors “expirats”"
1491
+
1492
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1493
+ msgid "Old Members"
1494
+ msgstr "Subscriptors antics"
1495
+
1496
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1497
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1498
+ #: adminpages/memberslist.php:50
1499
+ msgid "Search Members"
1500
+ msgstr "Cerca Subscriptors"
1501
+
1502
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1503
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1504
+ #, php-format
1505
+ msgid "%d members found."
1506
+ msgstr "%d subscriptor no trobat."
1507
+
1508
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1509
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1510
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1511
+ #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1512
+ #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
1513
+ #: pages/checkout.php:180 pages/checkout.php:182
1514
+ #: shortcodes/pmpro_account.php:105
1515
+ msgid "Username"
1516
+ msgstr "Nom d’usuari"
1517
+
1518
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1519
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1520
+ msgid "First&nbsp;Name"
1521
+ msgstr "Nom"
1522
+
1523
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1524
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1525
+ msgid "Last&nbsp;Name"
1526
+ msgstr "Cognoms"
1527
+
1528
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1529
+ #: pages/confirmation.php:61 pages/invoice.php:48
1530
+ #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1531
+ #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1532
+ #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1533
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1534
+ #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:321
1535
+ #: pages/confirmation.php:59 pages/invoice.php:46
1536
+ msgid "Billing Address"
1537
+ msgstr "Adreça de Facturació"
1538
+
1539
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:161
1540
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1541
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1542
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1543
+ #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
1544
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1545
+ msgid "Membership"
1546
+ msgstr "Subscriptor"
1547
+
1548
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1549
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1550
+ msgid "Fee"
1551
+ msgstr "Preu"
1552
+
1553
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:162
1554
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1555
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1556
+ #: adminpages/reports/login.php:146
1557
+ msgid "Joined"
1558
+ msgstr "Afegit"
1559
+
1560
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1561
+ #: adminpages/memberslist.php:167
1562
+ msgid "Ended"
1563
+ msgstr "Finalitzat"
1564
+
1565
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1566
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1567
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1568
+ #: adminpages/reports/login.php:212
1569
+ msgid "No members found."
1570
+ msgstr "No s’han trobat subscriptors"
1571
+
1572
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1573
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1574
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1575
+ #: adminpages/reports/login.php:212
1576
+ msgid "Search all levels"
1577
+ msgstr "Cerca a tots els nivells"
1578
+
1579
+ #: adminpages/orders.php:155
1580
+ msgid "Invoice emailed successfully."
1581
+ msgstr "Factura correctament enviada per correu electrònic."
1582
+
1583
+ #: adminpages/orders.php:160
1584
+ msgid "Error emailing invoice."
1585
+ msgstr "Error en la factura enviada per correu electrònic."
1586
+
1587
+ #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1588
+ msgid "Order deleted successfully."
1589
+ msgstr "Comanda esborrada correctament"
1590
+
1591
+ #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1592
+ msgid "Error deleting order."
1593
+ msgstr "Error esborrant comanda."
1594
+
1595
+ #: adminpages/orders.php:270 adminpages/orders.php:119
1596
+ #: adminpages/orders.php:169
1597
+ msgid "Order saved successfully."
1598
+ msgstr "Comanda salvada correctament."
1599
+
1600
+ #: adminpages/orders.php:275 adminpages/orders.php:124
1601
+ #: adminpages/orders.php:174
1602
+ msgid "Error updating order timestamp."
1603
+ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)"
1604
+
1605
+ #: adminpages/orders.php:281 adminpages/orders.php:130
1606
+ #: adminpages/orders.php:180
1607
+ msgid "Error saving order."
1608
+ msgstr "Error guardant la comanda."
1609
+
1610
+ #: adminpages/orders.php:317 adminpages/orders.php:195
1611
+ #: adminpages/orders.php:245 adminpages/orders.php:346
1612
+ msgid "Order"
1613
+ msgstr "Comanda"
1614
+
1615
+ #: adminpages/orders.php:319 adminpages/orders.php:197
1616
+ #: adminpages/orders.php:247 adminpages/orders.php:348
1617
+ msgid "New Order"
1618
+ msgstr "Nova comanda"
1619
+
1620
+ #: adminpages/orders.php:342 adminpages/orders.php:220
1621
+ #: adminpages/orders.php:270 adminpages/orders.php:371
1622
+ msgid "Randomly generated for you."
1623
+ msgstr "Generat aleatoriament per a tu"
1624
+
1625
+ #: adminpages/orders.php:347 adminpages/orders.php:225
1626
+ #: adminpages/orders.php:275 adminpages/orders.php:376
1627
+ msgid "User ID"
1628
+ msgstr "ID d’usuari"
1629
+
1630
+ #: adminpages/orders.php:356 adminpages/orders.php:234
1631
+ #: adminpages/orders.php:284 adminpages/orders.php:385
1632
+ msgid "Membership Level ID"
1633
+ msgstr "ID del Nivell de subscripció"
1634
+
1635
+ #: adminpages/orders.php:365 adminpages/orders.php:243
1636
+ #: adminpages/orders.php:293 adminpages/orders.php:394
1637
+ msgid "Billing Name"
1638
+ msgstr "Nom de Facturació"
1639
+
1640
+ #: adminpages/orders.php:373 adminpages/orders.php:251
1641
+ #: adminpages/orders.php:301 adminpages/orders.php:402
1642
+ msgid "Billing Street"
1643
+ msgstr "Adreça de Facturació"
1644
+
1645
+ #: adminpages/orders.php:380 adminpages/orders.php:258
1646
+ #: adminpages/orders.php:308 adminpages/orders.php:409
1647
+ msgid "Billing City"
1648
+ msgstr "Ciutat de Facturació"
1649
+
1650
+ #: adminpages/orders.php:387 adminpages/orders.php:265
1651
+ #: adminpages/orders.php:315 adminpages/orders.php:416
1652
+ msgid "Billing State"
1653
+ msgstr "Provincia de Facturació"
1654
+
1655
+ #: adminpages/orders.php:394 adminpages/orders.php:272
1656
+ #: adminpages/orders.php:322 adminpages/orders.php:423
1657
+ msgid "Billing Postal Code"
1658
+ msgstr "Codi postal de Facturació"
1659
+
1660
+ #: adminpages/orders.php:401 adminpages/orders.php:279
1661
+ #: adminpages/orders.php:329 adminpages/orders.php:430
1662
+ msgid "Billing Country"
1663
+ msgstr "País de Facturació"
1664
+
1665
+ #: adminpages/orders.php:409 adminpages/orders.php:287
1666
+ #: adminpages/orders.php:337 adminpages/orders.php:438
1667
+ msgid "Billing Phone"
1668
+ msgstr "Telèfon de Facturació"
1669
+
1670
+ #: adminpages/orders.php:418 adminpages/orders.php:296
1671
+ #: adminpages/orders.php:346 adminpages/orders.php:447
1672
+ msgid "Sub Total"
1673
+ msgstr "Subtotal"
1674
+
1675
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1676
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1677
+ #: adminpages/orders.php:304 adminpages/orders.php:354
1678
+ #: adminpages/orders.php:455 pages/invoice.php:78
1679
+ msgid "Tax"
1680
+ msgstr "Impost"
1681
+
1682
+ #: adminpages/orders.php:434 adminpages/orders.php:312
1683
+ #: adminpages/orders.php:362 adminpages/orders.php:463
1684
+ msgid "Coupon Amount"
1685
+ msgstr "Valor del cupó"
1686
+
1687
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1688
+ #: adminpages/templates/orders-email.php:64
1689
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1690
+ #: adminpages/orders.php:320 adminpages/orders.php:370
1691
+ #: adminpages/orders.php:471 adminpages/orders.php:602
1692
+ #: adminpages/orders.php:905 adminpages/orders.php:915
1693
+ #: adminpages/orders.php:971 pages/invoice.php:82
1694
+ msgid "Total"
1695
+ msgstr "Total"
1696
+
1697
+ #: adminpages/orders.php:447 adminpages/orders.php:325
1698
+ #: adminpages/orders.php:375 adminpages/orders.php:476
1699
+ msgid "Should be subtotal + tax - couponamount."
1700
+ msgstr "Hauria de ser subtotal+impost+valor del cupó"
1701
+
1702
+ #: adminpages/orders.php:452 adminpages/orders.php:330
1703
+ #: adminpages/orders.php:380 adminpages/orders.php:481
1704
+ msgid "Payment Type"
1705
+ msgstr "Tipus de pagament"
1706
+
1707
+ #: adminpages/orders.php:457 adminpages/orders.php:335
1708
+ #: adminpages/orders.php:385 adminpages/orders.php:486
1709
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1710
+ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
1711
+
1712
+ #: adminpages/orders.php:461
1713
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1714
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1715
+ #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1716
+ #: adminpages/orders.php:490
1717
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1718
+ #: classes/gateways/class.pmprogateway_braintree.php:304
1719
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1720
+ #: classes/gateways/class.pmprogateway_stripe.php:409
1721
+ #: classes/gateways/class.pmprogateway_stripe.php:419
1722
+ #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:234
1723
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1724
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1725
+ #: pages/checkout.php:517 pages/checkout.php:525
1726
+ msgid "Card Type"
1727
+ msgstr "Tipus de targeta"
1728
+
1729
+ #: adminpages/orders.php:466 adminpages/orders.php:344
1730
+ #: adminpages/orders.php:394 adminpages/orders.php:495
1731
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1732
+ msgstr "Per exemple Visa, MasterCard, AMEX, etc"
1733
+
1734
+ #: adminpages/orders.php:470
1735
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1736
+ #: adminpages/orders.php:348 adminpages/orders.php:398
1737
+ #: adminpages/orders.php:499 adminpages/paymentsettings.php:347
1738
+ #: adminpages/paymentsettings.php:352
1739
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1740
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1741
+ msgid "Account Number"
1742
+ msgstr "Nombre de Compte"
1743
+
1744
+ #: adminpages/orders.php:475 adminpages/orders.php:353
1745
+ #: adminpages/orders.php:403 adminpages/orders.php:504
1746
+ msgid "Obscure all but last 4 digits."
1747
+ msgstr "Tot amagat menys els últims 4 dígits"
1748
+
1749
+ #: adminpages/orders.php:480 adminpages/orders.php:358
1750
+ #: adminpages/orders.php:408 adminpages/orders.php:509
1751
+ msgid "Expiration Month"
1752
+ msgstr "Mes de finalització/expiració"
1753
+
1754
+ #: adminpages/orders.php:487 adminpages/orders.php:365
1755
+ #: adminpages/orders.php:415 adminpages/orders.php:516
1756
+ msgid "Expiration Year"
1757
+ msgstr "Any de finalització/expiració"
1758
+
1759
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1760
+ #: adminpages/orders.php:373 adminpages/orders.php:423
1761
+ #: adminpages/orders.php:524 adminpages/orders.php:606
1762
+ #: adminpages/orders.php:909 adminpages/orders.php:919
1763
+ #: adminpages/orders.php:975
1764
+ msgid "Status"
1765
+ msgstr "Estat"
1766
+
1767
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1768
+ #: adminpages/orders.php:394 adminpages/orders.php:444
1769
+ #: adminpages/orders.php:545 adminpages/orders.php:604
1770
+ #: adminpages/orders.php:907 adminpages/orders.php:917
1771
+ #: adminpages/orders.php:973
1772
+ msgid "Gateway"
1773
+ msgstr "Passarel·la"
1774
+
1775
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1776
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1777
+ #: adminpages/orders.php:462 adminpages/orders.php:563
1778
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1779
+ #: adminpages/paymentsettings.php:184
1780
+ msgid "Gateway Environment"
1781
+ msgstr "Entorn de passarel·la"
1782
+
1783
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1784
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1785
+ #: adminpages/orders.php:466 adminpages/orders.php:567
1786
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1787
+ #: adminpages/paymentsettings.php:188
1788
+ msgid "Sandbox/Testing"
1789
+ msgstr "Sandbox/Proves"
1790
+
1791
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1792
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1793
+ #: adminpages/orders.php:467 adminpages/orders.php:568
1794
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1795
+ #: adminpages/paymentsettings.php:189
1796
+ msgid "Live/Production"
1797
+ msgstr "Live/Producció"
1798
+
1799
+ #: adminpages/orders.php:546 adminpages/orders.php:423
1800
+ #: adminpages/orders.php:473 adminpages/orders.php:474
1801
+ #: adminpages/orders.php:575
1802
+ msgid "Payment Transaction ID"
1803
+ msgstr "ID de la transacció de pagament"
1804
+
1805
+ #: adminpages/orders.php:551 adminpages/orders.php:428
1806
+ #: adminpages/orders.php:478 adminpages/orders.php:479
1807
+ #: adminpages/orders.php:580
1808
+ msgid "Generated by the gateway. Useful to cross reference orders."
1809
+ msgstr ""
1810
+ "Generat per la passarel·la. Útil per a comandes de referències creuades."
1811
+
1812
+ #: adminpages/orders.php:555 adminpages/orders.php:432
1813
+ #: adminpages/orders.php:482 adminpages/orders.php:483
1814
+ #: adminpages/orders.php:584
1815
+ msgid "Subscription Transaction ID"
1816
+ msgstr "ID de la transacció per a subscripció"
1817
+
1818
+ #: adminpages/orders.php:560 adminpages/orders.php:437
1819
+ #: adminpages/orders.php:487 adminpages/orders.php:488
1820
+ #: adminpages/orders.php:589
1821
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1822
+ msgstr ""
1823
+ "Generat per la passarel·la. Útil per a subscripcions de referències creuades."
1824
+
1825
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1826
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1827
+ #: adminpages/orders.php:492 adminpages/orders.php:493
1828
+ #: adminpages/orders.php:594 adminpages/orders.php:607
1829
+ #: adminpages/orders.php:910 adminpages/orders.php:920
1830
+ #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
1831
+ #: shortcodes/pmpro_account.php:122
1832
+ msgid "Date"
1833
+ msgstr "Data"
1834
+
1835
+ #: adminpages/orders.php:599 adminpages/orders.php:477
1836
+ #: adminpages/orders.php:527 adminpages/orders.php:628
1837
+ msgid "Affiliate ID"
1838
+ msgstr "ID de subscripció"
1839
+
1840
+ #: adminpages/orders.php:607 adminpages/orders.php:485
1841
+ #: adminpages/orders.php:535 adminpages/orders.php:636
1842
+ msgid "Affiliate SubID"
1843
+ msgstr "SubID de subscripció"
1844
+
1845
+ #: adminpages/orders.php:617 adminpages/orders.php:495
1846
+ #: adminpages/orders.php:545 adminpages/orders.php:646
1847
+ msgid "Notes"
1848
+ msgstr "Notes"
1849
+
1850
+ #: adminpages/orders.php:632 adminpages/orders.php:510
1851
+ #: adminpages/orders.php:560 adminpages/orders.php:661
1852
+ msgid "Save Order"
1853
+ msgstr "Salva Comanda"
1854
+
1855
+ #: adminpages/orders.php:667 adminpages/orders.php:696
1856
+ msgid "Email Invoice"
1857
+ msgstr "Factura per correu electrònic"
1858
+
1859
+ #: adminpages/orders.php:670 adminpages/orders.php:699
1860
+ msgid "Send an invoice for this order to: "
1861
+ msgstr "Envia factura per aquesta comanda a:"
1862
+
1863
+ #: adminpages/orders.php:672 adminpages/orders.php:701
1864
+ msgid "Send Email"
1865
+ msgstr "Envia Correu"
1866
+
1867
+ #: adminpages/orders.php:677 includes/adminpages.php:56
1868
+ #: includes/adminpages.php:172 adminpages/orders.php:520
1869
+ #: adminpages/orders.php:570 adminpages/orders.php:706
1870
+ #: includes/adminpages.php:17 includes/adminpages.php:55
1871
+ #: includes/adminpages.php:84 includes/adminpages.php:156
1872
+ #: includes/adminpages.php:163 includes/adminpages.php:167
1873
+ msgid "Orders"
1874
+ msgstr "Comandes"
1875
+
1876
+ #: adminpages/orders.php:678 adminpages/orders.php:521
1877
+ #: adminpages/orders.php:571 adminpages/orders.php:707
1878
+ msgid "Add New Order"
1879
+ msgstr "Afegeix nova comanda"
1880
+
1881
+ #: adminpages/orders.php:713 adminpages/orders.php:606
1882
+ #: adminpages/orders.php:742
1883
+ msgid "Within a Date Range"
1884
+ msgstr "Dins del període"
1885
+
1886
+ #: adminpages/orders.php:714 adminpages/orders.php:607
1887
+ #: adminpages/orders.php:743
1888
+ msgid "Predefined Date Range"
1889
+ msgstr "Període predefinit"
1890
+
1891
+ #: adminpages/orders.php:715 adminpages/orders.php:608
1892
+ #: adminpages/orders.php:744
1893
+ msgid "Within a Level"
1894
+ msgstr "Dins del nivell"
1895
+
1896
+ #: adminpages/orders.php:716 adminpages/orders.php:609
1897
+ #: adminpages/orders.php:745
1898
+ msgid "Within a Status"
1899
+ msgstr "Dins de l’”Status”"
1900
+
1901
+ #: adminpages/orders.php:719 adminpages/orders.php:612
1902
+ #: adminpages/orders.php:748
1903
+ msgid "From"
1904
+ msgstr "De"
1905
+
1906
+ #: adminpages/orders.php:731 adminpages/orders.php:624
1907
+ #: adminpages/orders.php:760
1908
+ msgid "To"
1909
+ msgstr "per a "
1910
+
1911
+ #: adminpages/orders.php:743 adminpages/orders.php:636
1912
+ #: adminpages/orders.php:772
1913
+ msgid "filter by "
1914
+ msgstr "filtrat per"
1915
+
1916
+ #: adminpages/orders.php:780 adminpages/orders.php:674
1917
+ #: adminpages/orders.php:809
1918
+ msgid "Filter"
1919
+ msgstr "Filtre"
1920
+
1921
+ #: adminpages/orders.php:883 adminpages/orders.php:886
1922
+ #: adminpages/orders.php:535 adminpages/orders.php:538
1923
+ #: adminpages/orders.php:777 adminpages/orders.php:780
1924
+ #: adminpages/orders.php:912 adminpages/orders.php:915
1925
+ msgid "Search Orders"
1926
+ msgstr "Cerca Comandes"
1927
+
1928
+ #: adminpages/orders.php:930 adminpages/orders.php:590
1929
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1930
+ #: adminpages/orders.php:959
1931
+ #, php-format
1932
+ msgid "%d orders found."
1933
+ msgstr "%d comandes no trobades"
1934
+
1935
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
1936
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1937
+ #: adminpages/orders.php:599 adminpages/orders.php:902
1938
+ #: adminpages/orders.php:912 adminpages/orders.php:968
1939
+ #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
1940
+ #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
1941
+ #: adminpages/reports/login.php:143
1942
+ msgid "User"
1943
+ msgstr "Usuari"
1944
+
1945
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
1946
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1947
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1948
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1949
+ #: adminpages/orders.php:914 adminpages/orders.php:970 includes/init.php:214
1950
+ #: includes/init.php:217 includes/init.php:218 includes/init.php:220
1951
+ #: includes/init.php:222 includes/init.php:230 includes/profile.php:25
1952
+ #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
1953
+ #: pages/confirmation.php:46 pages/confirmation.php:62
1954
+ #: pages/confirmation.php:103 pages/invoice.php:27 pages/invoice.php:49
1955
+ msgid "Membership Level"
1956
+ msgstr "Nivell de subscripció"
1957
+
1958
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
1959
+ #: adminpages/orders.php:603 adminpages/orders.php:651
1960
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1961
+ #: adminpages/orders.php:954 adminpages/orders.php:972
1962
+ #: adminpages/orders.php:982 adminpages/orders.php:1040
1963
+ msgid "Payment"
1964
+ msgstr "Pagament"
1965
+
1966
+ #: adminpages/orders.php:945 adminpages/orders.php:605
1967
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1968
+ #: adminpages/orders.php:974
1969
+ msgid "Transaction IDs"
1970
+ msgstr "IDs de transacció"
1971
+
1972
+ #: adminpages/orders.php:972 adminpages/orders.php:630
1973
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1974
+ #: adminpages/orders.php:1001
1975
+ msgid "deleted"
1976
+ msgstr "esborrat"
1977
+
1978
+ #: adminpages/orders.php:1013 adminpages/orders.php:653
1979
+ #: adminpages/orders.php:956 adminpages/orders.php:974
1980
+ #: adminpages/orders.php:984 adminpages/orders.php:1042
1981
+ msgid "Subscription"
1982
+ msgstr "Subscripció"
1983
+
1984
+ #: adminpages/orders.php:1027 adminpages/orders.php:664
1985
+ #: adminpages/orders.php:967 adminpages/orders.php:985
1986
+ #: adminpages/orders.php:995 adminpages/orders.php:998
1987
+ #: adminpages/orders.php:1056
1988
+ #, php-format
1989
+ msgid ""
1990
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1991
+ "want to delete order %s?"
1992
+ msgstr ""
1993
+ "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que "
1994
+ "vols esborrar la comanda %s?"
1995
+
1996
+ #: adminpages/orders.php:1030 adminpages/orders.php:1059
1997
+ msgid "print"
1998
+ msgstr "imprimeix"
1999
+
2000
+ #: adminpages/orders.php:1033 adminpages/orders.php:1062
2001
+ msgid "email"
2002
+ msgstr "correu electrònic"
2003
+
2004
+ #: adminpages/orders.php:1043 adminpages/orders.php:674
2005
+ #: adminpages/orders.php:977 adminpages/orders.php:995
2006
+ #: adminpages/orders.php:1005 adminpages/orders.php:1008
2007
+ #: adminpages/orders.php:1072
2008
+ msgid "No orders found."
2009
+ msgstr "No s’han trobat comandes"
2010
+
2011
+ #: adminpages/pagesettings.php:54
2012
+ msgid "Your page settings have been updated."
2013
+ msgstr "La teva pàgina de configuració ha estat actualitzada"
2014
+
2015
+ #: adminpages/pagesettings.php:64 adminpages/pagesettings.php:51
2016
+ msgid "Membership Account"
2017
+ msgstr "Compte de Subscriptor"
2018
+
2019
+ #: adminpages/pagesettings.php:65 adminpages/pagesettings.php:54
2020
+ msgid "Membership Billing"
2021
+ msgstr "Facturació de la subscripció"
2022
+
2023
+ #: adminpages/pagesettings.php:66 adminpages/pagesettings.php:57
2024
+ msgid "Membership Cancel"
2025
+ msgstr "Cancel·lació de la subscripció"
2026
+
2027
+ #: adminpages/pagesettings.php:67 adminpages/pagesettings.php:60
2028
+ msgid "Membership Checkout"
2029
+ msgstr "Checkout de la subscripció"
2030
+
2031
+ #: adminpages/pagesettings.php:68 adminpages/pagesettings.php:63
2032
+ msgid "Membership Confirmation"
2033
+ msgstr "Confirmació de la subscripció"
2034
+
2035
+ #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:66
2036
+ msgid "Membership Invoice"
2037
+ msgstr "Factura de la subscripció"
2038
+
2039
+ #: adminpages/pagesettings.php:83 adminpages/pagesettings.php:111
2040
+ msgid "The following pages have been created for you"
2041
+ msgstr "Les següents pàgines han estat creades per a tu"
2042
+
2043
+ #: adminpages/pagesettings.php:97 adminpages/pagesettings.php:98
2044
+ #: adminpages/pagesettings.php:126
2045
+ msgid ""
2046
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
2047
+ "page."
2048
+ msgstr ""
2049
+ "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per "
2050
+ "al Paid Memberships Pro"
2051
+
2052
+ #: adminpages/pagesettings.php:101 adminpages/pagesettings.php:104
2053
+ #: adminpages/pagesettings.php:132
2054
+ msgid ""
2055
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
2056
+ msgstr ""
2057
+ "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel "
2058
+ "Paid Memberships Pro o"
2059
+
2060
+ #: adminpages/pagesettings.php:102 adminpages/pagesettings.php:104
2061
+ #: adminpages/pagesettings.php:132
2062
+ msgid "click here to let us generate them for you"
2063
+ msgstr "Clica aquí per permetre’ns generar-les per a tu"
2064
+
2065
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:112
2066
+ #: adminpages/pagesettings.php:140
2067
+ msgid "Account Page"
2068
+ msgstr "Pàgina de Compte"
2069
+
2070
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
2071
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
2072
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
2073
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
2074
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
2075
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2076
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:177
2077
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:193
2078
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
2079
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
2080
+ #: adminpages/pagesettings.php:241
2081
+ msgid "Choose One"
2082
+ msgstr "Escull-ne un"
2083
+
2084
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
2085
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
2086
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
2087
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
2088
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
2089
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
2090
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
2091
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2092
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
2093
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
2094
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
2095
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:197
2096
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
2097
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:225
2098
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
2099
+ #: adminpages/pagesettings.php:244
2100
+ msgid "edit page"
2101
+ msgstr "Edita la pàgina"
2102
+
2103
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
2104
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
2105
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
2106
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
2107
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
2108
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:151
2109
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:164
2110
+ #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
2111
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
2112
+ #: adminpages/pagesettings.php:195 adminpages/pagesettings.php:198
2113
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
2114
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
2115
+ #: adminpages/pagesettings.php:227 adminpages/pagesettings.php:230
2116
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:246
2117
+ msgid "view page"
2118
+ msgstr "Mira la pàgina"
2119
+
2120
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
2121
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
2122
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
2123
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:121
2124
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2125
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2126
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2127
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:166
2128
+ #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
2129
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:184
2130
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
2131
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:200
2132
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
2133
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:216
2134
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:229
2135
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:245
2136
+ #: adminpages/pagesettings.php:248
2137
+ msgid "Include the shortcode"
2138
+ msgstr "Inclou l’”enllaç” (shortcode)"
2139
+
2140
+ #: adminpages/pagesettings.php:129 adminpages/pagesettings.php:125
2141
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2142
+ #: adminpages/pagesettings.php:158
2143
+ msgid "Billing Information Page"
2144
+ msgstr "Pàgina d’informació de Facturació"
2145
+
2146
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:138
2147
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2148
+ #: adminpages/pagesettings.php:173
2149
+ msgid "Cancel Page"
2150
+ msgstr "Cancel·la pàgina"
2151
+
2152
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:152
2153
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2154
+ #: adminpages/pagesettings.php:189
2155
+ msgid "Checkout Page"
2156
+ msgstr "Pàgina de Checkout"
2157
+
2158
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:166
2159
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2160
+ #: adminpages/pagesettings.php:205
2161
+ msgid "Confirmation Page"
2162
+ msgstr "Pàgina de Confirmació"
2163
+
2164
+ #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:180
2165
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2166
+ #: adminpages/pagesettings.php:221
2167
+ msgid "Invoice Page"
2168
+ msgstr "Pàgina de Factura"
2169
+
2170
+ #: adminpages/pagesettings.php:224 adminpages/pagesettings.php:194
2171
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2172
+ #: adminpages/pagesettings.php:237
2173
+ msgid "Levels Page"
2174
+ msgstr "Pàgina de Nivells"
2175
+
2176
+ #: adminpages/pagesettings.php:245
2177
+ msgid "Additional Page Settings"
2178
+ msgstr "Configuració addicional de pàgina"
2179
+
2180
+ #: adminpages/pagesettings.php:280
2181
+ msgid "Generate Page"
2182
+ msgstr "Genera pàgina"
2183
+
2184
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
2185
+ #: adminpages/paymentsettings.php:82
2186
+ msgid "Your payment settings have been updated."
2187
+ msgstr "La teva configuració de pagament ha estat actualitzada"
2188
+
2189
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
2190
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2191
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
2192
+ msgid "Payment Gateway"
2193
+ msgstr "Passarela de pagament (Payment Gateway)"
2194
+
2195
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:201
2196
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2197
+ msgid "SSL Settings"
2198
+ msgstr "Configuració SSL"
2199
+
2200
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
2201
+ msgid ""
2202
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
2203
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2204
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2205
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2206
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2207
+ msgstr ""
2208
+ "Aprèn més sobre <a title=\"Paid Memberships Pro - SSL Settings\" target="
2209
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2210
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2211
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2212
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2213
+
2214
+ #: adminpages/paymentsettings.php:101
2215
+ msgid "Choose a Gateway"
2216
+ msgstr "Escull una passarel·la"
2217
+
2218
+ #: adminpages/paymentsettings.php:148
2219
+ msgid "Currency and Tax Settings"
2220
+ msgstr "Configuració de moneda i impostos"
2221
+
2222
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
2223
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
2224
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
2225
+ msgid "Currency"
2226
+ msgstr "Moneda"
2227
+
2228
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
2229
+ #: adminpages/paymentsettings.php:402
2230
+ msgid ""
2231
+ "Not all currencies will be supported by every gateway. Please check with "
2232
+ "your gateway."
2233
+ msgstr ""
2234
+ "No totes les monedes es poden usar a totes les passarel·les. Si us plau "
2235
+ "comprova la teva passarel·la."
2236
+
2237
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
2238
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
2239
+ #: adminpages/paymentsettings.php:408
2240
+ msgid "Accepted Credit Card Types"
2241
+ msgstr "Tipus de tarjetes de crèdit acceptades."
2242
+
2243
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2244
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2245
+ #: adminpages/paymentsettings.php:445
2246
+ msgid "Sales Tax"
2247
+ msgstr "Impost a la venta"
2248
+
2249
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2250
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
2251
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
2252
+ #: pages/billing.php:78 pages/billing.php:82
2253
+ msgid "optional"
2254
+ msgstr "opcional"
2255
+
2256
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
2257
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
2258
+ #: adminpages/paymentsettings.php:448
2259
+ msgid "Tax State"
2260
+ msgstr "Estat/país de la taxa"
2261
+
2262
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
2263
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
2264
+ #: adminpages/paymentsettings.php:449
2265
+ msgid "abbreviation, e.g. \"PA\""
2266
+ msgstr "abreviació, per exemple “PA”"
2267
+
2268
+ #: adminpages/paymentsettings.php:193
2269
+ msgid "Tax Rate"
2270
+ msgstr "Tarifa de l’impost"
2271
+
2272
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
2273
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
2274
+ #: adminpages/paymentsettings.php:451
2275
+ msgid "decimal, e.g. \"0.06\""
2276
+ msgstr "decimal, per exemple \"0.06\""
2277
+
2278
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
2279
+ #: adminpages/paymentsettings.php:452
2280
+ msgid ""
2281
+ "US only. If values are given, tax will be applied for any members ordering "
2282
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
2283
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
2284
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
2285
+ msgstr ""
2286
+ "Només US. Si es donen els valors, l’impost s’aplicarà per a qualsevol "
2287
+ "subscriptor que faci una comanda des de l’Estat seleccionat.<br />per a "
2288
+ "normes més complexes fora dels US utilitzeu <a target=\"_blank\" href="
2289
+ "\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-"
2290
+ "pro/\">pmpro_tax filter</a>."
2291
+
2292
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
2293
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
2294
+ msgid "Force SSL"
2295
+ msgstr "Força SSL"
2296
+
2297
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
2298
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
2299
+ msgid "Yes (with JavaScript redirects)"
2300
+ msgstr "Sí (amb redirecció de JavaScript)"
2301
+
2302
+ #: adminpages/paymentsettings.php:214
2303
+ msgid ""
2304
+ "Recommended: Yes. Try the JavaScript redirects setting if you are having "
2305
+ "issues with infinite redirect loops."
2306
+ msgstr ""
2307
+ "Recomanat: Sí. Prova la redirecció de JavaScript si tens problemes amb "
2308
+ "redireccions amb “loops” infinits."
2309
+
2310
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
2311
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
2312
+ #: adminpages/paymentsettings.php:470
2313
+ msgid "SSL Seal Code"
2314
+ msgstr "SSL Seal Code"
2315
+
2316
+ #: adminpages/paymentsettings.php:223
2317
+ msgid ""
2318
+ "Your <strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2319
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> must "
2320
+ "be installed by your web host. Your <strong>SSL Seal</strong> will be a "
2321
+ "short HTML or JavaScript snippet that can be pasted here."
2322
+ msgstr ""
2323
+ "El teu<strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2324
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> ha de "
2325
+ "ser instal·lat pel vostre hosting. El teu <strong>SSL Seal</strong> serà un "
2326
+ "petit HTML o JavaScript snippet que es pot enganxar aquí."
2327
+
2328
+ #: adminpages/paymentsettings.php:228
2329
+ msgid "Extra HTTPS URL Filter"
2330
+ msgstr "Extra HTTPS URL Filtre"
2331
+
2332
+ #: adminpages/paymentsettings.php:231
2333
+ msgid ""
2334
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
2335
+ "secure pages. Check this if you are using SSL and have warnings on your "
2336
+ "checkout pages."
2337
+ msgstr ""
2338
+ "Passa tot el codi HTML generat a través del filtre URL per a afegir HTTPS a "
2339
+ "URLs utilitzat a les pàgines segures. Comprova això si estàs utilitzant SSL "
2340
+ "i tens advertències a les teves pàgines de Checkout."
2341
+
2342
+ #: adminpages/reports.php:40 adminpages/reports.php:26
2343
+ #: adminpages/reports.php:37
2344
+ msgid "Details"
2345
+ msgstr "Detalls"
2346
+
2347
+ #: adminpages/reports.php:61
2348
+ msgid "Back to Reports Dashboard"
2349
+ msgstr "Torna a l’escriptori de Reports (Reports Dashboard)"
2350
+
2351
+ #: adminpages/reports/login.php:16
2352
+ msgid "Visits, Views, and Logins"
2353
+ msgstr "Visites, vistes i Logins"
2354
+
2355
+ #: adminpages/reports/login.php:31
2356
+ msgid "Visits"
2357
+ msgstr "Visites"
2358
+
2359
+ #: adminpages/reports/login.php:32
2360
+ msgid "Views"
2361
+ msgstr "Vistes"
2362
+
2363
+ #: adminpages/reports/login.php:33
2364
+ msgid "Logins"
2365
+ msgstr "Logins"
2366
+
2367
+ #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2368
+ #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2369
+ #: adminpages/reports/memberships.php:81
2370
+ msgid "Today"
2371
+ msgstr "Avui"
2372
+
2373
+ #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2374
+ #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2375
+ #: adminpages/reports/memberships.php:77
2376
+ msgid "This Month"
2377
+ msgstr "Aquest mes"
2378
+
2379
+ #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2380
+ #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2381
+ #: adminpages/reports/memberships.php:69
2382
+ msgid "All Time"
2383
+ msgstr "Sempre"
2384
+
2385
+ #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2386
+ #: adminpages/reports/login.php:63
2387
+ msgid "Visits, Views, and Logins Report"
2388
+ msgstr "Visites, vistes i informe de Logins "
2389
+
2390
+ #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2391
+ #: adminpages/reports/login.php:68
2392
+ msgid "All Users"
2393
+ msgstr "Tots els usuaris"
2394
+
2395
+ #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2396
+ #: adminpages/reports/login.php:148
2397
+ msgid "Last Visit"
2398
+ msgstr "Última visita"
2399
+
2400
+ #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2401
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2402
+ #: adminpages/reports/login.php:149
2403
+ msgid "Visits This Month"
2404
+ msgstr "Visites aquest mes"
2405
+
2406
+ #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2407
+ #: adminpages/reports/login.php:150
2408
+ msgid "Total Visits"
2409
+ msgstr "Visites totals"
2410
+
2411
+ #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2412
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2413
+ #: adminpages/reports/login.php:151
2414
+ msgid "Views This Month"
2415
+ msgstr "Visites aquest mes"
2416
+
2417
+ #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2418
+ #: adminpages/reports/login.php:152
2419
+ msgid "Total Views"
2420
+ msgstr "Visites totals"
2421
+
2422
+ #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2423
+ #: adminpages/reports/login.php:153
2424
+ msgid "Last Login"
2425
+ msgstr "Últim Login"
2426
+
2427
+ #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2428
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2429
+ #: adminpages/reports/login.php:154
2430
+ msgid "Logins This Month"
2431
+ msgstr "Logins aquest mes"
2432
+
2433
+ #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2434
+ #: adminpages/reports/login.php:155
2435
+ msgid "Total Logins"
2436
+ msgstr "Total de Logins"
2437
+
2438
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:259
2439
+ #: adminpages/reports/memberships.php:252
2440
+ #: adminpages/reports/memberships.php:288
2441
+ msgid "Membership Stats"
2442
+ msgstr "Estadístiques dels subscriptors"
2443
+
2444
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
2445
+ msgid "Signups"
2446
+ msgstr "Altes (Signups)"
2447
+
2448
+ #: adminpages/reports/memberships.php:38
2449
+ msgid "All Cancellations"
2450
+ msgstr "Totes les cancel·lacions"
2451
+
2452
+ #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2453
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2454
+ msgid "This Year"
2455
+ msgstr "Aquest any"
2456
+
2457
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2458
+ #: adminpages/reports/memberships.php:258
2459
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2460
+ #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2461
+ msgid "Daily"
2462
+ msgstr "Diari"
2463
+
2464
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2465
+ #: adminpages/reports/memberships.php:259
2466
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2467
+ #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2468
+ msgid "Monthly"
2469
+ msgstr "Mensual"
2470
+
2471
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2472
+ #: adminpages/reports/memberships.php:260
2473
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2474
+ #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2475
+ msgid "Annual"
2476
+ msgstr "Anual"
2477
+
2478
+ #: adminpages/reports/memberships.php:270
2479
+ msgid "Signups vs. All Cancellations"
2480
+ msgstr "Altes vs. totes les Cancel·lacions"
2481
+
2482
+ #: adminpages/reports/memberships.php:271
2483
+ #: adminpages/reports/memberships.php:263
2484
+ #: adminpages/reports/memberships.php:299
2485
+ msgid "Signups vs. Cancellations"
2486
+ msgstr "Altes vs. Cancel·lacions"
2487
+
2488
+ #: adminpages/reports/memberships.php:272
2489
+ msgid "Signups vs. Expirations"
2490
+ msgstr "Altes vs. Expiracions"
2491
+
2492
+ #: adminpages/reports/memberships.php:277
2493
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2494
+ #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2495
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2496
+ #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2497
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2498
+ #: adminpages/reports/memberships.php:268
2499
+ #: adminpages/reports/memberships.php:279
2500
+ #: adminpages/reports/memberships.php:304
2501
+ #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2502
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2503
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2504
+ #: adminpages/reports/sales.php:215
2505
+ msgid "for"
2506
+ msgstr "per a"
2507
+
2508
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2509
+ #: adminpages/reports/memberships.php:295
2510
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2511
+ #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2512
+ msgid "Generate Report"
2513
+ msgstr "Genera Informe"
2514
+
2515
+ #: adminpages/reports/sales.php:18
2516
+ msgid "Sales and Revenue (Testing/Sandbox)"
2517
+ msgstr "Vendes i beneficis (prova/Sandbox)"
2518
+
2519
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2520
+ #: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
2521
+ msgid "Sales and Revenue"
2522
+ msgstr "Vendes i beneficis"
2523
+
2524
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2525
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2526
+ #: adminpages/reports/sales.php:202
2527
+ msgid "Sales"
2528
+ msgstr "Vendes"
2529
+
2530
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2531
+ #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2532
+ #: adminpages/reports/sales.php:201
2533
+ msgid "Revenue"
2534
+ msgstr "Benefici"
2535
+
2536
+ #: adminpages/templates/orders-email.php:14
2537
+ #: adminpages/templates/orders-print.php:50
2538
+ msgid "Invoice #: "
2539
+ msgstr "Factura #: "
2540
+
2541
+ #: adminpages/templates/orders-email.php:18
2542
+ #: adminpages/templates/orders-print.php:54
2543
+ msgid "Date:"
2544
+ msgstr "Data:"
2545
+
2546
+ #: adminpages/templates/orders-email.php:24
2547
+ msgid "Bill to:"
2548
+ msgstr "Facturat a:"
2549
+
2550
+ #: adminpages/templates/orders-email.php:47
2551
+ #: adminpages/templates/orders-print.php:76
2552
+ msgid "Item"
2553
+ msgstr "Item"
2554
+
2555
+ #: adminpages/templates/orders-email.php:48
2556
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2557
+ #: pages/levels.php:14
2558
+ msgid "Price"
2559
+ msgstr "Preu"
2560
+
2561
+ #: adminpages/templates/orders-email.php:56
2562
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2563
+ #: pages/invoice.php:77
2564
+ msgid "Subtotal"
2565
+ msgstr "Subtotal"
2566
+
2567
+ #: adminpages/updates.php:11
2568
+ msgid "Updating Paid Memberships Pro"
2569
+ msgstr "Actualitzant Paid Memberships Pro"
2570
+
2571
+ #: adminpages/updates.php:18
2572
+ msgid "Updates are processing. This may take a few minutes to complete."
2573
+ msgstr "S’està processant l’actualització. Això pot trigar uns minuts."
2574
+
2575
+ #: adminpages/updates.php:23
2576
+ msgid "Update complete."
2577
+ msgstr "Actualització completa"
2578
+
2579
+ #: classes/class.memberorder.php:697 classes/class.memberorder.php:553
2580
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2581
+ #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2582
+ #: includes/cleanup.php:24
2583
+ #, php-format
2584
+ msgid ""
2585
+ "There was an error canceling the subscription for user with ID=%s. You will "
2586
+ "want to check your payment gateway to see if their subscription is still "
2587
+ "active."
2588
+ msgstr ""
2589
+ "Hi ha hagut un error cancel·lant la subscripció per a l’usuari ID=%s. "
2590
+ "Comprova a la passarel·la de pagament si la seva subscripció encara és "
2591
+ "activa."
2592
+
2593
+ #: classes/class.pmproemail.php:37
2594
+ #, php-format
2595
+ msgid "An Email From %s"
2596
+ msgstr "Un correu electrònic de %s"
2597
+
2598
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2599
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2600
+ #, php-format
2601
+ msgid "Your membership at %s has been CANCELLED"
2602
+ msgstr "La seva subscripció a %s ha estat Cancel·lada"
2603
+
2604
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2605
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2606
+ #, php-format
2607
+ msgid "Membership for %s at %s has been CANCELLED"
2608
+ msgstr "La subscripció per a %s a %s ha estat cancel·lada"
2609
+
2610
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2611
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2612
+ #: classes/class.pmproemail.php:178
2613
+ #, php-format
2614
+ msgid "Your membership confirmation for %s"
2615
+ msgstr "Confirmació per a la seva subscripció %s"
2616
+
2617
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2618
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2619
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2620
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2621
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2622
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2623
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2624
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2625
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2626
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2627
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2628
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2629
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2630
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2631
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2632
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2633
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2634
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2635
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2636
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2637
+ #: classes/gateways/class.pmprogateway_stripe.php:496
2638
+ #: classes/gateways/class.pmprogateway_stripe.php:506
2639
+ #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:66
2640
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2641
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:85
2642
+ #: pages/checkout.php:549 pages/checkout.php:565 pages/checkout.php:566
2643
+ #: pages/checkout.php:573 pages/checkout.php:594 pages/checkout.php:603
2644
+ #: pages/checkout.php:612 pages/confirmation.php:51 pages/invoice.php:32
2645
+ msgid "Discount Code"
2646
+ msgstr "Codi de descompte"
2647
+
2648
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2649
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2650
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2651
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2652
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2653
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2654
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2655
+ #: classes/class.pmproemail.php:654
2656
+ #, php-format
2657
+ msgid "This membership will expire on %s."
2658
+ msgstr "Aquesta subscripció expirarà a %s."
2659
+
2660
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2661
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2662
+ #: classes/class.pmproemail.php:278
2663
+ #, php-format
2664
+ msgid "Member Checkout for %s at %s"
2665
+ msgstr "Checkout de subscriptor per %s a %s"
2666
+
2667
+ #: classes/class.pmproemail.php:375
2668
+ #, php-format
2669
+ msgid "Your billing information has been updated at %s"
2670
+ msgstr "S’ha actualitzat la seva informació de facturació a %s"
2671
+
2672
+ #: classes/class.pmproemail.php:428
2673
+ #, php-format
2674
+ msgid "Billing information has been updated for %s at %s"
2675
+ msgstr "Informació de facturació ha estat actualitzat per %s a %s"
2676
+
2677
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2678
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2679
+ #: classes/class.pmproemail.php:467
2680
+ #, php-format
2681
+ msgid "Membership Payment Failed at %s"
2682
+ msgstr "Pagament per a subscripció ha Errat a %s"
2683
+
2684
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2685
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2686
+ #: classes/class.pmproemail.php:513
2687
+ #, php-format
2688
+ msgid "Membership Payment Failed For %s at %s"
2689
+ msgstr "Pagament per a subscripció ha Errat per %s a %s"
2690
+
2691
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2692
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2693
+ #, php-format
2694
+ msgid "Credit Card on File Expiring Soon at %s"
2695
+ msgstr "La tarjeta de crèdit a l’arxiu caducarà aviat a %s"
2696
+
2697
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2698
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2699
+ #: classes/class.pmproemail.php:608
2700
+ #, php-format
2701
+ msgid "INVOICE for %s membership"
2702
+ msgstr "FACTURA per a %s subscriptor"
2703
+
2704
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2705
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2706
+ #: classes/class.pmproemail.php:679
2707
+ #, php-format
2708
+ msgid "Your trial at %s is ending soon"
2709
+ msgstr "El teu període de prova a %s aviat acabarà."
2710
+
2711
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2712
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2713
+ #: classes/class.pmproemail.php:713
2714
+ #, php-format
2715
+ msgid "Your membership at %s has ended"
2716
+ msgstr "La teva subscripció a %s ha finalitzat"
2717
+
2718
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2719
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2720
+ #: classes/class.pmproemail.php:738
2721
+ #, php-format
2722
+ msgid "Your membership at %s will end soon"
2723
+ msgstr "La teva subscripció a %s finalitzarà aviat."
2724
+
2725
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2726
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2727
+ #: classes/class.pmproemail.php:758
2728
+ #, php-format
2729
+ msgid "Your membership at %s has been changed"
2730
+ msgstr "La teva subscripció a %s ha canviat"
2731
+
2732
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2733
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2734
+ #: classes/class.pmproemail.php:800
2735
+ #, php-format
2736
+ msgid "The new level is %s"
2737
+ msgstr "El teu nou nivell és %s"
2738
+
2739
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2740
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2741
+ #: classes/class.pmproemail.php:764
2742
+ msgid "Your membership has been cancelled"
2743
+ msgstr "La teva subscripció ha finalitzat"
2744
+
2745
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2746
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2747
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2748
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2749
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2750
+ #, php-format
2751
+ msgid "This membership will expire on %s"
2752
+ msgstr "La teva subscripció finalitzarà a %s"
2753
+
2754
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2755
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2756
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2757
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2758
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2759
+ msgid "This membership does not expire"
2760
+ msgstr "Aquesta subscripció no expira"
2761
+
2762
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2763
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2764
+ #: classes/class.pmproemail.php:796
2765
+ #, php-format
2766
+ msgid "Membership for %s at %s has been changed"
2767
+ msgstr "Subscripció per %s a %s ha canviat"
2768
+
2769
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2770
+ #: classes/class.pmproemail.php:802
2771
+ msgid "Membership has been cancelled"
2772
+ msgstr "Subscripció cancel·lada"
2773
+
2774
+ #: classes/class.pmproemail.php:848
2775
+ msgid "Invoice for Order #: "
2776
+ msgstr "Factura per a la comanda #:"
2777
+
2778
+ #: classes/gateways/class.pmprogateway.php:55
2779
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2780
+ #: classes/gateways/class.pmprogateway_check.php:193
2781
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2782
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2783
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2784
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2785
+ #: classes/gateways/class.pmprogateway_check.php:60
2786
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2787
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2788
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2789
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2790
+ msgid "Unknown error: Authorization failed."
2791
+ msgstr "Error desconegut: Ha fallat l’autorització"
2792
+
2793
+ #: classes/gateways/class.pmprogateway.php:106
2794
+ #: classes/gateways/class.pmprogateway.php:111
2795
+ #: classes/gateways/class.pmprogateway.php:129
2796
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2797
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2798
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2799
+ #: classes/gateways/class.pmprogateway_check.php:245
2800
+ #: classes/gateways/class.pmprogateway_check.php:250
2801
+ #: classes/gateways/class.pmprogateway_check.php:268
2802
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2803
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2804
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2805
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2806
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2807
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2808
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2809
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2810
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2811
+ #: classes/gateways/class.pmprogateway_check.php:111
2812
+ #: classes/gateways/class.pmprogateway_check.php:116
2813
+ #: classes/gateways/class.pmprogateway_check.php:134
2814
+ #: classes/gateways/class.pmprogateway_check.php:244
2815
+ #: classes/gateways/class.pmprogateway_check.php:249
2816
+ #: classes/gateways/class.pmprogateway_check.php:267
2817
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2818
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2819
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2820
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2821
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2822
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2823
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2824
+ msgid "Unknown error: Payment failed."
2825
+ msgstr "Error desconegut: Ha fallat el pagament."
2826
+
2827
+ #: classes/gateways/class.pmprogateway.php:113
2828
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2829
+ #: classes/gateways/class.pmprogateway_check.php:252
2830
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2831
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2832
+ #: classes/gateways/class.pmprogateway_check.php:118
2833
+ #: classes/gateways/class.pmprogateway_check.php:251
2834
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2835
+ msgid ""
2836
+ "A partial payment was made that we could not void. Please contact the site "
2837
+ "owner immediately to correct this."
2838
+ msgstr ""
2839
+ "Un pagament parcial es va fer que no ens podia anular. Contacteu al "
2840
+ "propietari del lloc immediatament per corregir-ho."
2841
+
2842
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
2843
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:122
2844
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:130
2845
+ #: paid-memberships-pro.php:131
2846
+ msgid "Authorize.net"
2847
+ msgstr "Authorize.net"
2848
+
2849
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2850
+ msgid "Authorize.net Settings"
2851
+ msgstr "Authorize.net Configuració"
2852
+
2853
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2854
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2855
+ #: adminpages/paymentsettings.php:269
2856
+ msgid "Login Name"
2857
+ msgstr "Nom d’usuari"
2858
+
2859
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2860
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2861
+ #: adminpages/paymentsettings.php:277
2862
+ msgid "Transaction Key"
2863
+ msgstr "Clau de transacció"
2864
+
2865
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2866
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2867
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2868
+ msgid "Silent Post URL"
2869
+ msgstr "Silent Post URL"
2870
+
2871
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2872
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2873
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2874
+ msgid ""
2875
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2876
+ msgstr ""
2877
+ "Per integrar totalment Authorize.net, assegura’t de configurar Silent Post "
2878
+ "URL a"
2879
+
2880
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2881
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
2882
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2883
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2884
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2885
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2886
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2887
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2888
+ msgid "Could not connect to Authorize.net"
2889
+ msgstr "No podria connectar a Authorize.net"
2890
+
2891
+ #: classes/gateways/class.pmprogateway_braintree.php:76
2892
+ #: paid-memberships-pro.php:133
2893
+ #: classes/gateways/class.pmprogateway_braintree.php:63
2894
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2895
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
2896
+ msgid "Braintree Payments"
2897
+ msgstr "Pagaments Braintree"
2898
+
2899
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2900
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2901
+ msgid "Braintree Settings"
2902
+ msgstr "Configuració Braintree"
2903
+
2904
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2905
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2906
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2907
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2908
+ #: adminpages/paymentsettings.php:369
2909
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2910
+ msgid "Merchant ID"
2911
+ msgstr "ID de comerciant"
2912
+
2913
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2914
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2915
+ #: adminpages/paymentsettings.php:311
2916
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2917
+ msgid "Public Key"
2918
+ msgstr "Clau Pública"
2919
+
2920
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2921
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2922
+ #: adminpages/paymentsettings.php:319
2923
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2924
+ msgid "Private Key"
2925
+ msgstr "Clau Privada"
2926
+
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2928
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2929
+ #: adminpages/paymentsettings.php:327
2930
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2931
+ msgid "Client-Side Encryption Key"
2932
+ msgstr "Clau d’encriptació del Client"
2933
+
2934
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2935
+ #: classes/gateways/class.pmprogateway_stripe.php:214
2936
+ #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2937
+ #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2938
+ #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2939
+ #: adminpages/paymentsettings.php:519
2940
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2941
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2942
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2943
+ #: classes/gateways/class.pmprogateway_stripe.php:192
2944
+ msgid "Web Hook URL"
2945
+ msgstr "Web Hook URL"
2946
+
2947
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2948
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2949
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2950
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2951
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2952
+ msgstr ""
2953
+ "Per integrar totalment Braintree, assegura’t de configurar Web Hook URL a"
2954
+
2955
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2956
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
2957
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2958
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2959
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2960
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2961
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2962
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2963
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2964
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
2965
+ msgid "Payment Information"
2966
+ msgstr "Informació de pagament"
2967
+
2968
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2969
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
2970
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2971
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2972
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2973
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2974
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2975
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2976
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2977
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
2978
+ #, php-format
2979
+ msgid "We Accept %s"
2980
+ msgstr "Acceptem %s"
2981
+
2982
+ #: classes/gateways/class.pmprogateway_braintree.php:318
2983
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
2984
+ #: pages/checkout.php:570 classes/gateways/class.pmprogateway_braintree.php:303
2985
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2986
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2987
+ #: classes/gateways/class.pmprogateway_stripe.php:450
2988
+ #: classes/gateways/class.pmprogateway_stripe.php:460
2989
+ #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:244
2990
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2991
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2992
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
2993
+ msgid "Card Number"
2994
+ msgstr "Nombre de Tarjeta"
2995
+
2996
+ #: classes/gateways/class.pmprogateway_braintree.php:355
2997
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
2998
+ #: pages/checkout.php:607 classes/gateways/class.pmprogateway_braintree.php:340
2999
+ #: classes/gateways/class.pmprogateway_braintree.php:353
3000
+ #: classes/gateways/class.pmprogateway_stripe.php:486
3001
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3002
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3003
+ #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:281
3004
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
3005
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3006
+ #: pages/checkout.php:585 pages/checkout.php:594 pages/checkout.php:603
3007
+ msgid "CVV"
3008
+ msgstr "CVV"
3009
+
3010
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3011
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
3012
+ #: pages/checkout.php:608 classes/gateways/class.pmprogateway_braintree.php:341
3013
+ #: classes/gateways/class.pmprogateway_braintree.php:354
3014
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3015
+ #: classes/gateways/class.pmprogateway_stripe.php:488
3016
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3017
+ #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:282
3018
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
3019
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3020
+ #: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
3021
+ msgid "what's this?"
3022
+ msgstr "què és això?"
3023
+
3024
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3025
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
3026
+ #: pages/checkout.php:618 classes/gateways/class.pmprogateway_braintree.php:351
3027
+ #: classes/gateways/class.pmprogateway_braintree.php:364
3028
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3029
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3030
+ #: classes/gateways/class.pmprogateway_stripe.php:508
3031
+ #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:78
3032
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3033
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
3034
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
3035
+ #: pages/checkout.php:614
3036
+ msgid "Apply"
3037
+ msgstr "Aplica"
3038
+
3039
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3040
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3041
+ #: classes/gateways/class.pmprogateway_braintree.php:61
3042
+ #: classes/gateways/class.pmprogateway_braintree.php:406
3043
+ #: classes/gateways/class.pmprogateway_braintree.php:419
3044
+ #: classes/gateways/class.pmprogateway_stripe.php:53
3045
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
3046
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
3047
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
3048
+ #: classes/gateways/class.pmprogateway_stripe.php:1036
3049
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
3050
+ msgid "Unknown error: Initial payment failed."
3051
+ msgstr "Error desconegut: ha fallat el pagament inicial"
3052
+
3053
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3054
+ #: classes/gateways/class.pmprogateway_braintree.php:120
3055
+ #: classes/gateways/class.pmprogateway_braintree.php:465
3056
+ #: classes/gateways/class.pmprogateway_braintree.php:478
3057
+ msgid "Error during settlement:"
3058
+ msgstr "Error durant la liquidació:"
3059
+
3060
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3061
+ #: classes/gateways/class.pmprogateway_braintree.php:129
3062
+ #: classes/gateways/class.pmprogateway_braintree.php:474
3063
+ #: classes/gateways/class.pmprogateway_braintree.php:487
3064
+ msgid "Error during charge:"
3065
+ msgstr "Error durant la càrrega:"
3066
+
3067
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3068
+ #: classes/gateways/class.pmprogateway_braintree.php:198
3069
+ #: classes/gateways/class.pmprogateway_braintree.php:221
3070
+ #: classes/gateways/class.pmprogateway_braintree.php:566
3071
+ #: classes/gateways/class.pmprogateway_braintree.php:579
3072
+ msgid "Failed to update customer."
3073
+ msgstr "No s’ha pogut actualitzar el comprador."
3074
+
3075
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3076
+ #: classes/gateways/class.pmprogateway_braintree.php:246
3077
+ #: classes/gateways/class.pmprogateway_braintree.php:269
3078
+ #: classes/gateways/class.pmprogateway_braintree.php:614
3079
+ #: classes/gateways/class.pmprogateway_braintree.php:627
3080
+ msgid "Failed to create customer."
3081
+ msgstr "No s’ha pogut crear el comprador"
3082
+
3083
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3084
+ #: classes/gateways/class.pmprogateway_braintree.php:253
3085
+ #: classes/gateways/class.pmprogateway_braintree.php:276
3086
+ #: classes/gateways/class.pmprogateway_braintree.php:621
3087
+ #: classes/gateways/class.pmprogateway_braintree.php:634
3088
+ msgid "Error creating customer record with Braintree:"
3089
+ msgstr "No s’ha pogut crear el comprador amb Branitree:"
3090
+
3091
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3092
+ #: classes/gateways/class.pmprogateway_braintree.php:344
3093
+ #: classes/gateways/class.pmprogateway_braintree.php:345
3094
+ #: classes/gateways/class.pmprogateway_braintree.php:376
3095
+ #: classes/gateways/class.pmprogateway_braintree.php:721
3096
+ #: classes/gateways/class.pmprogateway_braintree.php:734
3097
+ msgid "Error subscribing customer to plan with Braintree:"
3098
+ msgstr "No s’ha pogut subscriure el comprador al pla amb Braintree:"
3099
+
3100
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3101
+ #: classes/gateways/class.pmprogateway_braintree.php:359
3102
+ #: classes/gateways/class.pmprogateway_braintree.php:360
3103
+ #: classes/gateways/class.pmprogateway_braintree.php:391
3104
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3105
+ #: classes/gateways/class.pmprogateway_braintree.php:749
3106
+ msgid "Failed to subscribe with Braintree:"
3107
+ msgstr "No s’ha pogut subscriure a Braintree:"
3108
+
3109
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3110
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3111
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3112
+ #: classes/gateways/class.pmprogateway_braintree.php:397
3113
+ #: classes/gateways/class.pmprogateway_braintree.php:398
3114
+ #: classes/gateways/class.pmprogateway_braintree.php:410
3115
+ #: classes/gateways/class.pmprogateway_braintree.php:411
3116
+ #: classes/gateways/class.pmprogateway_braintree.php:417
3117
+ #: classes/gateways/class.pmprogateway_braintree.php:418
3118
+ #: classes/gateways/class.pmprogateway_braintree.php:429
3119
+ #: classes/gateways/class.pmprogateway_braintree.php:442
3120
+ #: classes/gateways/class.pmprogateway_braintree.php:449
3121
+ #: classes/gateways/class.pmprogateway_braintree.php:774
3122
+ #: classes/gateways/class.pmprogateway_braintree.php:787
3123
+ #: classes/gateways/class.pmprogateway_braintree.php:794
3124
+ #: classes/gateways/class.pmprogateway_braintree.php:800
3125
+ #: classes/gateways/class.pmprogateway_braintree.php:807
3126
+ #: classes/gateways/class.pmprogateway_stripe.php:343
3127
+ #: classes/gateways/class.pmprogateway_stripe.php:344
3128
+ #: classes/gateways/class.pmprogateway_stripe.php:351
3129
+ #: classes/gateways/class.pmprogateway_stripe.php:353
3130
+ #: classes/gateways/class.pmprogateway_stripe.php:354
3131
+ #: classes/gateways/class.pmprogateway_stripe.php:361
3132
+ #: classes/gateways/class.pmprogateway_stripe.php:396
3133
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3134
+ #: classes/gateways/class.pmprogateway_stripe.php:423
3135
+ msgid "Could not find the subscription."
3136
+ msgstr "No s’ha trobat la subscripció"
3137
+
3138
+ #: classes/gateways/class.pmprogateway_check.php:48
3139
+ #: paid-memberships-pro.php:126 adminpages/orders.php:399
3140
+ #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3141
+ #: adminpages/paymentsettings.php:159 paid-memberships-pro.php:116
3142
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:124
3143
+ #: paid-memberships-pro.php:125
3144
+ msgid "Pay by Check"
3145
+ msgstr "Pagament amb Check"
3146
+
3147
+ #: classes/gateways/class.pmprogateway_check.php:100
3148
+ msgid "Pay by Check Settings"
3149
+ msgstr "Configuració pagament amb check"
3150
+
3151
+ #: classes/gateways/class.pmprogateway_check.php:105
3152
+ #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3153
+ #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3154
+ msgid "Instructions"
3155
+ msgstr "Instruccions"
3156
+
3157
+ #: classes/gateways/class.pmprogateway_check.php:109
3158
+ #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3159
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3160
+ msgid ""
3161
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
3162
+ "confirmation, and invoice pages."
3163
+ msgstr ""
3164
+ "A quí escriure per a fer el check out. A on enviar-li un correu. Es mostra a "
3165
+ "les pàgines de checkout, confirmació i facturació."
3166
+
3167
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
3168
+ msgid "CyberSource"
3169
+ msgstr "CyberSource"
3170
+
3171
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
3172
+ msgid "CyberSource Settings"
3173
+ msgstr "Configuració de CyberSource"
3174
+
3175
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
3176
+ #: adminpages/paymentsettings.php:174
3177
+ msgid ""
3178
+ "This gateway option is in beta. Some functionality may not be available. "
3179
+ "Please contact Paid Memberships Pro with any issues you run into. "
3180
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
3181
+ "versions when available.</strong>"
3182
+ msgstr ""
3183
+ "Aquesta opció de passarel·la està en beta. Algunes funcions no estaran "
3184
+ "disponibles. Si us plau contacta amb Paid Memberships Pro. "
3185
+ "<strong>Assegura’t de tenir la última versió de Paid Memberships Pro</strong>"
3186
+
3187
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
3188
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
3189
+ msgid "Transaction Security Key"
3190
+ msgstr "Transaction Security Key"
3191
+
3192
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
3193
+ msgid "Payflow Pro/PayPal Pro"
3194
+ msgstr "Payflow Pro/PayPal Pro"
3195
+
3196
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
3197
+ msgid "Payflow Pro Settings"
3198
+ msgstr "Configuració Payflow Pro"
3199
+
3200
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
3201
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
3202
+ #: adminpages/paymentsettings.php:204
3203
+ msgid "Partner"
3204
+ msgstr "Soci"
3205
+
3206
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
3207
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
3208
+ #: adminpages/paymentsettings.php:212
3209
+ msgid "Vendor"
3210
+ msgstr "Venedor"
3211
+
3212
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124
3213
+ #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3214
+ #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3215
+ #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3216
+ #: pages/checkout.php:189 pages/checkout.php:191
3217
+ msgid "Password"
3218
+ msgstr "Clau"
3219
+
3220
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
3221
+ msgid "IPN Handler"
3222
+ msgstr "IPN Handler"
3223
+
3224
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
3225
+ #, php-format
3226
+ msgid ""
3227
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a "
3228
+ "target=\"_blank\" href=\"%s\">this addon</a>."
3229
+ msgstr ""
3230
+ "Payflow no utilitza IPN. Per sincronitzar subscripcions recursives, si us "
3231
+ "plau mira <a target=\"_blank\" href=\"%s\">this addon</a>."
3232
+
3233
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
3234
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3235
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
3236
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3237
+ #: classes/gateways/class.pmprogateway_paypal.php:277
3238
+ msgid ""
3239
+ "A partial payment was made that we could not refund. Please contact the site "
3240
+ "owner immediately to correct this."
3241
+ msgstr ""
3242
+ "S’ha realitzat un pagament parcial que no s’ha pogut tornar. Contacteu al "
3243
+ "propietari del lloc immediatament per corregir-ho."
3244
+
3245
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3246
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:119
3247
+ #: paid-memberships-pro.php:120 paid-memberships-pro.php:127
3248
+ #: paid-memberships-pro.php:128
3249
+ msgid "PayPal Website Payments Pro"
3250
+ msgstr "PayPal Website Payments Pro"
3251
+
3252
+ #: classes/gateways/class.pmprogateway_paypal.php:113
3253
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3254
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3255
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3256
+ msgid "PayPal Settings"
3257
+ msgstr "Configuració PayPal"
3258
+
3259
+ #: classes/gateways/class.pmprogateway_paypal.php:118
3260
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3261
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3262
+ #: adminpages/paymentsettings.php:179
3263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3264
+ msgid ""
3265
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3266
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
3267
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
3268
+ "paypal-standard-paid-memberships-pro/\">More information on why can be found "
3269
+ "here.</a>"
3270
+ msgstr ""
3271
+ "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPal "
3272
+ "Express, Website Payments Pro (Legacy), o PayPal Pro (Payflow Pro). <a "
3273
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-"
3274
+ "using-paypal-standard-paid-memberships-pro/\">Més informació sobre per què, "
3275
+ "aquí.</a>"
3276
+
3277
+ #: classes/gateways/class.pmprogateway_paypal.php:123
3278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3279
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3280
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3281
+ #: adminpages/paymentsettings.php:236
3282
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3283
+ msgid "Gateway Account Email"
3284
+ msgstr "Correu electrònic del compte de la Passarel·la"
3285
+
3286
+ #: classes/gateways/class.pmprogateway_paypal.php:131
3287
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3288
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3289
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3290
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3291
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3292
+ #: adminpages/paymentsettings.php:336
3293
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3294
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
3295
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3296
+ msgid "API Username"
3297
+ msgstr "API Usuari"
3298
+
3299
+ #: classes/gateways/class.pmprogateway_paypal.php:139
3300
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3301
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3302
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3303
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3304
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3305
+ #: adminpages/paymentsettings.php:344
3306
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3307
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3308
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3309
+ msgid "API Password"
3310
+ msgstr "API Clau"
3311
+
3312
+ #: classes/gateways/class.pmprogateway_paypal.php:147
3313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3314
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3315
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3316
+ #: adminpages/paymentsettings.php:260
3317
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3318
+ msgid "API Signature"
3319
+ msgstr "API Signatura"
3320
+
3321
+ #: classes/gateways/class.pmprogateway_paypal.php:155
3322
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3323
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3324
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3325
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3326
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3327
+ msgid "IPN Handler URL"
3328
+ msgstr "IPN Handler URL"
3329
+
3330
+ #: classes/gateways/class.pmprogateway_paypal.php:158
3331
+ msgid ""
3332
+ "This URL is passed to PayPal for all new charges and subscriptions. You "
3333
+ "SHOULD NOT set this in your PayPal account settings."
3334
+ msgstr ""
3335
+ "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions. NO "
3336
+ "HAURIES de posar-ho a la teva configuració de compte de PAyPal"
3337
+
3338
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3339
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3340
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3341
+ #: pages/checkout.php:302
3342
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3343
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3344
+ #: pages/checkout.php:300 pages/checkout.php:309 pages/checkout.php:675
3345
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3346
+ msgid "Check Out with PayPal"
3347
+ msgstr "Check Out amb PayPal"
3348
+
3349
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3351
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3352
+ #: pages/checkout.php:728
3353
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3354
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3355
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3356
+ #: pages/checkout.php:722
3357
+ msgid "Submit and Check Out"
3358
+ msgstr "Envia i fés el Check Out"
3359
+
3360
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3361
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3362
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3363
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3364
+ #: pages/checkout.php:728
3365
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3366
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3367
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3368
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3369
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3370
+ #: pages/checkout.php:722
3371
+ msgid "Submit and Confirm"
3372
+ msgstr "Envia i confirma"
3373
+
3374
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3375
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3376
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3377
+ #: classes/gateways/class.pmprogateway_paypal.php:385
3378
+ #: classes/gateways/class.pmprogateway_paypal.php:605
3379
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3380
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3381
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3382
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3383
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3384
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3385
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3386
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3387
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3388
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
3389
+ msgid ""
3390
+ "Please contact the site owner or cancel your subscription from within PayPal "
3391
+ "to make sure you are not charged going forward."
3392
+ msgstr ""
3393
+ "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de "
3394
+ "PayPal per assegurar-te que no et cobraran en el futur."
3395
+
3396
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3397
+ #: paid-memberships-pro.php:128
3398
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3399
+ #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3400
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3401
+ msgid "PayPal Express"
3402
+ msgstr "PayPal Express"
3403
+
3404
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3405
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3406
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3407
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3408
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3409
+ msgstr ""
3410
+ "Per integrar completament PayPal, assegura’t de configurar el teu IPN "
3411
+ "Handler URL a"
3412
+
3413
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3414
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3415
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3416
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3417
+ #: preheaders/checkout.php:690 preheaders/checkout.php:697
3418
+ #: preheaders/checkout.php:702 preheaders/checkout.php:735
3419
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753
3420
+ #: preheaders/checkout.php:754 preheaders/checkout.php:757
3421
+ #: preheaders/checkout.php:762 preheaders/checkout.php:803
3422
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
3423
+ msgid "The PayPal Token was lost."
3424
+ msgstr "S’ha perdut el Token de PayPal"
3425
+
3426
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3427
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:121
3428
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:129
3429
+ #: paid-memberships-pro.php:130
3430
+ msgid "PayPal Standard"
3431
+ msgstr "PayPal Standard"
3432
+
3433
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
3434
+ msgid ""
3435
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
3436
+ "settings."
3437
+ msgstr ""
3438
+ "Aquest és el teu IPN URL. NO HAURIES de posar-ho a la teva configuració de "
3439
+ "PayPal"
3440
+
3441
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3442
+ #, php-format
3443
+ msgid ""
3444
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3445
+ "your hosting provider to enable it"
3446
+ msgstr ""
3447
+ "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilitalà o "
3448
+ "pregunta com fer-ho al teu proveidor de hosting."
3449
+
3450
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3451
+ #: paid-memberships-pro.php:127
3452
+ #: classes/gateways/class.pmprogateway_stripe.php:93
3453
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3454
+ #: classes/gateways/class.pmprogateway_stripe.php:104
3455
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3456
+ #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3457
+ msgid "Stripe"
3458
+ msgstr "Stripe"
3459
+
3460
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3461
+ #: classes/gateways/class.pmprogateway_stripe.php:148
3462
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3463
+ #: classes/gateways/class.pmprogateway_stripe.php:159
3464
+ msgid "Stripe Settings"
3465
+ msgstr "Configuració d’Stripe"
3466
+
3467
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3468
+ #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3469
+ #: adminpages/paymentsettings.php:286
3470
+ #: classes/gateways/class.pmprogateway_stripe.php:153
3471
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3472
+ #: classes/gateways/class.pmprogateway_stripe.php:164
3473
+ msgid "Secret Key"
3474
+ msgstr "Secret Key"
3475
+
3476
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3477
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3478
+ #: adminpages/paymentsettings.php:294
3479
+ #: classes/gateways/class.pmprogateway_stripe.php:161
3480
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3481
+ #: classes/gateways/class.pmprogateway_stripe.php:172
3482
+ msgid "Publishable Key"
3483
+ msgstr "Clau Publicable"
3484
+
3485
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3486
+ #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3487
+ #: adminpages/paymentsettings.php:432
3488
+ #: classes/gateways/class.pmprogateway_stripe.php:169
3489
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3490
+ #: classes/gateways/class.pmprogateway_stripe.php:180
3491
+ msgid "Show Billing Address Fields"
3492
+ msgstr "Mostra els camps d’adreça de facturació"
3493
+
3494
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3495
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3496
+ #: classes/gateways/class.pmprogateway_stripe.php:176
3497
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3498
+ #: classes/gateways/class.pmprogateway_stripe.php:187
3499
+ msgid ""
3500
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3501
+ "the checkout page.<br /><strong>If No, make sure you disable address "
3502
+ "verification in the Stripe dashboard settings.</strong>"
3503
+ msgstr ""
3504
+ "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los "
3505
+ "de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la "
3506
+ "verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
3507
+
3508
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3509
+ #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3510
+ #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3511
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3512
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3513
+ #: classes/gateways/class.pmprogateway_stripe.php:195
3514
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3515
+ msgstr ""
3516
+ "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web Hook "
3517
+ "URL a"
3518
+
3519
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3520
+ #: classes/gateways/class.pmprogateway_stripe.php:567
3521
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3522
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3523
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3524
+ msgid "Subscription Updates"
3525
+ msgstr "Actualització de subscripcions"
3526
+
3527
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3528
+ #: classes/gateways/class.pmprogateway_stripe.php:571
3529
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3530
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3531
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3532
+ msgid ""
3533
+ "Subscription updates, allow you to change the member's subscription values "
3534
+ "at predefined times. Be sure to click Update Profile after making changes."
3535
+ msgstr ""
3536
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3537
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Perfil "
3538
+ "després de fer els canvis."
3539
+
3540
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3541
+ #: classes/gateways/class.pmprogateway_stripe.php:573
3542
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3543
+ #: classes/gateways/class.pmprogateway_stripe.php:584
3544
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3545
+ msgid ""
3546
+ "Subscription updates, allow you to change the member's subscription values "
3547
+ "at predefined times. Be sure to click Update User after making changes."
3548
+ msgstr ""
3549
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3550
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Usuari "
3551
+ "després de fer els canvis."
3552
+
3553
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
3554
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3555
+ #: classes/gateways/class.pmprogateway_stripe.php:579
3556
+ #: classes/gateways/class.pmprogateway_stripe.php:589
3557
+ #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:294
3558
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3559
+ #: pages/billing.php:341
3560
+ msgid "Update"
3561
+ msgstr "Actualitza"
3562
+
3563
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3564
+ #: classes/gateways/class.pmprogateway_stripe.php:769
3565
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3566
+ #: classes/gateways/class.pmprogateway_stripe.php:780
3567
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3568
+ msgid "Could not cancel the old subscription. Updates have not been processed."
3569
+ msgstr ""
3570
+ "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han "
3571
+ "processat."
3572
+
3573
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3574
+ #: classes/gateways/class.pmprogateway_stripe.php:190
3575
+ #: classes/gateways/class.pmprogateway_stripe.php:192
3576
+ #: classes/gateways/class.pmprogateway_stripe.php:199
3577
+ #: classes/gateways/class.pmprogateway_stripe.php:201
3578
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
3579
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
3580
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
3581
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
3582
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3583
+ #: classes/gateways/class.pmprogateway_stripe.php:1214
3584
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3585
+ msgid "Error creating customer record with Stripe:"
3586
+ msgstr "Error creant un registre d’usuari amb Stripe:"
3587
+
3588
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3589
+ #: classes/gateways/class.pmprogateway_stripe.php:1275
3590
+ msgid "Error getting subscription with Stripe:"
3591
+ msgstr "Error agafant la subscripció amb Stripe:"
3592
+
3593
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3594
+ #: classes/gateways/class.pmprogateway_stripe.php:278
3595
+ #: classes/gateways/class.pmprogateway_stripe.php:279
3596
+ #: classes/gateways/class.pmprogateway_stripe.php:286
3597
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3598
+ #: classes/gateways/class.pmprogateway_stripe.php:308
3599
+ #: classes/gateways/class.pmprogateway_stripe.php:311
3600
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
3601
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
3602
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
3603
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
3604
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3605
+ #: classes/gateways/class.pmprogateway_stripe.php:1271
3606
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
3607
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
3608
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
3609
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
3610
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3611
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3612
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3613
+ msgid "Error creating plan with Stripe:"
3614
+ msgstr "Error creant pla amb Stripe:"
3615
+
3616
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3617
+ #: classes/gateways/class.pmprogateway_stripe.php:294
3618
+ #: classes/gateways/class.pmprogateway_stripe.php:295
3619
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3620
+ #: classes/gateways/class.pmprogateway_stripe.php:318
3621
+ #: classes/gateways/class.pmprogateway_stripe.php:324
3622
+ #: classes/gateways/class.pmprogateway_stripe.php:330
3623
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3624
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3625
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3626
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
3627
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
3628
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3629
+ #: classes/gateways/class.pmprogateway_stripe.php:1452
3630
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3631
+ msgid "Error subscribing customer to plan with Stripe:"
3632
+ msgstr "Error subscrivint un pla de comprador amb Stripe:"
3633
+
3634
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3635
+ #: classes/gateways/class.pmprogateway_stripe.php:383
3636
+ #: classes/gateways/class.pmprogateway_stripe.php:389
3637
+ #: classes/gateways/class.pmprogateway_stripe.php:410
3638
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
3639
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
3640
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
3641
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
3642
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
3643
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3644
+ #: classes/gateways/class.pmprogateway_stripe.php:1548
3645
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3646
+ msgid "Could not cancel old subscription."
3647
+ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
3648
+
3649
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3650
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
3651
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
3652
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
3653
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
3654
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
3655
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3656
+ #: classes/gateways/class.pmprogateway_stripe.php:1565
3657
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3658
+ msgid "Could not find the customer."
3659
+ msgstr "No s’ha trobat el comprador."
3660
+
3661
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3662
+ #: paid-memberships-pro.php:134
3663
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53
3664
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3665
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3666
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:133
3667
+ msgid "2Checkout"
3668
+ msgstr "2Checkout"
3669
+
3670
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3671
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
3672
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3673
+ msgid "2Checkout Settings"
3674
+ msgstr "Configuració de 2Checkout"
3675
+
3676
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3677
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3678
+ msgid ""
3679
+ "Go to Account &raquo; User Management in 2Checkout and create a user with "
3680
+ "API Access and API Updating."
3681
+ msgstr ""
3682
+ "Vés a Account &raquo; User Management in 2Checkout i crea un usuari amb API "
3683
+ "Access i API Updating."
3684
+
3685
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3686
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3687
+ msgid "Password for the API user created."
3688
+ msgstr "Clau per a l’usuari de l’API creada."
3689
+
3690
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
3691
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3692
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3693
+ msgstr ""
3694
+ "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number."
3695
+
3696
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3697
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3698
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3699
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3700
+ msgid "Secret Word"
3701
+ msgstr "Paraula Secreta"
3702
+
3703
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3704
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3705
+ msgid ""
3706
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3707
+ "the Secret Word."
3708
+ msgstr ""
3709
+ "Vés a Account &raquo; Site Management. Mira sota Checkout Options i troba la "
3710
+ "Paraula Secreta"
3711
+
3712
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
3713
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3714
+ #: adminpages/paymentsettings.php:495
3715
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3716
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3717
+ msgid "TwoCheckout INS URL"
3718
+ msgstr "TwoCheckout INS URL"
3719
+
3720
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
3721
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3722
+ msgid ""
3723
+ "To fully integrate with 2Checkout, be sure to use the following for your INS "
3724
+ "URL and Approved URL"
3725
+ msgstr ""
3726
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent "
3727
+ "INS URL i Approved URL"
3728
+
3729
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3730
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3731
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3732
+ msgid "Check Out with 2Checkout"
3733
+ msgstr "Check Out amb 2Checkout"
3734
+
3735
+ #: includes/adminpages.php:48 includes/adminpages.php:9
3736
+ #: includes/adminpages.php:39 includes/adminpages.php:47
3737
+ #: includes/adminpages.php:93 includes/adminpages.php:100
3738
+ msgid "Memberships"
3739
+ msgstr "Subscripcions"
3740
+
3741
+ #: includes/adminpages.php:49 includes/adminpages.php:123
3742
+ #: includes/adminpages.php:10 includes/adminpages.php:48
3743
+ #: includes/adminpages.php:107 includes/adminpages.php:114
3744
+ #: includes/adminpages.php:118
3745
+ msgid "Page Settings"
3746
+ msgstr "Pàgina de configuració"
3747
+
3748
+ #: includes/adminpages.php:50 includes/adminpages.php:130
3749
+ #: includes/adminpages.php:11 includes/adminpages.php:49
3750
+ #: includes/adminpages.php:54 includes/adminpages.php:114
3751
+ #: includes/adminpages.php:121 includes/adminpages.php:125
3752
+ msgid "Payment Settings"
3753
+ msgstr "Configuració de Pagament"
3754
+
3755
+ #: includes/adminpages.php:55 includes/adminpages.php:165
3756
+ #: includes/adminpages.php:16 includes/adminpages.php:54
3757
+ #: includes/adminpages.php:79 includes/adminpages.php:149
3758
+ #: includes/adminpages.php:156 includes/adminpages.php:160
3759
+ msgid "Reports"
3760
+ msgstr "Informes"
3761
+
3762
+ #: includes/adminpages.php:57 includes/adminpages.php:179
3763
+ #: includes/adminpages.php:18 includes/adminpages.php:56
3764
+ #: includes/adminpages.php:89 includes/adminpages.php:163
3765
+ #: includes/adminpages.php:170 includes/adminpages.php:174
3766
+ msgid "Discount Codes"
3767
+ msgstr "Codis de descompte"
3768
+
3769
+ #: includes/adminpages.php:61
3770
+ msgid "Updates Required"
3771
+ msgstr "Actualitzacions requerides"
3772
+
3773
+ #: includes/adminpages.php:109 includes/adminpages.php:100
3774
+ #: includes/adminpages.php:104
3775
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3776
+ msgstr "<span class=\"ab-icon\"></span>Subscripcions"
3777
+
3778
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3779
+ #: includes/adminpages.php:265
3780
+ msgid "Docs"
3781
+ msgstr "Docs"
3782
+
3783
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3784
+ #: includes/adminpages.php:265
3785
+ msgid "View PMPro Documentation"
3786
+ msgstr "Mira PMPro Documentation"
3787
+
3788
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3789
+ #: includes/adminpages.php:266
3790
+ msgid "Support"
3791
+ msgstr "Suport"
3792
+
3793
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3794
+ #: includes/adminpages.php:266
3795
+ msgid "Visit Customer Support Forum"
3796
+ msgstr "Visita el fòrum de suport al comprador"
3797
+
3798
+ #: includes/currencies.php:17 includes/currencies.php:87
3799
+ #: includes/currencies.php:7 includes/currencies.php:37
3800
+ #: includes/currencies.php:44 includes/currencies.php:64
3801
+ #: includes/currencies.php:68 includes/currencies.php:75
3802
+ #: includes/currencies.php:85
3803
+ msgid "US Dollars (&#36;)"
3804
+ msgstr "US Dollars (&#36;)"
3805
+
3806
+ #: includes/currencies.php:19 includes/currencies.php:90
3807
+ #: includes/currencies.php:8 includes/currencies.php:9
3808
+ #: includes/currencies.php:40 includes/currencies.php:47
3809
+ #: includes/currencies.php:67 includes/currencies.php:71
3810
+ #: includes/currencies.php:78 includes/currencies.php:88
3811
+ msgid "Euros (&euro;)"
3812
+ msgstr "Euros (&euro;)"
3813
+
3814
+ #: includes/currencies.php:24 includes/currencies.php:89
3815
+ #: includes/currencies.php:9 includes/currencies.php:14
3816
+ #: includes/currencies.php:39 includes/currencies.php:46
3817
+ #: includes/currencies.php:66 includes/currencies.php:70
3818
+ #: includes/currencies.php:77 includes/currencies.php:87
3819
+ msgid "Pounds Sterling (&pound;)"
3820
+ msgstr "Lliura Esterlina (&pound;)"
3821
+
3822
+ #: includes/currencies.php:28
3823
+ msgid "Argentine Peso (&#36;)"
3824
+ msgstr "Peso Argentí (&#36;)"
3825
+
3826
+ #: includes/currencies.php:29 includes/currencies.php:10
3827
+ #: includes/currencies.php:18 includes/currencies.php:28
3828
+ msgid "Australian Dollars (&#36;)"
3829
+ msgstr "Australian Dollars (&#36;)"
3830
+
3831
+ #: includes/currencies.php:31 includes/currencies.php:20
3832
+ #: includes/currencies.php:30
3833
+ msgid "Brazilian Real (R&#36;)"
3834
+ msgstr "Brazilian Real (R&#36;)"
3835
+
3836
+ #: includes/currencies.php:35 includes/currencies.php:88
3837
+ #: includes/currencies.php:12 includes/currencies.php:24
3838
+ #: includes/currencies.php:34 includes/currencies.php:38
3839
+ #: includes/currencies.php:45 includes/currencies.php:65
3840
+ #: includes/currencies.php:69 includes/currencies.php:76
3841
+ #: includes/currencies.php:86
3842
+ msgid "Canadian Dollars (&#36;)"
3843
+ msgstr "Canadian Dollars (&#36;)"
3844
+
3845
+ #: includes/currencies.php:36 includes/currencies.php:13
3846
+ #: includes/currencies.php:25 includes/currencies.php:35
3847
+ msgid "Chinese Yuan"
3848
+ msgstr "Chinese Yuan"
3849
+
3850
+ #: includes/currencies.php:38 includes/currencies.php:13
3851
+ #: includes/currencies.php:14 includes/currencies.php:26
3852
+ #: includes/currencies.php:27 includes/currencies.php:37
3853
+ msgid "Czech Koruna"
3854
+ msgstr "Czech Koruna"
3855
+
3856
+ #: includes/currencies.php:45 includes/currencies.php:14
3857
+ #: includes/currencies.php:15 includes/currencies.php:27
3858
+ #: includes/currencies.php:34 includes/currencies.php:44
3859
+ msgid "Danish Krone"
3860
+ msgstr "Danish Krone"
3861
+
3862
+ #: includes/currencies.php:46 includes/currencies.php:15
3863
+ #: includes/currencies.php:16 includes/currencies.php:28
3864
+ #: includes/currencies.php:35 includes/currencies.php:45
3865
+ msgid "Hong Kong Dollar (&#36;)"
3866
+ msgstr "Hong Kong Dollar (&#36;)"
3867
+
3868
+ #: includes/currencies.php:47 includes/currencies.php:16
3869
+ #: includes/currencies.php:17 includes/currencies.php:29
3870
+ #: includes/currencies.php:36 includes/currencies.php:46
3871
+ msgid "Hungarian Forint"
3872
+ msgstr "Hungarian Forint"
3873
+
3874
+ #: includes/currencies.php:48 includes/currencies.php:18
3875
+ #: includes/currencies.php:30 includes/currencies.php:37
3876
+ #: includes/currencies.php:47
3877
+ msgid "Indian Rupee"
3878
+ msgstr "Indian Rupee"
3879
+
3880
+ #: includes/currencies.php:49 includes/currencies.php:19
3881
+ #: includes/currencies.php:31 includes/currencies.php:38
3882
+ #: includes/currencies.php:48
3883
+ msgid "Indonesia Rupiah"
3884
+ msgstr "Indonesia Rupiah"
3885
+
3886
+ #: includes/currencies.php:50 includes/currencies.php:17
3887
+ #: includes/currencies.php:20 includes/currencies.php:32
3888
+ #: includes/currencies.php:39 includes/currencies.php:49
3889
+ msgid "Israeli Shekel"
3890
+ msgstr "Israeli Shekel"
3891
+
3892
+ #: includes/currencies.php:52 includes/currencies.php:18
3893
+ #: includes/currencies.php:21 includes/currencies.php:34
3894
+ #: includes/currencies.php:41 includes/currencies.php:51
3895
+ msgid "Japanese Yen (&yen;)"
3896
+ msgstr "Japanese Yen (&yen;)"
3897
+
3898
+ #: includes/currencies.php:56 includes/currencies.php:19
3899
+ #: includes/currencies.php:22 includes/currencies.php:38
3900
+ #: includes/currencies.php:45 includes/currencies.php:55
3901
+ msgid "Malaysian Ringgits"
3902
+ msgstr "Malaysian Ringgits"
3903
+
3904
+ #: includes/currencies.php:57 includes/currencies.php:20
3905
+ #: includes/currencies.php:23 includes/currencies.php:39
3906
+ #: includes/currencies.php:46 includes/currencies.php:56
3907
+ msgid "Mexican Peso (&#36;)"
3908
+ msgstr "Mexican Peso (&#36;)"
3909
+
3910
+ #: includes/currencies.php:58
3911
+ msgid "Nigerian Naira (&#8358;)"
3912
+ msgstr "Nigerian Naira (&#8358;)"
3913
+
3914
+ #: includes/currencies.php:59 includes/currencies.php:21
3915
+ #: includes/currencies.php:24 includes/currencies.php:40
3916
+ #: includes/currencies.php:47 includes/currencies.php:57
3917
+ msgid "New Zealand Dollar (&#36;)"
3918
+ msgstr "New Zealand Dollar (&#36;)"
3919
+
3920
+ #: includes/currencies.php:60 includes/currencies.php:22
3921
+ #: includes/currencies.php:25 includes/currencies.php:41
3922
+ #: includes/currencies.php:48 includes/currencies.php:58
3923
+ msgid "Norwegian Krone"
3924
+ msgstr "Norwegian Krone"
3925
+
3926
+ #: includes/currencies.php:61 includes/currencies.php:23
3927
+ #: includes/currencies.php:26 includes/currencies.php:42
3928
+ #: includes/currencies.php:49 includes/currencies.php:59
3929
+ msgid "Philippine Pesos"
3930
+ msgstr "Philippine Pesos"
3931
+
3932
+ #: includes/currencies.php:62 includes/currencies.php:24
3933
+ #: includes/currencies.php:27 includes/currencies.php:43
3934
+ #: includes/currencies.php:50 includes/currencies.php:60
3935
+ msgid "Polish Zloty"
3936
+ msgstr "Polish Zloty"
3937
+
3938
+ #: includes/currencies.php:64 includes/currencies.php:25
3939
+ #: includes/currencies.php:28 includes/currencies.php:45
3940
+ #: includes/currencies.php:52 includes/currencies.php:62
3941
+ msgid "Singapore Dollar (&#36;)"
3942
+ msgstr "Singapore Dollar (&#36;)"
3943
+
3944
+ #: includes/currencies.php:69 includes/currencies.php:50
3945
+ #: includes/currencies.php:57 includes/currencies.php:67
3946
+ msgid "South African Rand (R)"
3947
+ msgstr "South African Rand (R)"
3948
+
3949
+ #: includes/currencies.php:73 includes/currencies.php:30
3950
+ #: includes/currencies.php:50 includes/currencies.php:54
3951
+ #: includes/currencies.php:61 includes/currencies.php:71
3952
+ msgid "South Korean Won"
3953
+ msgstr "South Korean Won"
3954
+
3955
+ #: includes/currencies.php:74 includes/currencies.php:26
3956
+ #: includes/currencies.php:31 includes/currencies.php:51
3957
+ #: includes/currencies.php:55 includes/currencies.php:62
3958
+ #: includes/currencies.php:72
3959
+ msgid "Swedish Krona"
3960
+ msgstr "Swedish Krona"
3961
+
3962
+ #: includes/currencies.php:75 includes/currencies.php:27
3963
+ #: includes/currencies.php:32 includes/currencies.php:52
3964
+ #: includes/currencies.php:56 includes/currencies.php:63
3965
+ #: includes/currencies.php:73
3966
+ msgid "Swiss Franc"
3967
+ msgstr "Swiss Franc"
3968
+
3969
+ #: includes/currencies.php:76 includes/currencies.php:28
3970
+ #: includes/currencies.php:33 includes/currencies.php:53
3971
+ #: includes/currencies.php:57 includes/currencies.php:64
3972
+ #: includes/currencies.php:74
3973
+ msgid "Taiwan New Dollars"
3974
+ msgstr "Taiwan New Dollars"
3975
+
3976
+ #: includes/currencies.php:77 includes/currencies.php:29
3977
+ #: includes/currencies.php:34 includes/currencies.php:54
3978
+ #: includes/currencies.php:58 includes/currencies.php:65
3979
+ #: includes/currencies.php:75
3980
+ msgid "Thai Baht"
3981
+ msgstr "Thai Baht"
3982
+
3983
+ #: includes/currencies.php:78 includes/currencies.php:35
3984
+ #: includes/currencies.php:55 includes/currencies.php:59
3985
+ #: includes/currencies.php:66 includes/currencies.php:76
3986
+ msgid "Turkish Lira"
3987
+ msgstr "Turkish Lira"
3988
+
3989
+ #: includes/currencies.php:79 includes/currencies.php:36
3990
+ #: includes/currencies.php:56 includes/currencies.php:60
3991
+ #: includes/currencies.php:67 includes/currencies.php:77
3992
+ msgid "Vietnamese Dong"
3993
+ msgstr "Vietnamese Dong"
3994
+
3995
+ #: includes/functions.php:243 includes/functions.php:160
3996
+ #: includes/functions.php:196 includes/functions.php:200
3997
+ #: includes/functions.php:202 includes/functions.php:203
3998
+ #: includes/functions.php:204 includes/functions.php:207
3999
+ #, php-format
4000
+ msgid "The price for membership is <strong>%s</strong> now"
4001
+ msgstr "El preu per a la subscripció és <strong>%s</strong> ara"
4002
+
4003
+ #: includes/functions.php:245 includes/functions.php:202
4004
+ #: includes/functions.php:204 includes/functions.php:205
4005
+ #: includes/functions.php:206 includes/functions.php:209
4006
+ #, php-format
4007
+ msgid "<strong>%s</strong> now"
4008
+ msgstr "<strong>%s</strong> ara"
4009
+
4010
+ #: includes/functions.php:254 includes/functions.php:169
4011
+ #: includes/functions.php:205 includes/functions.php:211
4012
+ #: includes/functions.php:213 includes/functions.php:214
4013
+ #: includes/functions.php:215 includes/functions.php:218
4014
+ #, php-format
4015
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
4016
+ msgstr "i després <strong>%s per %s per %d més %s</strong>."
4017
+
4018
+ #: includes/functions.php:258
4019
+ #, php-format
4020
+ msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4021
+ msgstr "i després <strong>%s cada %d %s per %d més pagaments</strong>."
4022
+
4023
+ #: includes/functions.php:263 includes/functions.php:178
4024
+ #: includes/functions.php:214 includes/functions.php:220
4025
+ #: includes/functions.php:222 includes/functions.php:223
4026
+ #: includes/functions.php:224 includes/functions.php:227
4027
+ #, php-format
4028
+ msgid " and then <strong>%s after %d %s</strong>."
4029
+ msgstr "i després <strong>%s després %d %s</strong>."
4030
+
4031
+ #: includes/functions.php:271 includes/functions.php:228
4032
+ #: includes/functions.php:229 includes/functions.php:230
4033
+ #: includes/functions.php:231 includes/functions.php:235
4034
+ #, php-format
4035
+ msgid "The price for membership is <strong>%s per %s</strong>."
4036
+ msgstr "El preu per a la subscripció és de <strong>%s per %s</strong>."
4037
+
4038
+ #: includes/functions.php:273 includes/functions.php:230
4039
+ #: includes/functions.php:233 includes/functions.php:237
4040
+ #, php-format
4041
+ msgid "<strong>%s per %s</strong>."
4042
+ msgstr "<strong>%s per %s</strong>."
4043
+
4044
+ #: includes/functions.php:278 includes/functions.php:233
4045
+ #: includes/functions.php:234 includes/functions.php:235
4046
+ #: includes/functions.php:238 includes/functions.php:242
4047
+ #, php-format
4048
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
4049
+ msgstr "El preu per a la subscripció és de <strong>%s cada %d %s</strong>."
4050
+
4051
+ #: includes/functions.php:280 includes/functions.php:237
4052
+ #: includes/functions.php:240 includes/functions.php:244
4053
+ #, php-format
4054
+ msgid "<strong>%s every %d %s</strong>."
4055
+ msgstr "<strong>%s cada %d %s</strong>."
4056
+
4057
+ #: includes/functions.php:285 includes/functions.php:184
4058
+ #: includes/functions.php:220 includes/functions.php:228
4059
+ #: includes/functions.php:238 includes/functions.php:239
4060
+ #: includes/functions.php:240 includes/functions.php:242
4061
+ #: includes/functions.php:245 includes/functions.php:249
4062
+ #, php-format
4063
+ msgid " and then <strong>%s per %s</strong>."
4064
+ msgstr "i després <strong>%s per %s</strong>."
4065
+
4066
+ #: includes/functions.php:289 includes/functions.php:188
4067
+ #: includes/functions.php:224 includes/functions.php:232
4068
+ #: includes/functions.php:242 includes/functions.php:243
4069
+ #: includes/functions.php:244 includes/functions.php:246
4070
+ #: includes/functions.php:249 includes/functions.php:253
4071
+ #, php-format
4072
+ msgid " and then <strong>%s every %d %s</strong>."
4073
+ msgstr "i després <strong>%s cada %d %s</strong>."
4074
+
4075
+ #: includes/functions.php:307 includes/functions.php:202
4076
+ #: includes/functions.php:238 includes/functions.php:249
4077
+ #: includes/functions.php:260 includes/functions.php:261
4078
+ #: includes/functions.php:262 includes/functions.php:264
4079
+ #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
4080
+ msgid "After your initial payment, your first payment is Free."
4081
+ msgstr "Després del teu pagament inicial, el teu primer pagament és Gratuït."
4082
+
4083
+ #: includes/functions.php:311 includes/functions.php:206
4084
+ #: includes/functions.php:242 includes/functions.php:253
4085
+ #: includes/functions.php:264 includes/functions.php:265
4086
+ #: includes/functions.php:266 includes/functions.php:268
4087
+ #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
4088
+ #, php-format
4089
+ msgid "After your initial payment, your first %d payments are Free."
4090
+ msgstr "Després del teu pagament inicial, el teu %d pagaments són gratuïts."
4091
+
4092
+ #: includes/functions.php:318 includes/functions.php:213
4093
+ #: includes/functions.php:249 includes/functions.php:260
4094
+ #: includes/functions.php:271 includes/functions.php:272
4095
+ #: includes/functions.php:273 includes/functions.php:275
4096
+ #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
4097
+ #, php-format
4098
+ msgid "After your initial payment, your first payment will cost %s."
4099
+ msgstr "Després del teu pagament inicial, el teu primer pagament és de %s."
4100
+
4101
+ #: includes/functions.php:322 includes/functions.php:217
4102
+ #: includes/functions.php:253 includes/functions.php:264
4103
+ #: includes/functions.php:275 includes/functions.php:276
4104
+ #: includes/functions.php:277 includes/functions.php:279
4105
+ #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
4106
+ #, php-format
4107
+ msgid "After your initial payment, your first %d payments will cost %s."
4108
+ msgstr ""
4109
+ "Després del teu pagament inicial, els teus primers %d pagaments seran de %s."
4110
+
4111
+ #: includes/functions.php:333 includes/functions.php:228
4112
+ #: includes/functions.php:264 includes/functions.php:275
4113
+ #: includes/functions.php:286 includes/functions.php:287
4114
+ #: includes/functions.php:288 includes/functions.php:290
4115
+ #: includes/functions.php:293 includes/functions.php:297
4116
+ #, php-format
4117
+ msgid "Customers in %s will be charged %s%% tax."
4118
+ msgstr "Als compradors de %s se’ls carregarà %s%% en impost."
4119
+
4120
+ #: includes/functions.php:347 includes/functions.php:242
4121
+ #: includes/functions.php:278 includes/functions.php:289
4122
+ #: includes/functions.php:300 includes/functions.php:301
4123
+ #: includes/functions.php:302 includes/functions.php:304
4124
+ #: includes/functions.php:307 includes/functions.php:311
4125
+ #, php-format
4126
+ msgid "Membership expires after %d %s."
4127
+ msgstr "La subscripció expira després de %d %s."
4128
+
4129
+ #: includes/functions.php:694 includes/functions.php:491
4130
+ #: includes/functions.php:514 includes/functions.php:525
4131
+ #: includes/functions.php:536 includes/functions.php:537
4132
+ #: includes/functions.php:538 includes/functions.php:545
4133
+ #: includes/functions.php:569 includes/functions.php:570
4134
+ #: includes/functions.php:576 includes/functions.php:592
4135
+ #: includes/functions.php:615
4136
+ msgid "User ID not found."
4137
+ msgstr "No s’ha trobat el teu ID d’usuari"
4138
+
4139
+ #: includes/functions.php:714 includes/functions.php:508
4140
+ #: includes/functions.php:531 includes/functions.php:542
4141
+ #: includes/functions.php:553 includes/functions.php:554
4142
+ #: includes/functions.php:555 includes/functions.php:562
4143
+ #: includes/functions.php:586 includes/functions.php:587
4144
+ #: includes/functions.php:589 includes/functions.php:596
4145
+ #: includes/functions.php:612 includes/functions.php:635
4146
+ msgid "Invalid level."
4147
+ msgstr "Nivell no vàlid"
4148
+
4149
+ #: includes/functions.php:725 includes/functions.php:520
4150
+ #: includes/functions.php:542 includes/functions.php:553
4151
+ #: includes/functions.php:564 includes/functions.php:565
4152
+ #: includes/functions.php:566 includes/functions.php:573
4153
+ #: includes/functions.php:597 includes/functions.php:598
4154
+ #: includes/functions.php:600 includes/functions.php:607
4155
+ #: includes/functions.php:623 includes/functions.php:646
4156
+ msgid "not changing?"
4157
+ msgstr "no està canviant?"
4158
+
4159
+ #: includes/functions.php:742 includes/functions.php:815
4160
+ #: includes/functions.php:839 includes/functions.php:537
4161
+ #: includes/functions.php:559 includes/functions.php:570
4162
+ #: includes/functions.php:581 includes/functions.php:582
4163
+ #: includes/functions.php:583 includes/functions.php:590
4164
+ #: includes/functions.php:592 includes/functions.php:605
4165
+ #: includes/functions.php:614 includes/functions.php:615
4166
+ #: includes/functions.php:617 includes/functions.php:624
4167
+ #: includes/functions.php:626 includes/functions.php:628
4168
+ #: includes/functions.php:631 includes/functions.php:632
4169
+ #: includes/functions.php:633 includes/functions.php:637
4170
+ #: includes/functions.php:640 includes/functions.php:649
4171
+ #: includes/functions.php:656 includes/functions.php:657
4172
+ #: includes/functions.php:663 includes/functions.php:673
4173
+ #: includes/functions.php:674 includes/functions.php:676
4174
+ #: includes/functions.php:683 includes/functions.php:697
4175
+ #: includes/functions.php:698 includes/functions.php:699
4176
+ #: includes/functions.php:700 includes/functions.php:707
4177
+ #: includes/functions.php:722 includes/functions.php:723
4178
+ #: includes/functions.php:746
4179
+ msgid "Error interacting with database"
4180
+ msgstr "Error interactuant amb la base de dades"
4181
+
4182
+ #: includes/functions.php:881 includes/functions.php:920
4183
+ #: includes/functions.php:629 includes/functions.php:651
4184
+ #: includes/functions.php:667 includes/functions.php:668
4185
+ #: includes/functions.php:678 includes/functions.php:681
4186
+ #: includes/functions.php:690 includes/functions.php:697
4187
+ #: includes/functions.php:698 includes/functions.php:706
4188
+ #: includes/functions.php:714 includes/functions.php:717
4189
+ #: includes/functions.php:720 includes/functions.php:736
4190
+ #: includes/functions.php:737 includes/functions.php:738
4191
+ #: includes/functions.php:739 includes/functions.php:741
4192
+ #: includes/functions.php:748 includes/functions.php:753
4193
+ #: includes/functions.php:764 includes/functions.php:777
4194
+ #: includes/functions.php:778 includes/functions.php:780
4195
+ #: includes/functions.php:787 includes/functions.php:803
4196
+ #: includes/functions.php:826
4197
+ msgid "Membership level not found."
4198
+ msgstr "Nivell de subscripció no trobat."
4199
+
4200
+ #: includes/functions.php:1290 includes/functions.php:1100
4201
+ #: includes/functions.php:1101 includes/functions.php:1118
4202
+ #: includes/functions.php:1142 includes/functions.php:1143
4203
+ #: includes/functions.php:1150 includes/functions.php:1157
4204
+ #: includes/functions.php:1173 includes/functions.php:1196
4205
+ msgid "No code was given to check."
4206
+ msgstr "No s’ha donat cap codi per a fer el check"
4207
+
4208
+ #: includes/functions.php:1299 includes/functions.php:1050
4209
+ #: includes/functions.php:1072 includes/functions.php:1088
4210
+ #: includes/functions.php:1099 includes/functions.php:1102
4211
+ #: includes/functions.php:1109 includes/functions.php:1110
4212
+ #: includes/functions.php:1112 includes/functions.php:1113
4213
+ #: includes/functions.php:1127 includes/functions.php:1151
4214
+ #: includes/functions.php:1152 includes/functions.php:1159
4215
+ #: includes/functions.php:1166 includes/functions.php:1182
4216
+ #: includes/functions.php:1205
4217
+ msgid "The discount code could not be found."
4218
+ msgstr "No s’ha trobat el codi de descompte"
4219
+
4220
+ #: includes/functions.php:1314 includes/functions.php:1066
4221
+ #: includes/functions.php:1088 includes/functions.php:1104
4222
+ #: includes/functions.php:1115 includes/functions.php:1118
4223
+ #: includes/functions.php:1124 includes/functions.php:1125
4224
+ #: includes/functions.php:1128 includes/functions.php:1129
4225
+ #: includes/functions.php:1142 includes/functions.php:1166
4226
+ #: includes/functions.php:1167 includes/functions.php:1174
4227
+ #: includes/functions.php:1181 includes/functions.php:1197
4228
+ #: includes/functions.php:1220
4229
+ #, php-format
4230
+ msgid "This discount code goes into effect on %s."
4231
+ msgstr "El codi de descompte serà efectiu a %s."
4232
+
4233
+ #: includes/functions.php:1321 includes/functions.php:1075
4234
+ #: includes/functions.php:1097 includes/functions.php:1113
4235
+ #: includes/functions.php:1124 includes/functions.php:1127
4236
+ #: includes/functions.php:1131 includes/functions.php:1132
4237
+ #: includes/functions.php:1137 includes/functions.php:1138
4238
+ #: includes/functions.php:1149 includes/functions.php:1173
4239
+ #: includes/functions.php:1174 includes/functions.php:1181
4240
+ #: includes/functions.php:1188 includes/functions.php:1204
4241
+ #: includes/functions.php:1227
4242
+ #, php-format
4243
+ msgid "This discount code expired on %s."
4244
+ msgstr "Aquest codi de descompte ha expirat a %s."
4245
+
4246
+ #: includes/functions.php:1331 includes/functions.php:1087
4247
+ #: includes/functions.php:1109 includes/functions.php:1125
4248
+ #: includes/functions.php:1136 includes/functions.php:1139
4249
+ #: includes/functions.php:1141 includes/functions.php:1142
4250
+ #: includes/functions.php:1149 includes/functions.php:1150
4251
+ #: includes/functions.php:1159 includes/functions.php:1183
4252
+ #: includes/functions.php:1184 includes/functions.php:1191
4253
+ #: includes/functions.php:1198 includes/functions.php:1214
4254
+ #: includes/functions.php:1237
4255
+ msgid "This discount code is no longer valid."
4256
+ msgstr "Aquest codi de descompte ja no és vàlid."
4257
+
4258
+ #: includes/functions.php:1344 includes/functions.php:1102
4259
+ #: includes/functions.php:1124 includes/functions.php:1140
4260
+ #: includes/functions.php:1151 includes/functions.php:1154
4261
+ #: includes/functions.php:1155 includes/functions.php:1164
4262
+ #: includes/functions.php:1165 includes/functions.php:1172
4263
+ #: includes/functions.php:1196 includes/functions.php:1197
4264
+ #: includes/functions.php:1204 includes/functions.php:1211
4265
+ #: includes/functions.php:1227 includes/functions.php:1250
4266
+ msgid "This discount code does not apply to this membership level."
4267
+ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
4268
+
4269
+ #: includes/functions.php:1370 includes/functions.php:1110
4270
+ #: includes/functions.php:1132 includes/functions.php:1148
4271
+ #: includes/functions.php:1159 includes/functions.php:1162
4272
+ #: includes/functions.php:1172 includes/functions.php:1180
4273
+ #: includes/functions.php:1181 includes/functions.php:1182
4274
+ #: includes/functions.php:1198 includes/functions.php:1222
4275
+ #: includes/functions.php:1223 includes/functions.php:1230
4276
+ #: includes/functions.php:1237 includes/functions.php:1253
4277
+ #: includes/functions.php:1276
4278
+ msgid "This discount code is okay."
4279
+ msgstr "El codi de descompte és OK"
4280
+
4281
+ #: includes/functions.php:1397 includes/functions.php:1134
4282
+ #: includes/functions.php:1156 includes/functions.php:1172
4283
+ #: includes/functions.php:1183 includes/functions.php:1186
4284
+ #: includes/functions.php:1196 includes/functions.php:1205
4285
+ #: includes/functions.php:1206 includes/functions.php:1223
4286
+ #: includes/functions.php:1247 includes/functions.php:1248
4287
+ #: includes/functions.php:1255 includes/functions.php:1262
4288
+ #: includes/functions.php:1278 includes/functions.php:1301
4289
+ #: includes/functions.php:1395
4290
+ msgid "and"
4291
+ msgstr "i"
4292
+
4293
+ #: includes/functions.php:1624 includes/functions.php:1319
4294
+ #: includes/functions.php:1341 includes/functions.php:1361
4295
+ #: includes/functions.php:1372 includes/functions.php:1375
4296
+ #: includes/functions.php:1385 includes/functions.php:1394
4297
+ #: includes/functions.php:1395 includes/functions.php:1412
4298
+ #: includes/functions.php:1436 includes/functions.php:1437
4299
+ #: includes/functions.php:1450 includes/functions.php:1457
4300
+ #: includes/functions.php:1473 includes/functions.php:1496
4301
+ #: includes/functions.php:1501 includes/functions.php:1620
4302
+ msgid "Sign Up for !!name!! Now"
4303
+ msgstr "Sign Up per !!name!! Ara"
4304
+
4305
+ #: includes/functions.php:1630 includes/functions.php:1325
4306
+ #: includes/functions.php:1347 includes/functions.php:1367
4307
+ #: includes/functions.php:1378 includes/functions.php:1381
4308
+ #: includes/functions.php:1391 includes/functions.php:1400
4309
+ #: includes/functions.php:1401 includes/functions.php:1418
4310
+ #: includes/functions.php:1442 includes/functions.php:1443
4311
+ #: includes/functions.php:1456 includes/functions.php:1463
4312
+ #: includes/functions.php:1479 includes/functions.php:1502
4313
+ #: includes/functions.php:1507 includes/functions.php:1626
4314
+ msgid "Please specify a level id."
4315
+ msgstr "Si us plau especifica un ID de Nivell"
4316
+
4317
+ #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4318
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4319
+ #: includes/init.php:237 includes/init.php:245 includes/profile.php:37
4320
+ msgid "None"
4321
+ msgstr "Cap"
4322
+
4323
+ #: includes/license.php:51
4324
+ msgid "Your license key has been validated."
4325
+ msgstr "La teva clau (license key) ha estat validada."
4326
+
4327
+ #: includes/license.php:81
4328
+ msgid "Paid Memberships Pro Support License"
4329
+ msgstr "Paid Memberships Pro Support License"
4330
+
4331
+ #: includes/license.php:86
4332
+ msgid "License Key"
4333
+ msgstr "License Key"
4334
+
4335
+ #: includes/license.php:89
4336
+ msgid ""
4337
+ "Enter your support license key.</strong> Your license key can be found in "
4338
+ "your membership email receipt or in your <a href=\"http://www."
4339
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
4340
+ "\"_blank\">Membership Account</a>."
4341
+ msgstr ""
4342
+ "Introdueix la teva license key.</strong> Pots trobar la teva license key al "
4343
+ "teu correu electrònic<a href=\"http://www.paidmembershipspro.com/login/?"
4344
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
4345
+
4346
+ #: includes/license.php:91
4347
+ msgid ""
4348
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
4349
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
4350
+ "page to confirm that your account is active and to find your license key."
4351
+ msgstr ""
4352
+ "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
4353
+ "membership-account/\" target=\"_blank\">Membership Account</a> per confirmar "
4354
+ "que el teu compte és actiu i per trobar la teva license key."
4355
+
4356
+ #: includes/license.php:91
4357
+ msgid "Your license is invalid or expired."
4358
+ msgstr "La teva license és invalida o ha expirat"
4359
+
4360
+ #: includes/license.php:93
4361
+ #, php-format
4362
+ msgid ""
4363
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
4364
+ "been used to activate your support license on this site.</p>"
4365
+ msgstr ""
4366
+ "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license key "
4367
+ "ha estat utilitzada per a activar el suport en aquest lloc web</p>"
4368
+
4369
+ #: includes/license.php:100
4370
+ msgid "Enter license key here..."
4371
+ msgstr "Introdueix license key aquí"
4372
+
4373
+ #: includes/license.php:102
4374
+ msgid "Verify Key"
4375
+ msgstr "Verifica la Clau"
4376
+
4377
+ #: includes/license.php:288 includes/license.php:273
4378
+ msgid ""
4379
+ "If you're running Paid Memberships Pro on a production website, we recommend "
4380
+ "an annual support license."
4381
+ msgstr ""
4382
+ "Si utilitzes Paid Memberships Pro en un lloc web, et recomanem una llicència "
4383
+ "de suport anual."
4384
+
4385
+ #: includes/license.php:288 includes/license.php:273
4386
+ msgid "Invalid PMPro License Key."
4387
+ msgstr "Invalid PMPro License Key."
4388
+
4389
+ #: includes/license.php:289 includes/license.php:274
4390
+ msgid "Dismiss"
4391
+ msgstr "Acomiada"
4392
+
4393
+ #: includes/license.php:289 includes/license.php:274
4394
+ msgid "More Info"
4395
+ msgstr "Més informació"
4396
+
4397
+ #: includes/localization.php:26 includes/localization.php:23
4398
+ msgid "Day"
4399
+ msgstr "Dia"
4400
+
4401
+ #: includes/localization.php:28 includes/localization.php:25
4402
+ msgid "Week"
4403
+ msgstr "Setmana"
4404
+
4405
+ #: includes/localization.php:30 includes/localization.php:27
4406
+ msgid "Month"
4407
+ msgstr "Mes"
4408
+
4409
+ #: includes/localization.php:32 includes/localization.php:29
4410
+ msgid "Year"
4411
+ msgstr "Any"
4412
+
4413
+ #: includes/localization.php:37
4414
+ msgid "Days"
4415
+ msgstr "Dies"
4416
+
4417
+ #: includes/localization.php:39
4418
+ msgid "Weeks"
4419
+ msgstr "Setmanes"
4420
+
4421
+ #: includes/localization.php:41
4422
+ msgid "Months"
4423
+ msgstr "Mesos"
4424
+
4425
+ #: includes/localization.php:43
4426
+ msgid "Years"
4427
+ msgstr "Anys"
4428
+
4429
+ #: includes/metaboxes.php:39 includes/metaboxes.php:38
4430
+ msgid ""
4431
+ "This post is already protected for this level because it is within a "
4432
+ "category that requires membership."
4433
+ msgstr ""
4434
+ "Aquest post està protegit per a aquest nivell perquè està dins d’una "
4435
+ "categoria que requereix subscripció."
4436
+
4437
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4438
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
4439
+ msgid "Require Membership"
4440
+ msgstr "Requereix Subscripció"
4441
+
4442
+ #: includes/metaboxes.php:135 includes/metaboxes.php:130
4443
+ msgid ""
4444
+ "Only members of these levels will be able to view posts in this category."
4445
+ msgstr ""
4446
+ "Només els subscriptors d’aquests nivell podran veure els posts d’aquesta "
4447
+ "categoria."
4448
+
4449
+ #: includes/profile.php:36 includes/profile.php:34
4450
+ msgid "Current Level"
4451
+ msgstr "Nivell actual"
4452
+
4453
+ #: includes/profile.php:65 includes/profile.php:54 includes/profile.php:60
4454
+ msgid "Not paying."
4455
+ msgstr "Sense pagament fet."
4456
+
4457
+ #: includes/profile.php:73 includes/profile.php:64 includes/profile.php:68
4458
+ msgid ""
4459
+ "This will not change the subscription at the gateway unless the 'Cancel' "
4460
+ "checkbox is selected below."
4461
+ msgstr ""
4462
+ "Això no canviarà la subscripció a la passarel·la a menys que es seleccioni "
4463
+ "“Cancel·la” a sota."
4464
+
4465
+ #: includes/updates.php:97
4466
+ msgid "Paid Memberships Pro Data Update Required"
4467
+ msgstr "Paid Memberships Pro Data Requereix Actualització"
4468
+
4469
+ #: includes/updates.php:102
4470
+ msgid "Start the Update"
4471
+ msgstr "Actualitza"
4472
+
4473
+ #: includes/updates.php:123
4474
+ msgid "All Paid Memberships Pro updates have finished."
4475
+ msgstr "Totes les actualitzacions de Paid Memberships Pro han acabat."
4476
+
4477
+ #: includes/upgradecheck.php:563 includes/upgradecheck.php:401
4478
+ #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
4479
+ #: includes/upgradecheck.php:442 includes/upgradecheck.php:542
4480
+ #, php-format
4481
+ msgid ""
4482
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4483
+ msgstr ""
4484
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4485
+ "\">Register</a>"
4486
+
4487
+ #: includes/upgradecheck.php:566 includes/upgradecheck.php:404
4488
+ #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
4489
+ #: includes/upgradecheck.php:445 includes/upgradecheck.php:545
4490
+ #, php-format
4491
+ msgid ""
4492
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4493
+ "<a href=\"%s\">Register</a>"
4494
+ msgstr ""
4495
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4496
+ "\">Log In</a> <a href=\"%s\">Register</a>"
4497
+
4498
+ #: includes/upgradecheck.php:570 includes/upgradecheck.php:408
4499
+ #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
4500
+ #: includes/upgradecheck.php:449 includes/upgradecheck.php:549
4501
+ msgid ""
4502
+ "This content is for !!levels!! members only. Visit the site and log in/"
4503
+ "register to read."
4504
+ msgstr ""
4505
+ "Aquest contingut és només per a subscriptors !!levels!! . Visita el lloc i "
4506
+ "fés un log in/registre per a poder llegir."
4507
+
4508
+ #: pages/billing.php:23 pages/billing.php:14
4509
+ #, php-format
4510
+ msgid "Logged in as <strong>%s</strong>."
4511
+ msgstr "Logged in com a <strong>%s</strong>."
4512
+
4513
+ #: pages/billing.php:23 pages/billing.php:14
4514
+ msgid "logout"
4515
+ msgstr "logout"
4516
+
4517
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
4518
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
4519
+ #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4520
+ #: pages/account.php:92 pages/billing.php:16 pages/levels.php:13
4521
+ #: shortcodes/pmpro_account.php:123
4522
+ msgid "Level"
4523
+ msgstr "Nivell"
4524
+
4525
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
4526
+ msgid "Membership Fee"
4527
+ msgstr "Preu de subscripció"
4528
+
4529
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22
4530
+ #: pages/levels.php:70
4531
+ #, php-format
4532
+ msgid "%s every %d %s."
4533
+ msgstr "%s cada %d %s."
4534
+
4535
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24
4536
+ #: pages/levels.php:66
4537
+ #, php-format
4538
+ msgid "%s per %s."
4539
+ msgstr "%s per %s."
4540
+
4541
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29
4542
+ #: pages/billing.php:29 pages/billing.php:33
4543
+ msgid "Duration"
4544
+ msgstr "Durada"
4545
+
4546
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
4547
+ msgid ""
4548
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
4549
+ "paypal.com\">login to PayPal here</a> to update your billing information."
4550
+ msgstr ""
4551
+ "El pagament de la teva subscripció és gestionat per PayPal. Si us plau <a "
4552
+ "href=\"http://www.paypal.com\">login to PayPal aquí</a> per actualitzar la "
4553
+ "teva informació de pagament."
4554
+
4555
+ #: pages/billing.php:78 pages/checkout.php:326 pages/billing.php:65
4556
+ #: pages/billing.php:69 pages/checkout.php:305 pages/checkout.php:307
4557
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
4558
+ #: pages/checkout.php:324 pages/checkout.php:328
4559
+ msgid "First Name"
4560
+ msgstr "Nom"
4561
+
4562
+ #: pages/billing.php:82 pages/checkout.php:330 pages/billing.php:69
4563
+ #: pages/billing.php:73 pages/checkout.php:309 pages/checkout.php:311
4564
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
4565
+ #: pages/checkout.php:328 pages/checkout.php:332
4566
+ msgid "Last Name"
4567
+ msgstr "Cognoms"
4568
+
4569
+ #: pages/billing.php:86 pages/checkout.php:334 pages/billing.php:73
4570
+ #: pages/billing.php:77 pages/checkout.php:313 pages/checkout.php:315
4571
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
4572
+ #: pages/checkout.php:332 pages/checkout.php:336
4573
+ msgid "Address 1"
4574
+ msgstr "Adreça 1"
4575
+
4576
+ #: pages/billing.php:90 pages/checkout.php:338 pages/billing.php:77
4577
+ #: pages/billing.php:81 pages/checkout.php:317 pages/checkout.php:319
4578
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
4579
+ #: pages/checkout.php:336 pages/checkout.php:340
4580
+ msgid "Address 2"
4581
+ msgstr "Adreça 2"
4582
+
4583
+ #: pages/billing.php:100 pages/checkout.php:348 pages/billing.php:87
4584
+ #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
4585
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
4586
+ #: pages/checkout.php:346 pages/checkout.php:350
4587
+ msgid "City"
4588
+ msgstr "Ciutat"
4589
+
4590
+ #: pages/billing.php:104 pages/checkout.php:352 pages/billing.php:91
4591
+ #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
4592
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
4593
+ #: pages/checkout.php:350 pages/checkout.php:354
4594
+ msgid "State"
4595
+ msgstr "State/província"
4596
+
4597
+ #: pages/billing.php:108 pages/checkout.php:356 pages/billing.php:95
4598
+ #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
4599
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
4600
+ #: pages/checkout.php:354 pages/checkout.php:358
4601
+ msgid "Postal Code"
4602
+ msgstr "Codi Postal"
4603
+
4604
+ #: pages/billing.php:117 pages/checkout.php:365 pages/billing.php:104
4605
+ #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
4606
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
4607
+ #: pages/checkout.php:363 pages/checkout.php:367
4608
+ msgid "City, State Zip"
4609
+ msgstr "Ciutat, CP"
4610
+
4611
+ #: pages/billing.php:170 pages/checkout.php:418 pages/billing.php:157
4612
+ #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
4613
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
4614
+ #: pages/checkout.php:416 pages/checkout.php:420
4615
+ msgid "Country"
4616
+ msgstr "País"
4617
+
4618
+ #: pages/billing.php:195 pages/checkout.php:443 pages/billing.php:182
4619
+ #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
4620
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
4621
+ #: pages/checkout.php:441 pages/checkout.php:445
4622
+ msgid "Phone"
4623
+ msgstr "Telèfon"
4624
+
4625
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
4626
+ #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
4627
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
4628
+ #: pages/checkout.php:218 pages/checkout.php:436 pages/checkout.php:438
4629
+ #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4630
+ #: pages/checkout.php:455 pages/checkout.php:460
4631
+ msgid "E-mail Address"
4632
+ msgstr "Correu electrònic"
4633
+
4634
+ #: pages/billing.php:210 pages/checkout.php:466 pages/billing.php:197
4635
+ #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
4636
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
4637
+ #: pages/checkout.php:464 pages/checkout.php:469
4638
+ msgid "Confirm E-mail"
4639
+ msgstr "Confirma Correu electrònic"
4640
+
4641
+ #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4642
+ #: pages/billing.php:230
4643
+ msgid "Credit Card Information"
4644
+ msgstr "Informació de la Tarjeta de Crèdit"
4645
+
4646
+ #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4647
+ #: pages/billing.php:230
4648
+ #, php-format
4649
+ msgid "We accept %s"
4650
+ msgstr "Acceptem %s"
4651
+
4652
+ #: pages/billing.php:360 pages/billing.php:309 pages/billing.php:313
4653
+ #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
4654
+ msgid ""
4655
+ "This subscription is not recurring. So you don't need to update your billing "
4656
+ "information."
4657
+ msgstr ""
4658
+ "Aquesta subscripció no és recurrent. Per tant, no necessites actualitzar la "
4659
+ "teva informació de pagament."
4660
+
4661
+ #: pages/cancel.php:26 pages/cancel.php:14
4662
+ msgid "Are you sure you want to cancel your membership?"
4663
+ msgstr "Estàs segur que vols cancel·lar la teva subscripció?"
4664
+
4665
+ #: pages/cancel.php:32
4666
+ #, php-format
4667
+ msgid "Are you sure you want to cancel your %s membership?"
4668
+ msgstr "Estàs segur que vols cancel·lar la teva %s subscripció?"
4669
+
4670
+ #: pages/cancel.php:37 pages/cancel.php:17
4671
+ msgid "Yes, cancel my account"
4672
+ msgstr "Sí, cancel·la el meu compte"
4673
+
4674
+ #: pages/cancel.php:38 pages/cancel.php:19
4675
+ msgid "No, keep my account"
4676
+ msgstr "No, conserva el meu compte"
4677
+
4678
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
4679
+ msgid "My Memberships"
4680
+ msgstr "Les meves subscripcions"
4681
+
4682
+ #: pages/cancel.php:77
4683
+ msgid "Cancel All Memberships"
4684
+ msgstr "Cancel·la totes les subscripcions"
4685
+
4686
+ #: pages/cancel.php:86 pages/cancel.php:22
4687
+ msgid "Click here to go to the home page."
4688
+ msgstr "Clica aquí per anar a la pàgina d’inici"
4689
+
4690
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4691
+ #: pages/checkout.php:28
4692
+ msgid ""
4693
+ "Almost done. Review the membership information and pricing below then "
4694
+ "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4695
+ msgstr ""
4696
+ "Gairebé hem acabat. Revisa la teva subscripció i el preu a sota "
4697
+ "<strong>clica el botó de ”Completa Pagament” </strong> per a finalitzar."
4698
+
4699
+ #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
4700
+ #: pages/checkout.php:35 pages/checkout.php:42
4701
+ msgid "change"
4702
+ msgstr "canvi"
4703
+
4704
+ #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
4705
+ #: pages/checkout.php:43 pages/checkout.php:50
4706
+ #, php-format
4707
+ msgid "You have selected the <strong>%s</strong> membership level."
4708
+ msgstr "Has escollit el nivell de subscripció <strong>%s</strong>."
4709
+
4710
+ #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
4711
+ #: pages/checkout.php:60
4712
+ #, php-format
4713
+ msgid ""
4714
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4715
+ "been applied to your order.</p>"
4716
+ msgstr ""
4717
+ "<p class=\"pmpro_level_discount_applied\">El<strong>%s</strong> codi s’ha "
4718
+ "aplicat a la teva comanda.</p>"
4719
+
4720
+ #: pages/checkout.php:72 services/applydiscountcode.php:89
4721
+ #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4722
+ #: pages/checkout.php:71 services/applydiscountcode.php:74
4723
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4724
+ msgid "Click here to change your discount code"
4725
+ msgstr "Clica aquí per canviar el teu codi de descompte"
4726
+
4727
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4728
+ #: pages/checkout.php:66 pages/checkout.php:73
4729
+ msgid "Click here to enter your discount code"
4730
+ msgstr "Clica aquí per introduir el teu codi de descompte"
4731
+
4732
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4733
+ #: pages/checkout.php:66 pages/checkout.php:73
4734
+ msgid "Do you have a discount code?"
4735
+ msgstr "Tens un codi de descompte?"
4736
+
4737
+ #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
4738
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
4739
+ msgid "Account Information"
4740
+ msgstr "Informació del compte"
4741
+
4742
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4743
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4744
+ msgid "Already have an account?"
4745
+ msgstr "Ja tens un compte?"
4746
+
4747
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4748
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4749
+ msgid "Log in here"
4750
+ msgstr "Log in aquí"
4751
+
4752
+ #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
4753
+ #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
4754
+ msgid "Confirm Password"
4755
+ msgstr "Confirma Clau"
4756
+
4757
+ #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
4758
+ #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
4759
+ msgid "Confirm E-mail Address"
4760
+ msgstr "Confirma correu electrònic"
4761
+
4762
+ #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
4763
+ #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
4764
+ msgid "Full Name"
4765
+ msgstr "Nom complet"
4766
+
4767
+ #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
4768
+ #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
4769
+ msgid "LEAVE THIS BLANK"
4770
+ msgstr "DEIXA AIXÒ EN BLANC"
4771
+
4772
+ #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
4773
+ #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
4774
+ #, php-format
4775
+ msgid ""
4776
+ "You are logged in as <strong>%s</strong>. If you would like to use a "
4777
+ "different account for this membership, <a href=\"%s\">log out now</a>."
4778
+ msgstr ""
4779
+ "Estàs logged in com a <strong>%s</strong>.Si vols utilitzar un compte "
4780
+ "diferent per a aquesta subscripció, <a href=\"%s\">log out now</a>."
4781
+
4782
+ #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
4783
+ #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:292
4784
+ #: pages/checkout.php:299
4785
+ msgid "Choose your Payment Method"
4786
+ msgstr "Escull el mètode de pagament"
4787
+
4788
+ #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
4789
+ #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:300
4790
+ #: pages/checkout.php:307
4791
+ msgid "Check Out with a Credit Card Here"
4792
+ msgstr "Check Out amb tarjeta de crèdit aquí"
4793
+
4794
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
4795
+ #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4796
+ #: pages/checkout.php:681 pages/checkout.php:690
4797
+ #, php-format
4798
+ msgid "I agree to the %s"
4799
+ msgstr "Estic d’acord amb %s"
4800
+
4801
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
4802
+ #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4803
+ #: pages/checkout.php:701 pages/checkout.php:710
4804
+ msgid "Complete Payment"
4805
+ msgstr "Completa pagament"
4806
+
4807
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
4808
+ #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4809
+ #: pages/checkout.php:723 pages/checkout.php:732
4810
+ msgid "Processing..."
4811
+ msgstr "Processant…"
4812
+
4813
+ #: pages/confirmation.php:12
4814
+ msgid ""
4815
+ "Your payment has been submitted. Your membership will be activated shortly."
4816
+ msgstr ""
4817
+ "El teu pagament ha estat enviat. La teva subscripció estarà activa aviat."
4818
+
4819
+ #: pages/confirmation.php:14
4820
+ #, php-format
4821
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
4822
+ msgstr ""
4823
+ "Moltes gràcies per la teva subscripció a %s. La teva %s subscripció està "
4824
+ "activa."
4825
+
4826
+ #: pages/confirmation.php:28
4827
+ #, php-format
4828
+ msgid ""
4829
+ "Below are details about your membership account and a receipt for your "
4830
+ "initial membership invoice. A welcome email with a copy of your initial "
4831
+ "membership invoice has been sent to %s."
4832
+ msgstr ""
4833
+ "A sota hi ha els detalls del teu compte de subscripció i l’import del teu "
4834
+ "pagament inicial. Un correu electrònic de benviguda amb la còpia de la "
4835
+ "factura s’ha enviat a %s."
4836
+
4837
+ #: pages/confirmation.php:41 pages/invoice.php:22
4838
+ #, php-format
4839
+ msgid "Invoice #%s on %s"
4840
+ msgstr "Factura #%s a %s"
4841
+
4842
+ #: pages/confirmation.php:43 pages/invoice.php:24
4843
+ msgid "Print"
4844
+ msgstr "Imprimeix"
4845
+
4846
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
4847
+ #: pages/confirmation.php:45 pages/confirmation.php:102 pages/invoice.php:26
4848
+ msgid "Account"
4849
+ msgstr "Compte"
4850
+
4851
+ #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
4852
+ #: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
4853
+ msgid "Membership Expires"
4854
+ msgstr "La subscripció acaba"
4855
+
4856
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
4857
+ #: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
4858
+ msgid "Payment Method"
4859
+ msgstr "Mètode de pagament"
4860
+
4861
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
4862
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
4863
+ #: pages/invoice.php:109
4864
+ msgid "Total Billed"
4865
+ msgstr "Total facturat"
4866
+
4867
+ #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
4868
+ #: pages/invoice.php:67
4869
+ msgid "ending in"
4870
+ msgstr "acaba a"
4871
+
4872
+ #: pages/confirmation.php:97
4873
+ #, php-format
4874
+ msgid ""
4875
+ "Below are details about your membership account. A welcome email has been "
4876
+ "sent to %s."
4877
+ msgstr ""
4878
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
4879
+ "de benviguda s’ha enviat a %s."
4880
+
4881
+ #: pages/confirmation.php:105 pages/confirmation.php:103
4882
+ msgid "Pending"
4883
+ msgstr "Pendent"
4884
+
4885
+ #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
4886
+ #: pages/invoice.php:139
4887
+ msgid "View Your Membership Account &rarr;"
4888
+ msgstr "Mira el teu compte de subscripció &rarr;"
4889
+
4890
+ #: pages/confirmation.php:115 pages/confirmation.php:113
4891
+ msgid ""
4892
+ "If your account is not activated within a few minutes, please contact the "
4893
+ "site owner."
4894
+ msgstr ""
4895
+ "Si el teu compte no s’activa en uns minuts, si us plau contacta amb "
4896
+ "l’administrador del lloc web."
4897
+
4898
+ #: pages/invoice.php:82 pages/invoice.php:80
4899
+ msgid "Coupon"
4900
+ msgstr "Cupó"
4901
+
4902
+ #: pages/invoice.php:108 pages/invoice.php:106
4903
+ msgid "Invoice #"
4904
+ msgstr "Factura #"
4905
+
4906
+ #: pages/invoice.php:134 pages/invoice.php:132
4907
+ msgid "No invoices found."
4908
+ msgstr "No s’han trobat factures."
4909
+
4910
+ #: pages/invoice.php:145 pages/invoice.php:143
4911
+ msgid "&larr; View All Invoices"
4912
+ msgstr "&larr; Mira totes les factures"
4913
+
4914
+ #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
4915
+ msgid "Free"
4916
+ msgstr "Gratuït"
4917
+
4918
+ #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
4919
+ #: pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
4920
+ msgid "Select"
4921
+ msgstr "Tria"
4922
+
4923
+ #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
4924
+ #: pages/levels.php:57 pages/levels.php:123 shortcodes/pmpro_account.php:59
4925
+ msgid "Renew"
4926
+ msgstr "Renova"
4927
+
4928
+ #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:117
4929
+ #: pages/levels.php:129
4930
+ msgid "Your&nbsp;Level"
4931
+ msgstr "El teu&nbsp;Nivell"
4932
+
4933
+ #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:129
4934
+ #: pages/levels.php:145
4935
+ msgid "&larr; Return to Your Account"
4936
+ msgstr "&larr; Torna al teu compte"
4937
+
4938
+ #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:131
4939
+ #: pages/levels.php:147
4940
+ msgid "&larr; Return to Home"
4941
+ msgstr "&larr; Torna a la pàgina d’inici"
4942
+
4943
+ #: paid-memberships-pro.php:125 adminpages/orders.php:398
4944
+ #: adminpages/orders.php:448 paid-memberships-pro.php:115
4945
+ #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
4946
+ #: paid-memberships-pro.php:124
4947
+ msgid "Testing Only"
4948
+ msgstr "Només test"
4949
+
4950
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:120
4951
+ #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
4952
+ #: paid-memberships-pro.php:129
4953
+ msgid "PayPal Payflow Pro/PayPal Pro"
4954
+ msgstr "PayPal Payflow Pro/PayPal Pro"
4955
+
4956
+ #: paid-memberships-pro.php:135 paid-memberships-pro.php:125
4957
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
4958
+ #: paid-memberships-pro.php:134
4959
+ msgid "Cybersource"
4960
+ msgstr "Cybersource"
4961
+
4962
+ #: paid-memberships-pro.php:156
4963
+ msgid "Once a month"
4964
+ msgstr "Un cop al mes"
4965
+
4966
+ #: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
4967
+ #: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
4968
+ msgid "Your membership status has been updated - Thank you!"
4969
+ msgstr "El teu status de subscripció ha estat actualitzat - Moltes gràcies!"
4970
+
4971
+ #: preheaders/account.php:12 preheaders/levels.php:24 preheaders/account.php:11
4972
+ #: preheaders/levels.php:23
4973
+ msgid ""
4974
+ "Sorry, your request could not be completed - please try again in a few "
4975
+ "moments."
4976
+ msgstr ""
4977
+ "Perdò, el què has demanat no es pot completar - si us plau torna-ho a provar "
4978
+ "en uns moments."
4979
+
4980
+ #: preheaders/billing.php:270 preheaders/checkout.php:336
4981
+ #: preheaders/billing.php:258 preheaders/billing.php:265
4982
+ #: preheaders/billing.php:266 preheaders/billing.php:279
4983
+ #: preheaders/checkout.php:332 preheaders/checkout.php:458
4984
+ #: preheaders/checkout.php:464 preheaders/checkout.php:465
4985
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481
4986
+ #: preheaders/checkout.php:482
4987
+ msgid "Please complete all required fields."
4988
+ msgstr "Si us plau completa tots els camps requerits."
4989
+
4990
+ #: preheaders/billing.php:273 preheaders/checkout.php:344
4991
+ #: preheaders/billing.php:263 preheaders/billing.php:268
4992
+ #: preheaders/billing.php:269 preheaders/billing.php:284
4993
+ #: preheaders/checkout.php:340 preheaders/checkout.php:466
4994
+ #: preheaders/checkout.php:473 preheaders/checkout.php:474
4995
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491
4996
+ #: preheaders/checkout.php:492
4997
+ msgid "Your email addresses do not match. Please try again."
4998
+ msgstr "El teu correu electrònic no coincideix. Si us plau torna a intentar-ho"
4999
+
5000
+ #: preheaders/billing.php:276 preheaders/checkout.php:349
5001
+ #: preheaders/billing.php:268 preheaders/billing.php:271
5002
+ #: preheaders/billing.php:272 preheaders/billing.php:289
5003
+ #: preheaders/checkout.php:345 preheaders/checkout.php:471
5004
+ #: preheaders/checkout.php:478 preheaders/checkout.php:480
5005
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497
5006
+ #: preheaders/checkout.php:498
5007
+ msgid "The email address entered is in an invalid format. Please try again."
5008
+ msgstr ""
5009
+ "El correu electrònic està en un format incorrecte. Si us plau, torna a "
5010
+ "provar-ho."
5011
+
5012
+ #: preheaders/billing.php:280 preheaders/billing.php:274
5013
+ #: preheaders/billing.php:275 preheaders/billing.php:276
5014
+ #: preheaders/billing.php:295
5015
+ msgid "All good!"
5016
+ msgstr "Tot bé!"
5017
+
5018
+ #: preheaders/billing.php:350 preheaders/billing.php:340
5019
+ #: preheaders/billing.php:345 preheaders/billing.php:346
5020
+ #: preheaders/billing.php:370
5021
+ #, php-format
5022
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5023
+ msgstr ""
5024
+ "Informació actualitzada. <a href=\"%s\">&laquo; torna al meu compte</a>"
5025
+
5026
+ #: preheaders/billing.php:356 preheaders/billing.php:347
5027
+ #: preheaders/billing.php:351 preheaders/billing.php:352
5028
+ #: preheaders/billing.php:378 preheaders/billing.php:380
5029
+ msgid "Error updating billing information."
5030
+ msgstr "Error actualitzant la informació de facturació."
5031
+
5032
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
5033
+ msgid "Your membership has been cancelled."
5034
+ msgstr "La teva subscripció ha estat cancel·lada."
5035
+
5036
+ #: preheaders/checkout.php:32 preheaders/checkout.php:358
5037
+ #: preheaders/checkout.php:28 preheaders/checkout.php:30
5038
+ #: preheaders/checkout.php:31 preheaders/checkout.php:354
5039
+ #: preheaders/checkout.php:480 preheaders/checkout.php:487
5040
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5041
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
5042
+ msgid "Invalid gateway."
5043
+ msgstr "Passarel·la invàlida."
5044
+
5045
+ #: preheaders/checkout.php:95 preheaders/checkout.php:88
5046
+ #: preheaders/checkout.php:89 preheaders/checkout.php:91
5047
+ #: preheaders/checkout.php:96
5048
+ msgid "Checkout: Payment Information"
5049
+ msgstr "Checkout: Informació de pagament."
5050
+
5051
+ #: preheaders/checkout.php:100
5052
+ msgid "Set Up Your Account"
5053
+ msgstr "Configura el teu compte"
5054
+
5055
+ #: preheaders/checkout.php:304 preheaders/checkout.php:300
5056
+ #: preheaders/checkout.php:416 preheaders/checkout.php:421
5057
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
5058
+ msgstr "Hi ha errors de JavaScript. Si us plau contacta el webmaster."
5059
+
5060
+ #: preheaders/checkout.php:339 preheaders/checkout.php:335
5061
+ #: preheaders/checkout.php:461 preheaders/checkout.php:468
5062
+ #: preheaders/checkout.php:473 preheaders/checkout.php:485
5063
+ #: preheaders/checkout.php:486
5064
+ msgid "Your passwords do not match. Please try again."
5065
+ msgstr "La teva clau no coincideix. Si us plau, torna a intentar-ho."
5066
+
5067
+ #: preheaders/checkout.php:354 preheaders/checkout.php:350
5068
+ #: preheaders/checkout.php:476 preheaders/checkout.php:483
5069
+ #: preheaders/checkout.php:486 preheaders/checkout.php:488
5070
+ #: preheaders/checkout.php:503 preheaders/checkout.php:504
5071
+ #, php-format
5072
+ msgid "Please check the box to agree to the %s."
5073
+ msgstr "Si us plau, clica per acceptar %s."
5074
+
5075
+ #: preheaders/checkout.php:361 preheaders/checkout.php:357
5076
+ #: preheaders/checkout.php:483 preheaders/checkout.php:490
5077
+ #: preheaders/checkout.php:495 preheaders/checkout.php:512
5078
+ #: preheaders/checkout.php:513
5079
+ msgid "Are you a spammer?"
5080
+ msgstr "Ets un spammer?"
5081
+
5082
+ #: preheaders/checkout.php:381 preheaders/checkout.php:377
5083
+ #: preheaders/checkout.php:503 preheaders/checkout.php:510
5084
+ #: preheaders/checkout.php:515 preheaders/checkout.php:518
5085
+ #: preheaders/checkout.php:535 preheaders/checkout.php:536
5086
+ msgid "That username is already taken. Please try another."
5087
+ msgstr "Aquest nom d’usuari ja està en ús. Si us plau escull-ne un altre."
5088
+
5089
+ #: preheaders/checkout.php:386 preheaders/checkout.php:382
5090
+ #: preheaders/checkout.php:508 preheaders/checkout.php:515
5091
+ #: preheaders/checkout.php:520 preheaders/checkout.php:524
5092
+ #: preheaders/checkout.php:541 preheaders/checkout.php:542
5093
+ msgid "That email address is already taken. Please try another."
5094
+ msgstr "Aquest correu electrònic ja està en ús. Si us plau escull-ne un altre."
5095
+
5096
+ #: preheaders/checkout.php:420 preheaders/checkout.php:397
5097
+ #: preheaders/checkout.php:399 preheaders/checkout.php:416
5098
+ #: preheaders/checkout.php:525 preheaders/checkout.php:532
5099
+ #: preheaders/checkout.php:537 preheaders/checkout.php:544
5100
+ #: preheaders/checkout.php:561 preheaders/checkout.php:562
5101
+ #, php-format
5102
+ msgid "reCAPTCHA failed. (%s) Please try again."
5103
+ msgstr "reCAPTCHA ha fallat. (%s) Si us plau, torna a intentar-ho."
5104
+
5105
+ #: preheaders/checkout.php:505 preheaders/checkout.php:482
5106
+ #: preheaders/checkout.php:484 preheaders/checkout.php:501
5107
+ #: preheaders/checkout.php:647 preheaders/checkout.php:654
5108
+ #: preheaders/checkout.php:659 preheaders/checkout.php:683
5109
+ #: preheaders/checkout.php:701 preheaders/checkout.php:702
5110
+ msgid "Payment accepted."
5111
+ msgstr "Pagament acceptat"
5112
+
5113
+ #: preheaders/checkout.php:513 preheaders/checkout.php:490
5114
+ #: preheaders/checkout.php:492 preheaders/checkout.php:509
5115
+ #: preheaders/checkout.php:653 preheaders/checkout.php:660
5116
+ #: preheaders/checkout.php:665 preheaders/checkout.php:691
5117
+ #: preheaders/checkout.php:709 preheaders/checkout.php:710
5118
+ msgid ""
5119
+ "Unknown error generating account. Please contact us to set up your "
5120
+ "membership."
5121
+ msgstr ""
5122
+ "Error desconegut generant el compte. Si us plau, contacta amb nosaltres per "
5123
+ "a configurar la teva subscripció."
5124
+
5125
+ #: preheaders/checkout.php:575 preheaders/checkout.php:550
5126
+ #: preheaders/checkout.php:552 preheaders/checkout.php:569
5127
+ #: preheaders/checkout.php:571 preheaders/checkout.php:785
5128
+ #: preheaders/checkout.php:792 preheaders/checkout.php:797
5129
+ #: preheaders/checkout.php:825 preheaders/checkout.php:844
5130
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
5131
+ msgid ""
5132
+ "Your payment was accepted, but there was an error setting up your account. "
5133
+ "Please contact us."
5134
+ msgstr ""
5135
+ "El teu pagament ha estat acceptat, però hi ha hagut un error configurant el "
5136
+ "teu compte. Si us plau contacta amb nosaltres."
5137
+
5138
+ #: preheaders/checkout.php:722 preheaders/checkout.php:691
5139
+ #: preheaders/checkout.php:693 preheaders/checkout.php:710
5140
+ #: preheaders/checkout.php:712 preheaders/checkout.php:953
5141
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
5142
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5143
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
5144
+ msgid ""
5145
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5146
+ "authorized, but we cancelled the order immediately. You should not try to "
5147
+ "submit this form again. Please contact the site owner to fix this issue."
5148
+ msgstr ""
5149
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5150
+ "tarjeta ha estat autoritzada, però hem cancel·lat l’orde immediatament. No "
5151
+ "hauries de tornar a enviar aquest formulari. Si us plau contacta amb els "
5152
+ "administradors de la pàgina per a resoldre aquest problema."
5153
+
5154
+ #: preheaders/checkout.php:725 preheaders/checkout.php:694
5155
+ #: preheaders/checkout.php:696 preheaders/checkout.php:713
5156
+ #: preheaders/checkout.php:715 preheaders/checkout.php:956
5157
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
5158
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5159
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
5160
+ msgid ""
5161
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5162
+ "was charged, but we couldn't assign your membership. You should not submit "
5163
+ "this form again. Please contact the site owner to fix this issue."
5164
+ msgstr ""
5165
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5166
+ "tarjeta de credit ha estat carregada, però no hem pogut assignar una "
5167
+ "subscripció. No hauries de tornar a enviar aquest formulari. Si us plau "
5168
+ "contacta amb els administradors de la pàgina per a resoldre aquest problema."
5169
+
5170
+ #: preheaders/checkout.php:736 preheaders/checkout.php:705
5171
+ #: preheaders/checkout.php:707 preheaders/checkout.php:724
5172
+ #: preheaders/checkout.php:726 preheaders/checkout.php:967
5173
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
5174
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5175
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
5176
+ #, php-format
5177
+ msgid ""
5178
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
5179
+ "will be processed."
5180
+ msgstr ""
5181
+ "Has de <a href=\"%s\">configurar la passarel·la de pagament</a> abans de "
5182
+ "processar cap pagament."
5183
+
5184
+ #: preheaders/checkout.php:738 preheaders/checkout.php:707
5185
+ #: preheaders/checkout.php:709 preheaders/checkout.php:726
5186
+ #: preheaders/checkout.php:728 preheaders/checkout.php:969
5187
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
5188
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5189
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
5190
+ msgid "A Payment Gateway must be set up before any payments will be processed."
5191
+ msgstr ""
5192
+ "Has de configurar la passarel·la de pagament abans de processar cap pagament."
5193
+
5194
+ #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5195
+ #: scheduled/crons.php:38 scheduled/crons.php:61
5196
+ #, php-format
5197
+ msgid "Membership expired email sent to %s. "
5198
+ msgstr "Correu electrònic d’expiració de subscripció enviat a %s. "
5199
+
5200
+ #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5201
+ #: scheduled/crons.php:80 scheduled/crons.php:84
5202
+ #, php-format
5203
+ msgid "Membership expiring email sent to %s. "
5204
+ msgstr "Correu electrònic d’expiració enviat a %s. "
5205
+
5206
+ #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5207
+ #: scheduled/crons.php:157
5208
+ #, php-format
5209
+ msgid "Credit card expiring email sent to %s. "
5210
+ msgstr "Correu electrònic d’expiració de tarjeta de crèdit enviat a %s. "
5211
+
5212
+ #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5213
+ #: scheduled/crons.php:208 scheduled/crons.php:210
5214
+ #, php-format
5215
+ msgid "Trial ending email sent to %s. "
5216
+ msgstr "Correu electrònic de finalització de període de prova enviat a %s. "
5217
+
5218
+ #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
5219
+ #, php-format
5220
+ msgid "The %s code has been applied to your order. "
5221
+ msgstr "El codi %s s’ha aplicat a la teva comanda."
5222
+
5223
+ #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
5224
+ #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
5225
+ #, php-format
5226
+ msgid "The <strong>%s</strong> code has been applied to your order."
5227
+ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
5228
+
5229
+ #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:133
5230
+ #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5231
+ msgid ""
5232
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5233
+ "Information From Authorize.net"
5234
+ msgstr ""
5235
+ "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information "
5236
+ "From Authorize.net"
5237
+
5238
+ #: services/stripe-webhook.php:272 services/stripe-webhook.php:176
5239
+ #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5240
+ #: services/stripe-webhook.php:271
5241
+ #, php-format
5242
+ msgid ""
5243
+ "%s has had their payment subscription cancelled by Stripe. Please check that "
5244
+ "this user's membership is cancelled on your site if it should be."
5245
+ msgstr ""
5246
+ "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma que la "
5247
+ "subscripció d’aquest membre ha estat cancel·lada al teu lloc web (per si no "
5248
+ "fós correcte)."
5249
+
5250
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
5251
+ msgid "Billing"
5252
+ msgstr "Facturació"
5253
+
5254
+ #: shortcodes/pmpro_account.php:65 pages/account.php:36
5255
+ #: shortcodes/pmpro_account.php:62
5256
+ msgid "Update Billing Info"
5257
+ msgstr "Actualitza l’informació de facturació"
5258
+
5259
+ #: shortcodes/pmpro_account.php:71 pages/account.php:42
5260
+ #: shortcodes/pmpro_account.php:68
5261
+ msgid "Change"
5262
+ msgstr "Canvi"
5263
+
5264
+ #: shortcodes/pmpro_account.php:93 pages/account.php:64
5265
+ #: shortcodes/pmpro_account.php:90
5266
+ msgid "View all Membership Options"
5267
+ msgstr "Mira totes les opcions de subscripció"
5268
+
5269
+ #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5270
+ #: pages/account.php:71 shortcodes/pmpro_account.php:99
5271
+ msgid "My Account"
5272
+ msgstr "El meu compte"
5273
+
5274
+ #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5275
+ #: pages/account.php:80 shortcodes/pmpro_account.php:110
5276
+ msgid "Edit Profile"
5277
+ msgstr "Edita el perfil"
5278
+
5279
+ #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5280
+ #: pages/account.php:81 shortcodes/pmpro_account.php:111
5281
+ msgid "Change Password"
5282
+ msgstr "Canvia Clau"
5283
+
5284
+ #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5285
+ #: pages/account.php:129 shortcodes/pmpro_account.php:118
5286
+ msgid "Past Invoices"
5287
+ msgstr "Factures anteriors"
5288
+
5289
+ #: shortcodes/pmpro_account.php:127 pages/account.php:93
5290
+ #: shortcodes/pmpro_account.php:124
5291
+ msgid "Amount"
5292
+ msgstr "Quantitat"
5293
+
5294
+ #: shortcodes/pmpro_account.php:155 pages/account.php:121 pages/account.php:140
5295
+ #: pages/account.php:144 shortcodes/pmpro_account.php:152
5296
+ msgid "View All Invoices"
5297
+ msgstr "Mira totes les Factures"
5298
+
5299
+ #: shortcodes/pmpro_account.php:162 pages/account.php:128 pages/account.php:146
5300
+ #: pages/account.php:150 shortcodes/pmpro_account.php:159
5301
+ msgid "Member Links"
5302
+ msgstr "Links dels subscriptors"
5303
+
5304
+ #: adminpages/addons.php:79
5305
+ msgid "Disabled"
5306
+ msgstr "Desactivat"
5307
+
5308
+ #: adminpages/addons.php:79
5309
+ msgid "Enabled"
5310
+ msgstr "Activat"
5311
+
5312
+ #: adminpages/discountcodes.php:437
5313
+ msgid "Billing Ammount"
5314
+ msgstr "Quantitat de facturació"
5315
+
5316
+ #: adminpages/discountcodes.php:480
5317
+ msgid "Check this to set an expiration date for new sign ups."
5318
+ msgstr ""
5319
+ "Comproveu això per establir una data de caducitat per als nous sign ups."
5320
+
5321
+ #: adminpages/discountcodes.php:497
5322
+ msgid ""
5323
+ "How long before the expiration expires. Note that any future payments will "
5324
+ "be cancelled when the membership expires."
5325
+ msgstr ""
5326
+ "Temps abans que expiri l’expiració. Nota que els futurs pagament es "
5327
+ "cancel·laran quan expiri la subscripció."
5328
+
5329
+ #: adminpages/emailsettings.php:98
5330
+ msgid "If unchecked, all emails from \"WordPress &lt;"
5331
+ msgstr "Si no està clicat, tots els correus electrònics desde \"WordPress &lt;"
5332
+
5333
+ #: adminpages/membershiplevels.php:364
5334
+ msgid ""
5335
+ "Stripe integration currently only supports billing periods of \"Month\" or "
5336
+ "\"Year\"."
5337
+ msgstr ""
5338
+ "Integració d’Stripe actualment només suporta períodes facturació de “Mes” o "
5339
+ "“Any”."
5340
+
5341
+ #: adminpages/membershiplevels.php:398
5342
+ msgid ""
5343
+ "2Checkout integration does not currently support custom trials. You can do "
5344
+ "one period trials by setting an initial payment different from the billing "
5345
+ "amount."
5346
+ msgstr ""
5347
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
5348
+ "període de prova configurant un pagament inicial diferent del total de "
5349
+ "facturació."
5350
+
5351
+ #: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
5352
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
5353
+ msgid "Billing Cycle"
5354
+ msgstr "Cicle de facturació"
5355
+
5356
+ #: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
5357
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
5358
+ msgid "Trial Cycle"
5359
+ msgstr "Cicle de prova"
5360
+
5361
+ #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
5362
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
5363
+ msgid "every"
5364
+ msgstr "cada"
5365
+
5366
+ #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
5367
+ msgid "Never"
5368
+ msgstr "Mai"
5369
+
5370
+ #: adminpages/pagesettings.php:73
5371
+ #, php-format
5372
+ msgid "Membership %s"
5373
+ msgstr "Subscripció %s"
5374
+
5375
+ #: adminpages/paymentsettings.php:170
5376
+ msgid ""
5377
+ "Payflow Pro currently only supports one-time payments. Users will not be "
5378
+ "able to checkout for levels with recurring payments."
5379
+ msgstr ""
5380
+ "Payflow Pro només suporta pagaments d’un cop. Els usuaris no podran fer el "
5381
+ "checkout per nivells amb pagaments recurrents."
5382
+
5383
+ #: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
5384
+ msgid ""
5385
+ "If values are given, tax will be applied for any members ordering from the "
5386
+ "selected state. For more complex tax rules, use the \"pmpro_tax\" filter."
5387
+ msgstr ""
5388
+ "Si es posen valors, l’impost s’aplicarà per a tots els membres que comprin "
5389
+ "des de l’estat seleccionat. Per regles més complexes d’impostos utilitza el "
5390
+ "filtre \"pmpro_tax”."
5391
+
5392
+ #: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
5393
+ msgid "Use SSL"
5394
+ msgstr "Utilitza SSL"
5395
+
5396
+ #: adminpages/paymentsettings.php:425
5397
+ msgid "Required by this Gateway Option"
5398
+ msgstr "Requerit per aquesta opció de Passarel·la"
5399
+
5400
+ #: adminpages/paymentsettings.php:432
5401
+ msgid ""
5402
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
5403
+ "the checkout page."
5404
+ msgstr ""
5405
+ "Stripe no requereix camps d’adreça de facturació. Escull “No” per amagar-los "
5406
+ "de la pàgina de checkout."
5407
+
5408
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
5409
+ #: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
5410
+ msgid "HTTPS Nuclear Option"
5411
+ msgstr "HTTPS Nuclear Option"
5412
+
5413
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
5414
+ #: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
5415
+ msgid ""
5416
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
5417
+ "Check this if you are using SSL and have warnings on your checkout pages."
5418
+ msgstr ""
5419
+ "Utilitza la \"Nuclear Option\" per utilitzar (HTTPS) URLs a les teves "
5420
+ "pàgines segures. Clica si estàs utilitzant SSL i tens missatges "
5421
+ "d’advertiment a les teves pàgines de checkout"
5422
+
5423
+ #: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
5424
+ #: adminpages/paymentsettings.php:498
5425
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
5426
+ msgid ""
5427
+ "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
5428
+ msgstr ""
5429
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar 2Checkout "
5430
+ "INS URL "
5431
+
5432
+ #: adminpages/reports/login.php:26 adminpages/reports/login.php:27
5433
+ msgid "Visits Today"
5434
+ msgstr "Visites avui"
5435
+
5436
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:29
5437
+ msgid "Visits All Time"
5438
+ msgstr "Visites sempre"
5439
+
5440
+ #: adminpages/reports/login.php:31 adminpages/reports/login.php:32
5441
+ msgid "Views Today"
5442
+ msgstr "Vistes avui"
5443
+
5444
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:34
5445
+ msgid "Views All Time"
5446
+ msgstr "Vistes sempre"
5447
+
5448
+ #: adminpages/reports/login.php:36 adminpages/reports/login.php:37
5449
+ msgid "Logins Today"
5450
+ msgstr "Logins avui"
5451
+
5452
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:39
5453
+ msgid "Logins All Time"
5454
+ msgstr "Logins sempre"
5455
+
5456
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
5457
+ msgid "Cancellations"
5458
+ msgstr "Cancel·lacions"
5459
+
5460
+ #: adminpages/reports/memberships.php:86
5461
+ msgid "Other Stats"
5462
+ msgstr "Altres estadístiques"
5463
+
5464
+ #: adminpages/reports/memberships.php:88
5465
+ msgid "Monthly Recurring Revenue (MRR)"
5466
+ msgstr "Beneficis Recurrents Mensuals (MRR)"
5467
+
5468
+ #: adminpages/reports/memberships.php:92
5469
+ msgid "Cancellation Rate"
5470
+ msgstr "Rati de cancel·lació"
5471
+
5472
+ #: adminpages/reports/memberships.php:96
5473
+ msgid "Lifetime Value (LTV)"
5474
+ msgstr "Lifetime Value (LTV)"
5475
+
5476
+ #: classes/class.pmproemail.php:342 classes/class.pmproemail.php:345
5477
+ #: classes/class.pmproemail.php:363 classes/class.pmproemail.php:366
5478
+ #: classes/class.pmproemail.php:375
5479
+ #, php-format
5480
+ msgid "Your billing information has been udpated at %s"
5481
+ msgstr "La teva informació de facturació ha estat actualitzada a %s"
5482
+
5483
+ #: classes/class.pmproemail.php:386 classes/class.pmproemail.php:390
5484
+ #: classes/class.pmproemail.php:416 classes/class.pmproemail.php:419
5485
+ #: classes/class.pmproemail.php:428
5486
+ #, php-format
5487
+ msgid "Billing information has been udpated for %s at %s"
5488
+ msgstr "Informació de facturació actualitzada per %s a %s"
5489
+
5490
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5491
+ #: classes/class.pmproemail.php:799
5492
+ msgid "membership has been cancelled"
5493
+ msgstr "La subscripció ha estat cancel·lada"
5494
+
5495
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
5496
+ msgid "API Private Key"
5497
+ msgstr "API Private Key"
5498
+
5499
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
5500
+ msgid ""
5501
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
5502
+ "here."
5503
+ msgstr ""
5504
+ "Vés a API in 2Checkout i genera un nou key pair. Enganxa la Private Key aquí."
5505
+
5506
+ #: includes/currencies.php:11
5507
+ msgid "Brazilian Real (&#36;)"
5508
+ msgstr "Brazilian Real (&#36;)"
5509
+
5510
+ #: includes/currencies.php:29 includes/currencies.php:49
5511
+ msgid "South African Rand"
5512
+ msgstr "South African Rand"
5513
+
5514
+ #: includes/functions.php:173 includes/functions.php:209
5515
+ #: includes/functions.php:215 includes/functions.php:217
5516
+ #: includes/functions.php:218 includes/functions.php:219
5517
+ #: includes/functions.php:222
5518
+ #, php-format
5519
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
5520
+ msgstr "i després <strong>%s cada %d %s per %d mes %s</strong>."
5521
+
5522
+ #: includes/profile.php:82 includes/profile.php:84
5523
+ msgid "User is not paying."
5524
+ msgstr "L’usuari no està pagant"
5525
+
5526
+ #: pages/account.php:10
5527
+ msgid "Your membership is <strong>active</strong>."
5528
+ msgstr "La teva subscripció és <strong>active</strong>."
5529
+
5530
+ #: pages/account.php:34 pages/account.php:38
5531
+ #, php-format
5532
+ msgid "Your first payment will cost %s."
5533
+ msgstr "El teu primer pagament serà de %s."
5534
+
5535
+ #: pages/account.php:38 pages/account.php:42
5536
+ #, php-format
5537
+ msgid "Your first %d payments will cost %s."
5538
+ msgstr "El teu primer %d pagament serà de %s."
5539
+
5540
+ #: pages/account.php:87 pages/account.php:91
5541
+ msgid "Billing Information"
5542
+ msgstr "Informació de Facturació"
5543
+
5544
+ #: pages/account.php:114 pages/account.php:118
5545
+ msgid "Edit Billing Information"
5546
+ msgstr "Edita l’Informació de Facturació"
5547
+
5548
+ #: pages/account.php:152 pages/account.php:156
5549
+ msgid "Update Billing Information"
5550
+ msgstr "Actualitza l’Informació de Facturació"
5551
+
5552
+ #: pages/account.php:155 pages/account.php:159
5553
+ msgid "Change Membership Level"
5554
+ msgstr "Canvia el nivell de subscripció"
5555
+
5556
+ #: pages/account.php:157 pages/account.php:161
5557
+ msgid "Cancel Membership"
5558
+ msgstr "Cancel·la la subscripció"
5559
+
5560
+ #: pages/checkout.php:51 pages/checkout.php:52
5561
+ #, php-format
5562
+ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
5563
+ msgstr "<p>El codi <strong>%s</strong> s’ha aplicat a la teva comanda.</p>"
5564
+
5565
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
5566
+ msgid "Submit and Pay with 2CheckOut"
5567
+ msgstr "Envia i paga amb 2CheckOut"
5568
+
5569
+ #: pages/confirmation.php:12
5570
+ msgid ""
5571
+ "Your payment has been submitted to PayPal. Your membership will be activated "
5572
+ "shortly."
5573
+ msgstr ""
5574
+ "El teu pagament s’ha realitzat via PayPal. La teva subscripció s’activarà "
5575
+ "aviat."
5576
+
5577
+ #: pages/confirmation.php:95 pages/confirmation.php:97
5578
+ #, php-format
5579
+ msgid ""
5580
+ "Below are details about your membership account. A welcome email with has "
5581
+ "been sent to %s."
5582
+ msgstr ""
5583
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
5584
+ "de benvinguda s’ha enviat a %s."
5585
+
5586
+ #: pages/invoice.php:120 pages/invoice.php:122
5587
+ msgid "View Invoice"
5588
+ msgstr "Mira Factura"
5589
+
5590
+ #: pages/levels.php:15
5591
+ msgid "Subscription Information"
5592
+ msgstr "Informació de subscripció"
5593
+
5594
+ #: pages/levels.php:33
5595
+ msgid "--"
5596
+ msgstr "--"
5597
+
5598
+ #: pages/levels.php:51
5599
+ #, php-format
5600
+ msgid "%s per %s for %d more %s."
5601
+ msgstr "%s per %s per %d més %s."
5602
+
5603
+ #: pages/levels.php:55
5604
+ #, php-format
5605
+ msgid "%s every %d %s for %d more %s."
5606
+ msgstr "%s cada %d %s per %d més %s."
5607
+
5608
+ #: pages/levels.php:60
5609
+ #, php-format
5610
+ msgid "%s after %d %s."
5611
+ msgstr "%s després %d %s."
5612
+
5613
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100
5614
+ #: preheaders/checkout.php:102 preheaders/checkout.php:109
5615
+ msgid "Set up Your Account"
5616
+ msgstr "Configura el teu compte"
languages/pmpro-ca_AD.mo ADDED
Binary file
languages/pmpro-ca_AD.po ADDED
@@ -0,0 +1,5616 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-31 12:04+0100\n"
9
+ "PO-Revision-Date: 2016-02-06 17:11+0100\n"
10
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "Last-Translator: \n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: ca\n"
18
+
19
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
20
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
21
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
22
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
23
+ #: adminpages/orders-print.php:12 adminpages/orders.php:5
24
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
25
+ #: adminpages/updates.php:5 includes/license.php:36 adminpages/addons.php:21
26
+ #: adminpages/pagesettings.php:5
27
+ msgid "You do not have permissions to perform this action."
28
+ msgstr "Vostè no té permisos per a realitzar aquesta acció."
29
+
30
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170
31
+ #: includes/adminpages.php:53 includes/adminpages.php:151
32
+ #: adminpages/addons.php:80 adminpages/admin_header.php:133
33
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14
34
+ #: includes/adminpages.php:52 includes/adminpages.php:69
35
+ #: includes/adminpages.php:135 includes/adminpages.php:142
36
+ #: includes/adminpages.php:146
37
+ msgid "Add Ons"
38
+ msgstr "Complement"
39
+
40
+ #: adminpages/addons.php:71 adminpages/addons.php:87
41
+ #, php-format
42
+ msgid "Last checked on %s at %s."
43
+ msgstr "Darrera comprovació: %s a %s."
44
+
45
+ #: adminpages/addons.php:72 adminpages/addons.php:88
46
+ msgid "Check Again"
47
+ msgstr "Comproveu una vegada més"
48
+
49
+ #: adminpages/addons.php:76 adminpages/orders.php:712 adminpages/addons.php:92
50
+ #: adminpages/orders.php:605 adminpages/orders.php:741
51
+ msgid "All"
52
+ msgstr "Tot"
53
+
54
+ #: adminpages/addons.php:77 adminpages/addons.php:93
55
+ msgid "Active"
56
+ msgstr "Actiu"
57
+
58
+ #: adminpages/addons.php:78 adminpages/addons.php:94
59
+ msgid "Inactive"
60
+ msgstr "Inactiu"
61
+
62
+ #: adminpages/addons.php:79 adminpages/addons.php:95
63
+ msgid "Update Available"
64
+ msgstr "Actualització disponible"
65
+
66
+ #: adminpages/addons.php:80 adminpages/addons.php:96
67
+ msgid "Not Installed"
68
+ msgstr "No instal·lat"
69
+
70
+ #: adminpages/addons.php:93 adminpages/addons.php:109
71
+ msgid "Add On Name"
72
+ msgstr "Add On Nom"
73
+
74
+ #: adminpages/addons.php:94 adminpages/addons.php:110
75
+ msgid "Type"
76
+ msgstr "Tipus"
77
+
78
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:296
80
+ #: adminpages/membershiplevels.php:298
81
+ msgid "Description"
82
+ msgstr "Descripció"
83
+
84
+ #: adminpages/addons.php:118 adminpages/addons.php:134
85
+ msgid "No Add Ons found."
86
+ msgstr "No s’ha trobat Add Ons"
87
+
88
+ #: adminpages/addons.php:179 adminpages/addons.php:184
89
+ #: adminpages/addons.php:196 adminpages/addons.php:195
90
+ #: adminpages/addons.php:200 adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr "Instal · la ara"
93
+
94
+ #: adminpages/addons.php:185 adminpages/addons.php:191
95
+ #: adminpages/addons.php:197 adminpages/addons.php:203
96
+ #: adminpages/addons.php:201 adminpages/addons.php:207
97
+ #: adminpages/addons.php:213 adminpages/addons.php:219
98
+ msgid "Download"
99
+ msgstr "Descarrega"
100
+
101
+ #: adminpages/addons.php:190 adminpages/addons.php:202
102
+ #: adminpages/addons.php:206 adminpages/addons.php:218
103
+ msgid "Update License"
104
+ msgstr "Actualitza Llicència"
105
+
106
+ #: adminpages/addons.php:208 adminpages/addons.php:224
107
+ msgid "Deactivate"
108
+ msgstr "Desactiva"
109
+
110
+ #: adminpages/addons.php:208 adminpages/addons.php:224
111
+ #, php-format
112
+ msgid "Deactivate %s"
113
+ msgstr "Desactiva %s"
114
+
115
+ #: adminpages/addons.php:212 adminpages/addons.php:228
116
+ msgid "Activate"
117
+ msgstr "Activa"
118
+
119
+ #: adminpages/addons.php:212 adminpages/addons.php:228
120
+ #, php-format
121
+ msgid "Activate %s"
122
+ msgstr "Activa %s"
123
+
124
+ #: adminpages/addons.php:213 adminpages/addons.php:229
125
+ msgid "Delete"
126
+ msgstr "Esborra"
127
+
128
+ #: adminpages/addons.php:213 adminpages/addons.php:229
129
+ #, php-format
130
+ msgid "Delete %s"
131
+ msgstr "Esborra %s"
132
+
133
+ #: adminpages/addons.php:223 adminpages/addons.php:239
134
+ msgid "PMPro Free"
135
+ msgstr "PMPro Free"
136
+
137
+ #: adminpages/addons.php:225 adminpages/addons.php:241
138
+ msgid "PMPro Core"
139
+ msgstr "PMPro Core"
140
+
141
+ #: adminpages/addons.php:227 adminpages/addons.php:243
142
+ msgid "PMPro Plus"
143
+ msgstr "PMPro Plus"
144
+
145
+ #: adminpages/addons.php:229 adminpages/addons.php:245
146
+ msgid "WordPress.org"
147
+ msgstr "WordPress.org"
148
+
149
+ #: adminpages/addons.php:231 adminpages/addons.php:247
150
+ msgid "N/A"
151
+ msgstr "N/A"
152
+
153
+ #: adminpages/addons.php:240 adminpages/addons.php:256
154
+ #, php-format
155
+ msgid "Version %s"
156
+ msgstr "Versió %s"
157
+
158
+ #: adminpages/addons.php:245 adminpages/addons.php:261
159
+ #, php-format
160
+ msgid "By %s"
161
+ msgstr "Per %s"
162
+
163
+ #: adminpages/addons.php:252 adminpages/addons.php:268
164
+ #, php-format
165
+ msgid "More information about %s"
166
+ msgstr "Mes informació sobre %s"
167
+
168
+ #: adminpages/addons.php:254 adminpages/addons.php:270
169
+ msgid "View details"
170
+ msgstr "Mira detalls"
171
+
172
+ #: adminpages/addons.php:259 adminpages/addons.php:275
173
+ msgid "Visit plugin site"
174
+ msgstr "Visita el lloc del plugin"
175
+
176
+ #: adminpages/admin_header.php:25
177
+ msgid "Add a membership level to get started."
178
+ msgstr "Afegeix un nivell de subscripció per començar"
179
+
180
+ #: adminpages/admin_header.php:27
181
+ msgid "Set up the membership pages"
182
+ msgstr "Configura les pàgines de subscripció"
183
+
184
+ #: adminpages/admin_header.php:29
185
+ msgid "Set up your SSL certificate and payment gateway"
186
+ msgstr "Configureu el vostre certificat SSL i la passarel·la de pagament"
187
+
188
+ #: adminpages/admin_header.php:38
189
+ msgid ""
190
+ "The billing details for some of your membership levels is not supported by "
191
+ "Stripe."
192
+ msgstr ""
193
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
194
+ "compatible amb Stripe."
195
+
196
+ #: adminpages/admin_header.php:46
197
+ msgid ""
198
+ "The billing details for this level are not supported by Stripe. Please "
199
+ "review the notes in the Billing Details section below."
200
+ msgstr ""
201
+ "Les dades de facturació per a aquest nivell no són compatibles amb Stripe , "
202
+ "Llegiu les notes de la secció Detalls de facturació a sota."
203
+
204
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
205
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
206
+ msgid "The levels with issues are highlighted below."
207
+ msgstr "Els nivells amb problemes es destaquen a continuació."
208
+
209
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
210
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
211
+ msgid "Please edit your levels"
212
+ msgstr "Si us plau, editi els seus nivells"
213
+
214
+ #: adminpages/admin_header.php:58
215
+ msgid ""
216
+ "The billing details for some of your membership levels is not supported by "
217
+ "Payflow."
218
+ msgstr ""
219
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
220
+ "compatible amb Payflow."
221
+
222
+ #: adminpages/admin_header.php:66
223
+ msgid ""
224
+ "The billing details for this level are not supported by Payflow. Please "
225
+ "review the notes in the Billing Details section below."
226
+ msgstr ""
227
+ "Les dades de facturació per a aquest nivell no són compatibles amb Payflow, "
228
+ "Llegiu les notes de la secció Detalls de facturació a sota."
229
+
230
+ #: adminpages/admin_header.php:78
231
+ msgid ""
232
+ "The billing details for some of your membership levels is not supported by "
233
+ "Braintree."
234
+ msgstr ""
235
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
236
+ "compatible amb Braintree."
237
+
238
+ #: adminpages/admin_header.php:86
239
+ msgid ""
240
+ "The billing details for this level are not supported by Braintree. Please "
241
+ "review the notes in the Billing Details section below."
242
+ msgstr ""
243
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
244
+ "Braintree. Llegiu les notes de la secció Detalls de facturació a sota."
245
+
246
+ #: adminpages/admin_header.php:98
247
+ msgid ""
248
+ "The billing details for some of your membership levels is not supported by "
249
+ "TwoCheckout."
250
+ msgstr ""
251
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
252
+ "compatible amb TwoCheckout."
253
+
254
+ #: adminpages/admin_header.php:107
255
+ msgid ""
256
+ "The billing details for this level are not supported by 2Checkout. Please "
257
+ "review the notes in the Billing Details section below."
258
+ msgstr ""
259
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
260
+ "2Checkout. Llegiu les notes de la secció Detalls de facturació a sota."
261
+
262
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
263
+ msgid "Plugin Support"
264
+ msgstr "Suport per al Plugin"
265
+
266
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
267
+ msgid "User Forum"
268
+ msgstr "Fòrum dels usuaris"
269
+
270
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
271
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:69
272
+ #: includes/adminpages.php:70 includes/adminpages.php:116
273
+ #: includes/metaboxes.php:131 adminpages/admin_header.php:128
274
+ #: adminpages/admin_header.php:149 adminpages/membershiplevels.php:490
275
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
276
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
277
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
278
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:44
279
+ #: includes/adminpages.php:64 includes/adminpages.php:65
280
+ #: includes/adminpages.php:100 includes/adminpages.php:107
281
+ #: includes/adminpages.php:111 includes/metaboxes.php:126
282
+ msgid "Membership Levels"
283
+ msgstr "Nivells de subscripció"
284
+
285
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
286
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
287
+ #: adminpages/pagesettings.php:120
288
+ msgid "Pages"
289
+ msgstr "Pàgines"
290
+
291
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
292
+ #: adminpages/admin_header.php:151
293
+ msgid "Payment Gateway &amp; SSL"
294
+ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
295
+
296
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
297
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
298
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
299
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
300
+ #: pages/account.php:52 pages/account.php:56 pages/account.php:77
301
+ #: shortcodes/pmpro_account.php:106
302
+ msgid "Email"
303
+ msgstr "Correu electrònic"
304
+
305
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
306
+ #: adminpages/admin_header.php:153
307
+ msgid "Advanced"
308
+ msgstr "Avançat"
309
+
310
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
311
+ #: adminpages/advancedsettings.php:42
312
+ msgid "Your advanced settings have been updated."
313
+ msgstr "La vostra configuració avançada s’han actualitzat."
314
+
315
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
316
+ #, php-format
317
+ msgid ""
318
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
319
+ "a>."
320
+ msgstr ""
321
+ "Aquest contingut és per a subscriptors de nivell !!levels!! . <a href=\"%s"
322
+ "\">Registra’t aquí</a>."
323
+
324
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
325
+ #, php-format
326
+ msgid ""
327
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
328
+ "\">Register here</a>.)"
329
+ msgstr ""
330
+ "Si us plau <a href=\"%s\">login</a> per a veure aquest contingut. (<a href="
331
+ "\"%s\">Registra’t aquí</a>.)"
332
+
333
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
334
+ msgid ""
335
+ "This content is for members only. Visit the site and log in/register to read."
336
+ msgstr ""
337
+ "Aquest contingut és només per a subscriptors. Visita el lloc i registra’t/"
338
+ "log in per a llegir."
339
+
340
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:52
341
+ #: includes/adminpages.php:144 adminpages/advancedsettings.php:79
342
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
343
+ #: includes/adminpages.php:51 includes/adminpages.php:64
344
+ #: includes/adminpages.php:128 includes/adminpages.php:135
345
+ #: includes/adminpages.php:139
346
+ msgid "Advanced Settings"
347
+ msgstr "Configuració Avançada"
348
+
349
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
350
+ #: adminpages/advancedsettings.php:92
351
+ msgid "Message for Logged-in Non-members"
352
+ msgstr "Missatge per a No subscriptors “Logged-in”"
353
+
354
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
355
+ #: adminpages/advancedsettings.php:96
356
+ msgid ""
357
+ "This message replaces the post content for non-members. Available variables"
358
+ msgstr ""
359
+ "Aquest missatge reemplaça el contingut de l’entrada per als no membres. Hi "
360
+ "ha variables disponibles"
361
+
362
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
363
+ #: adminpages/advancedsettings.php:101
364
+ msgid "Message for Logged-out Users"
365
+ msgstr "Missatge per als usuaris desconnectats (Logged-out)"
366
+
367
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
368
+ #: adminpages/advancedsettings.php:105
369
+ msgid "This message replaces the post content for logged-out visitors."
370
+ msgstr ""
371
+ "Aquest missatge remplaça el contingut del post per a visitants desconnectats "
372
+ "(logged-out)"
373
+
374
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
375
+ #: adminpages/advancedsettings.php:110
376
+ msgid "Message for RSS Feed"
377
+ msgstr "Missatge per a RSS Feed"
378
+
379
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
380
+ #: adminpages/advancedsettings.php:114
381
+ msgid "This message replaces the post content in RSS feeds."
382
+ msgstr ""
383
+ "Aquest missatge reemplaça el contingut del seu missatge en els canals RSS."
384
+
385
+ #: adminpages/advancedsettings.php:122
386
+ msgid "Filter searches and archives?"
387
+ msgstr "Filtra recerques i arxius?"
388
+
389
+ #: adminpages/advancedsettings.php:126
390
+ msgid ""
391
+ "No - Non-members will see restricted posts/pages in searches and archives."
392
+ msgstr ""
393
+ "No - No subscriptors veuran posts restringits/pàgines en les recerques i els "
394
+ "arxius."
395
+
396
+ #: adminpages/advancedsettings.php:127
397
+ msgid ""
398
+ "Yes - Only members will see restricted posts/pages in searches and archives."
399
+ msgstr ""
400
+ "Sí - Només els subscriptors veuran posts restringits/pàgines en les "
401
+ "recerques i els arxius."
402
+
403
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
404
+ #: adminpages/advancedsettings.php:120
405
+ msgid "Show Excerpts to Non-Members?"
406
+ msgstr "Mostrar extractes als no membres?"
407
+
408
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
409
+ #: adminpages/advancedsettings.php:124
410
+ msgid "No - Hide excerpts."
411
+ msgstr "No - Amaga extractes."
412
+
413
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
414
+ #: adminpages/advancedsettings.php:125
415
+ msgid "Yes - Show excerpts."
416
+ msgstr "Sí - Mostra extractes."
417
+
418
+ #: adminpages/advancedsettings.php:144
419
+ msgid "Hide Ads From Members?"
420
+ msgstr "Amaga els anuncis als subscriptors?"
421
+
422
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
423
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
424
+ #: adminpages/paymentsettings.php:210
425
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
426
+ #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
427
+ #: adminpages/advancedsettings.php:187 adminpages/advancedsettings.php:194
428
+ #: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:206
429
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
430
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
431
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
432
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:414
433
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
434
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
435
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
436
+ #: classes/gateways/class.pmprogateway_stripe.php:173
437
+ #: classes/gateways/class.pmprogateway_stripe.php:174
438
+ #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:101
439
+ #: includes/profile.php:105 includes/profile.php:121 includes/profile.php:123
440
+ msgid "No"
441
+ msgstr "No"
442
+
443
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
444
+ #: adminpages/advancedsettings.php:136
445
+ msgid "Hide Ads From All Members"
446
+ msgstr "Amaga Anuncis de tots els subscriptors"
447
+
448
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
449
+ #: adminpages/advancedsettings.php:137
450
+ msgid "Hide Ads From Certain Members"
451
+ msgstr "Amaga els anuncis a certs subscriptors"
452
+
453
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
454
+ #: adminpages/advancedsettings.php:144
455
+ msgid "Ads from the following plugins will be automatically turned off"
456
+ msgstr "Els anuncis dels següents plugins seràn desactivats automàticament"
457
+
458
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
459
+ #: adminpages/advancedsettings.php:145
460
+ msgid "To hide ads in your template code, use code like the following"
461
+ msgstr ""
462
+ "Per amagar els anuncis al codi de la plantilla, utilitzeu el codi següent"
463
+
464
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
465
+ #: adminpages/advancedsettings.php:156
466
+ msgid "Choose Levels to Hide Ads From"
467
+ msgstr "Escull els nivells on amagar els anuncis"
468
+
469
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
470
+ #: adminpages/advancedsettings.php:190
471
+ msgid "Redirect all traffic from registration page to /susbcription/?"
472
+ msgstr "Redirigir tot el trànsit de la pàgina de registre a /susbcription/?"
473
+
474
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
475
+ #: adminpages/advancedsettings.php:190
476
+ msgid "multisite only"
477
+ msgstr "només “multisite”"
478
+
479
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
480
+ #: adminpages/paymentsettings.php:211
481
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
482
+ #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
483
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
484
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
485
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
486
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:415
487
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
488
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
489
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
490
+ #: adminpages/paymentsettings.php:462
491
+ #: classes/gateways/class.pmprogateway_stripe.php:174
492
+ #: classes/gateways/class.pmprogateway_stripe.php:175
493
+ #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:102
494
+ #: includes/profile.php:106 includes/profile.php:122 includes/profile.php:124
495
+ msgid "Yes"
496
+ msgstr "Sí"
497
+
498
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
499
+ #: adminpages/advancedsettings.php:202
500
+ msgid "Use reCAPTCHA?"
501
+ msgstr "Utilitzar reCAPTCHA?"
502
+
503
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
504
+ #: adminpages/advancedsettings.php:207
505
+ msgid "Yes - Free memberships only."
506
+ msgstr "Sí - Només subscripcions gratuïtes"
507
+
508
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
509
+ #: adminpages/advancedsettings.php:208
510
+ msgid "Yes - All memberships."
511
+ msgstr "Sí - Tots els subscriptors"
512
+
513
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
514
+ #: adminpages/advancedsettings.php:210
515
+ msgid "A free reCAPTCHA key is required."
516
+ msgstr "Una clau reCAPTCHA gratuïta és necessària"
517
+
518
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
519
+ #: adminpages/advancedsettings.php:210
520
+ msgid "Click here to signup for reCAPTCHA"
521
+ msgstr "Clica aquí per a signar per al reCAPTCHA"
522
+
523
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
524
+ #: adminpages/advancedsettings.php:216
525
+ msgid "reCAPTCHA Public Key"
526
+ msgstr "reCAPTCHA clau pública (Public Key)"
527
+
528
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
529
+ #: adminpages/advancedsettings.php:219
530
+ msgid "reCAPTCHA Private Key"
531
+ msgstr "reCAPTCHA clau privada (Private Key)"
532
+
533
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
534
+ #: adminpages/advancedsettings.php:225
535
+ msgid "Require Terms of Service on signups?"
536
+ msgstr "Requerir Termes de Servei per a les subscripcions?"
537
+
538
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
539
+ #: adminpages/advancedsettings.php:232
540
+ msgid ""
541
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
542
+ "using the dropdown above."
543
+ msgstr ""
544
+ "Si és així, crear una pàgina de WordPress que conté el contracte d’agraïment "
545
+ "i assignar-lo utilitzant el desplegable de dalt."
546
+
547
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
548
+ msgid "selected"
549
+ msgstr "Seleccionat"
550
+
551
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
552
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
553
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
554
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
555
+ #: adminpages/pagesettings.php:254 adminpages/paymentsettings.php:485
556
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
557
+ #: adminpages/paymentsettings.php:534
558
+ msgid "Save Settings"
559
+ msgstr "Desa la configuració"
560
+
561
+ #: adminpages/discountcodes.php:48
562
+ msgid "Discount code updated successfully."
563
+ msgstr "Codi promocional actualitzat correctament."
564
+
565
+ #: adminpages/discountcodes.php:55
566
+ msgid "Error updating discount code. That code may already be in use."
567
+ msgstr ""
568
+ "Error actualitzant el codi de descompte. Aquest codi pot estar ja en ús."
569
+
570
+ #: adminpages/discountcodes.php:64
571
+ msgid "Discount code added successfully."
572
+ msgstr "Codi de descompte afegit correctament."
573
+
574
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
575
+ msgid "Error adding discount code. That code may already be in use."
576
+ msgstr "Error en afegir codi de descompte. Aquest codi pot estar ja en ús."
577
+
578
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
579
+ #, php-format
580
+ msgid "Error saving values for the %s level."
581
+ msgstr "Error guardant els valors per al nivell %s "
582
+
583
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
584
+ msgid "There were errors updating the level values: "
585
+ msgstr "Hi ha hagut errors actualitzatn els valors del nivell:"
586
+
587
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
588
+ #: adminpages/discountcodes.php:237
589
+ #, php-format
590
+ msgid "Code %s deleted successfully."
591
+ msgstr "Codi %s esborrat correctament"
592
+
593
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
594
+ #: adminpages/discountcodes.php:242
595
+ msgid ""
596
+ "Error deleting discount code. The code was only partially deleted. Please "
597
+ "try again."
598
+ msgstr ""
599
+ "Error esborrant el codi de descompte. El codi ha estat esborrat parcialment. "
600
+ "Si us plau torna a intentar-ho."
601
+
602
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
603
+ #: adminpages/discountcodes.php:248
604
+ msgid "Error deleting code. Please try again."
605
+ msgstr "Error esborrant el codi de descompte. Si us plau torna a intentar-ho."
606
+
607
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
608
+ #: adminpages/discountcodes.php:254
609
+ msgid "Code not found."
610
+ msgstr "No s’ha trobat el codi."
611
+
612
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
613
+ #: adminpages/discountcodes.php:267
614
+ msgid "Edit Discount Code"
615
+ msgstr "Edita el codi de descompte"
616
+
617
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
618
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
619
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
620
+ #: adminpages/discountcodes.php:557
621
+ msgid "Add New Discount Code"
622
+ msgstr "Afegeix un nou codi de descompte"
623
+
624
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
625
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
626
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
627
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
628
+ #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
629
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
630
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
631
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
632
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
633
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
634
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
635
+ #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
636
+ #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
637
+ #: adminpages/orders.php:597 adminpages/orders.php:900
638
+ #: adminpages/orders.php:910 adminpages/orders.php:966
639
+ #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
640
+ msgid "ID"
641
+ msgstr "ID"
642
+
643
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
644
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
645
+ #: adminpages/orders.php:211 adminpages/orders.php:261
646
+ #: adminpages/orders.php:362
647
+ msgid "This will be generated when you save."
648
+ msgstr "Es generarà quan salvis."
649
+
650
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
651
+ #: adminpages/orders.php:337 adminpages/orders.php:938
652
+ #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
653
+ #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
654
+ #: adminpages/discountcodes.php:586 adminpages/orders.php:215
655
+ #: adminpages/orders.php:265 adminpages/orders.php:366
656
+ #: adminpages/orders.php:598 adminpages/orders.php:901
657
+ #: adminpages/orders.php:911 adminpages/orders.php:967
658
+ msgid "Code"
659
+ msgstr "Codi"
660
+
661
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
662
+ #: adminpages/discountcodes.php:352
663
+ msgid "Start Date"
664
+ msgstr "Data d’inici"
665
+
666
+ #: adminpages/discountcodes.php:371
667
+ #: classes/gateways/class.pmprogateway_braintree.php:323
668
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
669
+ #: pages/checkout.php:575 adminpages/discountcodes.php:367
670
+ #: adminpages/discountcodes.php:370
671
+ #: classes/gateways/class.pmprogateway_braintree.php:308
672
+ #: classes/gateways/class.pmprogateway_braintree.php:321
673
+ #: classes/gateways/class.pmprogateway_stripe.php:454
674
+ #: classes/gateways/class.pmprogateway_stripe.php:455
675
+ #: classes/gateways/class.pmprogateway_stripe.php:465
676
+ #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:249
677
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
678
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
679
+ #: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
680
+ msgid "Expiration Date"
681
+ msgstr "Data final (d’expiració)"
682
+
683
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
684
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
685
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
686
+ #: adminpages/discountcodes.php:589
687
+ msgid "Uses"
688
+ msgstr "Utilitza"
689
+
690
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
691
+ #: adminpages/discountcodes.php:391
692
+ msgid "Leave blank for unlimited uses."
693
+ msgstr "Deixa en blanc per a usos ilimitats."
694
+
695
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
696
+ msgid "Which Levels Will This Code Apply To?"
697
+ msgstr "A quins nivells s’aplicarà aquest codi?"
698
+
699
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
700
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
701
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
702
+ #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:507
703
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
704
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
705
+ msgid "Initial Payment"
706
+ msgstr "Pagament inicial"
707
+
708
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
709
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
710
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
711
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
712
+ #: adminpages/membershiplevels.php:353
713
+ msgid "The initial amount collected at registration."
714
+ msgstr "El pagament inicial efectuat en el registre"
715
+
716
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
717
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
718
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
719
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
720
+ #: adminpages/membershiplevels.php:357
721
+ msgid "Recurring Subscription"
722
+ msgstr "Subscripció recurrent"
723
+
724
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
725
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
726
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
727
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
728
+ #: adminpages/membershiplevels.php:358
729
+ msgid "Check if this level has a recurring subscription payment."
730
+ msgstr "Clica si aquest nivell té un pagament de subscripció recurrent"
731
+
732
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
733
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
734
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
735
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:362
736
+ msgid "Billing Amount"
737
+ msgstr "Total a facturar"
738
+
739
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
740
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
741
+ #: classes/gateways/class.pmprogateway_stripe.php:562
742
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
743
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
744
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
745
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
746
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
747
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
748
+ #: classes/gateways/class.pmprogateway_stripe.php:521
749
+ #: classes/gateways/class.pmprogateway_stripe.php:522
750
+ #: classes/gateways/class.pmprogateway_stripe.php:532
751
+ #: classes/gateways/class.pmprogateway_stripe.php:536
752
+ msgid "Day(s)"
753
+ msgstr "Dia(es)"
754
+
755
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
756
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
757
+ #: classes/gateways/class.pmprogateway_stripe.php:562
758
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
759
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
760
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
761
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
762
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
763
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
764
+ #: classes/gateways/class.pmprogateway_stripe.php:521
765
+ #: classes/gateways/class.pmprogateway_stripe.php:522
766
+ #: classes/gateways/class.pmprogateway_stripe.php:532
767
+ #: classes/gateways/class.pmprogateway_stripe.php:536
768
+ msgid "Month(s)"
769
+ msgstr "Mes(os)"
770
+
771
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
772
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
773
+ #: classes/gateways/class.pmprogateway_stripe.php:562
774
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
775
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
776
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
777
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
778
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
779
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
780
+ #: classes/gateways/class.pmprogateway_stripe.php:521
781
+ #: classes/gateways/class.pmprogateway_stripe.php:522
782
+ #: classes/gateways/class.pmprogateway_stripe.php:532
783
+ #: classes/gateways/class.pmprogateway_stripe.php:536
784
+ msgid "Week(s)"
785
+ msgstr "Setmana(es)"
786
+
787
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
788
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
789
+ #: classes/gateways/class.pmprogateway_stripe.php:562
790
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
791
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
792
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
793
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
794
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
795
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
796
+ #: classes/gateways/class.pmprogateway_stripe.php:521
797
+ #: classes/gateways/class.pmprogateway_stripe.php:522
798
+ #: classes/gateways/class.pmprogateway_stripe.php:532
799
+ #: classes/gateways/class.pmprogateway_stripe.php:536
800
+ msgid "Year(s)"
801
+ msgstr "Any(s)"
802
+
803
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
804
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
805
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
806
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
807
+ #: adminpages/membershiplevels.php:386
808
+ msgid "The amount to be billed one cycle after the initial payment."
809
+ msgstr "Total a facturar en un cicle després del pagament inicial"
810
+
811
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
812
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
813
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
814
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
815
+ #: adminpages/membershiplevels.php:404
816
+ msgid "Billing Cycle Limit"
817
+ msgstr "Límit de cicle de facturació"
818
+
819
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
820
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
821
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
822
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
823
+ #: adminpages/membershiplevels.php:408
824
+ msgid ""
825
+ "The <strong>total</strong> number of recurring billing cycles for this "
826
+ "level, including the trial period (if applicable) but not including the "
827
+ "initial payment. Set to zero if membership is indefinite."
828
+ msgstr ""
829
+ "El <strong>total</strong> de cicles de pagament recurrent per a aquest "
830
+ "nivell, incloent el període de prova (si s’aplica) però sense incloure el "
831
+ "pagament inicial. Deixa-ho a zero si la subscripció és infinita."
832
+
833
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
834
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
835
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
836
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
837
+ #: adminpages/membershiplevels.php:417
838
+ msgid "Custom Trial"
839
+ msgstr "Prova personalitzada"
840
+
841
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
842
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
843
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
844
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
845
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:419
846
+ msgid "Check to add a custom trial period."
847
+ msgstr "Clica per afegir un període de prova personalitzat."
848
+
849
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
850
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
851
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
852
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
853
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:428
854
+ msgid "Trial Billing Amount"
855
+ msgstr "Facturació per al període de prova"
856
+
857
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
858
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
859
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
860
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
861
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:439
862
+ msgid "for the first"
863
+ msgstr "per al primer"
864
+
865
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
866
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
867
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
868
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
869
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:441
870
+ msgid "subscription payments"
871
+ msgstr "pagaments de subscripció"
872
+
873
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
874
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
875
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
876
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
877
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
878
+ #: adminpages/membershiplevels.php:470
879
+ msgid "Membership Expiration"
880
+ msgstr "Venciment de la subscripció"
881
+
882
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
883
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
884
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
885
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
886
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:471
887
+ msgid "Check this to set when membership access expires."
888
+ msgstr "Clica per afegir quan expira l’accés del subscriptor"
889
+
890
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
891
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
892
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
893
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
894
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
895
+ #: adminpages/membershiplevels.php:475
896
+ msgid "Expires In"
897
+ msgstr "Expira En"
898
+
899
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
900
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
901
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
902
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
903
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:488
904
+ msgid ""
905
+ "Set the duration of membership access. Note that the any future payments "
906
+ "(recurring subscription, if any) will be cancelled when the membership "
907
+ "expires."
908
+ msgstr ""
909
+ "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol "
910
+ "pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la "
911
+ "subscripció caduqui."
912
+
913
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
914
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
915
+ msgid "Memberships Discount Codes"
916
+ msgstr "Codis de descompte per a subscripcions"
917
+
918
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
919
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
920
+ msgid "Search Discount Codes"
921
+ msgstr "Cerca codis de descompte"
922
+
923
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:99
924
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
925
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
926
+ #: adminpages/reports/login.php:83
927
+ msgid "Search"
928
+ msgstr "Cerca"
929
+
930
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
931
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
932
+ msgid "Starts"
933
+ msgstr "Comença"
934
+
935
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
936
+ #: adminpages/reports/login.php:163 includes/profile.php:107
937
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
938
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
939
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
940
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
941
+ #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:118
942
+ #: includes/profile.php:120
943
+ msgid "Expires"
944
+ msgstr "Acaba"
945
+
946
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
947
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
948
+ msgid "Levels"
949
+ msgstr "Nivells"
950
+
951
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
952
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
953
+ msgid "Create your first discount code now"
954
+ msgstr "Crea el teu primer codi de descompte ara"
955
+
956
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
957
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
958
+ msgid ""
959
+ "Discount codes allow you to offer your memberships at discounted prices to "
960
+ "select customers."
961
+ msgstr "Els codis de descompte et permeten oferir"
962
+
963
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
964
+ #: adminpages/orders.php:1021 adminpages/discountcodes.php:614
965
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
966
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
967
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
968
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
969
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
970
+ #: adminpages/orders.php:658 adminpages/orders.php:961
971
+ #: adminpages/orders.php:979 adminpages/orders.php:989
972
+ #: adminpages/orders.php:992 adminpages/orders.php:1050
973
+ msgid "edit"
974
+ msgstr "Edita"
975
+
976
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
977
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
978
+ #: adminpages/discountcodes.php:651
979
+ #, php-format
980
+ msgid ""
981
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
982
+ "existing users will not change, but new users will not be able to use this "
983
+ "code anymore."
984
+ msgstr ""
985
+ "Estàs segur que vols esborrar el codi de descompte %s ? Les subscripcions "
986
+ "per als usuaris existents no canviaran, però els nous usuaris no podran "
987
+ "utilitzar aquest codi mai més."
988
+
989
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
990
+ #: adminpages/orders.php:1027 adminpages/discountcodes.php:617
991
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
992
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
993
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
994
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
995
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
996
+ #: adminpages/orders.php:664 adminpages/orders.php:967
997
+ #: adminpages/orders.php:985 adminpages/orders.php:995
998
+ #: adminpages/orders.php:998 adminpages/orders.php:1056
999
+ msgid "delete"
1000
+ msgstr "esborra"
1001
+
1002
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:51
1003
+ #: includes/adminpages.php:137 adminpages/emailsettings.php:60
1004
+ #: includes/adminpages.php:12 includes/adminpages.php:50
1005
+ #: includes/adminpages.php:59 includes/adminpages.php:121
1006
+ #: includes/adminpages.php:128 includes/adminpages.php:132
1007
+ msgid "Email Settings"
1008
+ msgstr "Configuració de correu electrònic"
1009
+
1010
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
1011
+ msgid ""
1012
+ "By default, system generated emails are sent from "
1013
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
1014
+ "address using the fields below."
1015
+ msgstr ""
1016
+ "Per defecte, els correus electrònics generats són enviats desde "
1017
+ "<em><strong>wordpress@yourdomain.com</strong></em>. Pots modificar-ho "
1018
+ "utilitzant els camps que hi ha a continuació."
1019
+
1020
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
1021
+ msgid ""
1022
+ "To modify the appearance of system generated emails, add the files "
1023
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
1024
+ "directory. This will modify both the WordPress default messages as well as "
1025
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
1026
+ "- Member Communications\" target=\"_blank\" href=\"http://www."
1027
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
1028
+ "learn more about Paid Memberships Pro emails</a>."
1029
+ msgstr ""
1030
+ "Per modificar l’aparença dels emails generats pel sistema, afegeix els "
1031
+ "arxius <em>email_header.html</em> and <em>email_footer.html</em> al "
1032
+ "directori del teu tema. Així es modificarà el missatge per defecte de "
1033
+ "WordPress i els del plugin Paid Memberships Pro. <a title=\"Paid Memberships "
1034
+ "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
1035
+ "paidmembershipspro.com/documentation/member-communications/\">Clica aquí per "
1036
+ "saber més sobre Paid Memberships Pro emails</a>."
1037
+
1038
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
1039
+ msgid "From Email"
1040
+ msgstr "Del Correu Electrònic"
1041
+
1042
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
1043
+ msgid "From Name"
1044
+ msgstr "Del Nom"
1045
+
1046
+ #: adminpages/emailsettings.php:94
1047
+ msgid "Only Filter PMPro Emails?"
1048
+ msgstr "Filtra només els correus de PMPro?"
1049
+
1050
+ #: adminpages/emailsettings.php:98
1051
+ #, php-format
1052
+ msgid ""
1053
+ "If unchecked, all emails from \"WordPress &lt;%s&gt;\" will be filtered to "
1054
+ "use the above settings."
1055
+ msgstr ""
1056
+ "Si no està clicat, tots els correus de \"WordPress &lt;%s&gt;\" seran "
1057
+ "filtrats per utilitzar la configuració de dalt."
1058
+
1059
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
1060
+ #: adminpages/emailsettings.php:104
1061
+ msgid "Send the site admin emails"
1062
+ msgstr "Envia els correus electrònics dels administradors del lloc web"
1063
+
1064
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
1065
+ #: adminpages/emailsettings.php:110
1066
+ msgid "Checkout"
1067
+ msgstr "Checkout"
1068
+
1069
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
1070
+ #: adminpages/emailsettings.php:114
1071
+ msgid "when a member checks out."
1072
+ msgstr "quan un subscriptor fa el checkout"
1073
+
1074
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
1075
+ #: adminpages/emailsettings.php:119
1076
+ msgid "Admin Changes"
1077
+ msgstr "Canvis d’administrador"
1078
+
1079
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
1080
+ #: adminpages/emailsettings.php:123
1081
+ msgid "when an admin changes a user's membership level through the dashboard."
1082
+ msgstr ""
1083
+ "quan un administrador canvia la subscripció d’un usuari des del “dashboard”"
1084
+
1085
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
1086
+ #: adminpages/emailsettings.php:128
1087
+ msgid "Cancellation"
1088
+ msgstr "Cancel·lació"
1089
+
1090
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
1091
+ #: adminpages/emailsettings.php:132
1092
+ msgid "when a user cancels his or her account."
1093
+ msgstr "quan un usuari cancel·la el seu compte"
1094
+
1095
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
1096
+ #: adminpages/emailsettings.php:137
1097
+ msgid "Bill Updates"
1098
+ msgstr "Actualitzacions de facturació"
1099
+
1100
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
1101
+ #: adminpages/emailsettings.php:141
1102
+ msgid "when a user updates his or her billing information."
1103
+ msgstr "quan un usuari actualitza la seva informació de facturació"
1104
+
1105
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
1106
+ #: adminpages/emailsettings.php:147
1107
+ msgid "Send members emails"
1108
+ msgstr "Envia els correus electrònics dels subscriptors"
1109
+
1110
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
1111
+ #: adminpages/emailsettings.php:153
1112
+ msgid "New Users"
1113
+ msgstr "Nous usuaris"
1114
+
1115
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
1116
+ #: adminpages/emailsettings.php:157
1117
+ msgid ""
1118
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
1119
+ "still get an email confirmation from PMPro after checkout.)"
1120
+ msgstr ""
1121
+ "Notificació per defecte de WP per correu. (Recomanat: no el cliquis. Els "
1122
+ "usuaris rebran un correu electrònic de confirmació desde PMPro després del "
1123
+ "“checkout”.)"
1124
+
1125
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1126
+ msgid "Membership level updated successfully."
1127
+ msgstr "Nivell de subscripció actualitzada correctament."
1128
+
1129
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1130
+ msgid "Error updating membership level."
1131
+ msgstr "Error actualitzant el nivell de subscripció."
1132
+
1133
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1134
+ msgid "Membership level added successfully."
1135
+ msgstr "Nivell de subscripció afegit correctament."
1136
+
1137
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1138
+ msgid "Error adding membership level."
1139
+ msgstr "Error afegint nivell de subscripció."
1140
+
1141
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1142
+ #: adminpages/membershiplevels.php:181
1143
+ #, php-format
1144
+ msgid ""
1145
+ "There was an error canceling the subscription for user with ID=%d. You will "
1146
+ "want to check your payment gateway to see if their subscription is still "
1147
+ "active."
1148
+ msgstr ""
1149
+ "Hi ha hagut un error cancel·lant la subscripció de l’usuari ID=%d. Comprova "
1150
+ "la teva passarel·la de pagament per veure si la seva subscripció encara hi "
1151
+ "és."
1152
+
1153
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1154
+ #: adminpages/membershiplevels.php:184
1155
+ msgid "Last Invoice"
1156
+ msgstr "Darrera factura."
1157
+
1158
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1159
+ #: adminpages/membershiplevels.php:198
1160
+ msgid "Membership level deleted successfully."
1161
+ msgstr "Nivell de subscripció esborrat correctament."
1162
+
1163
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1164
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1165
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1166
+ msgid "Error deleting membership level."
1167
+ msgstr "Error esborrant nivell de subscripció."
1168
+
1169
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1170
+ #: adminpages/membershiplevels.php:224
1171
+ msgid "Edit Membership Level"
1172
+ msgstr "Edita el nivell de subscripció"
1173
+
1174
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1175
+ #: adminpages/membershiplevels.php:226
1176
+ msgid "Add New Membership Level"
1177
+ msgstr "Afegeix un nou nivell de subscripció"
1178
+
1179
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1180
+ #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1181
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1182
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1183
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1184
+ #: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:638
1185
+ #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1186
+ msgid "Name"
1187
+ msgstr "Nom"
1188
+
1189
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1190
+ #: adminpages/membershiplevels.php:316
1191
+ msgid "Confirmation Message"
1192
+ msgstr "Missatge de confirmació"
1193
+
1194
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1195
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1196
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:543
1197
+ #: adminpages/membershiplevels.php:585 adminpages/membershiplevels.php:639
1198
+ msgid "Billing Details"
1199
+ msgstr "Detalls de facturació"
1200
+
1201
+ #: adminpages/membershiplevels.php:372
1202
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1203
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1204
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:373
1205
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1206
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1207
+ #: classes/gateways/class.pmprogateway_stripe.php:630
1208
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1209
+ msgid "per"
1210
+ msgstr "per"
1211
+
1212
+ #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1213
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:388
1214
+ msgid ""
1215
+ "Stripe integration currently only supports billing periods of \"Week\", "
1216
+ "\"Month\" or \"Year\"."
1217
+ msgstr ""
1218
+ "La integració d’Stripe actualment només suporta períodes de facturació de "
1219
+ "“setmana”, “mes” o “any”."
1220
+
1221
+ #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1222
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1223
+ #: adminpages/membershiplevels.php:390
1224
+ msgid ""
1225
+ "Braintree integration currently only supports billing periods of \"Month\" "
1226
+ "or \"Year\"."
1227
+ msgstr ""
1228
+ "La integració de Braintree actualment només suporta períodes de facturació "
1229
+ "de “mes” o “any”."
1230
+
1231
+ #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1232
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1233
+ #: adminpages/membershiplevels.php:392
1234
+ msgid ""
1235
+ "Payflow integration currently only supports billing frequencies of 1 and "
1236
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1237
+ msgstr ""
1238
+ "La integració de Payflow actualment només suporta períodes de facturació de "
1239
+ "1 “setmana”, “mes” o “any”."
1240
+
1241
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1242
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1243
+ #: adminpages/membershiplevels.php:396
1244
+ msgid ""
1245
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1246
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1247
+ "<em>pmpro_#</em>, where # is the level ID."
1248
+ msgstr ""
1249
+ "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al "
1250
+ "dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to "
1251
+ "<em>pmpro_#</em>, on # és el level ID."
1252
+
1253
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1254
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1255
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1256
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1257
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1258
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1259
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1260
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1261
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1262
+ #: adminpages/paymentsettings.php:179
1263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1264
+ msgid "Note"
1265
+ msgstr "Nota"
1266
+
1267
+ #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1268
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1269
+ #: adminpages/membershiplevels.php:398
1270
+ msgid ""
1271
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1272
+ "settings and the \"Plan ID\" set to"
1273
+ msgstr ""
1274
+ "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configuració "
1275
+ "\"Plan ID\" "
1276
+
1277
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1278
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1279
+ #: adminpages/membershiplevels.php:410
1280
+ msgid ""
1281
+ "Stripe integration currently does not support billing limits. You can still "
1282
+ "set an expiration date below."
1283
+ msgstr ""
1284
+ "La integració d’Stripe no suporta límits de facturació actualment. Pots "
1285
+ "posar una data de límit de facturació a sota."
1286
+
1287
+ #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1288
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1289
+ #: adminpages/membershiplevels.php:422
1290
+ msgid ""
1291
+ "2Checkout integration does not support custom trials. You can do one period "
1292
+ "trials by setting an initial payment different from the billing amount."
1293
+ msgstr ""
1294
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
1295
+ "període de prova configurant un pagament inicial diferent del total de "
1296
+ "facturació."
1297
+
1298
+ #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1299
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1300
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:444
1301
+ msgid ""
1302
+ "Stripe integration currently does not support trial amounts greater than $0."
1303
+ msgstr "La integració d’Stripe no suporta preus de prova majors que $0."
1304
+
1305
+ #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1306
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1307
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:448
1308
+ msgid ""
1309
+ "Braintree integration currently does not support trial amounts greater than "
1310
+ "$0."
1311
+ msgstr "La integració de Braintree no suporta preus de prova majors que $0."
1312
+
1313
+ #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1314
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1315
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:452
1316
+ msgid ""
1317
+ "Payflow integration currently does not support trial amounts greater than $0."
1318
+ msgstr "La integració de Payflow no suporta preus de prova majors que $0."
1319
+
1320
+ #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1321
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1322
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1323
+ #: adminpages/membershiplevels.php:461
1324
+ msgid "Other Settings"
1325
+ msgstr "Configuració, altres"
1326
+
1327
+ #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1328
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1329
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1330
+ #: adminpages/membershiplevels.php:465
1331
+ msgid "Disable New Signups"
1332
+ msgstr "Deshabilita nous “signups”"
1333
+
1334
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1335
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1336
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1337
+ #: adminpages/membershiplevels.php:466
1338
+ msgid ""
1339
+ "Check to hide this level from the membership levels page and disable "
1340
+ "registration."
1341
+ msgstr ""
1342
+ "Clica per amagar aquest nivell de la pàgina de nivells de subscripció i no "
1343
+ "permetre’n el registre."
1344
+
1345
+ #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1346
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1347
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1348
+ #: adminpages/membershiplevels.php:496
1349
+ msgid "Content Settings"
1350
+ msgstr "Configuració de continguts"
1351
+
1352
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1353
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1354
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1355
+ #: adminpages/membershiplevels.php:500
1356
+ msgid "Categories"
1357
+ msgstr "Categories"
1358
+
1359
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:517
1360
+ msgid "Save Level"
1361
+ msgstr "Salva nivell"
1362
+
1363
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1364
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1365
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:511
1366
+ #: adminpages/orders.php:561 adminpages/orders.php:662 pages/account.php:44
1367
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1368
+ #: pages/billing.php:339 pages/billing.php:342 shortcodes/pmpro_account.php:70
1369
+ msgid "Cancel"
1370
+ msgstr "Cancel·la"
1371
+
1372
+ #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:490
1373
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1374
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1375
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
1376
+ msgid "Add New Level"
1377
+ msgstr "Afegeix un nou nivell"
1378
+
1379
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1380
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1381
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1382
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1383
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1384
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1385
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1386
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1387
+ msgid "Search Levels"
1388
+ msgstr "Cerca Nivells"
1389
+
1390
+ #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:579
1391
+ #: adminpages/membershiplevels.php:631
1392
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1393
+ msgstr ""
1394
+ "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la "
1395
+ "pàgina de nivells"
1396
+
1397
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53
1398
+ #: pages/confirmation.php:83 pages/invoice.php:70
1399
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1400
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1401
+ #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1402
+ #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:640
1403
+ #: pages/account.php:20 pages/confirmation.php:81 pages/invoice.php:68
1404
+ msgid "Expiration"
1405
+ msgstr "Data final (d’expiració)"
1406
+
1407
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:511
1408
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1409
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1410
+ #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:641
1411
+ msgid "Allow Signups"
1412
+ msgstr "Permet nous “signups”"
1413
+
1414
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:534
1415
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1416
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1417
+ #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:656
1418
+ msgid "FREE"
1419
+ msgstr "GRATUÏT"
1420
+
1421
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:560
1422
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1423
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1424
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:665
1425
+ msgid "After"
1426
+ msgstr "Després"
1427
+
1428
+ #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:566
1429
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1430
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1431
+ #: adminpages/membershiplevels.php:660
1432
+ #, php-format
1433
+ msgid ""
1434
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1435
+ "be cancelled."
1436
+ msgstr ""
1437
+ "Estàs segur que vols esborrar el nivell de subscripció %s? Tots els "
1438
+ "Subscriptors seran cancel·lats."
1439
+
1440
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1441
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1442
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1443
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1444
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:661
1445
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1446
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1447
+ #: adminpages/orders.php:1053
1448
+ msgid "copy"
1449
+ msgstr "copia"
1450
+
1451
+ #: adminpages/memberslist.php:25 includes/adminpages.php:54
1452
+ #: includes/adminpages.php:158 includes/adminpages.php:15
1453
+ #: includes/adminpages.php:53 includes/adminpages.php:74
1454
+ #: includes/adminpages.php:142 includes/adminpages.php:149
1455
+ #: includes/adminpages.php:153
1456
+ msgid "Members List"
1457
+ msgstr "Llistat de subscriptors"
1458
+
1459
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1460
+ #: adminpages/orders.php:522 adminpages/orders.php:591
1461
+ #: adminpages/orders.php:727
1462
+ msgid "Export to CSV"
1463
+ msgstr "Exporta a CSV"
1464
+
1465
+ #: adminpages/memberslist.php:30 adminpages/orders.php:710
1466
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:263
1467
+ #: adminpages/reports/sales.php:202 adminpages/orders.php:603
1468
+ #: adminpages/orders.php:739 adminpages/reports/login.php:65
1469
+ #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:256
1470
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1471
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1472
+ msgid "Show"
1473
+ msgstr "Mostra"
1474
+
1475
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1476
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1477
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:69
1478
+ #: adminpages/reports/memberships.php:281
1479
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1480
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1481
+ msgid "All Levels"
1482
+ msgstr "Tots els nivells"
1483
+
1484
+ #: adminpages/memberslist.php:42
1485
+ msgid "Cancelled Members"
1486
+ msgstr "Subscriptors cancel·lats"
1487
+
1488
+ #: adminpages/memberslist.php:43
1489
+ msgid "Expired Members"
1490
+ msgstr "Subscriptors “expirats”"
1491
+
1492
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1493
+ msgid "Old Members"
1494
+ msgstr "Subscriptors antics"
1495
+
1496
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1497
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1498
+ #: adminpages/memberslist.php:50
1499
+ msgid "Search Members"
1500
+ msgstr "Cerca Subscriptors"
1501
+
1502
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1503
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1504
+ #, php-format
1505
+ msgid "%d members found."
1506
+ msgstr "%d subscriptor no trobat."
1507
+
1508
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1509
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1510
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1511
+ #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1512
+ #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
1513
+ #: pages/checkout.php:180 pages/checkout.php:182
1514
+ #: shortcodes/pmpro_account.php:105
1515
+ msgid "Username"
1516
+ msgstr "Nom d’usuari"
1517
+
1518
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1519
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1520
+ msgid "First&nbsp;Name"
1521
+ msgstr "Nom"
1522
+
1523
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1524
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1525
+ msgid "Last&nbsp;Name"
1526
+ msgstr "Cognoms"
1527
+
1528
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1529
+ #: pages/confirmation.php:61 pages/invoice.php:48
1530
+ #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1531
+ #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1532
+ #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1533
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1534
+ #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:321
1535
+ #: pages/confirmation.php:59 pages/invoice.php:46
1536
+ msgid "Billing Address"
1537
+ msgstr "Adreça de Facturació"
1538
+
1539
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:161
1540
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1541
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1542
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1543
+ #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
1544
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1545
+ msgid "Membership"
1546
+ msgstr "Subscriptor"
1547
+
1548
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1549
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1550
+ msgid "Fee"
1551
+ msgstr "Preu"
1552
+
1553
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:162
1554
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1555
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1556
+ #: adminpages/reports/login.php:146
1557
+ msgid "Joined"
1558
+ msgstr "Afegit"
1559
+
1560
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1561
+ #: adminpages/memberslist.php:167
1562
+ msgid "Ended"
1563
+ msgstr "Finalitzat"
1564
+
1565
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1566
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1567
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1568
+ #: adminpages/reports/login.php:212
1569
+ msgid "No members found."
1570
+ msgstr "No s’han trobat subscriptors"
1571
+
1572
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1573
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1574
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1575
+ #: adminpages/reports/login.php:212
1576
+ msgid "Search all levels"
1577
+ msgstr "Cerca a tots els nivells"
1578
+
1579
+ #: adminpages/orders.php:155
1580
+ msgid "Invoice emailed successfully."
1581
+ msgstr "Factura correctament enviada per correu electrònic."
1582
+
1583
+ #: adminpages/orders.php:160
1584
+ msgid "Error emailing invoice."
1585
+ msgstr "Error en la factura enviada per correu electrònic."
1586
+
1587
+ #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1588
+ msgid "Order deleted successfully."
1589
+ msgstr "Comanda esborrada correctament"
1590
+
1591
+ #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1592
+ msgid "Error deleting order."
1593
+ msgstr "Error esborrant comanda."
1594
+
1595
+ #: adminpages/orders.php:270 adminpages/orders.php:119
1596
+ #: adminpages/orders.php:169
1597
+ msgid "Order saved successfully."
1598
+ msgstr "Comanda salvada correctament."
1599
+
1600
+ #: adminpages/orders.php:275 adminpages/orders.php:124
1601
+ #: adminpages/orders.php:174
1602
+ msgid "Error updating order timestamp."
1603
+ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)"
1604
+
1605
+ #: adminpages/orders.php:281 adminpages/orders.php:130
1606
+ #: adminpages/orders.php:180
1607
+ msgid "Error saving order."
1608
+ msgstr "Error guardant la comanda."
1609
+
1610
+ #: adminpages/orders.php:317 adminpages/orders.php:195
1611
+ #: adminpages/orders.php:245 adminpages/orders.php:346
1612
+ msgid "Order"
1613
+ msgstr "Comanda"
1614
+
1615
+ #: adminpages/orders.php:319 adminpages/orders.php:197
1616
+ #: adminpages/orders.php:247 adminpages/orders.php:348
1617
+ msgid "New Order"
1618
+ msgstr "Nova comanda"
1619
+
1620
+ #: adminpages/orders.php:342 adminpages/orders.php:220
1621
+ #: adminpages/orders.php:270 adminpages/orders.php:371
1622
+ msgid "Randomly generated for you."
1623
+ msgstr "Generat aleatoriament per a tu"
1624
+
1625
+ #: adminpages/orders.php:347 adminpages/orders.php:225
1626
+ #: adminpages/orders.php:275 adminpages/orders.php:376
1627
+ msgid "User ID"
1628
+ msgstr "ID d’usuari"
1629
+
1630
+ #: adminpages/orders.php:356 adminpages/orders.php:234
1631
+ #: adminpages/orders.php:284 adminpages/orders.php:385
1632
+ msgid "Membership Level ID"
1633
+ msgstr "ID del Nivell de subscripció"
1634
+
1635
+ #: adminpages/orders.php:365 adminpages/orders.php:243
1636
+ #: adminpages/orders.php:293 adminpages/orders.php:394
1637
+ msgid "Billing Name"
1638
+ msgstr "Nom de Facturació"
1639
+
1640
+ #: adminpages/orders.php:373 adminpages/orders.php:251
1641
+ #: adminpages/orders.php:301 adminpages/orders.php:402
1642
+ msgid "Billing Street"
1643
+ msgstr "Adreça de Facturació"
1644
+
1645
+ #: adminpages/orders.php:380 adminpages/orders.php:258
1646
+ #: adminpages/orders.php:308 adminpages/orders.php:409
1647
+ msgid "Billing City"
1648
+ msgstr "Ciutat de Facturació"
1649
+
1650
+ #: adminpages/orders.php:387 adminpages/orders.php:265
1651
+ #: adminpages/orders.php:315 adminpages/orders.php:416
1652
+ msgid "Billing State"
1653
+ msgstr "Provincia de Facturació"
1654
+
1655
+ #: adminpages/orders.php:394 adminpages/orders.php:272
1656
+ #: adminpages/orders.php:322 adminpages/orders.php:423
1657
+ msgid "Billing Postal Code"
1658
+ msgstr "Codi postal de Facturació"
1659
+
1660
+ #: adminpages/orders.php:401 adminpages/orders.php:279
1661
+ #: adminpages/orders.php:329 adminpages/orders.php:430
1662
+ msgid "Billing Country"
1663
+ msgstr "País de Facturació"
1664
+
1665
+ #: adminpages/orders.php:409 adminpages/orders.php:287
1666
+ #: adminpages/orders.php:337 adminpages/orders.php:438
1667
+ msgid "Billing Phone"
1668
+ msgstr "Telèfon de Facturació"
1669
+
1670
+ #: adminpages/orders.php:418 adminpages/orders.php:296
1671
+ #: adminpages/orders.php:346 adminpages/orders.php:447
1672
+ msgid "Sub Total"
1673
+ msgstr "Subtotal"
1674
+
1675
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1676
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1677
+ #: adminpages/orders.php:304 adminpages/orders.php:354
1678
+ #: adminpages/orders.php:455 pages/invoice.php:78
1679
+ msgid "Tax"
1680
+ msgstr "Impost"
1681
+
1682
+ #: adminpages/orders.php:434 adminpages/orders.php:312
1683
+ #: adminpages/orders.php:362 adminpages/orders.php:463
1684
+ msgid "Coupon Amount"
1685
+ msgstr "Valor del cupó"
1686
+
1687
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1688
+ #: adminpages/templates/orders-email.php:64
1689
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1690
+ #: adminpages/orders.php:320 adminpages/orders.php:370
1691
+ #: adminpages/orders.php:471 adminpages/orders.php:602
1692
+ #: adminpages/orders.php:905 adminpages/orders.php:915
1693
+ #: adminpages/orders.php:971 pages/invoice.php:82
1694
+ msgid "Total"
1695
+ msgstr "Total"
1696
+
1697
+ #: adminpages/orders.php:447 adminpages/orders.php:325
1698
+ #: adminpages/orders.php:375 adminpages/orders.php:476
1699
+ msgid "Should be subtotal + tax - couponamount."
1700
+ msgstr "Hauria de ser subtotal+impost+valor del cupó"
1701
+
1702
+ #: adminpages/orders.php:452 adminpages/orders.php:330
1703
+ #: adminpages/orders.php:380 adminpages/orders.php:481
1704
+ msgid "Payment Type"
1705
+ msgstr "Tipus de pagament"
1706
+
1707
+ #: adminpages/orders.php:457 adminpages/orders.php:335
1708
+ #: adminpages/orders.php:385 adminpages/orders.php:486
1709
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1710
+ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
1711
+
1712
+ #: adminpages/orders.php:461
1713
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1714
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1715
+ #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1716
+ #: adminpages/orders.php:490
1717
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1718
+ #: classes/gateways/class.pmprogateway_braintree.php:304
1719
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1720
+ #: classes/gateways/class.pmprogateway_stripe.php:409
1721
+ #: classes/gateways/class.pmprogateway_stripe.php:419
1722
+ #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:234
1723
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1724
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1725
+ #: pages/checkout.php:517 pages/checkout.php:525
1726
+ msgid "Card Type"
1727
+ msgstr "Tipus de targeta"
1728
+
1729
+ #: adminpages/orders.php:466 adminpages/orders.php:344
1730
+ #: adminpages/orders.php:394 adminpages/orders.php:495
1731
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1732
+ msgstr "Per exemple Visa, MasterCard, AMEX, etc"
1733
+
1734
+ #: adminpages/orders.php:470
1735
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1736
+ #: adminpages/orders.php:348 adminpages/orders.php:398
1737
+ #: adminpages/orders.php:499 adminpages/paymentsettings.php:347
1738
+ #: adminpages/paymentsettings.php:352
1739
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1740
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1741
+ msgid "Account Number"
1742
+ msgstr "Nombre de Compte"
1743
+
1744
+ #: adminpages/orders.php:475 adminpages/orders.php:353
1745
+ #: adminpages/orders.php:403 adminpages/orders.php:504
1746
+ msgid "Obscure all but last 4 digits."
1747
+ msgstr "Tot amagat menys els últims 4 dígits"
1748
+
1749
+ #: adminpages/orders.php:480 adminpages/orders.php:358
1750
+ #: adminpages/orders.php:408 adminpages/orders.php:509
1751
+ msgid "Expiration Month"
1752
+ msgstr "Mes de finalització/expiració"
1753
+
1754
+ #: adminpages/orders.php:487 adminpages/orders.php:365
1755
+ #: adminpages/orders.php:415 adminpages/orders.php:516
1756
+ msgid "Expiration Year"
1757
+ msgstr "Any de finalització/expiració"
1758
+
1759
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1760
+ #: adminpages/orders.php:373 adminpages/orders.php:423
1761
+ #: adminpages/orders.php:524 adminpages/orders.php:606
1762
+ #: adminpages/orders.php:909 adminpages/orders.php:919
1763
+ #: adminpages/orders.php:975
1764
+ msgid "Status"
1765
+ msgstr "Estat"
1766
+
1767
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1768
+ #: adminpages/orders.php:394 adminpages/orders.php:444
1769
+ #: adminpages/orders.php:545 adminpages/orders.php:604
1770
+ #: adminpages/orders.php:907 adminpages/orders.php:917
1771
+ #: adminpages/orders.php:973
1772
+ msgid "Gateway"
1773
+ msgstr "Passarel·la"
1774
+
1775
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1776
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1777
+ #: adminpages/orders.php:462 adminpages/orders.php:563
1778
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1779
+ #: adminpages/paymentsettings.php:184
1780
+ msgid "Gateway Environment"
1781
+ msgstr "Entorn de passarel·la"
1782
+
1783
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1784
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1785
+ #: adminpages/orders.php:466 adminpages/orders.php:567
1786
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1787
+ #: adminpages/paymentsettings.php:188
1788
+ msgid "Sandbox/Testing"
1789
+ msgstr "Sandbox/Proves"
1790
+
1791
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1792
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1793
+ #: adminpages/orders.php:467 adminpages/orders.php:568
1794
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1795
+ #: adminpages/paymentsettings.php:189
1796
+ msgid "Live/Production"
1797
+ msgstr "Live/Producció"
1798
+
1799
+ #: adminpages/orders.php:546 adminpages/orders.php:423
1800
+ #: adminpages/orders.php:473 adminpages/orders.php:474
1801
+ #: adminpages/orders.php:575
1802
+ msgid "Payment Transaction ID"
1803
+ msgstr "ID de la transacció de pagament"
1804
+
1805
+ #: adminpages/orders.php:551 adminpages/orders.php:428
1806
+ #: adminpages/orders.php:478 adminpages/orders.php:479
1807
+ #: adminpages/orders.php:580
1808
+ msgid "Generated by the gateway. Useful to cross reference orders."
1809
+ msgstr ""
1810
+ "Generat per la passarel·la. Útil per a comandes de referències creuades."
1811
+
1812
+ #: adminpages/orders.php:555 adminpages/orders.php:432
1813
+ #: adminpages/orders.php:482 adminpages/orders.php:483
1814
+ #: adminpages/orders.php:584
1815
+ msgid "Subscription Transaction ID"
1816
+ msgstr "ID de la transacció per a subscripció"
1817
+
1818
+ #: adminpages/orders.php:560 adminpages/orders.php:437
1819
+ #: adminpages/orders.php:487 adminpages/orders.php:488
1820
+ #: adminpages/orders.php:589
1821
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1822
+ msgstr ""
1823
+ "Generat per la passarel·la. Útil per a subscripcions de referències creuades."
1824
+
1825
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1826
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1827
+ #: adminpages/orders.php:492 adminpages/orders.php:493
1828
+ #: adminpages/orders.php:594 adminpages/orders.php:607
1829
+ #: adminpages/orders.php:910 adminpages/orders.php:920
1830
+ #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
1831
+ #: shortcodes/pmpro_account.php:122
1832
+ msgid "Date"
1833
+ msgstr "Data"
1834
+
1835
+ #: adminpages/orders.php:599 adminpages/orders.php:477
1836
+ #: adminpages/orders.php:527 adminpages/orders.php:628
1837
+ msgid "Affiliate ID"
1838
+ msgstr "ID de subscripció"
1839
+
1840
+ #: adminpages/orders.php:607 adminpages/orders.php:485
1841
+ #: adminpages/orders.php:535 adminpages/orders.php:636
1842
+ msgid "Affiliate SubID"
1843
+ msgstr "SubID de subscripció"
1844
+
1845
+ #: adminpages/orders.php:617 adminpages/orders.php:495
1846
+ #: adminpages/orders.php:545 adminpages/orders.php:646
1847
+ msgid "Notes"
1848
+ msgstr "Notes"
1849
+
1850
+ #: adminpages/orders.php:632 adminpages/orders.php:510
1851
+ #: adminpages/orders.php:560 adminpages/orders.php:661
1852
+ msgid "Save Order"
1853
+ msgstr "Salva Comanda"
1854
+
1855
+ #: adminpages/orders.php:667 adminpages/orders.php:696
1856
+ msgid "Email Invoice"
1857
+ msgstr "Factura per correu electrònic"
1858
+
1859
+ #: adminpages/orders.php:670 adminpages/orders.php:699
1860
+ msgid "Send an invoice for this order to: "
1861
+ msgstr "Envia factura per aquesta comanda a:"
1862
+
1863
+ #: adminpages/orders.php:672 adminpages/orders.php:701
1864
+ msgid "Send Email"
1865
+ msgstr "Envia Correu"
1866
+
1867
+ #: adminpages/orders.php:677 includes/adminpages.php:56
1868
+ #: includes/adminpages.php:172 adminpages/orders.php:520
1869
+ #: adminpages/orders.php:570 adminpages/orders.php:706
1870
+ #: includes/adminpages.php:17 includes/adminpages.php:55
1871
+ #: includes/adminpages.php:84 includes/adminpages.php:156
1872
+ #: includes/adminpages.php:163 includes/adminpages.php:167
1873
+ msgid "Orders"
1874
+ msgstr "Comandes"
1875
+
1876
+ #: adminpages/orders.php:678 adminpages/orders.php:521
1877
+ #: adminpages/orders.php:571 adminpages/orders.php:707
1878
+ msgid "Add New Order"
1879
+ msgstr "Afegeix nova comanda"
1880
+
1881
+ #: adminpages/orders.php:713 adminpages/orders.php:606
1882
+ #: adminpages/orders.php:742
1883
+ msgid "Within a Date Range"
1884
+ msgstr "Dins del període"
1885
+
1886
+ #: adminpages/orders.php:714 adminpages/orders.php:607
1887
+ #: adminpages/orders.php:743
1888
+ msgid "Predefined Date Range"
1889
+ msgstr "Període predefinit"
1890
+
1891
+ #: adminpages/orders.php:715 adminpages/orders.php:608
1892
+ #: adminpages/orders.php:744
1893
+ msgid "Within a Level"
1894
+ msgstr "Dins del nivell"
1895
+
1896
+ #: adminpages/orders.php:716 adminpages/orders.php:609
1897
+ #: adminpages/orders.php:745
1898
+ msgid "Within a Status"
1899
+ msgstr "Dins de l’”Status”"
1900
+
1901
+ #: adminpages/orders.php:719 adminpages/orders.php:612
1902
+ #: adminpages/orders.php:748
1903
+ msgid "From"
1904
+ msgstr "De"
1905
+
1906
+ #: adminpages/orders.php:731 adminpages/orders.php:624
1907
+ #: adminpages/orders.php:760
1908
+ msgid "To"
1909
+ msgstr "per a "
1910
+
1911
+ #: adminpages/orders.php:743 adminpages/orders.php:636
1912
+ #: adminpages/orders.php:772
1913
+ msgid "filter by "
1914
+ msgstr "filtrat per"
1915
+
1916
+ #: adminpages/orders.php:780 adminpages/orders.php:674
1917
+ #: adminpages/orders.php:809
1918
+ msgid "Filter"
1919
+ msgstr "Filtre"
1920
+
1921
+ #: adminpages/orders.php:883 adminpages/orders.php:886
1922
+ #: adminpages/orders.php:535 adminpages/orders.php:538
1923
+ #: adminpages/orders.php:777 adminpages/orders.php:780
1924
+ #: adminpages/orders.php:912 adminpages/orders.php:915
1925
+ msgid "Search Orders"
1926
+ msgstr "Cerca Comandes"
1927
+
1928
+ #: adminpages/orders.php:930 adminpages/orders.php:590
1929
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1930
+ #: adminpages/orders.php:959
1931
+ #, php-format
1932
+ msgid "%d orders found."
1933
+ msgstr "%d comandes no trobades"
1934
+
1935
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
1936
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1937
+ #: adminpages/orders.php:599 adminpages/orders.php:902
1938
+ #: adminpages/orders.php:912 adminpages/orders.php:968
1939
+ #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
1940
+ #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
1941
+ #: adminpages/reports/login.php:143
1942
+ msgid "User"
1943
+ msgstr "Usuari"
1944
+
1945
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
1946
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1947
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1948
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1949
+ #: adminpages/orders.php:914 adminpages/orders.php:970 includes/init.php:214
1950
+ #: includes/init.php:217 includes/init.php:218 includes/init.php:220
1951
+ #: includes/init.php:222 includes/init.php:230 includes/profile.php:25
1952
+ #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
1953
+ #: pages/confirmation.php:46 pages/confirmation.php:62
1954
+ #: pages/confirmation.php:103 pages/invoice.php:27 pages/invoice.php:49
1955
+ msgid "Membership Level"
1956
+ msgstr "Nivell de subscripció"
1957
+
1958
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
1959
+ #: adminpages/orders.php:603 adminpages/orders.php:651
1960
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1961
+ #: adminpages/orders.php:954 adminpages/orders.php:972
1962
+ #: adminpages/orders.php:982 adminpages/orders.php:1040
1963
+ msgid "Payment"
1964
+ msgstr "Pagament"
1965
+
1966
+ #: adminpages/orders.php:945 adminpages/orders.php:605
1967
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1968
+ #: adminpages/orders.php:974
1969
+ msgid "Transaction IDs"
1970
+ msgstr "IDs de transacció"
1971
+
1972
+ #: adminpages/orders.php:972 adminpages/orders.php:630
1973
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1974
+ #: adminpages/orders.php:1001
1975
+ msgid "deleted"
1976
+ msgstr "esborrat"
1977
+
1978
+ #: adminpages/orders.php:1013 adminpages/orders.php:653
1979
+ #: adminpages/orders.php:956 adminpages/orders.php:974
1980
+ #: adminpages/orders.php:984 adminpages/orders.php:1042
1981
+ msgid "Subscription"
1982
+ msgstr "Subscripció"
1983
+
1984
+ #: adminpages/orders.php:1027 adminpages/orders.php:664
1985
+ #: adminpages/orders.php:967 adminpages/orders.php:985
1986
+ #: adminpages/orders.php:995 adminpages/orders.php:998
1987
+ #: adminpages/orders.php:1056
1988
+ #, php-format
1989
+ msgid ""
1990
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1991
+ "want to delete order %s?"
1992
+ msgstr ""
1993
+ "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que "
1994
+ "vols esborrar la comanda %s?"
1995
+
1996
+ #: adminpages/orders.php:1030 adminpages/orders.php:1059
1997
+ msgid "print"
1998
+ msgstr "imprimeix"
1999
+
2000
+ #: adminpages/orders.php:1033 adminpages/orders.php:1062
2001
+ msgid "email"
2002
+ msgstr "correu electrònic"
2003
+
2004
+ #: adminpages/orders.php:1043 adminpages/orders.php:674
2005
+ #: adminpages/orders.php:977 adminpages/orders.php:995
2006
+ #: adminpages/orders.php:1005 adminpages/orders.php:1008
2007
+ #: adminpages/orders.php:1072
2008
+ msgid "No orders found."
2009
+ msgstr "No s’han trobat comandes"
2010
+
2011
+ #: adminpages/pagesettings.php:54
2012
+ msgid "Your page settings have been updated."
2013
+ msgstr "La teva pàgina de configuració ha estat actualitzada"
2014
+
2015
+ #: adminpages/pagesettings.php:64 adminpages/pagesettings.php:51
2016
+ msgid "Membership Account"
2017
+ msgstr "Compte de Subscriptor"
2018
+
2019
+ #: adminpages/pagesettings.php:65 adminpages/pagesettings.php:54
2020
+ msgid "Membership Billing"
2021
+ msgstr "Facturació de la subscripció"
2022
+
2023
+ #: adminpages/pagesettings.php:66 adminpages/pagesettings.php:57
2024
+ msgid "Membership Cancel"
2025
+ msgstr "Cancel·lació de la subscripció"
2026
+
2027
+ #: adminpages/pagesettings.php:67 adminpages/pagesettings.php:60
2028
+ msgid "Membership Checkout"
2029
+ msgstr "Checkout de la subscripció"
2030
+
2031
+ #: adminpages/pagesettings.php:68 adminpages/pagesettings.php:63
2032
+ msgid "Membership Confirmation"
2033
+ msgstr "Confirmació de la subscripció"
2034
+
2035
+ #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:66
2036
+ msgid "Membership Invoice"
2037
+ msgstr "Factura de la subscripció"
2038
+
2039
+ #: adminpages/pagesettings.php:83 adminpages/pagesettings.php:111
2040
+ msgid "The following pages have been created for you"
2041
+ msgstr "Les següents pàgines han estat creades per a tu"
2042
+
2043
+ #: adminpages/pagesettings.php:97 adminpages/pagesettings.php:98
2044
+ #: adminpages/pagesettings.php:126
2045
+ msgid ""
2046
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
2047
+ "page."
2048
+ msgstr ""
2049
+ "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per "
2050
+ "al Paid Memberships Pro"
2051
+
2052
+ #: adminpages/pagesettings.php:101 adminpages/pagesettings.php:104
2053
+ #: adminpages/pagesettings.php:132
2054
+ msgid ""
2055
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
2056
+ msgstr ""
2057
+ "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel "
2058
+ "Paid Memberships Pro o"
2059
+
2060
+ #: adminpages/pagesettings.php:102 adminpages/pagesettings.php:104
2061
+ #: adminpages/pagesettings.php:132
2062
+ msgid "click here to let us generate them for you"
2063
+ msgstr "Clica aquí per permetre’ns generar-les per a tu"
2064
+
2065
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:112
2066
+ #: adminpages/pagesettings.php:140
2067
+ msgid "Account Page"
2068
+ msgstr "Pàgina de Compte"
2069
+
2070
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
2071
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
2072
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
2073
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
2074
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
2075
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2076
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:177
2077
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:193
2078
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
2079
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
2080
+ #: adminpages/pagesettings.php:241
2081
+ msgid "Choose One"
2082
+ msgstr "Escull-ne un"
2083
+
2084
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
2085
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
2086
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
2087
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
2088
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
2089
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
2090
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
2091
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2092
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
2093
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
2094
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
2095
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:197
2096
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
2097
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:225
2098
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
2099
+ #: adminpages/pagesettings.php:244
2100
+ msgid "edit page"
2101
+ msgstr "Edita la pàgina"
2102
+
2103
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
2104
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
2105
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
2106
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
2107
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
2108
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:151
2109
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:164
2110
+ #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
2111
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
2112
+ #: adminpages/pagesettings.php:195 adminpages/pagesettings.php:198
2113
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
2114
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
2115
+ #: adminpages/pagesettings.php:227 adminpages/pagesettings.php:230
2116
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:246
2117
+ msgid "view page"
2118
+ msgstr "Mira la pàgina"
2119
+
2120
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
2121
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
2122
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
2123
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:121
2124
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2125
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2126
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2127
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:166
2128
+ #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
2129
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:184
2130
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
2131
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:200
2132
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
2133
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:216
2134
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:229
2135
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:245
2136
+ #: adminpages/pagesettings.php:248
2137
+ msgid "Include the shortcode"
2138
+ msgstr "Inclou l’”enllaç” (shortcode)"
2139
+
2140
+ #: adminpages/pagesettings.php:129 adminpages/pagesettings.php:125
2141
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2142
+ #: adminpages/pagesettings.php:158
2143
+ msgid "Billing Information Page"
2144
+ msgstr "Pàgina d’informació de Facturació"
2145
+
2146
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:138
2147
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2148
+ #: adminpages/pagesettings.php:173
2149
+ msgid "Cancel Page"
2150
+ msgstr "Cancel·la pàgina"
2151
+
2152
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:152
2153
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2154
+ #: adminpages/pagesettings.php:189
2155
+ msgid "Checkout Page"
2156
+ msgstr "Pàgina de Checkout"
2157
+
2158
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:166
2159
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2160
+ #: adminpages/pagesettings.php:205
2161
+ msgid "Confirmation Page"
2162
+ msgstr "Pàgina de Confirmació"
2163
+
2164
+ #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:180
2165
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2166
+ #: adminpages/pagesettings.php:221
2167
+ msgid "Invoice Page"
2168
+ msgstr "Pàgina de Factura"
2169
+
2170
+ #: adminpages/pagesettings.php:224 adminpages/pagesettings.php:194
2171
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2172
+ #: adminpages/pagesettings.php:237
2173
+ msgid "Levels Page"
2174
+ msgstr "Pàgina de Nivells"
2175
+
2176
+ #: adminpages/pagesettings.php:245
2177
+ msgid "Additional Page Settings"
2178
+ msgstr "Configuració addicional de pàgina"
2179
+
2180
+ #: adminpages/pagesettings.php:280
2181
+ msgid "Generate Page"
2182
+ msgstr "Genera pàgina"
2183
+
2184
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
2185
+ #: adminpages/paymentsettings.php:82
2186
+ msgid "Your payment settings have been updated."
2187
+ msgstr "La teva configuració de pagament ha estat actualitzada"
2188
+
2189
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
2190
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2191
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
2192
+ msgid "Payment Gateway"
2193
+ msgstr "Passarela de pagament (Payment Gateway)"
2194
+
2195
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:201
2196
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2197
+ msgid "SSL Settings"
2198
+ msgstr "Configuració SSL"
2199
+
2200
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
2201
+ msgid ""
2202
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
2203
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2204
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2205
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2206
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2207
+ msgstr ""
2208
+ "Aprèn més sobre <a title=\"Paid Memberships Pro - SSL Settings\" target="
2209
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2210
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2211
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2212
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2213
+
2214
+ #: adminpages/paymentsettings.php:101
2215
+ msgid "Choose a Gateway"
2216
+ msgstr "Escull una passarel·la"
2217
+
2218
+ #: adminpages/paymentsettings.php:148
2219
+ msgid "Currency and Tax Settings"
2220
+ msgstr "Configuració de moneda i impostos"
2221
+
2222
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
2223
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
2224
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
2225
+ msgid "Currency"
2226
+ msgstr "Moneda"
2227
+
2228
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
2229
+ #: adminpages/paymentsettings.php:402
2230
+ msgid ""
2231
+ "Not all currencies will be supported by every gateway. Please check with "
2232
+ "your gateway."
2233
+ msgstr ""
2234
+ "No totes les monedes es poden usar a totes les passarel·les. Si us plau "
2235
+ "comprova la teva passarel·la."
2236
+
2237
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
2238
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
2239
+ #: adminpages/paymentsettings.php:408
2240
+ msgid "Accepted Credit Card Types"
2241
+ msgstr "Tipus de tarjetes de crèdit acceptades."
2242
+
2243
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2244
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2245
+ #: adminpages/paymentsettings.php:445
2246
+ msgid "Sales Tax"
2247
+ msgstr "Impost a la venta"
2248
+
2249
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2250
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
2251
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
2252
+ #: pages/billing.php:78 pages/billing.php:82
2253
+ msgid "optional"
2254
+ msgstr "opcional"
2255
+
2256
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
2257
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
2258
+ #: adminpages/paymentsettings.php:448
2259
+ msgid "Tax State"
2260
+ msgstr "Estat/país de la taxa"
2261
+
2262
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
2263
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
2264
+ #: adminpages/paymentsettings.php:449
2265
+ msgid "abbreviation, e.g. \"PA\""
2266
+ msgstr "abreviació, per exemple “PA”"
2267
+
2268
+ #: adminpages/paymentsettings.php:193
2269
+ msgid "Tax Rate"
2270
+ msgstr "Tarifa de l’impost"
2271
+
2272
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
2273
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
2274
+ #: adminpages/paymentsettings.php:451
2275
+ msgid "decimal, e.g. \"0.06\""
2276
+ msgstr "decimal, per exemple \"0.06\""
2277
+
2278
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
2279
+ #: adminpages/paymentsettings.php:452
2280
+ msgid ""
2281
+ "US only. If values are given, tax will be applied for any members ordering "
2282
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
2283
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
2284
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
2285
+ msgstr ""
2286
+ "Només US. Si es donen els valors, l’impost s’aplicarà per a qualsevol "
2287
+ "subscriptor que faci una comanda des de l’Estat seleccionat.<br />per a "
2288
+ "normes més complexes fora dels US utilitzeu <a target=\"_blank\" href="
2289
+ "\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-"
2290
+ "pro/\">pmpro_tax filter</a>."
2291
+
2292
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
2293
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
2294
+ msgid "Force SSL"
2295
+ msgstr "Força SSL"
2296
+
2297
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
2298
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
2299
+ msgid "Yes (with JavaScript redirects)"
2300
+ msgstr "Sí (amb redirecció de JavaScript)"
2301
+
2302
+ #: adminpages/paymentsettings.php:214
2303
+ msgid ""
2304
+ "Recommended: Yes. Try the JavaScript redirects setting if you are having "
2305
+ "issues with infinite redirect loops."
2306
+ msgstr ""
2307
+ "Recomanat: Sí. Prova la redirecció de JavaScript si tens problemes amb "
2308
+ "redireccions amb “loops” infinits."
2309
+
2310
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
2311
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
2312
+ #: adminpages/paymentsettings.php:470
2313
+ msgid "SSL Seal Code"
2314
+ msgstr "SSL Seal Code"
2315
+
2316
+ #: adminpages/paymentsettings.php:223
2317
+ msgid ""
2318
+ "Your <strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2319
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> must "
2320
+ "be installed by your web host. Your <strong>SSL Seal</strong> will be a "
2321
+ "short HTML or JavaScript snippet that can be pasted here."
2322
+ msgstr ""
2323
+ "El teu<strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2324
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> ha de "
2325
+ "ser instal·lat pel vostre hosting. El teu <strong>SSL Seal</strong> serà un "
2326
+ "petit HTML o JavaScript snippet que es pot enganxar aquí."
2327
+
2328
+ #: adminpages/paymentsettings.php:228
2329
+ msgid "Extra HTTPS URL Filter"
2330
+ msgstr "Extra HTTPS URL Filtre"
2331
+
2332
+ #: adminpages/paymentsettings.php:231
2333
+ msgid ""
2334
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
2335
+ "secure pages. Check this if you are using SSL and have warnings on your "
2336
+ "checkout pages."
2337
+ msgstr ""
2338
+ "Passa tot el codi HTML generat a través del filtre URL per a afegir HTTPS a "
2339
+ "URLs utilitzat a les pàgines segures. Comprova això si estàs utilitzant SSL "
2340
+ "i tens advertències a les teves pàgines de Checkout."
2341
+
2342
+ #: adminpages/reports.php:40 adminpages/reports.php:26
2343
+ #: adminpages/reports.php:37
2344
+ msgid "Details"
2345
+ msgstr "Detalls"
2346
+
2347
+ #: adminpages/reports.php:61
2348
+ msgid "Back to Reports Dashboard"
2349
+ msgstr "Torna a l’escriptori de Reports (Reports Dashboard)"
2350
+
2351
+ #: adminpages/reports/login.php:16
2352
+ msgid "Visits, Views, and Logins"
2353
+ msgstr "Visites, vistes i Logins"
2354
+
2355
+ #: adminpages/reports/login.php:31
2356
+ msgid "Visits"
2357
+ msgstr "Visites"
2358
+
2359
+ #: adminpages/reports/login.php:32
2360
+ msgid "Views"
2361
+ msgstr "Vistes"
2362
+
2363
+ #: adminpages/reports/login.php:33
2364
+ msgid "Logins"
2365
+ msgstr "Logins"
2366
+
2367
+ #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2368
+ #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2369
+ #: adminpages/reports/memberships.php:81
2370
+ msgid "Today"
2371
+ msgstr "Avui"
2372
+
2373
+ #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2374
+ #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2375
+ #: adminpages/reports/memberships.php:77
2376
+ msgid "This Month"
2377
+ msgstr "Aquest mes"
2378
+
2379
+ #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2380
+ #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2381
+ #: adminpages/reports/memberships.php:69
2382
+ msgid "All Time"
2383
+ msgstr "Sempre"
2384
+
2385
+ #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2386
+ #: adminpages/reports/login.php:63
2387
+ msgid "Visits, Views, and Logins Report"
2388
+ msgstr "Visites, vistes i informe de Logins "
2389
+
2390
+ #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2391
+ #: adminpages/reports/login.php:68
2392
+ msgid "All Users"
2393
+ msgstr "Tots els usuaris"
2394
+
2395
+ #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2396
+ #: adminpages/reports/login.php:148
2397
+ msgid "Last Visit"
2398
+ msgstr "Última visita"
2399
+
2400
+ #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2401
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2402
+ #: adminpages/reports/login.php:149
2403
+ msgid "Visits This Month"
2404
+ msgstr "Visites aquest mes"
2405
+
2406
+ #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2407
+ #: adminpages/reports/login.php:150
2408
+ msgid "Total Visits"
2409
+ msgstr "Visites totals"
2410
+
2411
+ #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2412
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2413
+ #: adminpages/reports/login.php:151
2414
+ msgid "Views This Month"
2415
+ msgstr "Visites aquest mes"
2416
+
2417
+ #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2418
+ #: adminpages/reports/login.php:152
2419
+ msgid "Total Views"
2420
+ msgstr "Visites totals"
2421
+
2422
+ #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2423
+ #: adminpages/reports/login.php:153
2424
+ msgid "Last Login"
2425
+ msgstr "Últim Login"
2426
+
2427
+ #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2428
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2429
+ #: adminpages/reports/login.php:154
2430
+ msgid "Logins This Month"
2431
+ msgstr "Logins aquest mes"
2432
+
2433
+ #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2434
+ #: adminpages/reports/login.php:155
2435
+ msgid "Total Logins"
2436
+ msgstr "Total de Logins"
2437
+
2438
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:259
2439
+ #: adminpages/reports/memberships.php:252
2440
+ #: adminpages/reports/memberships.php:288
2441
+ msgid "Membership Stats"
2442
+ msgstr "Estadístiques dels subscriptors"
2443
+
2444
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
2445
+ msgid "Signups"
2446
+ msgstr "Altes (Signups)"
2447
+
2448
+ #: adminpages/reports/memberships.php:38
2449
+ msgid "All Cancellations"
2450
+ msgstr "Totes les cancel·lacions"
2451
+
2452
+ #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2453
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2454
+ msgid "This Year"
2455
+ msgstr "Aquest any"
2456
+
2457
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2458
+ #: adminpages/reports/memberships.php:258
2459
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2460
+ #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2461
+ msgid "Daily"
2462
+ msgstr "Diari"
2463
+
2464
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2465
+ #: adminpages/reports/memberships.php:259
2466
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2467
+ #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2468
+ msgid "Monthly"
2469
+ msgstr "Mensual"
2470
+
2471
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2472
+ #: adminpages/reports/memberships.php:260
2473
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2474
+ #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2475
+ msgid "Annual"
2476
+ msgstr "Anual"
2477
+
2478
+ #: adminpages/reports/memberships.php:270
2479
+ msgid "Signups vs. All Cancellations"
2480
+ msgstr "Altes vs. totes les Cancel·lacions"
2481
+
2482
+ #: adminpages/reports/memberships.php:271
2483
+ #: adminpages/reports/memberships.php:263
2484
+ #: adminpages/reports/memberships.php:299
2485
+ msgid "Signups vs. Cancellations"
2486
+ msgstr "Altes vs. Cancel·lacions"
2487
+
2488
+ #: adminpages/reports/memberships.php:272
2489
+ msgid "Signups vs. Expirations"
2490
+ msgstr "Altes vs. Expiracions"
2491
+
2492
+ #: adminpages/reports/memberships.php:277
2493
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2494
+ #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2495
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2496
+ #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2497
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2498
+ #: adminpages/reports/memberships.php:268
2499
+ #: adminpages/reports/memberships.php:279
2500
+ #: adminpages/reports/memberships.php:304
2501
+ #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2502
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2503
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2504
+ #: adminpages/reports/sales.php:215
2505
+ msgid "for"
2506
+ msgstr "per a"
2507
+
2508
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2509
+ #: adminpages/reports/memberships.php:295
2510
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2511
+ #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2512
+ msgid "Generate Report"
2513
+ msgstr "Genera Informe"
2514
+
2515
+ #: adminpages/reports/sales.php:18
2516
+ msgid "Sales and Revenue (Testing/Sandbox)"
2517
+ msgstr "Vendes i beneficis (prova/Sandbox)"
2518
+
2519
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2520
+ #: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
2521
+ msgid "Sales and Revenue"
2522
+ msgstr "Vendes i beneficis"
2523
+
2524
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2525
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2526
+ #: adminpages/reports/sales.php:202
2527
+ msgid "Sales"
2528
+ msgstr "Vendes"
2529
+
2530
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2531
+ #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2532
+ #: adminpages/reports/sales.php:201
2533
+ msgid "Revenue"
2534
+ msgstr "Benefici"
2535
+
2536
+ #: adminpages/templates/orders-email.php:14
2537
+ #: adminpages/templates/orders-print.php:50
2538
+ msgid "Invoice #: "
2539
+ msgstr "Factura #: "
2540
+
2541
+ #: adminpages/templates/orders-email.php:18
2542
+ #: adminpages/templates/orders-print.php:54
2543
+ msgid "Date:"
2544
+ msgstr "Data:"
2545
+
2546
+ #: adminpages/templates/orders-email.php:24
2547
+ msgid "Bill to:"
2548
+ msgstr "Facturat a:"
2549
+
2550
+ #: adminpages/templates/orders-email.php:47
2551
+ #: adminpages/templates/orders-print.php:76
2552
+ msgid "Item"
2553
+ msgstr "Item"
2554
+
2555
+ #: adminpages/templates/orders-email.php:48
2556
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2557
+ #: pages/levels.php:14
2558
+ msgid "Price"
2559
+ msgstr "Preu"
2560
+
2561
+ #: adminpages/templates/orders-email.php:56
2562
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2563
+ #: pages/invoice.php:77
2564
+ msgid "Subtotal"
2565
+ msgstr "Subtotal"
2566
+
2567
+ #: adminpages/updates.php:11
2568
+ msgid "Updating Paid Memberships Pro"
2569
+ msgstr "Actualitzant Paid Memberships Pro"
2570
+
2571
+ #: adminpages/updates.php:18
2572
+ msgid "Updates are processing. This may take a few minutes to complete."
2573
+ msgstr "S’està processant l’actualització. Això pot trigar uns minuts."
2574
+
2575
+ #: adminpages/updates.php:23
2576
+ msgid "Update complete."
2577
+ msgstr "Actualització completa"
2578
+
2579
+ #: classes/class.memberorder.php:697 classes/class.memberorder.php:553
2580
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2581
+ #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2582
+ #: includes/cleanup.php:24
2583
+ #, php-format
2584
+ msgid ""
2585
+ "There was an error canceling the subscription for user with ID=%s. You will "
2586
+ "want to check your payment gateway to see if their subscription is still "
2587
+ "active."
2588
+ msgstr ""
2589
+ "Hi ha hagut un error cancel·lant la subscripció per a l’usuari ID=%s. "
2590
+ "Comprova a la passarel·la de pagament si la seva subscripció encara és "
2591
+ "activa."
2592
+
2593
+ #: classes/class.pmproemail.php:37
2594
+ #, php-format
2595
+ msgid "An Email From %s"
2596
+ msgstr "Un correu electrònic de %s"
2597
+
2598
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2599
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2600
+ #, php-format
2601
+ msgid "Your membership at %s has been CANCELLED"
2602
+ msgstr "La seva subscripció a %s ha estat Cancel·lada"
2603
+
2604
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2605
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2606
+ #, php-format
2607
+ msgid "Membership for %s at %s has been CANCELLED"
2608
+ msgstr "La subscripció per a %s a %s ha estat cancel·lada"
2609
+
2610
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2611
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2612
+ #: classes/class.pmproemail.php:178
2613
+ #, php-format
2614
+ msgid "Your membership confirmation for %s"
2615
+ msgstr "Confirmació per a la seva subscripció %s"
2616
+
2617
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2618
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2619
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2620
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2621
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2622
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2623
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2624
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2625
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2626
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2627
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2628
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2629
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2630
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2631
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2632
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2633
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2634
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2635
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2636
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2637
+ #: classes/gateways/class.pmprogateway_stripe.php:496
2638
+ #: classes/gateways/class.pmprogateway_stripe.php:506
2639
+ #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:66
2640
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2641
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:85
2642
+ #: pages/checkout.php:549 pages/checkout.php:565 pages/checkout.php:566
2643
+ #: pages/checkout.php:573 pages/checkout.php:594 pages/checkout.php:603
2644
+ #: pages/checkout.php:612 pages/confirmation.php:51 pages/invoice.php:32
2645
+ msgid "Discount Code"
2646
+ msgstr "Codi de descompte"
2647
+
2648
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2649
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2650
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2651
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2652
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2653
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2654
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2655
+ #: classes/class.pmproemail.php:654
2656
+ #, php-format
2657
+ msgid "This membership will expire on %s."
2658
+ msgstr "Aquesta subscripció expirarà a %s."
2659
+
2660
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2661
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2662
+ #: classes/class.pmproemail.php:278
2663
+ #, php-format
2664
+ msgid "Member Checkout for %s at %s"
2665
+ msgstr "Checkout de subscriptor per %s a %s"
2666
+
2667
+ #: classes/class.pmproemail.php:375
2668
+ #, php-format
2669
+ msgid "Your billing information has been updated at %s"
2670
+ msgstr "S’ha actualitzat la seva informació de facturació a %s"
2671
+
2672
+ #: classes/class.pmproemail.php:428
2673
+ #, php-format
2674
+ msgid "Billing information has been updated for %s at %s"
2675
+ msgstr "Informació de facturació ha estat actualitzat per %s a %s"
2676
+
2677
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2678
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2679
+ #: classes/class.pmproemail.php:467
2680
+ #, php-format
2681
+ msgid "Membership Payment Failed at %s"
2682
+ msgstr "Pagament per a subscripció ha Errat a %s"
2683
+
2684
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2685
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2686
+ #: classes/class.pmproemail.php:513
2687
+ #, php-format
2688
+ msgid "Membership Payment Failed For %s at %s"
2689
+ msgstr "Pagament per a subscripció ha Errat per %s a %s"
2690
+
2691
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2692
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2693
+ #, php-format
2694
+ msgid "Credit Card on File Expiring Soon at %s"
2695
+ msgstr "La tarjeta de crèdit a l’arxiu caducarà aviat a %s"
2696
+
2697
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2698
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2699
+ #: classes/class.pmproemail.php:608
2700
+ #, php-format
2701
+ msgid "INVOICE for %s membership"
2702
+ msgstr "FACTURA per a %s subscriptor"
2703
+
2704
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2705
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2706
+ #: classes/class.pmproemail.php:679
2707
+ #, php-format
2708
+ msgid "Your trial at %s is ending soon"
2709
+ msgstr "El teu període de prova a %s aviat acabarà."
2710
+
2711
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2712
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2713
+ #: classes/class.pmproemail.php:713
2714
+ #, php-format
2715
+ msgid "Your membership at %s has ended"
2716
+ msgstr "La teva subscripció a %s ha finalitzat"
2717
+
2718
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2719
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2720
+ #: classes/class.pmproemail.php:738
2721
+ #, php-format
2722
+ msgid "Your membership at %s will end soon"
2723
+ msgstr "La teva subscripció a %s finalitzarà aviat."
2724
+
2725
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2726
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2727
+ #: classes/class.pmproemail.php:758
2728
+ #, php-format
2729
+ msgid "Your membership at %s has been changed"
2730
+ msgstr "La teva subscripció a %s ha canviat"
2731
+
2732
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2733
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2734
+ #: classes/class.pmproemail.php:800
2735
+ #, php-format
2736
+ msgid "The new level is %s"
2737
+ msgstr "El teu nou nivell és %s"
2738
+
2739
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2740
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2741
+ #: classes/class.pmproemail.php:764
2742
+ msgid "Your membership has been cancelled"
2743
+ msgstr "La teva subscripció ha finalitzat"
2744
+
2745
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2746
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2747
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2748
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2749
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2750
+ #, php-format
2751
+ msgid "This membership will expire on %s"
2752
+ msgstr "La teva subscripció finalitzarà a %s"
2753
+
2754
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2755
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2756
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2757
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2758
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2759
+ msgid "This membership does not expire"
2760
+ msgstr "Aquesta subscripció no expira"
2761
+
2762
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2763
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2764
+ #: classes/class.pmproemail.php:796
2765
+ #, php-format
2766
+ msgid "Membership for %s at %s has been changed"
2767
+ msgstr "Subscripció per %s a %s ha canviat"
2768
+
2769
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2770
+ #: classes/class.pmproemail.php:802
2771
+ msgid "Membership has been cancelled"
2772
+ msgstr "Subscripció cancel·lada"
2773
+
2774
+ #: classes/class.pmproemail.php:848
2775
+ msgid "Invoice for Order #: "
2776
+ msgstr "Factura per a la comanda #:"
2777
+
2778
+ #: classes/gateways/class.pmprogateway.php:55
2779
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2780
+ #: classes/gateways/class.pmprogateway_check.php:193
2781
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2782
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2783
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2784
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2785
+ #: classes/gateways/class.pmprogateway_check.php:60
2786
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2787
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2788
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2789
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2790
+ msgid "Unknown error: Authorization failed."
2791
+ msgstr "Error desconegut: Ha fallat l’autorització"
2792
+
2793
+ #: classes/gateways/class.pmprogateway.php:106
2794
+ #: classes/gateways/class.pmprogateway.php:111
2795
+ #: classes/gateways/class.pmprogateway.php:129
2796
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2797
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2798
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2799
+ #: classes/gateways/class.pmprogateway_check.php:245
2800
+ #: classes/gateways/class.pmprogateway_check.php:250
2801
+ #: classes/gateways/class.pmprogateway_check.php:268
2802
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2803
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2804
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2805
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2806
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2807
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2808
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2809
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2810
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2811
+ #: classes/gateways/class.pmprogateway_check.php:111
2812
+ #: classes/gateways/class.pmprogateway_check.php:116
2813
+ #: classes/gateways/class.pmprogateway_check.php:134
2814
+ #: classes/gateways/class.pmprogateway_check.php:244
2815
+ #: classes/gateways/class.pmprogateway_check.php:249
2816
+ #: classes/gateways/class.pmprogateway_check.php:267
2817
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2818
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2819
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2820
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2821
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2822
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2823
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2824
+ msgid "Unknown error: Payment failed."
2825
+ msgstr "Error desconegut: Ha fallat el pagament."
2826
+
2827
+ #: classes/gateways/class.pmprogateway.php:113
2828
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2829
+ #: classes/gateways/class.pmprogateway_check.php:252
2830
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2831
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2832
+ #: classes/gateways/class.pmprogateway_check.php:118
2833
+ #: classes/gateways/class.pmprogateway_check.php:251
2834
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2835
+ msgid ""
2836
+ "A partial payment was made that we could not void. Please contact the site "
2837
+ "owner immediately to correct this."
2838
+ msgstr ""
2839
+ "Un pagament parcial es va fer que no ens podia anular. Contacteu al "
2840
+ "propietari del lloc immediatament per corregir-ho."
2841
+
2842
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
2843
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:122
2844
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:130
2845
+ #: paid-memberships-pro.php:131
2846
+ msgid "Authorize.net"
2847
+ msgstr "Authorize.net"
2848
+
2849
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2850
+ msgid "Authorize.net Settings"
2851
+ msgstr "Authorize.net Configuració"
2852
+
2853
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2854
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2855
+ #: adminpages/paymentsettings.php:269
2856
+ msgid "Login Name"
2857
+ msgstr "Nom d’usuari"
2858
+
2859
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2860
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2861
+ #: adminpages/paymentsettings.php:277
2862
+ msgid "Transaction Key"
2863
+ msgstr "Clau de transacció"
2864
+
2865
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2866
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2867
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2868
+ msgid "Silent Post URL"
2869
+ msgstr "Silent Post URL"
2870
+
2871
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2872
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2873
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2874
+ msgid ""
2875
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2876
+ msgstr ""
2877
+ "Per integrar totalment Authorize.net, assegura’t de configurar Silent Post "
2878
+ "URL a"
2879
+
2880
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2881
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
2882
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2883
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2884
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2885
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2886
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2887
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2888
+ msgid "Could not connect to Authorize.net"
2889
+ msgstr "No podria connectar a Authorize.net"
2890
+
2891
+ #: classes/gateways/class.pmprogateway_braintree.php:76
2892
+ #: paid-memberships-pro.php:133
2893
+ #: classes/gateways/class.pmprogateway_braintree.php:63
2894
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2895
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
2896
+ msgid "Braintree Payments"
2897
+ msgstr "Pagaments Braintree"
2898
+
2899
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2900
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2901
+ msgid "Braintree Settings"
2902
+ msgstr "Configuració Braintree"
2903
+
2904
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2905
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2906
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2907
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2908
+ #: adminpages/paymentsettings.php:369
2909
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2910
+ msgid "Merchant ID"
2911
+ msgstr "ID de comerciant"
2912
+
2913
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2914
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2915
+ #: adminpages/paymentsettings.php:311
2916
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2917
+ msgid "Public Key"
2918
+ msgstr "Clau Pública"
2919
+
2920
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2921
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2922
+ #: adminpages/paymentsettings.php:319
2923
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2924
+ msgid "Private Key"
2925
+ msgstr "Clau Privada"
2926
+
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2928
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2929
+ #: adminpages/paymentsettings.php:327
2930
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2931
+ msgid "Client-Side Encryption Key"
2932
+ msgstr "Clau d’encriptació del Client"
2933
+
2934
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2935
+ #: classes/gateways/class.pmprogateway_stripe.php:214
2936
+ #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2937
+ #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2938
+ #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2939
+ #: adminpages/paymentsettings.php:519
2940
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2941
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2942
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2943
+ #: classes/gateways/class.pmprogateway_stripe.php:192
2944
+ msgid "Web Hook URL"
2945
+ msgstr "Web Hook URL"
2946
+
2947
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2948
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2949
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2950
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2951
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2952
+ msgstr ""
2953
+ "Per integrar totalment Braintree, assegura’t de configurar Web Hook URL a"
2954
+
2955
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2956
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
2957
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2958
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2959
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2960
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2961
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2962
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2963
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2964
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
2965
+ msgid "Payment Information"
2966
+ msgstr "Informació de pagament"
2967
+
2968
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2969
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
2970
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2971
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2972
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2973
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2974
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2975
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2976
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2977
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
2978
+ #, php-format
2979
+ msgid "We Accept %s"
2980
+ msgstr "Acceptem %s"
2981
+
2982
+ #: classes/gateways/class.pmprogateway_braintree.php:318
2983
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
2984
+ #: pages/checkout.php:570 classes/gateways/class.pmprogateway_braintree.php:303
2985
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2986
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2987
+ #: classes/gateways/class.pmprogateway_stripe.php:450
2988
+ #: classes/gateways/class.pmprogateway_stripe.php:460
2989
+ #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:244
2990
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2991
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2992
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
2993
+ msgid "Card Number"
2994
+ msgstr "Nombre de Tarjeta"
2995
+
2996
+ #: classes/gateways/class.pmprogateway_braintree.php:355
2997
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
2998
+ #: pages/checkout.php:607 classes/gateways/class.pmprogateway_braintree.php:340
2999
+ #: classes/gateways/class.pmprogateway_braintree.php:353
3000
+ #: classes/gateways/class.pmprogateway_stripe.php:486
3001
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3002
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3003
+ #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:281
3004
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
3005
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3006
+ #: pages/checkout.php:585 pages/checkout.php:594 pages/checkout.php:603
3007
+ msgid "CVV"
3008
+ msgstr "CVV"
3009
+
3010
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3011
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
3012
+ #: pages/checkout.php:608 classes/gateways/class.pmprogateway_braintree.php:341
3013
+ #: classes/gateways/class.pmprogateway_braintree.php:354
3014
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3015
+ #: classes/gateways/class.pmprogateway_stripe.php:488
3016
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3017
+ #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:282
3018
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
3019
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3020
+ #: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
3021
+ msgid "what's this?"
3022
+ msgstr "què és això?"
3023
+
3024
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3025
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
3026
+ #: pages/checkout.php:618 classes/gateways/class.pmprogateway_braintree.php:351
3027
+ #: classes/gateways/class.pmprogateway_braintree.php:364
3028
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3029
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3030
+ #: classes/gateways/class.pmprogateway_stripe.php:508
3031
+ #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:78
3032
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3033
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
3034
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
3035
+ #: pages/checkout.php:614
3036
+ msgid "Apply"
3037
+ msgstr "Aplica"
3038
+
3039
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3040
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3041
+ #: classes/gateways/class.pmprogateway_braintree.php:61
3042
+ #: classes/gateways/class.pmprogateway_braintree.php:406
3043
+ #: classes/gateways/class.pmprogateway_braintree.php:419
3044
+ #: classes/gateways/class.pmprogateway_stripe.php:53
3045
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
3046
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
3047
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
3048
+ #: classes/gateways/class.pmprogateway_stripe.php:1036
3049
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
3050
+ msgid "Unknown error: Initial payment failed."
3051
+ msgstr "Error desconegut: ha fallat el pagament inicial"
3052
+
3053
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3054
+ #: classes/gateways/class.pmprogateway_braintree.php:120
3055
+ #: classes/gateways/class.pmprogateway_braintree.php:465
3056
+ #: classes/gateways/class.pmprogateway_braintree.php:478
3057
+ msgid "Error during settlement:"
3058
+ msgstr "Error durant la liquidació:"
3059
+
3060
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3061
+ #: classes/gateways/class.pmprogateway_braintree.php:129
3062
+ #: classes/gateways/class.pmprogateway_braintree.php:474
3063
+ #: classes/gateways/class.pmprogateway_braintree.php:487
3064
+ msgid "Error during charge:"
3065
+ msgstr "Error durant la càrrega:"
3066
+
3067
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3068
+ #: classes/gateways/class.pmprogateway_braintree.php:198
3069
+ #: classes/gateways/class.pmprogateway_braintree.php:221
3070
+ #: classes/gateways/class.pmprogateway_braintree.php:566
3071
+ #: classes/gateways/class.pmprogateway_braintree.php:579
3072
+ msgid "Failed to update customer."
3073
+ msgstr "No s’ha pogut actualitzar el comprador."
3074
+
3075
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3076
+ #: classes/gateways/class.pmprogateway_braintree.php:246
3077
+ #: classes/gateways/class.pmprogateway_braintree.php:269
3078
+ #: classes/gateways/class.pmprogateway_braintree.php:614
3079
+ #: classes/gateways/class.pmprogateway_braintree.php:627
3080
+ msgid "Failed to create customer."
3081
+ msgstr "No s’ha pogut crear el comprador"
3082
+
3083
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3084
+ #: classes/gateways/class.pmprogateway_braintree.php:253
3085
+ #: classes/gateways/class.pmprogateway_braintree.php:276
3086
+ #: classes/gateways/class.pmprogateway_braintree.php:621
3087
+ #: classes/gateways/class.pmprogateway_braintree.php:634
3088
+ msgid "Error creating customer record with Braintree:"
3089
+ msgstr "No s’ha pogut crear el comprador amb Branitree:"
3090
+
3091
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3092
+ #: classes/gateways/class.pmprogateway_braintree.php:344
3093
+ #: classes/gateways/class.pmprogateway_braintree.php:345
3094
+ #: classes/gateways/class.pmprogateway_braintree.php:376
3095
+ #: classes/gateways/class.pmprogateway_braintree.php:721
3096
+ #: classes/gateways/class.pmprogateway_braintree.php:734
3097
+ msgid "Error subscribing customer to plan with Braintree:"
3098
+ msgstr "No s’ha pogut subscriure el comprador al pla amb Braintree:"
3099
+
3100
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3101
+ #: classes/gateways/class.pmprogateway_braintree.php:359
3102
+ #: classes/gateways/class.pmprogateway_braintree.php:360
3103
+ #: classes/gateways/class.pmprogateway_braintree.php:391
3104
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3105
+ #: classes/gateways/class.pmprogateway_braintree.php:749
3106
+ msgid "Failed to subscribe with Braintree:"
3107
+ msgstr "No s’ha pogut subscriure a Braintree:"
3108
+
3109
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3110
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3111
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3112
+ #: classes/gateways/class.pmprogateway_braintree.php:397
3113
+ #: classes/gateways/class.pmprogateway_braintree.php:398
3114
+ #: classes/gateways/class.pmprogateway_braintree.php:410
3115
+ #: classes/gateways/class.pmprogateway_braintree.php:411
3116
+ #: classes/gateways/class.pmprogateway_braintree.php:417
3117
+ #: classes/gateways/class.pmprogateway_braintree.php:418
3118
+ #: classes/gateways/class.pmprogateway_braintree.php:429
3119
+ #: classes/gateways/class.pmprogateway_braintree.php:442
3120
+ #: classes/gateways/class.pmprogateway_braintree.php:449
3121
+ #: classes/gateways/class.pmprogateway_braintree.php:774
3122
+ #: classes/gateways/class.pmprogateway_braintree.php:787
3123
+ #: classes/gateways/class.pmprogateway_braintree.php:794
3124
+ #: classes/gateways/class.pmprogateway_braintree.php:800
3125
+ #: classes/gateways/class.pmprogateway_braintree.php:807
3126
+ #: classes/gateways/class.pmprogateway_stripe.php:343
3127
+ #: classes/gateways/class.pmprogateway_stripe.php:344
3128
+ #: classes/gateways/class.pmprogateway_stripe.php:351
3129
+ #: classes/gateways/class.pmprogateway_stripe.php:353
3130
+ #: classes/gateways/class.pmprogateway_stripe.php:354
3131
+ #: classes/gateways/class.pmprogateway_stripe.php:361
3132
+ #: classes/gateways/class.pmprogateway_stripe.php:396
3133
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3134
+ #: classes/gateways/class.pmprogateway_stripe.php:423
3135
+ msgid "Could not find the subscription."
3136
+ msgstr "No s’ha trobat la subscripció"
3137
+
3138
+ #: classes/gateways/class.pmprogateway_check.php:48
3139
+ #: paid-memberships-pro.php:126 adminpages/orders.php:399
3140
+ #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3141
+ #: adminpages/paymentsettings.php:159 paid-memberships-pro.php:116
3142
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:124
3143
+ #: paid-memberships-pro.php:125
3144
+ msgid "Pay by Check"
3145
+ msgstr "Pagament amb Check"
3146
+
3147
+ #: classes/gateways/class.pmprogateway_check.php:100
3148
+ msgid "Pay by Check Settings"
3149
+ msgstr "Configuració pagament amb check"
3150
+
3151
+ #: classes/gateways/class.pmprogateway_check.php:105
3152
+ #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3153
+ #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3154
+ msgid "Instructions"
3155
+ msgstr "Instruccions"
3156
+
3157
+ #: classes/gateways/class.pmprogateway_check.php:109
3158
+ #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3159
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3160
+ msgid ""
3161
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
3162
+ "confirmation, and invoice pages."
3163
+ msgstr ""
3164
+ "A quí escriure per a fer el check out. A on enviar-li un correu. Es mostra a "
3165
+ "les pàgines de checkout, confirmació i facturació."
3166
+
3167
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
3168
+ msgid "CyberSource"
3169
+ msgstr "CyberSource"
3170
+
3171
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
3172
+ msgid "CyberSource Settings"
3173
+ msgstr "Configuració de CyberSource"
3174
+
3175
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
3176
+ #: adminpages/paymentsettings.php:174
3177
+ msgid ""
3178
+ "This gateway option is in beta. Some functionality may not be available. "
3179
+ "Please contact Paid Memberships Pro with any issues you run into. "
3180
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
3181
+ "versions when available.</strong>"
3182
+ msgstr ""
3183
+ "Aquesta opció de passarel·la està en beta. Algunes funcions no estaran "
3184
+ "disponibles. Si us plau contacta amb Paid Memberships Pro. "
3185
+ "<strong>Assegura’t de tenir la última versió de Paid Memberships Pro</strong>"
3186
+
3187
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
3188
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
3189
+ msgid "Transaction Security Key"
3190
+ msgstr "Transaction Security Key"
3191
+
3192
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
3193
+ msgid "Payflow Pro/PayPal Pro"
3194
+ msgstr "Payflow Pro/PayPal Pro"
3195
+
3196
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
3197
+ msgid "Payflow Pro Settings"
3198
+ msgstr "Configuració Payflow Pro"
3199
+
3200
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
3201
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
3202
+ #: adminpages/paymentsettings.php:204
3203
+ msgid "Partner"
3204
+ msgstr "Soci"
3205
+
3206
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
3207
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
3208
+ #: adminpages/paymentsettings.php:212
3209
+ msgid "Vendor"
3210
+ msgstr "Venedor"
3211
+
3212
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124
3213
+ #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3214
+ #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3215
+ #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3216
+ #: pages/checkout.php:189 pages/checkout.php:191
3217
+ msgid "Password"
3218
+ msgstr "Clau"
3219
+
3220
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
3221
+ msgid "IPN Handler"
3222
+ msgstr "IPN Handler"
3223
+
3224
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
3225
+ #, php-format
3226
+ msgid ""
3227
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a "
3228
+ "target=\"_blank\" href=\"%s\">this addon</a>."
3229
+ msgstr ""
3230
+ "Payflow no utilitza IPN. Per sincronitzar subscripcions recursives, si us "
3231
+ "plau mira <a target=\"_blank\" href=\"%s\">this addon</a>."
3232
+
3233
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
3234
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3235
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
3236
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3237
+ #: classes/gateways/class.pmprogateway_paypal.php:277
3238
+ msgid ""
3239
+ "A partial payment was made that we could not refund. Please contact the site "
3240
+ "owner immediately to correct this."
3241
+ msgstr ""
3242
+ "S’ha realitzat un pagament parcial que no s’ha pogut tornar. Contacteu al "
3243
+ "propietari del lloc immediatament per corregir-ho."
3244
+
3245
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3246
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:119
3247
+ #: paid-memberships-pro.php:120 paid-memberships-pro.php:127
3248
+ #: paid-memberships-pro.php:128
3249
+ msgid "PayPal Website Payments Pro"
3250
+ msgstr "PayPal Website Payments Pro"
3251
+
3252
+ #: classes/gateways/class.pmprogateway_paypal.php:113
3253
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3254
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3255
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3256
+ msgid "PayPal Settings"
3257
+ msgstr "Configuració PayPal"
3258
+
3259
+ #: classes/gateways/class.pmprogateway_paypal.php:118
3260
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3261
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3262
+ #: adminpages/paymentsettings.php:179
3263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3264
+ msgid ""
3265
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3266
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
3267
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
3268
+ "paypal-standard-paid-memberships-pro/\">More information on why can be found "
3269
+ "here.</a>"
3270
+ msgstr ""
3271
+ "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPal "
3272
+ "Express, Website Payments Pro (Legacy), o PayPal Pro (Payflow Pro). <a "
3273
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-"
3274
+ "using-paypal-standard-paid-memberships-pro/\">Més informació sobre per què, "
3275
+ "aquí.</a>"
3276
+
3277
+ #: classes/gateways/class.pmprogateway_paypal.php:123
3278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3279
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3280
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3281
+ #: adminpages/paymentsettings.php:236
3282
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3283
+ msgid "Gateway Account Email"
3284
+ msgstr "Correu electrònic del compte de la Passarel·la"
3285
+
3286
+ #: classes/gateways/class.pmprogateway_paypal.php:131
3287
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3288
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3289
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3290
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3291
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3292
+ #: adminpages/paymentsettings.php:336
3293
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3294
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
3295
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3296
+ msgid "API Username"
3297
+ msgstr "API Usuari"
3298
+
3299
+ #: classes/gateways/class.pmprogateway_paypal.php:139
3300
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3301
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3302
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3303
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3304
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3305
+ #: adminpages/paymentsettings.php:344
3306
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3307
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3308
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3309
+ msgid "API Password"
3310
+ msgstr "API Clau"
3311
+
3312
+ #: classes/gateways/class.pmprogateway_paypal.php:147
3313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3314
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3315
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3316
+ #: adminpages/paymentsettings.php:260
3317
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3318
+ msgid "API Signature"
3319
+ msgstr "API Signatura"
3320
+
3321
+ #: classes/gateways/class.pmprogateway_paypal.php:155
3322
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3323
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3324
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3325
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3326
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3327
+ msgid "IPN Handler URL"
3328
+ msgstr "IPN Handler URL"
3329
+
3330
+ #: classes/gateways/class.pmprogateway_paypal.php:158
3331
+ msgid ""
3332
+ "This URL is passed to PayPal for all new charges and subscriptions. You "
3333
+ "SHOULD NOT set this in your PayPal account settings."
3334
+ msgstr ""
3335
+ "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions. NO "
3336
+ "HAURIES de posar-ho a la teva configuració de compte de PAyPal"
3337
+
3338
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3339
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3340
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3341
+ #: pages/checkout.php:302
3342
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3343
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3344
+ #: pages/checkout.php:300 pages/checkout.php:309 pages/checkout.php:675
3345
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3346
+ msgid "Check Out with PayPal"
3347
+ msgstr "Check Out amb PayPal"
3348
+
3349
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3351
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3352
+ #: pages/checkout.php:728
3353
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3354
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3355
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3356
+ #: pages/checkout.php:722
3357
+ msgid "Submit and Check Out"
3358
+ msgstr "Envia i fés el Check Out"
3359
+
3360
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3361
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3362
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3363
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3364
+ #: pages/checkout.php:728
3365
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3366
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3367
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3368
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3369
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3370
+ #: pages/checkout.php:722
3371
+ msgid "Submit and Confirm"
3372
+ msgstr "Envia i confirma"
3373
+
3374
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3375
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3376
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3377
+ #: classes/gateways/class.pmprogateway_paypal.php:385
3378
+ #: classes/gateways/class.pmprogateway_paypal.php:605
3379
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3380
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3381
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3382
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3383
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3384
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3385
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3386
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3387
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3388
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
3389
+ msgid ""
3390
+ "Please contact the site owner or cancel your subscription from within PayPal "
3391
+ "to make sure you are not charged going forward."
3392
+ msgstr ""
3393
+ "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de "
3394
+ "PayPal per assegurar-te que no et cobraran en el futur."
3395
+
3396
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3397
+ #: paid-memberships-pro.php:128
3398
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3399
+ #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3400
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3401
+ msgid "PayPal Express"
3402
+ msgstr "PayPal Express"
3403
+
3404
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3405
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3406
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3407
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3408
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3409
+ msgstr ""
3410
+ "Per integrar completament PayPal, assegura’t de configurar el teu IPN "
3411
+ "Handler URL a"
3412
+
3413
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3414
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3415
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3416
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3417
+ #: preheaders/checkout.php:690 preheaders/checkout.php:697
3418
+ #: preheaders/checkout.php:702 preheaders/checkout.php:735
3419
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753
3420
+ #: preheaders/checkout.php:754 preheaders/checkout.php:757
3421
+ #: preheaders/checkout.php:762 preheaders/checkout.php:803
3422
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
3423
+ msgid "The PayPal Token was lost."
3424
+ msgstr "S’ha perdut el Token de PayPal"
3425
+
3426
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3427
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:121
3428
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:129
3429
+ #: paid-memberships-pro.php:130
3430
+ msgid "PayPal Standard"
3431
+ msgstr "PayPal Standard"
3432
+
3433
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
3434
+ msgid ""
3435
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
3436
+ "settings."
3437
+ msgstr ""
3438
+ "Aquest és el teu IPN URL. NO HAURIES de posar-ho a la teva configuració de "
3439
+ "PayPal"
3440
+
3441
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3442
+ #, php-format
3443
+ msgid ""
3444
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3445
+ "your hosting provider to enable it"
3446
+ msgstr ""
3447
+ "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilitalà o "
3448
+ "pregunta com fer-ho al teu proveidor de hosting."
3449
+
3450
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3451
+ #: paid-memberships-pro.php:127
3452
+ #: classes/gateways/class.pmprogateway_stripe.php:93
3453
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3454
+ #: classes/gateways/class.pmprogateway_stripe.php:104
3455
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3456
+ #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3457
+ msgid "Stripe"
3458
+ msgstr "Stripe"
3459
+
3460
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3461
+ #: classes/gateways/class.pmprogateway_stripe.php:148
3462
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3463
+ #: classes/gateways/class.pmprogateway_stripe.php:159
3464
+ msgid "Stripe Settings"
3465
+ msgstr "Configuració d’Stripe"
3466
+
3467
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3468
+ #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3469
+ #: adminpages/paymentsettings.php:286
3470
+ #: classes/gateways/class.pmprogateway_stripe.php:153
3471
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3472
+ #: classes/gateways/class.pmprogateway_stripe.php:164
3473
+ msgid "Secret Key"
3474
+ msgstr "Secret Key"
3475
+
3476
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3477
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3478
+ #: adminpages/paymentsettings.php:294
3479
+ #: classes/gateways/class.pmprogateway_stripe.php:161
3480
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3481
+ #: classes/gateways/class.pmprogateway_stripe.php:172
3482
+ msgid "Publishable Key"
3483
+ msgstr "Clau Publicable"
3484
+
3485
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3486
+ #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3487
+ #: adminpages/paymentsettings.php:432
3488
+ #: classes/gateways/class.pmprogateway_stripe.php:169
3489
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3490
+ #: classes/gateways/class.pmprogateway_stripe.php:180
3491
+ msgid "Show Billing Address Fields"
3492
+ msgstr "Mostra els camps d’adreça de facturació"
3493
+
3494
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3495
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3496
+ #: classes/gateways/class.pmprogateway_stripe.php:176
3497
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3498
+ #: classes/gateways/class.pmprogateway_stripe.php:187
3499
+ msgid ""
3500
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3501
+ "the checkout page.<br /><strong>If No, make sure you disable address "
3502
+ "verification in the Stripe dashboard settings.</strong>"
3503
+ msgstr ""
3504
+ "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los "
3505
+ "de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la "
3506
+ "verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
3507
+
3508
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3509
+ #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3510
+ #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3511
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3512
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3513
+ #: classes/gateways/class.pmprogateway_stripe.php:195
3514
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3515
+ msgstr ""
3516
+ "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web Hook "
3517
+ "URL a"
3518
+
3519
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3520
+ #: classes/gateways/class.pmprogateway_stripe.php:567
3521
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3522
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3523
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3524
+ msgid "Subscription Updates"
3525
+ msgstr "Actualització de subscripcions"
3526
+
3527
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3528
+ #: classes/gateways/class.pmprogateway_stripe.php:571
3529
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3530
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3531
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3532
+ msgid ""
3533
+ "Subscription updates, allow you to change the member's subscription values "
3534
+ "at predefined times. Be sure to click Update Profile after making changes."
3535
+ msgstr ""
3536
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3537
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Perfil "
3538
+ "després de fer els canvis."
3539
+
3540
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3541
+ #: classes/gateways/class.pmprogateway_stripe.php:573
3542
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3543
+ #: classes/gateways/class.pmprogateway_stripe.php:584
3544
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3545
+ msgid ""
3546
+ "Subscription updates, allow you to change the member's subscription values "
3547
+ "at predefined times. Be sure to click Update User after making changes."
3548
+ msgstr ""
3549
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3550
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Usuari "
3551
+ "després de fer els canvis."
3552
+
3553
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
3554
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3555
+ #: classes/gateways/class.pmprogateway_stripe.php:579
3556
+ #: classes/gateways/class.pmprogateway_stripe.php:589
3557
+ #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:294
3558
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3559
+ #: pages/billing.php:341
3560
+ msgid "Update"
3561
+ msgstr "Actualitza"
3562
+
3563
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3564
+ #: classes/gateways/class.pmprogateway_stripe.php:769
3565
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3566
+ #: classes/gateways/class.pmprogateway_stripe.php:780
3567
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3568
+ msgid "Could not cancel the old subscription. Updates have not been processed."
3569
+ msgstr ""
3570
+ "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han "
3571
+ "processat."
3572
+
3573
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3574
+ #: classes/gateways/class.pmprogateway_stripe.php:190
3575
+ #: classes/gateways/class.pmprogateway_stripe.php:192
3576
+ #: classes/gateways/class.pmprogateway_stripe.php:199
3577
+ #: classes/gateways/class.pmprogateway_stripe.php:201
3578
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
3579
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
3580
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
3581
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
3582
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3583
+ #: classes/gateways/class.pmprogateway_stripe.php:1214
3584
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3585
+ msgid "Error creating customer record with Stripe:"
3586
+ msgstr "Error creant un registre d’usuari amb Stripe:"
3587
+
3588
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3589
+ #: classes/gateways/class.pmprogateway_stripe.php:1275
3590
+ msgid "Error getting subscription with Stripe:"
3591
+ msgstr "Error agafant la subscripció amb Stripe:"
3592
+
3593
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3594
+ #: classes/gateways/class.pmprogateway_stripe.php:278
3595
+ #: classes/gateways/class.pmprogateway_stripe.php:279
3596
+ #: classes/gateways/class.pmprogateway_stripe.php:286
3597
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3598
+ #: classes/gateways/class.pmprogateway_stripe.php:308
3599
+ #: classes/gateways/class.pmprogateway_stripe.php:311
3600
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
3601
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
3602
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
3603
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
3604
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3605
+ #: classes/gateways/class.pmprogateway_stripe.php:1271
3606
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
3607
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
3608
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
3609
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
3610
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3611
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3612
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3613
+ msgid "Error creating plan with Stripe:"
3614
+ msgstr "Error creant pla amb Stripe:"
3615
+
3616
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3617
+ #: classes/gateways/class.pmprogateway_stripe.php:294
3618
+ #: classes/gateways/class.pmprogateway_stripe.php:295
3619
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3620
+ #: classes/gateways/class.pmprogateway_stripe.php:318
3621
+ #: classes/gateways/class.pmprogateway_stripe.php:324
3622
+ #: classes/gateways/class.pmprogateway_stripe.php:330
3623
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3624
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3625
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3626
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
3627
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
3628
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3629
+ #: classes/gateways/class.pmprogateway_stripe.php:1452
3630
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3631
+ msgid "Error subscribing customer to plan with Stripe:"
3632
+ msgstr "Error subscrivint un pla de comprador amb Stripe:"
3633
+
3634
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3635
+ #: classes/gateways/class.pmprogateway_stripe.php:383
3636
+ #: classes/gateways/class.pmprogateway_stripe.php:389
3637
+ #: classes/gateways/class.pmprogateway_stripe.php:410
3638
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
3639
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
3640
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
3641
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
3642
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
3643
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3644
+ #: classes/gateways/class.pmprogateway_stripe.php:1548
3645
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3646
+ msgid "Could not cancel old subscription."
3647
+ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
3648
+
3649
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3650
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
3651
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
3652
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
3653
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
3654
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
3655
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3656
+ #: classes/gateways/class.pmprogateway_stripe.php:1565
3657
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3658
+ msgid "Could not find the customer."
3659
+ msgstr "No s’ha trobat el comprador."
3660
+
3661
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3662
+ #: paid-memberships-pro.php:134
3663
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53
3664
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3665
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3666
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:133
3667
+ msgid "2Checkout"
3668
+ msgstr "2Checkout"
3669
+
3670
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3671
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
3672
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3673
+ msgid "2Checkout Settings"
3674
+ msgstr "Configuració de 2Checkout"
3675
+
3676
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3677
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3678
+ msgid ""
3679
+ "Go to Account &raquo; User Management in 2Checkout and create a user with "
3680
+ "API Access and API Updating."
3681
+ msgstr ""
3682
+ "Vés a Account &raquo; User Management in 2Checkout i crea un usuari amb API "
3683
+ "Access i API Updating."
3684
+
3685
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3686
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3687
+ msgid "Password for the API user created."
3688
+ msgstr "Clau per a l’usuari de l’API creada."
3689
+
3690
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
3691
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3692
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3693
+ msgstr ""
3694
+ "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number."
3695
+
3696
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3697
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3698
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3699
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3700
+ msgid "Secret Word"
3701
+ msgstr "Paraula Secreta"
3702
+
3703
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3704
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3705
+ msgid ""
3706
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3707
+ "the Secret Word."
3708
+ msgstr ""
3709
+ "Vés a Account &raquo; Site Management. Mira sota Checkout Options i troba la "
3710
+ "Paraula Secreta"
3711
+
3712
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
3713
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3714
+ #: adminpages/paymentsettings.php:495
3715
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3716
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3717
+ msgid "TwoCheckout INS URL"
3718
+ msgstr "TwoCheckout INS URL"
3719
+
3720
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
3721
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3722
+ msgid ""
3723
+ "To fully integrate with 2Checkout, be sure to use the following for your INS "
3724
+ "URL and Approved URL"
3725
+ msgstr ""
3726
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent "
3727
+ "INS URL i Approved URL"
3728
+
3729
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3730
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3731
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3732
+ msgid "Check Out with 2Checkout"
3733
+ msgstr "Check Out amb 2Checkout"
3734
+
3735
+ #: includes/adminpages.php:48 includes/adminpages.php:9
3736
+ #: includes/adminpages.php:39 includes/adminpages.php:47
3737
+ #: includes/adminpages.php:93 includes/adminpages.php:100
3738
+ msgid "Memberships"
3739
+ msgstr "Subscripcions"
3740
+
3741
+ #: includes/adminpages.php:49 includes/adminpages.php:123
3742
+ #: includes/adminpages.php:10 includes/adminpages.php:48
3743
+ #: includes/adminpages.php:107 includes/adminpages.php:114
3744
+ #: includes/adminpages.php:118
3745
+ msgid "Page Settings"
3746
+ msgstr "Pàgina de configuració"
3747
+
3748
+ #: includes/adminpages.php:50 includes/adminpages.php:130
3749
+ #: includes/adminpages.php:11 includes/adminpages.php:49
3750
+ #: includes/adminpages.php:54 includes/adminpages.php:114
3751
+ #: includes/adminpages.php:121 includes/adminpages.php:125
3752
+ msgid "Payment Settings"
3753
+ msgstr "Configuració de Pagament"
3754
+
3755
+ #: includes/adminpages.php:55 includes/adminpages.php:165
3756
+ #: includes/adminpages.php:16 includes/adminpages.php:54
3757
+ #: includes/adminpages.php:79 includes/adminpages.php:149
3758
+ #: includes/adminpages.php:156 includes/adminpages.php:160
3759
+ msgid "Reports"
3760
+ msgstr "Informes"
3761
+
3762
+ #: includes/adminpages.php:57 includes/adminpages.php:179
3763
+ #: includes/adminpages.php:18 includes/adminpages.php:56
3764
+ #: includes/adminpages.php:89 includes/adminpages.php:163
3765
+ #: includes/adminpages.php:170 includes/adminpages.php:174
3766
+ msgid "Discount Codes"
3767
+ msgstr "Codis de descompte"
3768
+
3769
+ #: includes/adminpages.php:61
3770
+ msgid "Updates Required"
3771
+ msgstr "Actualitzacions requerides"
3772
+
3773
+ #: includes/adminpages.php:109 includes/adminpages.php:100
3774
+ #: includes/adminpages.php:104
3775
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3776
+ msgstr "<span class=\"ab-icon\"></span>Subscripcions"
3777
+
3778
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3779
+ #: includes/adminpages.php:265
3780
+ msgid "Docs"
3781
+ msgstr "Docs"
3782
+
3783
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3784
+ #: includes/adminpages.php:265
3785
+ msgid "View PMPro Documentation"
3786
+ msgstr "Mira PMPro Documentation"
3787
+
3788
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3789
+ #: includes/adminpages.php:266
3790
+ msgid "Support"
3791
+ msgstr "Suport"
3792
+
3793
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3794
+ #: includes/adminpages.php:266
3795
+ msgid "Visit Customer Support Forum"
3796
+ msgstr "Visita el fòrum de suport al comprador"
3797
+
3798
+ #: includes/currencies.php:17 includes/currencies.php:87
3799
+ #: includes/currencies.php:7 includes/currencies.php:37
3800
+ #: includes/currencies.php:44 includes/currencies.php:64
3801
+ #: includes/currencies.php:68 includes/currencies.php:75
3802
+ #: includes/currencies.php:85
3803
+ msgid "US Dollars (&#36;)"
3804
+ msgstr "US Dollars (&#36;)"
3805
+
3806
+ #: includes/currencies.php:19 includes/currencies.php:90
3807
+ #: includes/currencies.php:8 includes/currencies.php:9
3808
+ #: includes/currencies.php:40 includes/currencies.php:47
3809
+ #: includes/currencies.php:67 includes/currencies.php:71
3810
+ #: includes/currencies.php:78 includes/currencies.php:88
3811
+ msgid "Euros (&euro;)"
3812
+ msgstr "Euros (&euro;)"
3813
+
3814
+ #: includes/currencies.php:24 includes/currencies.php:89
3815
+ #: includes/currencies.php:9 includes/currencies.php:14
3816
+ #: includes/currencies.php:39 includes/currencies.php:46
3817
+ #: includes/currencies.php:66 includes/currencies.php:70
3818
+ #: includes/currencies.php:77 includes/currencies.php:87
3819
+ msgid "Pounds Sterling (&pound;)"
3820
+ msgstr "Lliura Esterlina (&pound;)"
3821
+
3822
+ #: includes/currencies.php:28
3823
+ msgid "Argentine Peso (&#36;)"
3824
+ msgstr "Peso Argentí (&#36;)"
3825
+
3826
+ #: includes/currencies.php:29 includes/currencies.php:10
3827
+ #: includes/currencies.php:18 includes/currencies.php:28
3828
+ msgid "Australian Dollars (&#36;)"
3829
+ msgstr "Australian Dollars (&#36;)"
3830
+
3831
+ #: includes/currencies.php:31 includes/currencies.php:20
3832
+ #: includes/currencies.php:30
3833
+ msgid "Brazilian Real (R&#36;)"
3834
+ msgstr "Brazilian Real (R&#36;)"
3835
+
3836
+ #: includes/currencies.php:35 includes/currencies.php:88
3837
+ #: includes/currencies.php:12 includes/currencies.php:24
3838
+ #: includes/currencies.php:34 includes/currencies.php:38
3839
+ #: includes/currencies.php:45 includes/currencies.php:65
3840
+ #: includes/currencies.php:69 includes/currencies.php:76
3841
+ #: includes/currencies.php:86
3842
+ msgid "Canadian Dollars (&#36;)"
3843
+ msgstr "Canadian Dollars (&#36;)"
3844
+
3845
+ #: includes/currencies.php:36 includes/currencies.php:13
3846
+ #: includes/currencies.php:25 includes/currencies.php:35
3847
+ msgid "Chinese Yuan"
3848
+ msgstr "Chinese Yuan"
3849
+
3850
+ #: includes/currencies.php:38 includes/currencies.php:13
3851
+ #: includes/currencies.php:14 includes/currencies.php:26
3852
+ #: includes/currencies.php:27 includes/currencies.php:37
3853
+ msgid "Czech Koruna"
3854
+ msgstr "Czech Koruna"
3855
+
3856
+ #: includes/currencies.php:45 includes/currencies.php:14
3857
+ #: includes/currencies.php:15 includes/currencies.php:27
3858
+ #: includes/currencies.php:34 includes/currencies.php:44
3859
+ msgid "Danish Krone"
3860
+ msgstr "Danish Krone"
3861
+
3862
+ #: includes/currencies.php:46 includes/currencies.php:15
3863
+ #: includes/currencies.php:16 includes/currencies.php:28
3864
+ #: includes/currencies.php:35 includes/currencies.php:45
3865
+ msgid "Hong Kong Dollar (&#36;)"
3866
+ msgstr "Hong Kong Dollar (&#36;)"
3867
+
3868
+ #: includes/currencies.php:47 includes/currencies.php:16
3869
+ #: includes/currencies.php:17 includes/currencies.php:29
3870
+ #: includes/currencies.php:36 includes/currencies.php:46
3871
+ msgid "Hungarian Forint"
3872
+ msgstr "Hungarian Forint"
3873
+
3874
+ #: includes/currencies.php:48 includes/currencies.php:18
3875
+ #: includes/currencies.php:30 includes/currencies.php:37
3876
+ #: includes/currencies.php:47
3877
+ msgid "Indian Rupee"
3878
+ msgstr "Indian Rupee"
3879
+
3880
+ #: includes/currencies.php:49 includes/currencies.php:19
3881
+ #: includes/currencies.php:31 includes/currencies.php:38
3882
+ #: includes/currencies.php:48
3883
+ msgid "Indonesia Rupiah"
3884
+ msgstr "Indonesia Rupiah"
3885
+
3886
+ #: includes/currencies.php:50 includes/currencies.php:17
3887
+ #: includes/currencies.php:20 includes/currencies.php:32
3888
+ #: includes/currencies.php:39 includes/currencies.php:49
3889
+ msgid "Israeli Shekel"
3890
+ msgstr "Israeli Shekel"
3891
+
3892
+ #: includes/currencies.php:52 includes/currencies.php:18
3893
+ #: includes/currencies.php:21 includes/currencies.php:34
3894
+ #: includes/currencies.php:41 includes/currencies.php:51
3895
+ msgid "Japanese Yen (&yen;)"
3896
+ msgstr "Japanese Yen (&yen;)"
3897
+
3898
+ #: includes/currencies.php:56 includes/currencies.php:19
3899
+ #: includes/currencies.php:22 includes/currencies.php:38
3900
+ #: includes/currencies.php:45 includes/currencies.php:55
3901
+ msgid "Malaysian Ringgits"
3902
+ msgstr "Malaysian Ringgits"
3903
+
3904
+ #: includes/currencies.php:57 includes/currencies.php:20
3905
+ #: includes/currencies.php:23 includes/currencies.php:39
3906
+ #: includes/currencies.php:46 includes/currencies.php:56
3907
+ msgid "Mexican Peso (&#36;)"
3908
+ msgstr "Mexican Peso (&#36;)"
3909
+
3910
+ #: includes/currencies.php:58
3911
+ msgid "Nigerian Naira (&#8358;)"
3912
+ msgstr "Nigerian Naira (&#8358;)"
3913
+
3914
+ #: includes/currencies.php:59 includes/currencies.php:21
3915
+ #: includes/currencies.php:24 includes/currencies.php:40
3916
+ #: includes/currencies.php:47 includes/currencies.php:57
3917
+ msgid "New Zealand Dollar (&#36;)"
3918
+ msgstr "New Zealand Dollar (&#36;)"
3919
+
3920
+ #: includes/currencies.php:60 includes/currencies.php:22
3921
+ #: includes/currencies.php:25 includes/currencies.php:41
3922
+ #: includes/currencies.php:48 includes/currencies.php:58
3923
+ msgid "Norwegian Krone"
3924
+ msgstr "Norwegian Krone"
3925
+
3926
+ #: includes/currencies.php:61 includes/currencies.php:23
3927
+ #: includes/currencies.php:26 includes/currencies.php:42
3928
+ #: includes/currencies.php:49 includes/currencies.php:59
3929
+ msgid "Philippine Pesos"
3930
+ msgstr "Philippine Pesos"
3931
+
3932
+ #: includes/currencies.php:62 includes/currencies.php:24
3933
+ #: includes/currencies.php:27 includes/currencies.php:43
3934
+ #: includes/currencies.php:50 includes/currencies.php:60
3935
+ msgid "Polish Zloty"
3936
+ msgstr "Polish Zloty"
3937
+
3938
+ #: includes/currencies.php:64 includes/currencies.php:25
3939
+ #: includes/currencies.php:28 includes/currencies.php:45
3940
+ #: includes/currencies.php:52 includes/currencies.php:62
3941
+ msgid "Singapore Dollar (&#36;)"
3942
+ msgstr "Singapore Dollar (&#36;)"
3943
+
3944
+ #: includes/currencies.php:69 includes/currencies.php:50
3945
+ #: includes/currencies.php:57 includes/currencies.php:67
3946
+ msgid "South African Rand (R)"
3947
+ msgstr "South African Rand (R)"
3948
+
3949
+ #: includes/currencies.php:73 includes/currencies.php:30
3950
+ #: includes/currencies.php:50 includes/currencies.php:54
3951
+ #: includes/currencies.php:61 includes/currencies.php:71
3952
+ msgid "South Korean Won"
3953
+ msgstr "South Korean Won"
3954
+
3955
+ #: includes/currencies.php:74 includes/currencies.php:26
3956
+ #: includes/currencies.php:31 includes/currencies.php:51
3957
+ #: includes/currencies.php:55 includes/currencies.php:62
3958
+ #: includes/currencies.php:72
3959
+ msgid "Swedish Krona"
3960
+ msgstr "Swedish Krona"
3961
+
3962
+ #: includes/currencies.php:75 includes/currencies.php:27
3963
+ #: includes/currencies.php:32 includes/currencies.php:52
3964
+ #: includes/currencies.php:56 includes/currencies.php:63
3965
+ #: includes/currencies.php:73
3966
+ msgid "Swiss Franc"
3967
+ msgstr "Swiss Franc"
3968
+
3969
+ #: includes/currencies.php:76 includes/currencies.php:28
3970
+ #: includes/currencies.php:33 includes/currencies.php:53
3971
+ #: includes/currencies.php:57 includes/currencies.php:64
3972
+ #: includes/currencies.php:74
3973
+ msgid "Taiwan New Dollars"
3974
+ msgstr "Taiwan New Dollars"
3975
+
3976
+ #: includes/currencies.php:77 includes/currencies.php:29
3977
+ #: includes/currencies.php:34 includes/currencies.php:54
3978
+ #: includes/currencies.php:58 includes/currencies.php:65
3979
+ #: includes/currencies.php:75
3980
+ msgid "Thai Baht"
3981
+ msgstr "Thai Baht"
3982
+
3983
+ #: includes/currencies.php:78 includes/currencies.php:35
3984
+ #: includes/currencies.php:55 includes/currencies.php:59
3985
+ #: includes/currencies.php:66 includes/currencies.php:76
3986
+ msgid "Turkish Lira"
3987
+ msgstr "Turkish Lira"
3988
+
3989
+ #: includes/currencies.php:79 includes/currencies.php:36
3990
+ #: includes/currencies.php:56 includes/currencies.php:60
3991
+ #: includes/currencies.php:67 includes/currencies.php:77
3992
+ msgid "Vietnamese Dong"
3993
+ msgstr "Vietnamese Dong"
3994
+
3995
+ #: includes/functions.php:243 includes/functions.php:160
3996
+ #: includes/functions.php:196 includes/functions.php:200
3997
+ #: includes/functions.php:202 includes/functions.php:203
3998
+ #: includes/functions.php:204 includes/functions.php:207
3999
+ #, php-format
4000
+ msgid "The price for membership is <strong>%s</strong> now"
4001
+ msgstr "El preu per a la subscripció és <strong>%s</strong> ara"
4002
+
4003
+ #: includes/functions.php:245 includes/functions.php:202
4004
+ #: includes/functions.php:204 includes/functions.php:205
4005
+ #: includes/functions.php:206 includes/functions.php:209
4006
+ #, php-format
4007
+ msgid "<strong>%s</strong> now"
4008
+ msgstr "<strong>%s</strong> ara"
4009
+
4010
+ #: includes/functions.php:254 includes/functions.php:169
4011
+ #: includes/functions.php:205 includes/functions.php:211
4012
+ #: includes/functions.php:213 includes/functions.php:214
4013
+ #: includes/functions.php:215 includes/functions.php:218
4014
+ #, php-format
4015
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
4016
+ msgstr "i després <strong>%s per %s per %d més %s</strong>."
4017
+
4018
+ #: includes/functions.php:258
4019
+ #, php-format
4020
+ msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4021
+ msgstr "i després <strong>%s cada %d %s per %d més pagaments</strong>."
4022
+
4023
+ #: includes/functions.php:263 includes/functions.php:178
4024
+ #: includes/functions.php:214 includes/functions.php:220
4025
+ #: includes/functions.php:222 includes/functions.php:223
4026
+ #: includes/functions.php:224 includes/functions.php:227
4027
+ #, php-format
4028
+ msgid " and then <strong>%s after %d %s</strong>."
4029
+ msgstr "i després <strong>%s després %d %s</strong>."
4030
+
4031
+ #: includes/functions.php:271 includes/functions.php:228
4032
+ #: includes/functions.php:229 includes/functions.php:230
4033
+ #: includes/functions.php:231 includes/functions.php:235
4034
+ #, php-format
4035
+ msgid "The price for membership is <strong>%s per %s</strong>."
4036
+ msgstr "El preu per a la subscripció és de <strong>%s per %s</strong>."
4037
+
4038
+ #: includes/functions.php:273 includes/functions.php:230
4039
+ #: includes/functions.php:233 includes/functions.php:237
4040
+ #, php-format
4041
+ msgid "<strong>%s per %s</strong>."
4042
+ msgstr "<strong>%s per %s</strong>."
4043
+
4044
+ #: includes/functions.php:278 includes/functions.php:233
4045
+ #: includes/functions.php:234 includes/functions.php:235
4046
+ #: includes/functions.php:238 includes/functions.php:242
4047
+ #, php-format
4048
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
4049
+ msgstr "El preu per a la subscripció és de <strong>%s cada %d %s</strong>."
4050
+
4051
+ #: includes/functions.php:280 includes/functions.php:237
4052
+ #: includes/functions.php:240 includes/functions.php:244
4053
+ #, php-format
4054
+ msgid "<strong>%s every %d %s</strong>."
4055
+ msgstr "<strong>%s cada %d %s</strong>."
4056
+
4057
+ #: includes/functions.php:285 includes/functions.php:184
4058
+ #: includes/functions.php:220 includes/functions.php:228
4059
+ #: includes/functions.php:238 includes/functions.php:239
4060
+ #: includes/functions.php:240 includes/functions.php:242
4061
+ #: includes/functions.php:245 includes/functions.php:249
4062
+ #, php-format
4063
+ msgid " and then <strong>%s per %s</strong>."
4064
+ msgstr "i després <strong>%s per %s</strong>."
4065
+
4066
+ #: includes/functions.php:289 includes/functions.php:188
4067
+ #: includes/functions.php:224 includes/functions.php:232
4068
+ #: includes/functions.php:242 includes/functions.php:243
4069
+ #: includes/functions.php:244 includes/functions.php:246
4070
+ #: includes/functions.php:249 includes/functions.php:253
4071
+ #, php-format
4072
+ msgid " and then <strong>%s every %d %s</strong>."
4073
+ msgstr "i després <strong>%s cada %d %s</strong>."
4074
+
4075
+ #: includes/functions.php:307 includes/functions.php:202
4076
+ #: includes/functions.php:238 includes/functions.php:249
4077
+ #: includes/functions.php:260 includes/functions.php:261
4078
+ #: includes/functions.php:262 includes/functions.php:264
4079
+ #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
4080
+ msgid "After your initial payment, your first payment is Free."
4081
+ msgstr "Després del teu pagament inicial, el teu primer pagament és Gratuït."
4082
+
4083
+ #: includes/functions.php:311 includes/functions.php:206
4084
+ #: includes/functions.php:242 includes/functions.php:253
4085
+ #: includes/functions.php:264 includes/functions.php:265
4086
+ #: includes/functions.php:266 includes/functions.php:268
4087
+ #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
4088
+ #, php-format
4089
+ msgid "After your initial payment, your first %d payments are Free."
4090
+ msgstr "Després del teu pagament inicial, el teu %d pagaments són gratuïts."
4091
+
4092
+ #: includes/functions.php:318 includes/functions.php:213
4093
+ #: includes/functions.php:249 includes/functions.php:260
4094
+ #: includes/functions.php:271 includes/functions.php:272
4095
+ #: includes/functions.php:273 includes/functions.php:275
4096
+ #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
4097
+ #, php-format
4098
+ msgid "After your initial payment, your first payment will cost %s."
4099
+ msgstr "Després del teu pagament inicial, el teu primer pagament és de %s."
4100
+
4101
+ #: includes/functions.php:322 includes/functions.php:217
4102
+ #: includes/functions.php:253 includes/functions.php:264
4103
+ #: includes/functions.php:275 includes/functions.php:276
4104
+ #: includes/functions.php:277 includes/functions.php:279
4105
+ #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
4106
+ #, php-format
4107
+ msgid "After your initial payment, your first %d payments will cost %s."
4108
+ msgstr ""
4109
+ "Després del teu pagament inicial, els teus primers %d pagaments seran de %s."
4110
+
4111
+ #: includes/functions.php:333 includes/functions.php:228
4112
+ #: includes/functions.php:264 includes/functions.php:275
4113
+ #: includes/functions.php:286 includes/functions.php:287
4114
+ #: includes/functions.php:288 includes/functions.php:290
4115
+ #: includes/functions.php:293 includes/functions.php:297
4116
+ #, php-format
4117
+ msgid "Customers in %s will be charged %s%% tax."
4118
+ msgstr "Als compradors de %s se’ls carregarà %s%% en impost."
4119
+
4120
+ #: includes/functions.php:347 includes/functions.php:242
4121
+ #: includes/functions.php:278 includes/functions.php:289
4122
+ #: includes/functions.php:300 includes/functions.php:301
4123
+ #: includes/functions.php:302 includes/functions.php:304
4124
+ #: includes/functions.php:307 includes/functions.php:311
4125
+ #, php-format
4126
+ msgid "Membership expires after %d %s."
4127
+ msgstr "La subscripció expira després de %d %s."
4128
+
4129
+ #: includes/functions.php:694 includes/functions.php:491
4130
+ #: includes/functions.php:514 includes/functions.php:525
4131
+ #: includes/functions.php:536 includes/functions.php:537
4132
+ #: includes/functions.php:538 includes/functions.php:545
4133
+ #: includes/functions.php:569 includes/functions.php:570
4134
+ #: includes/functions.php:576 includes/functions.php:592
4135
+ #: includes/functions.php:615
4136
+ msgid "User ID not found."
4137
+ msgstr "No s’ha trobat el teu ID d’usuari"
4138
+
4139
+ #: includes/functions.php:714 includes/functions.php:508
4140
+ #: includes/functions.php:531 includes/functions.php:542
4141
+ #: includes/functions.php:553 includes/functions.php:554
4142
+ #: includes/functions.php:555 includes/functions.php:562
4143
+ #: includes/functions.php:586 includes/functions.php:587
4144
+ #: includes/functions.php:589 includes/functions.php:596
4145
+ #: includes/functions.php:612 includes/functions.php:635
4146
+ msgid "Invalid level."
4147
+ msgstr "Nivell no vàlid"
4148
+
4149
+ #: includes/functions.php:725 includes/functions.php:520
4150
+ #: includes/functions.php:542 includes/functions.php:553
4151
+ #: includes/functions.php:564 includes/functions.php:565
4152
+ #: includes/functions.php:566 includes/functions.php:573
4153
+ #: includes/functions.php:597 includes/functions.php:598
4154
+ #: includes/functions.php:600 includes/functions.php:607
4155
+ #: includes/functions.php:623 includes/functions.php:646
4156
+ msgid "not changing?"
4157
+ msgstr "no està canviant?"
4158
+
4159
+ #: includes/functions.php:742 includes/functions.php:815
4160
+ #: includes/functions.php:839 includes/functions.php:537
4161
+ #: includes/functions.php:559 includes/functions.php:570
4162
+ #: includes/functions.php:581 includes/functions.php:582
4163
+ #: includes/functions.php:583 includes/functions.php:590
4164
+ #: includes/functions.php:592 includes/functions.php:605
4165
+ #: includes/functions.php:614 includes/functions.php:615
4166
+ #: includes/functions.php:617 includes/functions.php:624
4167
+ #: includes/functions.php:626 includes/functions.php:628
4168
+ #: includes/functions.php:631 includes/functions.php:632
4169
+ #: includes/functions.php:633 includes/functions.php:637
4170
+ #: includes/functions.php:640 includes/functions.php:649
4171
+ #: includes/functions.php:656 includes/functions.php:657
4172
+ #: includes/functions.php:663 includes/functions.php:673
4173
+ #: includes/functions.php:674 includes/functions.php:676
4174
+ #: includes/functions.php:683 includes/functions.php:697
4175
+ #: includes/functions.php:698 includes/functions.php:699
4176
+ #: includes/functions.php:700 includes/functions.php:707
4177
+ #: includes/functions.php:722 includes/functions.php:723
4178
+ #: includes/functions.php:746
4179
+ msgid "Error interacting with database"
4180
+ msgstr "Error interactuant amb la base de dades"
4181
+
4182
+ #: includes/functions.php:881 includes/functions.php:920
4183
+ #: includes/functions.php:629 includes/functions.php:651
4184
+ #: includes/functions.php:667 includes/functions.php:668
4185
+ #: includes/functions.php:678 includes/functions.php:681
4186
+ #: includes/functions.php:690 includes/functions.php:697
4187
+ #: includes/functions.php:698 includes/functions.php:706
4188
+ #: includes/functions.php:714 includes/functions.php:717
4189
+ #: includes/functions.php:720 includes/functions.php:736
4190
+ #: includes/functions.php:737 includes/functions.php:738
4191
+ #: includes/functions.php:739 includes/functions.php:741
4192
+ #: includes/functions.php:748 includes/functions.php:753
4193
+ #: includes/functions.php:764 includes/functions.php:777
4194
+ #: includes/functions.php:778 includes/functions.php:780
4195
+ #: includes/functions.php:787 includes/functions.php:803
4196
+ #: includes/functions.php:826
4197
+ msgid "Membership level not found."
4198
+ msgstr "Nivell de subscripció no trobat."
4199
+
4200
+ #: includes/functions.php:1290 includes/functions.php:1100
4201
+ #: includes/functions.php:1101 includes/functions.php:1118
4202
+ #: includes/functions.php:1142 includes/functions.php:1143
4203
+ #: includes/functions.php:1150 includes/functions.php:1157
4204
+ #: includes/functions.php:1173 includes/functions.php:1196
4205
+ msgid "No code was given to check."
4206
+ msgstr "No s’ha donat cap codi per a fer el check"
4207
+
4208
+ #: includes/functions.php:1299 includes/functions.php:1050
4209
+ #: includes/functions.php:1072 includes/functions.php:1088
4210
+ #: includes/functions.php:1099 includes/functions.php:1102
4211
+ #: includes/functions.php:1109 includes/functions.php:1110
4212
+ #: includes/functions.php:1112 includes/functions.php:1113
4213
+ #: includes/functions.php:1127 includes/functions.php:1151
4214
+ #: includes/functions.php:1152 includes/functions.php:1159
4215
+ #: includes/functions.php:1166 includes/functions.php:1182
4216
+ #: includes/functions.php:1205
4217
+ msgid "The discount code could not be found."
4218
+ msgstr "No s’ha trobat el codi de descompte"
4219
+
4220
+ #: includes/functions.php:1314 includes/functions.php:1066
4221
+ #: includes/functions.php:1088 includes/functions.php:1104
4222
+ #: includes/functions.php:1115 includes/functions.php:1118
4223
+ #: includes/functions.php:1124 includes/functions.php:1125
4224
+ #: includes/functions.php:1128 includes/functions.php:1129
4225
+ #: includes/functions.php:1142 includes/functions.php:1166
4226
+ #: includes/functions.php:1167 includes/functions.php:1174
4227
+ #: includes/functions.php:1181 includes/functions.php:1197
4228
+ #: includes/functions.php:1220
4229
+ #, php-format
4230
+ msgid "This discount code goes into effect on %s."
4231
+ msgstr "El codi de descompte serà efectiu a %s."
4232
+
4233
+ #: includes/functions.php:1321 includes/functions.php:1075
4234
+ #: includes/functions.php:1097 includes/functions.php:1113
4235
+ #: includes/functions.php:1124 includes/functions.php:1127
4236
+ #: includes/functions.php:1131 includes/functions.php:1132
4237
+ #: includes/functions.php:1137 includes/functions.php:1138
4238
+ #: includes/functions.php:1149 includes/functions.php:1173
4239
+ #: includes/functions.php:1174 includes/functions.php:1181
4240
+ #: includes/functions.php:1188 includes/functions.php:1204
4241
+ #: includes/functions.php:1227
4242
+ #, php-format
4243
+ msgid "This discount code expired on %s."
4244
+ msgstr "Aquest codi de descompte ha expirat a %s."
4245
+
4246
+ #: includes/functions.php:1331 includes/functions.php:1087
4247
+ #: includes/functions.php:1109 includes/functions.php:1125
4248
+ #: includes/functions.php:1136 includes/functions.php:1139
4249
+ #: includes/functions.php:1141 includes/functions.php:1142
4250
+ #: includes/functions.php:1149 includes/functions.php:1150
4251
+ #: includes/functions.php:1159 includes/functions.php:1183
4252
+ #: includes/functions.php:1184 includes/functions.php:1191
4253
+ #: includes/functions.php:1198 includes/functions.php:1214
4254
+ #: includes/functions.php:1237
4255
+ msgid "This discount code is no longer valid."
4256
+ msgstr "Aquest codi de descompte ja no és vàlid."
4257
+
4258
+ #: includes/functions.php:1344 includes/functions.php:1102
4259
+ #: includes/functions.php:1124 includes/functions.php:1140
4260
+ #: includes/functions.php:1151 includes/functions.php:1154
4261
+ #: includes/functions.php:1155 includes/functions.php:1164
4262
+ #: includes/functions.php:1165 includes/functions.php:1172
4263
+ #: includes/functions.php:1196 includes/functions.php:1197
4264
+ #: includes/functions.php:1204 includes/functions.php:1211
4265
+ #: includes/functions.php:1227 includes/functions.php:1250
4266
+ msgid "This discount code does not apply to this membership level."
4267
+ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
4268
+
4269
+ #: includes/functions.php:1370 includes/functions.php:1110
4270
+ #: includes/functions.php:1132 includes/functions.php:1148
4271
+ #: includes/functions.php:1159 includes/functions.php:1162
4272
+ #: includes/functions.php:1172 includes/functions.php:1180
4273
+ #: includes/functions.php:1181 includes/functions.php:1182
4274
+ #: includes/functions.php:1198 includes/functions.php:1222
4275
+ #: includes/functions.php:1223 includes/functions.php:1230
4276
+ #: includes/functions.php:1237 includes/functions.php:1253
4277
+ #: includes/functions.php:1276
4278
+ msgid "This discount code is okay."
4279
+ msgstr "El codi de descompte és OK"
4280
+
4281
+ #: includes/functions.php:1397 includes/functions.php:1134
4282
+ #: includes/functions.php:1156 includes/functions.php:1172
4283
+ #: includes/functions.php:1183 includes/functions.php:1186
4284
+ #: includes/functions.php:1196 includes/functions.php:1205
4285
+ #: includes/functions.php:1206 includes/functions.php:1223
4286
+ #: includes/functions.php:1247 includes/functions.php:1248
4287
+ #: includes/functions.php:1255 includes/functions.php:1262
4288
+ #: includes/functions.php:1278 includes/functions.php:1301
4289
+ #: includes/functions.php:1395
4290
+ msgid "and"
4291
+ msgstr "i"
4292
+
4293
+ #: includes/functions.php:1624 includes/functions.php:1319
4294
+ #: includes/functions.php:1341 includes/functions.php:1361
4295
+ #: includes/functions.php:1372 includes/functions.php:1375
4296
+ #: includes/functions.php:1385 includes/functions.php:1394
4297
+ #: includes/functions.php:1395 includes/functions.php:1412
4298
+ #: includes/functions.php:1436 includes/functions.php:1437
4299
+ #: includes/functions.php:1450 includes/functions.php:1457
4300
+ #: includes/functions.php:1473 includes/functions.php:1496
4301
+ #: includes/functions.php:1501 includes/functions.php:1620
4302
+ msgid "Sign Up for !!name!! Now"
4303
+ msgstr "Sign Up per !!name!! Ara"
4304
+
4305
+ #: includes/functions.php:1630 includes/functions.php:1325
4306
+ #: includes/functions.php:1347 includes/functions.php:1367
4307
+ #: includes/functions.php:1378 includes/functions.php:1381
4308
+ #: includes/functions.php:1391 includes/functions.php:1400
4309
+ #: includes/functions.php:1401 includes/functions.php:1418
4310
+ #: includes/functions.php:1442 includes/functions.php:1443
4311
+ #: includes/functions.php:1456 includes/functions.php:1463
4312
+ #: includes/functions.php:1479 includes/functions.php:1502
4313
+ #: includes/functions.php:1507 includes/functions.php:1626
4314
+ msgid "Please specify a level id."
4315
+ msgstr "Si us plau especifica un ID de Nivell"
4316
+
4317
+ #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4318
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4319
+ #: includes/init.php:237 includes/init.php:245 includes/profile.php:37
4320
+ msgid "None"
4321
+ msgstr "Cap"
4322
+
4323
+ #: includes/license.php:51
4324
+ msgid "Your license key has been validated."
4325
+ msgstr "La teva clau (license key) ha estat validada."
4326
+
4327
+ #: includes/license.php:81
4328
+ msgid "Paid Memberships Pro Support License"
4329
+ msgstr "Paid Memberships Pro Support License"
4330
+
4331
+ #: includes/license.php:86
4332
+ msgid "License Key"
4333
+ msgstr "License Key"
4334
+
4335
+ #: includes/license.php:89
4336
+ msgid ""
4337
+ "Enter your support license key.</strong> Your license key can be found in "
4338
+ "your membership email receipt or in your <a href=\"http://www."
4339
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
4340
+ "\"_blank\">Membership Account</a>."
4341
+ msgstr ""
4342
+ "Introdueix la teva license key.</strong> Pots trobar la teva license key al "
4343
+ "teu correu electrònic<a href=\"http://www.paidmembershipspro.com/login/?"
4344
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
4345
+
4346
+ #: includes/license.php:91
4347
+ msgid ""
4348
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
4349
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
4350
+ "page to confirm that your account is active and to find your license key."
4351
+ msgstr ""
4352
+ "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
4353
+ "membership-account/\" target=\"_blank\">Membership Account</a> per confirmar "
4354
+ "que el teu compte és actiu i per trobar la teva license key."
4355
+
4356
+ #: includes/license.php:91
4357
+ msgid "Your license is invalid or expired."
4358
+ msgstr "La teva license és invalida o ha expirat"
4359
+
4360
+ #: includes/license.php:93
4361
+ #, php-format
4362
+ msgid ""
4363
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
4364
+ "been used to activate your support license on this site.</p>"
4365
+ msgstr ""
4366
+ "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license key "
4367
+ "ha estat utilitzada per a activar el suport en aquest lloc web</p>"
4368
+
4369
+ #: includes/license.php:100
4370
+ msgid "Enter license key here..."
4371
+ msgstr "Introdueix license key aquí"
4372
+
4373
+ #: includes/license.php:102
4374
+ msgid "Verify Key"
4375
+ msgstr "Verifica la Clau"
4376
+
4377
+ #: includes/license.php:288 includes/license.php:273
4378
+ msgid ""
4379
+ "If you're running Paid Memberships Pro on a production website, we recommend "
4380
+ "an annual support license."
4381
+ msgstr ""
4382
+ "Si utilitzes Paid Memberships Pro en un lloc web, et recomanem una llicència "
4383
+ "de suport anual."
4384
+
4385
+ #: includes/license.php:288 includes/license.php:273
4386
+ msgid "Invalid PMPro License Key."
4387
+ msgstr "Invalid PMPro License Key."
4388
+
4389
+ #: includes/license.php:289 includes/license.php:274
4390
+ msgid "Dismiss"
4391
+ msgstr "Acomiada"
4392
+
4393
+ #: includes/license.php:289 includes/license.php:274
4394
+ msgid "More Info"
4395
+ msgstr "Més informació"
4396
+
4397
+ #: includes/localization.php:26 includes/localization.php:23
4398
+ msgid "Day"
4399
+ msgstr "Dia"
4400
+
4401
+ #: includes/localization.php:28 includes/localization.php:25
4402
+ msgid "Week"
4403
+ msgstr "Setmana"
4404
+
4405
+ #: includes/localization.php:30 includes/localization.php:27
4406
+ msgid "Month"
4407
+ msgstr "Mes"
4408
+
4409
+ #: includes/localization.php:32 includes/localization.php:29
4410
+ msgid "Year"
4411
+ msgstr "Any"
4412
+
4413
+ #: includes/localization.php:37
4414
+ msgid "Days"
4415
+ msgstr "Dies"
4416
+
4417
+ #: includes/localization.php:39
4418
+ msgid "Weeks"
4419
+ msgstr "Setmanes"
4420
+
4421
+ #: includes/localization.php:41
4422
+ msgid "Months"
4423
+ msgstr "Mesos"
4424
+
4425
+ #: includes/localization.php:43
4426
+ msgid "Years"
4427
+ msgstr "Anys"
4428
+
4429
+ #: includes/metaboxes.php:39 includes/metaboxes.php:38
4430
+ msgid ""
4431
+ "This post is already protected for this level because it is within a "
4432
+ "category that requires membership."
4433
+ msgstr ""
4434
+ "Aquest post està protegit per a aquest nivell perquè està dins d’una "
4435
+ "categoria que requereix subscripció."
4436
+
4437
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4438
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
4439
+ msgid "Require Membership"
4440
+ msgstr "Requereix Subscripció"
4441
+
4442
+ #: includes/metaboxes.php:135 includes/metaboxes.php:130
4443
+ msgid ""
4444
+ "Only members of these levels will be able to view posts in this category."
4445
+ msgstr ""
4446
+ "Només els subscriptors d’aquests nivell podran veure els posts d’aquesta "
4447
+ "categoria."
4448
+
4449
+ #: includes/profile.php:36 includes/profile.php:34
4450
+ msgid "Current Level"
4451
+ msgstr "Nivell actual"
4452
+
4453
+ #: includes/profile.php:65 includes/profile.php:54 includes/profile.php:60
4454
+ msgid "Not paying."
4455
+ msgstr "Sense pagament fet."
4456
+
4457
+ #: includes/profile.php:73 includes/profile.php:64 includes/profile.php:68
4458
+ msgid ""
4459
+ "This will not change the subscription at the gateway unless the 'Cancel' "
4460
+ "checkbox is selected below."
4461
+ msgstr ""
4462
+ "Això no canviarà la subscripció a la passarel·la a menys que es seleccioni "
4463
+ "“Cancel·la” a sota."
4464
+
4465
+ #: includes/updates.php:97
4466
+ msgid "Paid Memberships Pro Data Update Required"
4467
+ msgstr "Paid Memberships Pro Data Requereix Actualització"
4468
+
4469
+ #: includes/updates.php:102
4470
+ msgid "Start the Update"
4471
+ msgstr "Actualitza"
4472
+
4473
+ #: includes/updates.php:123
4474
+ msgid "All Paid Memberships Pro updates have finished."
4475
+ msgstr "Totes les actualitzacions de Paid Memberships Pro han acabat."
4476
+
4477
+ #: includes/upgradecheck.php:563 includes/upgradecheck.php:401
4478
+ #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
4479
+ #: includes/upgradecheck.php:442 includes/upgradecheck.php:542
4480
+ #, php-format
4481
+ msgid ""
4482
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4483
+ msgstr ""
4484
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4485
+ "\">Register</a>"
4486
+
4487
+ #: includes/upgradecheck.php:566 includes/upgradecheck.php:404
4488
+ #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
4489
+ #: includes/upgradecheck.php:445 includes/upgradecheck.php:545
4490
+ #, php-format
4491
+ msgid ""
4492
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4493
+ "<a href=\"%s\">Register</a>"
4494
+ msgstr ""
4495
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4496
+ "\">Log In</a> <a href=\"%s\">Register</a>"
4497
+
4498
+ #: includes/upgradecheck.php:570 includes/upgradecheck.php:408
4499
+ #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
4500
+ #: includes/upgradecheck.php:449 includes/upgradecheck.php:549
4501
+ msgid ""
4502
+ "This content is for !!levels!! members only. Visit the site and log in/"
4503
+ "register to read."
4504
+ msgstr ""
4505
+ "Aquest contingut és només per a subscriptors !!levels!! . Visita el lloc i "
4506
+ "fés un log in/registre per a poder llegir."
4507
+
4508
+ #: pages/billing.php:23 pages/billing.php:14
4509
+ #, php-format
4510
+ msgid "Logged in as <strong>%s</strong>."
4511
+ msgstr "Logged in com a <strong>%s</strong>."
4512
+
4513
+ #: pages/billing.php:23 pages/billing.php:14
4514
+ msgid "logout"
4515
+ msgstr "logout"
4516
+
4517
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
4518
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
4519
+ #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4520
+ #: pages/account.php:92 pages/billing.php:16 pages/levels.php:13
4521
+ #: shortcodes/pmpro_account.php:123
4522
+ msgid "Level"
4523
+ msgstr "Nivell"
4524
+
4525
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
4526
+ msgid "Membership Fee"
4527
+ msgstr "Preu de subscripció"
4528
+
4529
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22
4530
+ #: pages/levels.php:70
4531
+ #, php-format
4532
+ msgid "%s every %d %s."
4533
+ msgstr "%s cada %d %s."
4534
+
4535
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24
4536
+ #: pages/levels.php:66
4537
+ #, php-format
4538
+ msgid "%s per %s."
4539
+ msgstr "%s per %s."
4540
+
4541
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29
4542
+ #: pages/billing.php:29 pages/billing.php:33
4543
+ msgid "Duration"
4544
+ msgstr "Durada"
4545
+
4546
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
4547
+ msgid ""
4548
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
4549
+ "paypal.com\">login to PayPal here</a> to update your billing information."
4550
+ msgstr ""
4551
+ "El pagament de la teva subscripció és gestionat per PayPal. Si us plau <a "
4552
+ "href=\"http://www.paypal.com\">login to PayPal aquí</a> per actualitzar la "
4553
+ "teva informació de pagament."
4554
+
4555
+ #: pages/billing.php:78 pages/checkout.php:326 pages/billing.php:65
4556
+ #: pages/billing.php:69 pages/checkout.php:305 pages/checkout.php:307
4557
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
4558
+ #: pages/checkout.php:324 pages/checkout.php:328
4559
+ msgid "First Name"
4560
+ msgstr "Nom"
4561
+
4562
+ #: pages/billing.php:82 pages/checkout.php:330 pages/billing.php:69
4563
+ #: pages/billing.php:73 pages/checkout.php:309 pages/checkout.php:311
4564
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
4565
+ #: pages/checkout.php:328 pages/checkout.php:332
4566
+ msgid "Last Name"
4567
+ msgstr "Cognoms"
4568
+
4569
+ #: pages/billing.php:86 pages/checkout.php:334 pages/billing.php:73
4570
+ #: pages/billing.php:77 pages/checkout.php:313 pages/checkout.php:315
4571
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
4572
+ #: pages/checkout.php:332 pages/checkout.php:336
4573
+ msgid "Address 1"
4574
+ msgstr "Adreça 1"
4575
+
4576
+ #: pages/billing.php:90 pages/checkout.php:338 pages/billing.php:77
4577
+ #: pages/billing.php:81 pages/checkout.php:317 pages/checkout.php:319
4578
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
4579
+ #: pages/checkout.php:336 pages/checkout.php:340
4580
+ msgid "Address 2"
4581
+ msgstr "Adreça 2"
4582
+
4583
+ #: pages/billing.php:100 pages/checkout.php:348 pages/billing.php:87
4584
+ #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
4585
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
4586
+ #: pages/checkout.php:346 pages/checkout.php:350
4587
+ msgid "City"
4588
+ msgstr "Ciutat"
4589
+
4590
+ #: pages/billing.php:104 pages/checkout.php:352 pages/billing.php:91
4591
+ #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
4592
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
4593
+ #: pages/checkout.php:350 pages/checkout.php:354
4594
+ msgid "State"
4595
+ msgstr "State/província"
4596
+
4597
+ #: pages/billing.php:108 pages/checkout.php:356 pages/billing.php:95
4598
+ #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
4599
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
4600
+ #: pages/checkout.php:354 pages/checkout.php:358
4601
+ msgid "Postal Code"
4602
+ msgstr "Codi Postal"
4603
+
4604
+ #: pages/billing.php:117 pages/checkout.php:365 pages/billing.php:104
4605
+ #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
4606
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
4607
+ #: pages/checkout.php:363 pages/checkout.php:367
4608
+ msgid "City, State Zip"
4609
+ msgstr "Ciutat, CP"
4610
+
4611
+ #: pages/billing.php:170 pages/checkout.php:418 pages/billing.php:157
4612
+ #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
4613
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
4614
+ #: pages/checkout.php:416 pages/checkout.php:420
4615
+ msgid "Country"
4616
+ msgstr "País"
4617
+
4618
+ #: pages/billing.php:195 pages/checkout.php:443 pages/billing.php:182
4619
+ #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
4620
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
4621
+ #: pages/checkout.php:441 pages/checkout.php:445
4622
+ msgid "Phone"
4623
+ msgstr "Telèfon"
4624
+
4625
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
4626
+ #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
4627
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
4628
+ #: pages/checkout.php:218 pages/checkout.php:436 pages/checkout.php:438
4629
+ #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4630
+ #: pages/checkout.php:455 pages/checkout.php:460
4631
+ msgid "E-mail Address"
4632
+ msgstr "Correu electrònic"
4633
+
4634
+ #: pages/billing.php:210 pages/checkout.php:466 pages/billing.php:197
4635
+ #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
4636
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
4637
+ #: pages/checkout.php:464 pages/checkout.php:469
4638
+ msgid "Confirm E-mail"
4639
+ msgstr "Confirma Correu electrònic"
4640
+
4641
+ #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4642
+ #: pages/billing.php:230
4643
+ msgid "Credit Card Information"
4644
+ msgstr "Informació de la Tarjeta de Crèdit"
4645
+
4646
+ #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4647
+ #: pages/billing.php:230
4648
+ #, php-format
4649
+ msgid "We accept %s"
4650
+ msgstr "Acceptem %s"
4651
+
4652
+ #: pages/billing.php:360 pages/billing.php:309 pages/billing.php:313
4653
+ #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
4654
+ msgid ""
4655
+ "This subscription is not recurring. So you don't need to update your billing "
4656
+ "information."
4657
+ msgstr ""
4658
+ "Aquesta subscripció no és recurrent. Per tant, no necessites actualitzar la "
4659
+ "teva informació de pagament."
4660
+
4661
+ #: pages/cancel.php:26 pages/cancel.php:14
4662
+ msgid "Are you sure you want to cancel your membership?"
4663
+ msgstr "Estàs segur que vols cancel·lar la teva subscripció?"
4664
+
4665
+ #: pages/cancel.php:32
4666
+ #, php-format
4667
+ msgid "Are you sure you want to cancel your %s membership?"
4668
+ msgstr "Estàs segur que vols cancel·lar la teva %s subscripció?"
4669
+
4670
+ #: pages/cancel.php:37 pages/cancel.php:17
4671
+ msgid "Yes, cancel my account"
4672
+ msgstr "Sí, cancel·la el meu compte"
4673
+
4674
+ #: pages/cancel.php:38 pages/cancel.php:19
4675
+ msgid "No, keep my account"
4676
+ msgstr "No, conserva el meu compte"
4677
+
4678
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
4679
+ msgid "My Memberships"
4680
+ msgstr "Les meves subscripcions"
4681
+
4682
+ #: pages/cancel.php:77
4683
+ msgid "Cancel All Memberships"
4684
+ msgstr "Cancel·la totes les subscripcions"
4685
+
4686
+ #: pages/cancel.php:86 pages/cancel.php:22
4687
+ msgid "Click here to go to the home page."
4688
+ msgstr "Clica aquí per anar a la pàgina d’inici"
4689
+
4690
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4691
+ #: pages/checkout.php:28
4692
+ msgid ""
4693
+ "Almost done. Review the membership information and pricing below then "
4694
+ "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4695
+ msgstr ""
4696
+ "Gairebé hem acabat. Revisa la teva subscripció i el preu a sota "
4697
+ "<strong>clica el botó de ”Completa Pagament” </strong> per a finalitzar."
4698
+
4699
+ #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
4700
+ #: pages/checkout.php:35 pages/checkout.php:42
4701
+ msgid "change"
4702
+ msgstr "canvi"
4703
+
4704
+ #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
4705
+ #: pages/checkout.php:43 pages/checkout.php:50
4706
+ #, php-format
4707
+ msgid "You have selected the <strong>%s</strong> membership level."
4708
+ msgstr "Has escollit el nivell de subscripció <strong>%s</strong>."
4709
+
4710
+ #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
4711
+ #: pages/checkout.php:60
4712
+ #, php-format
4713
+ msgid ""
4714
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4715
+ "been applied to your order.</p>"
4716
+ msgstr ""
4717
+ "<p class=\"pmpro_level_discount_applied\">El<strong>%s</strong> codi s’ha "
4718
+ "aplicat a la teva comanda.</p>"
4719
+
4720
+ #: pages/checkout.php:72 services/applydiscountcode.php:89
4721
+ #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4722
+ #: pages/checkout.php:71 services/applydiscountcode.php:74
4723
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4724
+ msgid "Click here to change your discount code"
4725
+ msgstr "Clica aquí per canviar el teu codi de descompte"
4726
+
4727
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4728
+ #: pages/checkout.php:66 pages/checkout.php:73
4729
+ msgid "Click here to enter your discount code"
4730
+ msgstr "Clica aquí per introduir el teu codi de descompte"
4731
+
4732
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4733
+ #: pages/checkout.php:66 pages/checkout.php:73
4734
+ msgid "Do you have a discount code?"
4735
+ msgstr "Tens un codi de descompte?"
4736
+
4737
+ #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
4738
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
4739
+ msgid "Account Information"
4740
+ msgstr "Informació del compte"
4741
+
4742
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4743
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4744
+ msgid "Already have an account?"
4745
+ msgstr "Ja tens un compte?"
4746
+
4747
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4748
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4749
+ msgid "Log in here"
4750
+ msgstr "Log in aquí"
4751
+
4752
+ #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
4753
+ #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
4754
+ msgid "Confirm Password"
4755
+ msgstr "Confirma Clau"
4756
+
4757
+ #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
4758
+ #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
4759
+ msgid "Confirm E-mail Address"
4760
+ msgstr "Confirma correu electrònic"
4761
+
4762
+ #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
4763
+ #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
4764
+ msgid "Full Name"
4765
+ msgstr "Nom complet"
4766
+
4767
+ #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
4768
+ #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
4769
+ msgid "LEAVE THIS BLANK"
4770
+ msgstr "DEIXA AIXÒ EN BLANC"
4771
+
4772
+ #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
4773
+ #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
4774
+ #, php-format
4775
+ msgid ""
4776
+ "You are logged in as <strong>%s</strong>. If you would like to use a "
4777
+ "different account for this membership, <a href=\"%s\">log out now</a>."
4778
+ msgstr ""
4779
+ "Estàs logged in com a <strong>%s</strong>.Si vols utilitzar un compte "
4780
+ "diferent per a aquesta subscripció, <a href=\"%s\">log out now</a>."
4781
+
4782
+ #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
4783
+ #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:292
4784
+ #: pages/checkout.php:299
4785
+ msgid "Choose your Payment Method"
4786
+ msgstr "Escull el mètode de pagament"
4787
+
4788
+ #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
4789
+ #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:300
4790
+ #: pages/checkout.php:307
4791
+ msgid "Check Out with a Credit Card Here"
4792
+ msgstr "Check Out amb tarjeta de crèdit aquí"
4793
+
4794
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
4795
+ #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4796
+ #: pages/checkout.php:681 pages/checkout.php:690
4797
+ #, php-format
4798
+ msgid "I agree to the %s"
4799
+ msgstr "Estic d’acord amb %s"
4800
+
4801
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
4802
+ #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4803
+ #: pages/checkout.php:701 pages/checkout.php:710
4804
+ msgid "Complete Payment"
4805
+ msgstr "Completa pagament"
4806
+
4807
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
4808
+ #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4809
+ #: pages/checkout.php:723 pages/checkout.php:732
4810
+ msgid "Processing..."
4811
+ msgstr "Processant…"
4812
+
4813
+ #: pages/confirmation.php:12
4814
+ msgid ""
4815
+ "Your payment has been submitted. Your membership will be activated shortly."
4816
+ msgstr ""
4817
+ "El teu pagament ha estat enviat. La teva subscripció estarà activa aviat."
4818
+
4819
+ #: pages/confirmation.php:14
4820
+ #, php-format
4821
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
4822
+ msgstr ""
4823
+ "Moltes gràcies per la teva subscripció a %s. La teva %s subscripció està "
4824
+ "activa."
4825
+
4826
+ #: pages/confirmation.php:28
4827
+ #, php-format
4828
+ msgid ""
4829
+ "Below are details about your membership account and a receipt for your "
4830
+ "initial membership invoice. A welcome email with a copy of your initial "
4831
+ "membership invoice has been sent to %s."
4832
+ msgstr ""
4833
+ "A sota hi ha els detalls del teu compte de subscripció i l’import del teu "
4834
+ "pagament inicial. Un correu electrònic de benviguda amb la còpia de la "
4835
+ "factura s’ha enviat a %s."
4836
+
4837
+ #: pages/confirmation.php:41 pages/invoice.php:22
4838
+ #, php-format
4839
+ msgid "Invoice #%s on %s"
4840
+ msgstr "Factura #%s a %s"
4841
+
4842
+ #: pages/confirmation.php:43 pages/invoice.php:24
4843
+ msgid "Print"
4844
+ msgstr "Imprimeix"
4845
+
4846
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
4847
+ #: pages/confirmation.php:45 pages/confirmation.php:102 pages/invoice.php:26
4848
+ msgid "Account"
4849
+ msgstr "Compte"
4850
+
4851
+ #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
4852
+ #: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
4853
+ msgid "Membership Expires"
4854
+ msgstr "La subscripció acaba"
4855
+
4856
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
4857
+ #: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
4858
+ msgid "Payment Method"
4859
+ msgstr "Mètode de pagament"
4860
+
4861
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
4862
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
4863
+ #: pages/invoice.php:109
4864
+ msgid "Total Billed"
4865
+ msgstr "Total facturat"
4866
+
4867
+ #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
4868
+ #: pages/invoice.php:67
4869
+ msgid "ending in"
4870
+ msgstr "acaba a"
4871
+
4872
+ #: pages/confirmation.php:97
4873
+ #, php-format
4874
+ msgid ""
4875
+ "Below are details about your membership account. A welcome email has been "
4876
+ "sent to %s."
4877
+ msgstr ""
4878
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
4879
+ "de benviguda s’ha enviat a %s."
4880
+
4881
+ #: pages/confirmation.php:105 pages/confirmation.php:103
4882
+ msgid "Pending"
4883
+ msgstr "Pendent"
4884
+
4885
+ #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
4886
+ #: pages/invoice.php:139
4887
+ msgid "View Your Membership Account &rarr;"
4888
+ msgstr "Mira el teu compte de subscripció &rarr;"
4889
+
4890
+ #: pages/confirmation.php:115 pages/confirmation.php:113
4891
+ msgid ""
4892
+ "If your account is not activated within a few minutes, please contact the "
4893
+ "site owner."
4894
+ msgstr ""
4895
+ "Si el teu compte no s’activa en uns minuts, si us plau contacta amb "
4896
+ "l’administrador del lloc web."
4897
+
4898
+ #: pages/invoice.php:82 pages/invoice.php:80
4899
+ msgid "Coupon"
4900
+ msgstr "Cupó"
4901
+
4902
+ #: pages/invoice.php:108 pages/invoice.php:106
4903
+ msgid "Invoice #"
4904
+ msgstr "Factura #"
4905
+
4906
+ #: pages/invoice.php:134 pages/invoice.php:132
4907
+ msgid "No invoices found."
4908
+ msgstr "No s’han trobat factures."
4909
+
4910
+ #: pages/invoice.php:145 pages/invoice.php:143
4911
+ msgid "&larr; View All Invoices"
4912
+ msgstr "&larr; Mira totes les factures"
4913
+
4914
+ #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
4915
+ msgid "Free"
4916
+ msgstr "Gratuït"
4917
+
4918
+ #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
4919
+ #: pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
4920
+ msgid "Select"
4921
+ msgstr "Tria"
4922
+
4923
+ #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
4924
+ #: pages/levels.php:57 pages/levels.php:123 shortcodes/pmpro_account.php:59
4925
+ msgid "Renew"
4926
+ msgstr "Renova"
4927
+
4928
+ #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:117
4929
+ #: pages/levels.php:129
4930
+ msgid "Your&nbsp;Level"
4931
+ msgstr "El teu&nbsp;Nivell"
4932
+
4933
+ #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:129
4934
+ #: pages/levels.php:145
4935
+ msgid "&larr; Return to Your Account"
4936
+ msgstr "&larr; Torna al teu compte"
4937
+
4938
+ #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:131
4939
+ #: pages/levels.php:147
4940
+ msgid "&larr; Return to Home"
4941
+ msgstr "&larr; Torna a la pàgina d’inici"
4942
+
4943
+ #: paid-memberships-pro.php:125 adminpages/orders.php:398
4944
+ #: adminpages/orders.php:448 paid-memberships-pro.php:115
4945
+ #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
4946
+ #: paid-memberships-pro.php:124
4947
+ msgid "Testing Only"
4948
+ msgstr "Només test"
4949
+
4950
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:120
4951
+ #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
4952
+ #: paid-memberships-pro.php:129
4953
+ msgid "PayPal Payflow Pro/PayPal Pro"
4954
+ msgstr "PayPal Payflow Pro/PayPal Pro"
4955
+
4956
+ #: paid-memberships-pro.php:135 paid-memberships-pro.php:125
4957
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
4958
+ #: paid-memberships-pro.php:134
4959
+ msgid "Cybersource"
4960
+ msgstr "Cybersource"
4961
+
4962
+ #: paid-memberships-pro.php:156
4963
+ msgid "Once a month"
4964
+ msgstr "Un cop al mes"
4965
+
4966
+ #: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
4967
+ #: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
4968
+ msgid "Your membership status has been updated - Thank you!"
4969
+ msgstr "El teu status de subscripció ha estat actualitzat - Moltes gràcies!"
4970
+
4971
+ #: preheaders/account.php:12 preheaders/levels.php:24 preheaders/account.php:11
4972
+ #: preheaders/levels.php:23
4973
+ msgid ""
4974
+ "Sorry, your request could not be completed - please try again in a few "
4975
+ "moments."
4976
+ msgstr ""
4977
+ "Perdò, el què has demanat no es pot completar - si us plau torna-ho a provar "
4978
+ "en uns moments."
4979
+
4980
+ #: preheaders/billing.php:270 preheaders/checkout.php:336
4981
+ #: preheaders/billing.php:258 preheaders/billing.php:265
4982
+ #: preheaders/billing.php:266 preheaders/billing.php:279
4983
+ #: preheaders/checkout.php:332 preheaders/checkout.php:458
4984
+ #: preheaders/checkout.php:464 preheaders/checkout.php:465
4985
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481
4986
+ #: preheaders/checkout.php:482
4987
+ msgid "Please complete all required fields."
4988
+ msgstr "Si us plau completa tots els camps requerits."
4989
+
4990
+ #: preheaders/billing.php:273 preheaders/checkout.php:344
4991
+ #: preheaders/billing.php:263 preheaders/billing.php:268
4992
+ #: preheaders/billing.php:269 preheaders/billing.php:284
4993
+ #: preheaders/checkout.php:340 preheaders/checkout.php:466
4994
+ #: preheaders/checkout.php:473 preheaders/checkout.php:474
4995
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491
4996
+ #: preheaders/checkout.php:492
4997
+ msgid "Your email addresses do not match. Please try again."
4998
+ msgstr "El teu correu electrònic no coincideix. Si us plau torna a intentar-ho"
4999
+
5000
+ #: preheaders/billing.php:276 preheaders/checkout.php:349
5001
+ #: preheaders/billing.php:268 preheaders/billing.php:271
5002
+ #: preheaders/billing.php:272 preheaders/billing.php:289
5003
+ #: preheaders/checkout.php:345 preheaders/checkout.php:471
5004
+ #: preheaders/checkout.php:478 preheaders/checkout.php:480
5005
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497
5006
+ #: preheaders/checkout.php:498
5007
+ msgid "The email address entered is in an invalid format. Please try again."
5008
+ msgstr ""
5009
+ "El correu electrònic està en un format incorrecte. Si us plau, torna a "
5010
+ "provar-ho."
5011
+
5012
+ #: preheaders/billing.php:280 preheaders/billing.php:274
5013
+ #: preheaders/billing.php:275 preheaders/billing.php:276
5014
+ #: preheaders/billing.php:295
5015
+ msgid "All good!"
5016
+ msgstr "Tot bé!"
5017
+
5018
+ #: preheaders/billing.php:350 preheaders/billing.php:340
5019
+ #: preheaders/billing.php:345 preheaders/billing.php:346
5020
+ #: preheaders/billing.php:370
5021
+ #, php-format
5022
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5023
+ msgstr ""
5024
+ "Informació actualitzada. <a href=\"%s\">&laquo; torna al meu compte</a>"
5025
+
5026
+ #: preheaders/billing.php:356 preheaders/billing.php:347
5027
+ #: preheaders/billing.php:351 preheaders/billing.php:352
5028
+ #: preheaders/billing.php:378 preheaders/billing.php:380
5029
+ msgid "Error updating billing information."
5030
+ msgstr "Error actualitzant la informació de facturació."
5031
+
5032
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
5033
+ msgid "Your membership has been cancelled."
5034
+ msgstr "La teva subscripció ha estat cancel·lada."
5035
+
5036
+ #: preheaders/checkout.php:32 preheaders/checkout.php:358
5037
+ #: preheaders/checkout.php:28 preheaders/checkout.php:30
5038
+ #: preheaders/checkout.php:31 preheaders/checkout.php:354
5039
+ #: preheaders/checkout.php:480 preheaders/checkout.php:487
5040
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5041
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
5042
+ msgid "Invalid gateway."
5043
+ msgstr "Passarel·la invàlida."
5044
+
5045
+ #: preheaders/checkout.php:95 preheaders/checkout.php:88
5046
+ #: preheaders/checkout.php:89 preheaders/checkout.php:91
5047
+ #: preheaders/checkout.php:96
5048
+ msgid "Checkout: Payment Information"
5049
+ msgstr "Checkout: Informació de pagament."
5050
+
5051
+ #: preheaders/checkout.php:100
5052
+ msgid "Set Up Your Account"
5053
+ msgstr "Configura el teu compte"
5054
+
5055
+ #: preheaders/checkout.php:304 preheaders/checkout.php:300
5056
+ #: preheaders/checkout.php:416 preheaders/checkout.php:421
5057
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
5058
+ msgstr "Hi ha errors de JavaScript. Si us plau contacta el webmaster."
5059
+
5060
+ #: preheaders/checkout.php:339 preheaders/checkout.php:335
5061
+ #: preheaders/checkout.php:461 preheaders/checkout.php:468
5062
+ #: preheaders/checkout.php:473 preheaders/checkout.php:485
5063
+ #: preheaders/checkout.php:486
5064
+ msgid "Your passwords do not match. Please try again."
5065
+ msgstr "La teva clau no coincideix. Si us plau, torna a intentar-ho."
5066
+
5067
+ #: preheaders/checkout.php:354 preheaders/checkout.php:350
5068
+ #: preheaders/checkout.php:476 preheaders/checkout.php:483
5069
+ #: preheaders/checkout.php:486 preheaders/checkout.php:488
5070
+ #: preheaders/checkout.php:503 preheaders/checkout.php:504
5071
+ #, php-format
5072
+ msgid "Please check the box to agree to the %s."
5073
+ msgstr "Si us plau, clica per acceptar %s."
5074
+
5075
+ #: preheaders/checkout.php:361 preheaders/checkout.php:357
5076
+ #: preheaders/checkout.php:483 preheaders/checkout.php:490
5077
+ #: preheaders/checkout.php:495 preheaders/checkout.php:512
5078
+ #: preheaders/checkout.php:513
5079
+ msgid "Are you a spammer?"
5080
+ msgstr "Ets un spammer?"
5081
+
5082
+ #: preheaders/checkout.php:381 preheaders/checkout.php:377
5083
+ #: preheaders/checkout.php:503 preheaders/checkout.php:510
5084
+ #: preheaders/checkout.php:515 preheaders/checkout.php:518
5085
+ #: preheaders/checkout.php:535 preheaders/checkout.php:536
5086
+ msgid "That username is already taken. Please try another."
5087
+ msgstr "Aquest nom d’usuari ja està en ús. Si us plau escull-ne un altre."
5088
+
5089
+ #: preheaders/checkout.php:386 preheaders/checkout.php:382
5090
+ #: preheaders/checkout.php:508 preheaders/checkout.php:515
5091
+ #: preheaders/checkout.php:520 preheaders/checkout.php:524
5092
+ #: preheaders/checkout.php:541 preheaders/checkout.php:542
5093
+ msgid "That email address is already taken. Please try another."
5094
+ msgstr "Aquest correu electrònic ja està en ús. Si us plau escull-ne un altre."
5095
+
5096
+ #: preheaders/checkout.php:420 preheaders/checkout.php:397
5097
+ #: preheaders/checkout.php:399 preheaders/checkout.php:416
5098
+ #: preheaders/checkout.php:525 preheaders/checkout.php:532
5099
+ #: preheaders/checkout.php:537 preheaders/checkout.php:544
5100
+ #: preheaders/checkout.php:561 preheaders/checkout.php:562
5101
+ #, php-format
5102
+ msgid "reCAPTCHA failed. (%s) Please try again."
5103
+ msgstr "reCAPTCHA ha fallat. (%s) Si us plau, torna a intentar-ho."
5104
+
5105
+ #: preheaders/checkout.php:505 preheaders/checkout.php:482
5106
+ #: preheaders/checkout.php:484 preheaders/checkout.php:501
5107
+ #: preheaders/checkout.php:647 preheaders/checkout.php:654
5108
+ #: preheaders/checkout.php:659 preheaders/checkout.php:683
5109
+ #: preheaders/checkout.php:701 preheaders/checkout.php:702
5110
+ msgid "Payment accepted."
5111
+ msgstr "Pagament acceptat"
5112
+
5113
+ #: preheaders/checkout.php:513 preheaders/checkout.php:490
5114
+ #: preheaders/checkout.php:492 preheaders/checkout.php:509
5115
+ #: preheaders/checkout.php:653 preheaders/checkout.php:660
5116
+ #: preheaders/checkout.php:665 preheaders/checkout.php:691
5117
+ #: preheaders/checkout.php:709 preheaders/checkout.php:710
5118
+ msgid ""
5119
+ "Unknown error generating account. Please contact us to set up your "
5120
+ "membership."
5121
+ msgstr ""
5122
+ "Error desconegut generant el compte. Si us plau, contacta amb nosaltres per "
5123
+ "a configurar la teva subscripció."
5124
+
5125
+ #: preheaders/checkout.php:575 preheaders/checkout.php:550
5126
+ #: preheaders/checkout.php:552 preheaders/checkout.php:569
5127
+ #: preheaders/checkout.php:571 preheaders/checkout.php:785
5128
+ #: preheaders/checkout.php:792 preheaders/checkout.php:797
5129
+ #: preheaders/checkout.php:825 preheaders/checkout.php:844
5130
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
5131
+ msgid ""
5132
+ "Your payment was accepted, but there was an error setting up your account. "
5133
+ "Please contact us."
5134
+ msgstr ""
5135
+ "El teu pagament ha estat acceptat, però hi ha hagut un error configurant el "
5136
+ "teu compte. Si us plau contacta amb nosaltres."
5137
+
5138
+ #: preheaders/checkout.php:722 preheaders/checkout.php:691
5139
+ #: preheaders/checkout.php:693 preheaders/checkout.php:710
5140
+ #: preheaders/checkout.php:712 preheaders/checkout.php:953
5141
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
5142
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5143
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
5144
+ msgid ""
5145
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5146
+ "authorized, but we cancelled the order immediately. You should not try to "
5147
+ "submit this form again. Please contact the site owner to fix this issue."
5148
+ msgstr ""
5149
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5150
+ "tarjeta ha estat autoritzada, però hem cancel·lat l’orde immediatament. No "
5151
+ "hauries de tornar a enviar aquest formulari. Si us plau contacta amb els "
5152
+ "administradors de la pàgina per a resoldre aquest problema."
5153
+
5154
+ #: preheaders/checkout.php:725 preheaders/checkout.php:694
5155
+ #: preheaders/checkout.php:696 preheaders/checkout.php:713
5156
+ #: preheaders/checkout.php:715 preheaders/checkout.php:956
5157
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
5158
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5159
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
5160
+ msgid ""
5161
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5162
+ "was charged, but we couldn't assign your membership. You should not submit "
5163
+ "this form again. Please contact the site owner to fix this issue."
5164
+ msgstr ""
5165
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5166
+ "tarjeta de credit ha estat carregada, però no hem pogut assignar una "
5167
+ "subscripció. No hauries de tornar a enviar aquest formulari. Si us plau "
5168
+ "contacta amb els administradors de la pàgina per a resoldre aquest problema."
5169
+
5170
+ #: preheaders/checkout.php:736 preheaders/checkout.php:705
5171
+ #: preheaders/checkout.php:707 preheaders/checkout.php:724
5172
+ #: preheaders/checkout.php:726 preheaders/checkout.php:967
5173
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
5174
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5175
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
5176
+ #, php-format
5177
+ msgid ""
5178
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
5179
+ "will be processed."
5180
+ msgstr ""
5181
+ "Has de <a href=\"%s\">configurar la passarel·la de pagament</a> abans de "
5182
+ "processar cap pagament."
5183
+
5184
+ #: preheaders/checkout.php:738 preheaders/checkout.php:707
5185
+ #: preheaders/checkout.php:709 preheaders/checkout.php:726
5186
+ #: preheaders/checkout.php:728 preheaders/checkout.php:969
5187
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
5188
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5189
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
5190
+ msgid "A Payment Gateway must be set up before any payments will be processed."
5191
+ msgstr ""
5192
+ "Has de configurar la passarel·la de pagament abans de processar cap pagament."
5193
+
5194
+ #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5195
+ #: scheduled/crons.php:38 scheduled/crons.php:61
5196
+ #, php-format
5197
+ msgid "Membership expired email sent to %s. "
5198
+ msgstr "Correu electrònic d’expiració de subscripció enviat a %s. "
5199
+
5200
+ #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5201
+ #: scheduled/crons.php:80 scheduled/crons.php:84
5202
+ #, php-format
5203
+ msgid "Membership expiring email sent to %s. "
5204
+ msgstr "Correu electrònic d’expiració enviat a %s. "
5205
+
5206
+ #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5207
+ #: scheduled/crons.php:157
5208
+ #, php-format
5209
+ msgid "Credit card expiring email sent to %s. "
5210
+ msgstr "Correu electrònic d’expiració de tarjeta de crèdit enviat a %s. "
5211
+
5212
+ #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5213
+ #: scheduled/crons.php:208 scheduled/crons.php:210
5214
+ #, php-format
5215
+ msgid "Trial ending email sent to %s. "
5216
+ msgstr "Correu electrònic de finalització de període de prova enviat a %s. "
5217
+
5218
+ #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
5219
+ #, php-format
5220
+ msgid "The %s code has been applied to your order. "
5221
+ msgstr "El codi %s s’ha aplicat a la teva comanda."
5222
+
5223
+ #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
5224
+ #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
5225
+ #, php-format
5226
+ msgid "The <strong>%s</strong> code has been applied to your order."
5227
+ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
5228
+
5229
+ #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:133
5230
+ #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5231
+ msgid ""
5232
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5233
+ "Information From Authorize.net"
5234
+ msgstr ""
5235
+ "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information "
5236
+ "From Authorize.net"
5237
+
5238
+ #: services/stripe-webhook.php:272 services/stripe-webhook.php:176
5239
+ #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5240
+ #: services/stripe-webhook.php:271
5241
+ #, php-format
5242
+ msgid ""
5243
+ "%s has had their payment subscription cancelled by Stripe. Please check that "
5244
+ "this user's membership is cancelled on your site if it should be."
5245
+ msgstr ""
5246
+ "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma que la "
5247
+ "subscripció d’aquest membre ha estat cancel·lada al teu lloc web (per si no "
5248
+ "fós correcte)."
5249
+
5250
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
5251
+ msgid "Billing"
5252
+ msgstr "Facturació"
5253
+
5254
+ #: shortcodes/pmpro_account.php:65 pages/account.php:36
5255
+ #: shortcodes/pmpro_account.php:62
5256
+ msgid "Update Billing Info"
5257
+ msgstr "Actualitza l’informació de facturació"
5258
+
5259
+ #: shortcodes/pmpro_account.php:71 pages/account.php:42
5260
+ #: shortcodes/pmpro_account.php:68
5261
+ msgid "Change"
5262
+ msgstr "Canvi"
5263
+
5264
+ #: shortcodes/pmpro_account.php:93 pages/account.php:64
5265
+ #: shortcodes/pmpro_account.php:90
5266
+ msgid "View all Membership Options"
5267
+ msgstr "Mira totes les opcions de subscripció"
5268
+
5269
+ #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5270
+ #: pages/account.php:71 shortcodes/pmpro_account.php:99
5271
+ msgid "My Account"
5272
+ msgstr "El meu compte"
5273
+
5274
+ #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5275
+ #: pages/account.php:80 shortcodes/pmpro_account.php:110
5276
+ msgid "Edit Profile"
5277
+ msgstr "Edita el perfil"
5278
+
5279
+ #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5280
+ #: pages/account.php:81 shortcodes/pmpro_account.php:111
5281
+ msgid "Change Password"
5282
+ msgstr "Canvia Clau"
5283
+
5284
+ #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5285
+ #: pages/account.php:129 shortcodes/pmpro_account.php:118
5286
+ msgid "Past Invoices"
5287
+ msgstr "Factures anteriors"
5288
+
5289
+ #: shortcodes/pmpro_account.php:127 pages/account.php:93
5290
+ #: shortcodes/pmpro_account.php:124
5291
+ msgid "Amount"
5292
+ msgstr "Quantitat"
5293
+
5294
+ #: shortcodes/pmpro_account.php:155 pages/account.php:121 pages/account.php:140
5295
+ #: pages/account.php:144 shortcodes/pmpro_account.php:152
5296
+ msgid "View All Invoices"
5297
+ msgstr "Mira totes les Factures"
5298
+
5299
+ #: shortcodes/pmpro_account.php:162 pages/account.php:128 pages/account.php:146
5300
+ #: pages/account.php:150 shortcodes/pmpro_account.php:159
5301
+ msgid "Member Links"
5302
+ msgstr "Links dels subscriptors"
5303
+
5304
+ #: adminpages/addons.php:79
5305
+ msgid "Disabled"
5306
+ msgstr "Desactivat"
5307
+
5308
+ #: adminpages/addons.php:79
5309
+ msgid "Enabled"
5310
+ msgstr "Activat"
5311
+
5312
+ #: adminpages/discountcodes.php:437
5313
+ msgid "Billing Ammount"
5314
+ msgstr "Quantitat de facturació"
5315
+
5316
+ #: adminpages/discountcodes.php:480
5317
+ msgid "Check this to set an expiration date for new sign ups."
5318
+ msgstr ""
5319
+ "Comproveu això per establir una data de caducitat per als nous sign ups."
5320
+
5321
+ #: adminpages/discountcodes.php:497
5322
+ msgid ""
5323
+ "How long before the expiration expires. Note that any future payments will "
5324
+ "be cancelled when the membership expires."
5325
+ msgstr ""
5326
+ "Temps abans que expiri l’expiració. Nota que els futurs pagament es "
5327
+ "cancel·laran quan expiri la subscripció."
5328
+
5329
+ #: adminpages/emailsettings.php:98
5330
+ msgid "If unchecked, all emails from \"WordPress &lt;"
5331
+ msgstr "Si no està clicat, tots els correus electrònics desde \"WordPress &lt;"
5332
+
5333
+ #: adminpages/membershiplevels.php:364
5334
+ msgid ""
5335
+ "Stripe integration currently only supports billing periods of \"Month\" or "
5336
+ "\"Year\"."
5337
+ msgstr ""
5338
+ "Integració d’Stripe actualment només suporta períodes facturació de “Mes” o "
5339
+ "“Any”."
5340
+
5341
+ #: adminpages/membershiplevels.php:398
5342
+ msgid ""
5343
+ "2Checkout integration does not currently support custom trials. You can do "
5344
+ "one period trials by setting an initial payment different from the billing "
5345
+ "amount."
5346
+ msgstr ""
5347
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
5348
+ "període de prova configurant un pagament inicial diferent del total de "
5349
+ "facturació."
5350
+
5351
+ #: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
5352
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
5353
+ msgid "Billing Cycle"
5354
+ msgstr "Cicle de facturació"
5355
+
5356
+ #: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
5357
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
5358
+ msgid "Trial Cycle"
5359
+ msgstr "Cicle de prova"
5360
+
5361
+ #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
5362
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
5363
+ msgid "every"
5364
+ msgstr "cada"
5365
+
5366
+ #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
5367
+ msgid "Never"
5368
+ msgstr "Mai"
5369
+
5370
+ #: adminpages/pagesettings.php:73
5371
+ #, php-format
5372
+ msgid "Membership %s"
5373
+ msgstr "Subscripció %s"
5374
+
5375
+ #: adminpages/paymentsettings.php:170
5376
+ msgid ""
5377
+ "Payflow Pro currently only supports one-time payments. Users will not be "
5378
+ "able to checkout for levels with recurring payments."
5379
+ msgstr ""
5380
+ "Payflow Pro només suporta pagaments d’un cop. Els usuaris no podran fer el "
5381
+ "checkout per nivells amb pagaments recurrents."
5382
+
5383
+ #: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
5384
+ msgid ""
5385
+ "If values are given, tax will be applied for any members ordering from the "
5386
+ "selected state. For more complex tax rules, use the \"pmpro_tax\" filter."
5387
+ msgstr ""
5388
+ "Si es posen valors, l’impost s’aplicarà per a tots els membres que comprin "
5389
+ "des de l’estat seleccionat. Per regles més complexes d’impostos utilitza el "
5390
+ "filtre \"pmpro_tax”."
5391
+
5392
+ #: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
5393
+ msgid "Use SSL"
5394
+ msgstr "Utilitza SSL"
5395
+
5396
+ #: adminpages/paymentsettings.php:425
5397
+ msgid "Required by this Gateway Option"
5398
+ msgstr "Requerit per aquesta opció de Passarel·la"
5399
+
5400
+ #: adminpages/paymentsettings.php:432
5401
+ msgid ""
5402
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
5403
+ "the checkout page."
5404
+ msgstr ""
5405
+ "Stripe no requereix camps d’adreça de facturació. Escull “No” per amagar-los "
5406
+ "de la pàgina de checkout."
5407
+
5408
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
5409
+ #: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
5410
+ msgid "HTTPS Nuclear Option"
5411
+ msgstr "HTTPS Nuclear Option"
5412
+
5413
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
5414
+ #: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
5415
+ msgid ""
5416
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
5417
+ "Check this if you are using SSL and have warnings on your checkout pages."
5418
+ msgstr ""
5419
+ "Utilitza la \"Nuclear Option\" per utilitzar (HTTPS) URLs a les teves "
5420
+ "pàgines segures. Clica si estàs utilitzant SSL i tens missatges "
5421
+ "d’advertiment a les teves pàgines de checkout"
5422
+
5423
+ #: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
5424
+ #: adminpages/paymentsettings.php:498
5425
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
5426
+ msgid ""
5427
+ "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
5428
+ msgstr ""
5429
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar 2Checkout "
5430
+ "INS URL "
5431
+
5432
+ #: adminpages/reports/login.php:26 adminpages/reports/login.php:27
5433
+ msgid "Visits Today"
5434
+ msgstr "Visites avui"
5435
+
5436
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:29
5437
+ msgid "Visits All Time"
5438
+ msgstr "Visites sempre"
5439
+
5440
+ #: adminpages/reports/login.php:31 adminpages/reports/login.php:32
5441
+ msgid "Views Today"
5442
+ msgstr "Vistes avui"
5443
+
5444
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:34
5445
+ msgid "Views All Time"
5446
+ msgstr "Vistes sempre"
5447
+
5448
+ #: adminpages/reports/login.php:36 adminpages/reports/login.php:37
5449
+ msgid "Logins Today"
5450
+ msgstr "Logins avui"
5451
+
5452
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:39
5453
+ msgid "Logins All Time"
5454
+ msgstr "Logins sempre"
5455
+
5456
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
5457
+ msgid "Cancellations"
5458
+ msgstr "Cancel·lacions"
5459
+
5460
+ #: adminpages/reports/memberships.php:86
5461
+ msgid "Other Stats"
5462
+ msgstr "Altres estadístiques"
5463
+
5464
+ #: adminpages/reports/memberships.php:88
5465
+ msgid "Monthly Recurring Revenue (MRR)"
5466
+ msgstr "Beneficis Recurrents Mensuals (MRR)"
5467
+
5468
+ #: adminpages/reports/memberships.php:92
5469
+ msgid "Cancellation Rate"
5470
+ msgstr "Rati de cancel·lació"
5471
+
5472
+ #: adminpages/reports/memberships.php:96
5473
+ msgid "Lifetime Value (LTV)"
5474
+ msgstr "Lifetime Value (LTV)"
5475
+
5476
+ #: classes/class.pmproemail.php:342 classes/class.pmproemail.php:345
5477
+ #: classes/class.pmproemail.php:363 classes/class.pmproemail.php:366
5478
+ #: classes/class.pmproemail.php:375
5479
+ #, php-format
5480
+ msgid "Your billing information has been udpated at %s"
5481
+ msgstr "La teva informació de facturació ha estat actualitzada a %s"
5482
+
5483
+ #: classes/class.pmproemail.php:386 classes/class.pmproemail.php:390
5484
+ #: classes/class.pmproemail.php:416 classes/class.pmproemail.php:419
5485
+ #: classes/class.pmproemail.php:428
5486
+ #, php-format
5487
+ msgid "Billing information has been udpated for %s at %s"
5488
+ msgstr "Informació de facturació actualitzada per %s a %s"
5489
+
5490
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5491
+ #: classes/class.pmproemail.php:799
5492
+ msgid "membership has been cancelled"
5493
+ msgstr "La subscripció ha estat cancel·lada"
5494
+
5495
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
5496
+ msgid "API Private Key"
5497
+ msgstr "API Private Key"
5498
+
5499
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
5500
+ msgid ""
5501
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
5502
+ "here."
5503
+ msgstr ""
5504
+ "Vés a API in 2Checkout i genera un nou key pair. Enganxa la Private Key aquí."
5505
+
5506
+ #: includes/currencies.php:11
5507
+ msgid "Brazilian Real (&#36;)"
5508
+ msgstr "Brazilian Real (&#36;)"
5509
+
5510
+ #: includes/currencies.php:29 includes/currencies.php:49
5511
+ msgid "South African Rand"
5512
+ msgstr "South African Rand"
5513
+
5514
+ #: includes/functions.php:173 includes/functions.php:209
5515
+ #: includes/functions.php:215 includes/functions.php:217
5516
+ #: includes/functions.php:218 includes/functions.php:219
5517
+ #: includes/functions.php:222
5518
+ #, php-format
5519
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
5520
+ msgstr "i després <strong>%s cada %d %s per %d mes %s</strong>."
5521
+
5522
+ #: includes/profile.php:82 includes/profile.php:84
5523
+ msgid "User is not paying."
5524
+ msgstr "L’usuari no està pagant"
5525
+
5526
+ #: pages/account.php:10
5527
+ msgid "Your membership is <strong>active</strong>."
5528
+ msgstr "La teva subscripció és <strong>active</strong>."
5529
+
5530
+ #: pages/account.php:34 pages/account.php:38
5531
+ #, php-format
5532
+ msgid "Your first payment will cost %s."
5533
+ msgstr "El teu primer pagament serà de %s."
5534
+
5535
+ #: pages/account.php:38 pages/account.php:42
5536
+ #, php-format
5537
+ msgid "Your first %d payments will cost %s."
5538
+ msgstr "El teu primer %d pagament serà de %s."
5539
+
5540
+ #: pages/account.php:87 pages/account.php:91
5541
+ msgid "Billing Information"
5542
+ msgstr "Informació de Facturació"
5543
+
5544
+ #: pages/account.php:114 pages/account.php:118
5545
+ msgid "Edit Billing Information"
5546
+ msgstr "Edita l’Informació de Facturació"
5547
+
5548
+ #: pages/account.php:152 pages/account.php:156
5549
+ msgid "Update Billing Information"
5550
+ msgstr "Actualitza l’Informació de Facturació"
5551
+
5552
+ #: pages/account.php:155 pages/account.php:159
5553
+ msgid "Change Membership Level"
5554
+ msgstr "Canvia el nivell de subscripció"
5555
+
5556
+ #: pages/account.php:157 pages/account.php:161
5557
+ msgid "Cancel Membership"
5558
+ msgstr "Cancel·la la subscripció"
5559
+
5560
+ #: pages/checkout.php:51 pages/checkout.php:52
5561
+ #, php-format
5562
+ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
5563
+ msgstr "<p>El codi <strong>%s</strong> s’ha aplicat a la teva comanda.</p>"
5564
+
5565
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
5566
+ msgid "Submit and Pay with 2CheckOut"
5567
+ msgstr "Envia i paga amb 2CheckOut"
5568
+
5569
+ #: pages/confirmation.php:12
5570
+ msgid ""
5571
+ "Your payment has been submitted to PayPal. Your membership will be activated "
5572
+ "shortly."
5573
+ msgstr ""
5574
+ "El teu pagament s’ha realitzat via PayPal. La teva subscripció s’activarà "
5575
+ "aviat."
5576
+
5577
+ #: pages/confirmation.php:95 pages/confirmation.php:97
5578
+ #, php-format
5579
+ msgid ""
5580
+ "Below are details about your membership account. A welcome email with has "
5581
+ "been sent to %s."
5582
+ msgstr ""
5583
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
5584
+ "de benvinguda s’ha enviat a %s."
5585
+
5586
+ #: pages/invoice.php:120 pages/invoice.php:122
5587
+ msgid "View Invoice"
5588
+ msgstr "Mira Factura"
5589
+
5590
+ #: pages/levels.php:15
5591
+ msgid "Subscription Information"
5592
+ msgstr "Informació de subscripció"
5593
+
5594
+ #: pages/levels.php:33
5595
+ msgid "--"
5596
+ msgstr "--"
5597
+
5598
+ #: pages/levels.php:51
5599
+ #, php-format
5600
+ msgid "%s per %s for %d more %s."
5601
+ msgstr "%s per %s per %d més %s."
5602
+
5603
+ #: pages/levels.php:55
5604
+ #, php-format
5605
+ msgid "%s every %d %s for %d more %s."
5606
+ msgstr "%s cada %d %s per %d més %s."
5607
+
5608
+ #: pages/levels.php:60
5609
+ #, php-format
5610
+ msgid "%s after %d %s."
5611
+ msgstr "%s després %d %s."
5612
+
5613
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100
5614
+ #: preheaders/checkout.php:102 preheaders/checkout.php:109
5615
+ msgid "Set up Your Account"
5616
+ msgstr "Configura el teu compte"
languages/pmpro-ca_ES.mo ADDED
Binary file
languages/pmpro-ca_ES.po ADDED
@@ -0,0 +1,5616 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-31 12:04+0100\n"
9
+ "PO-Revision-Date: 2016-02-06 17:11+0100\n"
10
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "Last-Translator: \n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: ca\n"
18
+
19
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
20
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
21
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
22
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
23
+ #: adminpages/orders-print.php:12 adminpages/orders.php:5
24
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
25
+ #: adminpages/updates.php:5 includes/license.php:36 adminpages/addons.php:21
26
+ #: adminpages/pagesettings.php:5
27
+ msgid "You do not have permissions to perform this action."
28
+ msgstr "Vostè no té permisos per a realitzar aquesta acció."
29
+
30
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170
31
+ #: includes/adminpages.php:53 includes/adminpages.php:151
32
+ #: adminpages/addons.php:80 adminpages/admin_header.php:133
33
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14
34
+ #: includes/adminpages.php:52 includes/adminpages.php:69
35
+ #: includes/adminpages.php:135 includes/adminpages.php:142
36
+ #: includes/adminpages.php:146
37
+ msgid "Add Ons"
38
+ msgstr "Complement"
39
+
40
+ #: adminpages/addons.php:71 adminpages/addons.php:87
41
+ #, php-format
42
+ msgid "Last checked on %s at %s."
43
+ msgstr "Darrera comprovació: %s a %s."
44
+
45
+ #: adminpages/addons.php:72 adminpages/addons.php:88
46
+ msgid "Check Again"
47
+ msgstr "Comproveu una vegada més"
48
+
49
+ #: adminpages/addons.php:76 adminpages/orders.php:712 adminpages/addons.php:92
50
+ #: adminpages/orders.php:605 adminpages/orders.php:741
51
+ msgid "All"
52
+ msgstr "Tot"
53
+
54
+ #: adminpages/addons.php:77 adminpages/addons.php:93
55
+ msgid "Active"
56
+ msgstr "Actiu"
57
+
58
+ #: adminpages/addons.php:78 adminpages/addons.php:94
59
+ msgid "Inactive"
60
+ msgstr "Inactiu"
61
+
62
+ #: adminpages/addons.php:79 adminpages/addons.php:95
63
+ msgid "Update Available"
64
+ msgstr "Actualització disponible"
65
+
66
+ #: adminpages/addons.php:80 adminpages/addons.php:96
67
+ msgid "Not Installed"
68
+ msgstr "No instal·lat"
69
+
70
+ #: adminpages/addons.php:93 adminpages/addons.php:109
71
+ msgid "Add On Name"
72
+ msgstr "Add On Nom"
73
+
74
+ #: adminpages/addons.php:94 adminpages/addons.php:110
75
+ msgid "Type"
76
+ msgstr "Tipus"
77
+
78
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:296
80
+ #: adminpages/membershiplevels.php:298
81
+ msgid "Description"
82
+ msgstr "Descripció"
83
+
84
+ #: adminpages/addons.php:118 adminpages/addons.php:134
85
+ msgid "No Add Ons found."
86
+ msgstr "No s’ha trobat Add Ons"
87
+
88
+ #: adminpages/addons.php:179 adminpages/addons.php:184
89
+ #: adminpages/addons.php:196 adminpages/addons.php:195
90
+ #: adminpages/addons.php:200 adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr "Instal · la ara"
93
+
94
+ #: adminpages/addons.php:185 adminpages/addons.php:191
95
+ #: adminpages/addons.php:197 adminpages/addons.php:203
96
+ #: adminpages/addons.php:201 adminpages/addons.php:207
97
+ #: adminpages/addons.php:213 adminpages/addons.php:219
98
+ msgid "Download"
99
+ msgstr "Descarrega"
100
+
101
+ #: adminpages/addons.php:190 adminpages/addons.php:202
102
+ #: adminpages/addons.php:206 adminpages/addons.php:218
103
+ msgid "Update License"
104
+ msgstr "Actualitza Llicència"
105
+
106
+ #: adminpages/addons.php:208 adminpages/addons.php:224
107
+ msgid "Deactivate"
108
+ msgstr "Desactiva"
109
+
110
+ #: adminpages/addons.php:208 adminpages/addons.php:224
111
+ #, php-format
112
+ msgid "Deactivate %s"
113
+ msgstr "Desactiva %s"
114
+
115
+ #: adminpages/addons.php:212 adminpages/addons.php:228
116
+ msgid "Activate"
117
+ msgstr "Activa"
118
+
119
+ #: adminpages/addons.php:212 adminpages/addons.php:228
120
+ #, php-format
121
+ msgid "Activate %s"
122
+ msgstr "Activa %s"
123
+
124
+ #: adminpages/addons.php:213 adminpages/addons.php:229
125
+ msgid "Delete"
126
+ msgstr "Esborra"
127
+
128
+ #: adminpages/addons.php:213 adminpages/addons.php:229
129
+ #, php-format
130
+ msgid "Delete %s"
131
+ msgstr "Esborra %s"
132
+
133
+ #: adminpages/addons.php:223 adminpages/addons.php:239
134
+ msgid "PMPro Free"
135
+ msgstr "PMPro Free"
136
+
137
+ #: adminpages/addons.php:225 adminpages/addons.php:241
138
+ msgid "PMPro Core"
139
+ msgstr "PMPro Core"
140
+
141
+ #: adminpages/addons.php:227 adminpages/addons.php:243
142
+ msgid "PMPro Plus"
143
+ msgstr "PMPro Plus"
144
+
145
+ #: adminpages/addons.php:229 adminpages/addons.php:245
146
+ msgid "WordPress.org"
147
+ msgstr "WordPress.org"
148
+
149
+ #: adminpages/addons.php:231 adminpages/addons.php:247
150
+ msgid "N/A"
151
+ msgstr "N/A"
152
+
153
+ #: adminpages/addons.php:240 adminpages/addons.php:256
154
+ #, php-format
155
+ msgid "Version %s"
156
+ msgstr "Versió %s"
157
+
158
+ #: adminpages/addons.php:245 adminpages/addons.php:261
159
+ #, php-format
160
+ msgid "By %s"
161
+ msgstr "Per %s"
162
+
163
+ #: adminpages/addons.php:252 adminpages/addons.php:268
164
+ #, php-format
165
+ msgid "More information about %s"
166
+ msgstr "Mes informació sobre %s"
167
+
168
+ #: adminpages/addons.php:254 adminpages/addons.php:270
169
+ msgid "View details"
170
+ msgstr "Mira detalls"
171
+
172
+ #: adminpages/addons.php:259 adminpages/addons.php:275
173
+ msgid "Visit plugin site"
174
+ msgstr "Visita el lloc del plugin"
175
+
176
+ #: adminpages/admin_header.php:25
177
+ msgid "Add a membership level to get started."
178
+ msgstr "Afegeix un nivell de subscripció per començar"
179
+
180
+ #: adminpages/admin_header.php:27
181
+ msgid "Set up the membership pages"
182
+ msgstr "Configura les pàgines de subscripció"
183
+
184
+ #: adminpages/admin_header.php:29
185
+ msgid "Set up your SSL certificate and payment gateway"
186
+ msgstr "Configureu el vostre certificat SSL i la passarel·la de pagament"
187
+
188
+ #: adminpages/admin_header.php:38
189
+ msgid ""
190
+ "The billing details for some of your membership levels is not supported by "
191
+ "Stripe."
192
+ msgstr ""
193
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
194
+ "compatible amb Stripe."
195
+
196
+ #: adminpages/admin_header.php:46
197
+ msgid ""
198
+ "The billing details for this level are not supported by Stripe. Please "
199
+ "review the notes in the Billing Details section below."
200
+ msgstr ""
201
+ "Les dades de facturació per a aquest nivell no són compatibles amb Stripe , "
202
+ "Llegiu les notes de la secció Detalls de facturació a sota."
203
+
204
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
205
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
206
+ msgid "The levels with issues are highlighted below."
207
+ msgstr "Els nivells amb problemes es destaquen a continuació."
208
+
209
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
210
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
211
+ msgid "Please edit your levels"
212
+ msgstr "Si us plau, editi els seus nivells"
213
+
214
+ #: adminpages/admin_header.php:58
215
+ msgid ""
216
+ "The billing details for some of your membership levels is not supported by "
217
+ "Payflow."
218
+ msgstr ""
219
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
220
+ "compatible amb Payflow."
221
+
222
+ #: adminpages/admin_header.php:66
223
+ msgid ""
224
+ "The billing details for this level are not supported by Payflow. Please "
225
+ "review the notes in the Billing Details section below."
226
+ msgstr ""
227
+ "Les dades de facturació per a aquest nivell no són compatibles amb Payflow, "
228
+ "Llegiu les notes de la secció Detalls de facturació a sota."
229
+
230
+ #: adminpages/admin_header.php:78
231
+ msgid ""
232
+ "The billing details for some of your membership levels is not supported by "
233
+ "Braintree."
234
+ msgstr ""
235
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
236
+ "compatible amb Braintree."
237
+
238
+ #: adminpages/admin_header.php:86
239
+ msgid ""
240
+ "The billing details for this level are not supported by Braintree. Please "
241
+ "review the notes in the Billing Details section below."
242
+ msgstr ""
243
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
244
+ "Braintree. Llegiu les notes de la secció Detalls de facturació a sota."
245
+
246
+ #: adminpages/admin_header.php:98
247
+ msgid ""
248
+ "The billing details for some of your membership levels is not supported by "
249
+ "TwoCheckout."
250
+ msgstr ""
251
+ "Les dades de facturació d’alguns dels seus nivells de subscripció no són "
252
+ "compatible amb TwoCheckout."
253
+
254
+ #: adminpages/admin_header.php:107
255
+ msgid ""
256
+ "The billing details for this level are not supported by 2Checkout. Please "
257
+ "review the notes in the Billing Details section below."
258
+ msgstr ""
259
+ "Les dades de facturació per a aquest nivell no són compatibles amb "
260
+ "2Checkout. Llegiu les notes de la secció Detalls de facturació a sota."
261
+
262
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
263
+ msgid "Plugin Support"
264
+ msgstr "Suport per al Plugin"
265
+
266
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
267
+ msgid "User Forum"
268
+ msgstr "Fòrum dels usuaris"
269
+
270
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
271
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:69
272
+ #: includes/adminpages.php:70 includes/adminpages.php:116
273
+ #: includes/metaboxes.php:131 adminpages/admin_header.php:128
274
+ #: adminpages/admin_header.php:149 adminpages/membershiplevels.php:490
275
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
276
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
277
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
278
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:44
279
+ #: includes/adminpages.php:64 includes/adminpages.php:65
280
+ #: includes/adminpages.php:100 includes/adminpages.php:107
281
+ #: includes/adminpages.php:111 includes/metaboxes.php:126
282
+ msgid "Membership Levels"
283
+ msgstr "Nivells de subscripció"
284
+
285
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
286
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
287
+ #: adminpages/pagesettings.php:120
288
+ msgid "Pages"
289
+ msgstr "Pàgines"
290
+
291
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
292
+ #: adminpages/admin_header.php:151
293
+ msgid "Payment Gateway &amp; SSL"
294
+ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
295
+
296
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
297
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
298
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
299
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
300
+ #: pages/account.php:52 pages/account.php:56 pages/account.php:77
301
+ #: shortcodes/pmpro_account.php:106
302
+ msgid "Email"
303
+ msgstr "Correu electrònic"
304
+
305
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
306
+ #: adminpages/admin_header.php:153
307
+ msgid "Advanced"
308
+ msgstr "Avançat"
309
+
310
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
311
+ #: adminpages/advancedsettings.php:42
312
+ msgid "Your advanced settings have been updated."
313
+ msgstr "La vostra configuració avançada s’han actualitzat."
314
+
315
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
316
+ #, php-format
317
+ msgid ""
318
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
319
+ "a>."
320
+ msgstr ""
321
+ "Aquest contingut és per a subscriptors de nivell !!levels!! . <a href=\"%s"
322
+ "\">Registra’t aquí</a>."
323
+
324
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
325
+ #, php-format
326
+ msgid ""
327
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
328
+ "\">Register here</a>.)"
329
+ msgstr ""
330
+ "Si us plau <a href=\"%s\">login</a> per a veure aquest contingut. (<a href="
331
+ "\"%s\">Registra’t aquí</a>.)"
332
+
333
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
334
+ msgid ""
335
+ "This content is for members only. Visit the site and log in/register to read."
336
+ msgstr ""
337
+ "Aquest contingut és només per a subscriptors. Visita el lloc i registra’t/"
338
+ "log in per a llegir."
339
+
340
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:52
341
+ #: includes/adminpages.php:144 adminpages/advancedsettings.php:79
342
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
343
+ #: includes/adminpages.php:51 includes/adminpages.php:64
344
+ #: includes/adminpages.php:128 includes/adminpages.php:135
345
+ #: includes/adminpages.php:139
346
+ msgid "Advanced Settings"
347
+ msgstr "Configuració Avançada"
348
+
349
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
350
+ #: adminpages/advancedsettings.php:92
351
+ msgid "Message for Logged-in Non-members"
352
+ msgstr "Missatge per a No subscriptors “Logged-in”"
353
+
354
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
355
+ #: adminpages/advancedsettings.php:96
356
+ msgid ""
357
+ "This message replaces the post content for non-members. Available variables"
358
+ msgstr ""
359
+ "Aquest missatge reemplaça el contingut de l’entrada per als no membres. Hi "
360
+ "ha variables disponibles"
361
+
362
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
363
+ #: adminpages/advancedsettings.php:101
364
+ msgid "Message for Logged-out Users"
365
+ msgstr "Missatge per als usuaris desconnectats (Logged-out)"
366
+
367
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
368
+ #: adminpages/advancedsettings.php:105
369
+ msgid "This message replaces the post content for logged-out visitors."
370
+ msgstr ""
371
+ "Aquest missatge remplaça el contingut del post per a visitants desconnectats "
372
+ "(logged-out)"
373
+
374
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
375
+ #: adminpages/advancedsettings.php:110
376
+ msgid "Message for RSS Feed"
377
+ msgstr "Missatge per a RSS Feed"
378
+
379
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
380
+ #: adminpages/advancedsettings.php:114
381
+ msgid "This message replaces the post content in RSS feeds."
382
+ msgstr ""
383
+ "Aquest missatge reemplaça el contingut del seu missatge en els canals RSS."
384
+
385
+ #: adminpages/advancedsettings.php:122
386
+ msgid "Filter searches and archives?"
387
+ msgstr "Filtra recerques i arxius?"
388
+
389
+ #: adminpages/advancedsettings.php:126
390
+ msgid ""
391
+ "No - Non-members will see restricted posts/pages in searches and archives."
392
+ msgstr ""
393
+ "No - No subscriptors veuran posts restringits/pàgines en les recerques i els "
394
+ "arxius."
395
+
396
+ #: adminpages/advancedsettings.php:127
397
+ msgid ""
398
+ "Yes - Only members will see restricted posts/pages in searches and archives."
399
+ msgstr ""
400
+ "Sí - Només els subscriptors veuran posts restringits/pàgines en les "
401
+ "recerques i els arxius."
402
+
403
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
404
+ #: adminpages/advancedsettings.php:120
405
+ msgid "Show Excerpts to Non-Members?"
406
+ msgstr "Mostrar extractes als no membres?"
407
+
408
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
409
+ #: adminpages/advancedsettings.php:124
410
+ msgid "No - Hide excerpts."
411
+ msgstr "No - Amaga extractes."
412
+
413
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
414
+ #: adminpages/advancedsettings.php:125
415
+ msgid "Yes - Show excerpts."
416
+ msgstr "Sí - Mostra extractes."
417
+
418
+ #: adminpages/advancedsettings.php:144
419
+ msgid "Hide Ads From Members?"
420
+ msgstr "Amaga els anuncis als subscriptors?"
421
+
422
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
423
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
424
+ #: adminpages/paymentsettings.php:210
425
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
426
+ #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
427
+ #: adminpages/advancedsettings.php:187 adminpages/advancedsettings.php:194
428
+ #: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:206
429
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
430
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
431
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
432
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:414
433
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
434
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
435
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
436
+ #: classes/gateways/class.pmprogateway_stripe.php:173
437
+ #: classes/gateways/class.pmprogateway_stripe.php:174
438
+ #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:101
439
+ #: includes/profile.php:105 includes/profile.php:121 includes/profile.php:123
440
+ msgid "No"
441
+ msgstr "No"
442
+
443
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
444
+ #: adminpages/advancedsettings.php:136
445
+ msgid "Hide Ads From All Members"
446
+ msgstr "Amaga Anuncis de tots els subscriptors"
447
+
448
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
449
+ #: adminpages/advancedsettings.php:137
450
+ msgid "Hide Ads From Certain Members"
451
+ msgstr "Amaga els anuncis a certs subscriptors"
452
+
453
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
454
+ #: adminpages/advancedsettings.php:144
455
+ msgid "Ads from the following plugins will be automatically turned off"
456
+ msgstr "Els anuncis dels següents plugins seràn desactivats automàticament"
457
+
458
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
459
+ #: adminpages/advancedsettings.php:145
460
+ msgid "To hide ads in your template code, use code like the following"
461
+ msgstr ""
462
+ "Per amagar els anuncis al codi de la plantilla, utilitzeu el codi següent"
463
+
464
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
465
+ #: adminpages/advancedsettings.php:156
466
+ msgid "Choose Levels to Hide Ads From"
467
+ msgstr "Escull els nivells on amagar els anuncis"
468
+
469
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
470
+ #: adminpages/advancedsettings.php:190
471
+ msgid "Redirect all traffic from registration page to /susbcription/?"
472
+ msgstr "Redirigir tot el trànsit de la pàgina de registre a /susbcription/?"
473
+
474
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
475
+ #: adminpages/advancedsettings.php:190
476
+ msgid "multisite only"
477
+ msgstr "només “multisite”"
478
+
479
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
480
+ #: adminpages/paymentsettings.php:211
481
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
482
+ #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
483
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
484
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
485
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
486
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:415
487
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
488
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
489
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
490
+ #: adminpages/paymentsettings.php:462
491
+ #: classes/gateways/class.pmprogateway_stripe.php:174
492
+ #: classes/gateways/class.pmprogateway_stripe.php:175
493
+ #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:102
494
+ #: includes/profile.php:106 includes/profile.php:122 includes/profile.php:124
495
+ msgid "Yes"
496
+ msgstr "Sí"
497
+
498
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
499
+ #: adminpages/advancedsettings.php:202
500
+ msgid "Use reCAPTCHA?"
501
+ msgstr "Utilitzar reCAPTCHA?"
502
+
503
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
504
+ #: adminpages/advancedsettings.php:207
505
+ msgid "Yes - Free memberships only."
506
+ msgstr "Sí - Només subscripcions gratuïtes"
507
+
508
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
509
+ #: adminpages/advancedsettings.php:208
510
+ msgid "Yes - All memberships."
511
+ msgstr "Sí - Tots els subscriptors"
512
+
513
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
514
+ #: adminpages/advancedsettings.php:210
515
+ msgid "A free reCAPTCHA key is required."
516
+ msgstr "Una clau reCAPTCHA gratuïta és necessària"
517
+
518
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
519
+ #: adminpages/advancedsettings.php:210
520
+ msgid "Click here to signup for reCAPTCHA"
521
+ msgstr "Clica aquí per a signar per al reCAPTCHA"
522
+
523
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
524
+ #: adminpages/advancedsettings.php:216
525
+ msgid "reCAPTCHA Public Key"
526
+ msgstr "reCAPTCHA clau pública (Public Key)"
527
+
528
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
529
+ #: adminpages/advancedsettings.php:219
530
+ msgid "reCAPTCHA Private Key"
531
+ msgstr "reCAPTCHA clau privada (Private Key)"
532
+
533
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
534
+ #: adminpages/advancedsettings.php:225
535
+ msgid "Require Terms of Service on signups?"
536
+ msgstr "Requerir Termes de Servei per a les subscripcions?"
537
+
538
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
539
+ #: adminpages/advancedsettings.php:232
540
+ msgid ""
541
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
542
+ "using the dropdown above."
543
+ msgstr ""
544
+ "Si és així, crear una pàgina de WordPress que conté el contracte d’agraïment "
545
+ "i assignar-lo utilitzant el desplegable de dalt."
546
+
547
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
548
+ msgid "selected"
549
+ msgstr "Seleccionat"
550
+
551
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
552
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
553
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
554
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
555
+ #: adminpages/pagesettings.php:254 adminpages/paymentsettings.php:485
556
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
557
+ #: adminpages/paymentsettings.php:534
558
+ msgid "Save Settings"
559
+ msgstr "Desa la configuració"
560
+
561
+ #: adminpages/discountcodes.php:48
562
+ msgid "Discount code updated successfully."
563
+ msgstr "Codi promocional actualitzat correctament."
564
+
565
+ #: adminpages/discountcodes.php:55
566
+ msgid "Error updating discount code. That code may already be in use."
567
+ msgstr ""
568
+ "Error actualitzant el codi de descompte. Aquest codi pot estar ja en ús."
569
+
570
+ #: adminpages/discountcodes.php:64
571
+ msgid "Discount code added successfully."
572
+ msgstr "Codi de descompte afegit correctament."
573
+
574
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
575
+ msgid "Error adding discount code. That code may already be in use."
576
+ msgstr "Error en afegir codi de descompte. Aquest codi pot estar ja en ús."
577
+
578
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
579
+ #, php-format
580
+ msgid "Error saving values for the %s level."
581
+ msgstr "Error guardant els valors per al nivell %s "
582
+
583
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
584
+ msgid "There were errors updating the level values: "
585
+ msgstr "Hi ha hagut errors actualitzatn els valors del nivell:"
586
+
587
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
588
+ #: adminpages/discountcodes.php:237
589
+ #, php-format
590
+ msgid "Code %s deleted successfully."
591
+ msgstr "Codi %s esborrat correctament"
592
+
593
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
594
+ #: adminpages/discountcodes.php:242
595
+ msgid ""
596
+ "Error deleting discount code. The code was only partially deleted. Please "
597
+ "try again."
598
+ msgstr ""
599
+ "Error esborrant el codi de descompte. El codi ha estat esborrat parcialment. "
600
+ "Si us plau torna a intentar-ho."
601
+
602
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
603
+ #: adminpages/discountcodes.php:248
604
+ msgid "Error deleting code. Please try again."
605
+ msgstr "Error esborrant el codi de descompte. Si us plau torna a intentar-ho."
606
+
607
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
608
+ #: adminpages/discountcodes.php:254
609
+ msgid "Code not found."
610
+ msgstr "No s’ha trobat el codi."
611
+
612
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
613
+ #: adminpages/discountcodes.php:267
614
+ msgid "Edit Discount Code"
615
+ msgstr "Edita el codi de descompte"
616
+
617
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
618
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
619
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
620
+ #: adminpages/discountcodes.php:557
621
+ msgid "Add New Discount Code"
622
+ msgstr "Afegeix un nou codi de descompte"
623
+
624
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
625
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
626
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
627
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
628
+ #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
629
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
630
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
631
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
632
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
633
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
634
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
635
+ #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
636
+ #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
637
+ #: adminpages/orders.php:597 adminpages/orders.php:900
638
+ #: adminpages/orders.php:910 adminpages/orders.php:966
639
+ #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
640
+ msgid "ID"
641
+ msgstr "ID"
642
+
643
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
644
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
645
+ #: adminpages/orders.php:211 adminpages/orders.php:261
646
+ #: adminpages/orders.php:362
647
+ msgid "This will be generated when you save."
648
+ msgstr "Es generarà quan salvis."
649
+
650
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
651
+ #: adminpages/orders.php:337 adminpages/orders.php:938
652
+ #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
653
+ #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
654
+ #: adminpages/discountcodes.php:586 adminpages/orders.php:215
655
+ #: adminpages/orders.php:265 adminpages/orders.php:366
656
+ #: adminpages/orders.php:598 adminpages/orders.php:901
657
+ #: adminpages/orders.php:911 adminpages/orders.php:967
658
+ msgid "Code"
659
+ msgstr "Codi"
660
+
661
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
662
+ #: adminpages/discountcodes.php:352
663
+ msgid "Start Date"
664
+ msgstr "Data d’inici"
665
+
666
+ #: adminpages/discountcodes.php:371
667
+ #: classes/gateways/class.pmprogateway_braintree.php:323
668
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
669
+ #: pages/checkout.php:575 adminpages/discountcodes.php:367
670
+ #: adminpages/discountcodes.php:370
671
+ #: classes/gateways/class.pmprogateway_braintree.php:308
672
+ #: classes/gateways/class.pmprogateway_braintree.php:321
673
+ #: classes/gateways/class.pmprogateway_stripe.php:454
674
+ #: classes/gateways/class.pmprogateway_stripe.php:455
675
+ #: classes/gateways/class.pmprogateway_stripe.php:465
676
+ #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:249
677
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
678
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
679
+ #: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
680
+ msgid "Expiration Date"
681
+ msgstr "Data final (d’expiració)"
682
+
683
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
684
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
685
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
686
+ #: adminpages/discountcodes.php:589
687
+ msgid "Uses"
688
+ msgstr "Utilitza"
689
+
690
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
691
+ #: adminpages/discountcodes.php:391
692
+ msgid "Leave blank for unlimited uses."
693
+ msgstr "Deixa en blanc per a usos ilimitats."
694
+
695
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
696
+ msgid "Which Levels Will This Code Apply To?"
697
+ msgstr "A quins nivells s’aplicarà aquest codi?"
698
+
699
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
700
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
701
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
702
+ #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:507
703
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
704
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
705
+ msgid "Initial Payment"
706
+ msgstr "Pagament inicial"
707
+
708
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
709
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
710
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
711
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
712
+ #: adminpages/membershiplevels.php:353
713
+ msgid "The initial amount collected at registration."
714
+ msgstr "El pagament inicial efectuat en el registre"
715
+
716
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
717
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
718
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
719
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
720
+ #: adminpages/membershiplevels.php:357
721
+ msgid "Recurring Subscription"
722
+ msgstr "Subscripció recurrent"
723
+
724
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
725
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
726
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
727
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
728
+ #: adminpages/membershiplevels.php:358
729
+ msgid "Check if this level has a recurring subscription payment."
730
+ msgstr "Clica si aquest nivell té un pagament de subscripció recurrent"
731
+
732
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
733
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
734
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
735
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:362
736
+ msgid "Billing Amount"
737
+ msgstr "Total a facturar"
738
+
739
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
740
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
741
+ #: classes/gateways/class.pmprogateway_stripe.php:562
742
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
743
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
744
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
745
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
746
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
747
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
748
+ #: classes/gateways/class.pmprogateway_stripe.php:521
749
+ #: classes/gateways/class.pmprogateway_stripe.php:522
750
+ #: classes/gateways/class.pmprogateway_stripe.php:532
751
+ #: classes/gateways/class.pmprogateway_stripe.php:536
752
+ msgid "Day(s)"
753
+ msgstr "Dia(es)"
754
+
755
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
756
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
757
+ #: classes/gateways/class.pmprogateway_stripe.php:562
758
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
759
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
760
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
761
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
762
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
763
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
764
+ #: classes/gateways/class.pmprogateway_stripe.php:521
765
+ #: classes/gateways/class.pmprogateway_stripe.php:522
766
+ #: classes/gateways/class.pmprogateway_stripe.php:532
767
+ #: classes/gateways/class.pmprogateway_stripe.php:536
768
+ msgid "Month(s)"
769
+ msgstr "Mes(os)"
770
+
771
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
772
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
773
+ #: classes/gateways/class.pmprogateway_stripe.php:562
774
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
775
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
776
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
777
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
778
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
779
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
780
+ #: classes/gateways/class.pmprogateway_stripe.php:521
781
+ #: classes/gateways/class.pmprogateway_stripe.php:522
782
+ #: classes/gateways/class.pmprogateway_stripe.php:532
783
+ #: classes/gateways/class.pmprogateway_stripe.php:536
784
+ msgid "Week(s)"
785
+ msgstr "Setmana(es)"
786
+
787
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
788
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
789
+ #: classes/gateways/class.pmprogateway_stripe.php:562
790
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
791
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
792
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
793
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
794
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
795
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
796
+ #: classes/gateways/class.pmprogateway_stripe.php:521
797
+ #: classes/gateways/class.pmprogateway_stripe.php:522
798
+ #: classes/gateways/class.pmprogateway_stripe.php:532
799
+ #: classes/gateways/class.pmprogateway_stripe.php:536
800
+ msgid "Year(s)"
801
+ msgstr "Any(s)"
802
+
803
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
804
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
805
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
806
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
807
+ #: adminpages/membershiplevels.php:386
808
+ msgid "The amount to be billed one cycle after the initial payment."
809
+ msgstr "Total a facturar en un cicle després del pagament inicial"
810
+
811
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
812
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
813
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
814
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
815
+ #: adminpages/membershiplevels.php:404
816
+ msgid "Billing Cycle Limit"
817
+ msgstr "Límit de cicle de facturació"
818
+
819
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
820
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
821
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
822
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
823
+ #: adminpages/membershiplevels.php:408
824
+ msgid ""
825
+ "The <strong>total</strong> number of recurring billing cycles for this "
826
+ "level, including the trial period (if applicable) but not including the "
827
+ "initial payment. Set to zero if membership is indefinite."
828
+ msgstr ""
829
+ "El <strong>total</strong> de cicles de pagament recurrent per a aquest "
830
+ "nivell, incloent el període de prova (si s’aplica) però sense incloure el "
831
+ "pagament inicial. Deixa-ho a zero si la subscripció és infinita."
832
+
833
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
834
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
835
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
836
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
837
+ #: adminpages/membershiplevels.php:417
838
+ msgid "Custom Trial"
839
+ msgstr "Prova personalitzada"
840
+
841
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
842
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
843
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
844
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
845
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:419
846
+ msgid "Check to add a custom trial period."
847
+ msgstr "Clica per afegir un període de prova personalitzat."
848
+
849
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
850
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
851
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
852
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
853
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:428
854
+ msgid "Trial Billing Amount"
855
+ msgstr "Facturació per al període de prova"
856
+
857
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
858
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
859
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
860
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
861
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:439
862
+ msgid "for the first"
863
+ msgstr "per al primer"
864
+
865
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
866
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
867
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
868
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
869
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:441
870
+ msgid "subscription payments"
871
+ msgstr "pagaments de subscripció"
872
+
873
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
874
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
875
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
876
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
877
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
878
+ #: adminpages/membershiplevels.php:470
879
+ msgid "Membership Expiration"
880
+ msgstr "Venciment de la subscripció"
881
+
882
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
883
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
884
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
885
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
886
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:471
887
+ msgid "Check this to set when membership access expires."
888
+ msgstr "Clica per afegir quan expira l’accés del subscriptor"
889
+
890
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
891
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
892
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
893
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
894
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
895
+ #: adminpages/membershiplevels.php:475
896
+ msgid "Expires In"
897
+ msgstr "Expira En"
898
+
899
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
900
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
901
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
902
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
903
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:488
904
+ msgid ""
905
+ "Set the duration of membership access. Note that the any future payments "
906
+ "(recurring subscription, if any) will be cancelled when the membership "
907
+ "expires."
908
+ msgstr ""
909
+ "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol "
910
+ "pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la "
911
+ "subscripció caduqui."
912
+
913
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
914
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
915
+ msgid "Memberships Discount Codes"
916
+ msgstr "Codis de descompte per a subscripcions"
917
+
918
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
919
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
920
+ msgid "Search Discount Codes"
921
+ msgstr "Cerca codis de descompte"
922
+
923
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:99
924
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
925
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
926
+ #: adminpages/reports/login.php:83
927
+ msgid "Search"
928
+ msgstr "Cerca"
929
+
930
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
931
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
932
+ msgid "Starts"
933
+ msgstr "Comença"
934
+
935
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
936
+ #: adminpages/reports/login.php:163 includes/profile.php:107
937
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
938
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
939
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
940
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
941
+ #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:118
942
+ #: includes/profile.php:120
943
+ msgid "Expires"
944
+ msgstr "Acaba"
945
+
946
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
947
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
948
+ msgid "Levels"
949
+ msgstr "Nivells"
950
+
951
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
952
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
953
+ msgid "Create your first discount code now"
954
+ msgstr "Crea el teu primer codi de descompte ara"
955
+
956
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
957
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
958
+ msgid ""
959
+ "Discount codes allow you to offer your memberships at discounted prices to "
960
+ "select customers."
961
+ msgstr "Els codis de descompte et permeten oferir"
962
+
963
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
964
+ #: adminpages/orders.php:1021 adminpages/discountcodes.php:614
965
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
966
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
967
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
968
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
969
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
970
+ #: adminpages/orders.php:658 adminpages/orders.php:961
971
+ #: adminpages/orders.php:979 adminpages/orders.php:989
972
+ #: adminpages/orders.php:992 adminpages/orders.php:1050
973
+ msgid "edit"
974
+ msgstr "Edita"
975
+
976
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
977
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
978
+ #: adminpages/discountcodes.php:651
979
+ #, php-format
980
+ msgid ""
981
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
982
+ "existing users will not change, but new users will not be able to use this "
983
+ "code anymore."
984
+ msgstr ""
985
+ "Estàs segur que vols esborrar el codi de descompte %s ? Les subscripcions "
986
+ "per als usuaris existents no canviaran, però els nous usuaris no podran "
987
+ "utilitzar aquest codi mai més."
988
+
989
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
990
+ #: adminpages/orders.php:1027 adminpages/discountcodes.php:617
991
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
992
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
993
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
994
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
995
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
996
+ #: adminpages/orders.php:664 adminpages/orders.php:967
997
+ #: adminpages/orders.php:985 adminpages/orders.php:995
998
+ #: adminpages/orders.php:998 adminpages/orders.php:1056
999
+ msgid "delete"
1000
+ msgstr "esborra"
1001
+
1002
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:51
1003
+ #: includes/adminpages.php:137 adminpages/emailsettings.php:60
1004
+ #: includes/adminpages.php:12 includes/adminpages.php:50
1005
+ #: includes/adminpages.php:59 includes/adminpages.php:121
1006
+ #: includes/adminpages.php:128 includes/adminpages.php:132
1007
+ msgid "Email Settings"
1008
+ msgstr "Configuració de correu electrònic"
1009
+
1010
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
1011
+ msgid ""
1012
+ "By default, system generated emails are sent from "
1013
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
1014
+ "address using the fields below."
1015
+ msgstr ""
1016
+ "Per defecte, els correus electrònics generats són enviats desde "
1017
+ "<em><strong>wordpress@yourdomain.com</strong></em>. Pots modificar-ho "
1018
+ "utilitzant els camps que hi ha a continuació."
1019
+
1020
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
1021
+ msgid ""
1022
+ "To modify the appearance of system generated emails, add the files "
1023
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
1024
+ "directory. This will modify both the WordPress default messages as well as "
1025
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
1026
+ "- Member Communications\" target=\"_blank\" href=\"http://www."
1027
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
1028
+ "learn more about Paid Memberships Pro emails</a>."
1029
+ msgstr ""
1030
+ "Per modificar l’aparença dels emails generats pel sistema, afegeix els "
1031
+ "arxius <em>email_header.html</em> and <em>email_footer.html</em> al "
1032
+ "directori del teu tema. Així es modificarà el missatge per defecte de "
1033
+ "WordPress i els del plugin Paid Memberships Pro. <a title=\"Paid Memberships "
1034
+ "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
1035
+ "paidmembershipspro.com/documentation/member-communications/\">Clica aquí per "
1036
+ "saber més sobre Paid Memberships Pro emails</a>."
1037
+
1038
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
1039
+ msgid "From Email"
1040
+ msgstr "Del Correu Electrònic"
1041
+
1042
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
1043
+ msgid "From Name"
1044
+ msgstr "Del Nom"
1045
+
1046
+ #: adminpages/emailsettings.php:94
1047
+ msgid "Only Filter PMPro Emails?"
1048
+ msgstr "Filtra només els correus de PMPro?"
1049
+
1050
+ #: adminpages/emailsettings.php:98
1051
+ #, php-format
1052
+ msgid ""
1053
+ "If unchecked, all emails from \"WordPress &lt;%s&gt;\" will be filtered to "
1054
+ "use the above settings."
1055
+ msgstr ""
1056
+ "Si no està clicat, tots els correus de \"WordPress &lt;%s&gt;\" seran "
1057
+ "filtrats per utilitzar la configuració de dalt."
1058
+
1059
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
1060
+ #: adminpages/emailsettings.php:104
1061
+ msgid "Send the site admin emails"
1062
+ msgstr "Envia els correus electrònics dels administradors del lloc web"
1063
+
1064
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
1065
+ #: adminpages/emailsettings.php:110
1066
+ msgid "Checkout"
1067
+ msgstr "Checkout"
1068
+
1069
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
1070
+ #: adminpages/emailsettings.php:114
1071
+ msgid "when a member checks out."
1072
+ msgstr "quan un subscriptor fa el checkout"
1073
+
1074
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
1075
+ #: adminpages/emailsettings.php:119
1076
+ msgid "Admin Changes"
1077
+ msgstr "Canvis d’administrador"
1078
+
1079
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
1080
+ #: adminpages/emailsettings.php:123
1081
+ msgid "when an admin changes a user's membership level through the dashboard."
1082
+ msgstr ""
1083
+ "quan un administrador canvia la subscripció d’un usuari des del “dashboard”"
1084
+
1085
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
1086
+ #: adminpages/emailsettings.php:128
1087
+ msgid "Cancellation"
1088
+ msgstr "Cancel·lació"
1089
+
1090
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
1091
+ #: adminpages/emailsettings.php:132
1092
+ msgid "when a user cancels his or her account."
1093
+ msgstr "quan un usuari cancel·la el seu compte"
1094
+
1095
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
1096
+ #: adminpages/emailsettings.php:137
1097
+ msgid "Bill Updates"
1098
+ msgstr "Actualitzacions de facturació"
1099
+
1100
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
1101
+ #: adminpages/emailsettings.php:141
1102
+ msgid "when a user updates his or her billing information."
1103
+ msgstr "quan un usuari actualitza la seva informació de facturació"
1104
+
1105
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
1106
+ #: adminpages/emailsettings.php:147
1107
+ msgid "Send members emails"
1108
+ msgstr "Envia els correus electrònics dels subscriptors"
1109
+
1110
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
1111
+ #: adminpages/emailsettings.php:153
1112
+ msgid "New Users"
1113
+ msgstr "Nous usuaris"
1114
+
1115
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
1116
+ #: adminpages/emailsettings.php:157
1117
+ msgid ""
1118
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
1119
+ "still get an email confirmation from PMPro after checkout.)"
1120
+ msgstr ""
1121
+ "Notificació per defecte de WP per correu. (Recomanat: no el cliquis. Els "
1122
+ "usuaris rebran un correu electrònic de confirmació desde PMPro després del "
1123
+ "“checkout”.)"
1124
+
1125
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1126
+ msgid "Membership level updated successfully."
1127
+ msgstr "Nivell de subscripció actualitzada correctament."
1128
+
1129
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1130
+ msgid "Error updating membership level."
1131
+ msgstr "Error actualitzant el nivell de subscripció."
1132
+
1133
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1134
+ msgid "Membership level added successfully."
1135
+ msgstr "Nivell de subscripció afegit correctament."
1136
+
1137
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1138
+ msgid "Error adding membership level."
1139
+ msgstr "Error afegint nivell de subscripció."
1140
+
1141
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1142
+ #: adminpages/membershiplevels.php:181
1143
+ #, php-format
1144
+ msgid ""
1145
+ "There was an error canceling the subscription for user with ID=%d. You will "
1146
+ "want to check your payment gateway to see if their subscription is still "
1147
+ "active."
1148
+ msgstr ""
1149
+ "Hi ha hagut un error cancel·lant la subscripció de l’usuari ID=%d. Comprova "
1150
+ "la teva passarel·la de pagament per veure si la seva subscripció encara hi "
1151
+ "és."
1152
+
1153
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1154
+ #: adminpages/membershiplevels.php:184
1155
+ msgid "Last Invoice"
1156
+ msgstr "Darrera factura."
1157
+
1158
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1159
+ #: adminpages/membershiplevels.php:198
1160
+ msgid "Membership level deleted successfully."
1161
+ msgstr "Nivell de subscripció esborrat correctament."
1162
+
1163
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1164
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1165
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1166
+ msgid "Error deleting membership level."
1167
+ msgstr "Error esborrant nivell de subscripció."
1168
+
1169
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1170
+ #: adminpages/membershiplevels.php:224
1171
+ msgid "Edit Membership Level"
1172
+ msgstr "Edita el nivell de subscripció"
1173
+
1174
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1175
+ #: adminpages/membershiplevels.php:226
1176
+ msgid "Add New Membership Level"
1177
+ msgstr "Afegeix un nou nivell de subscripció"
1178
+
1179
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1180
+ #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1181
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1182
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1183
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1184
+ #: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:638
1185
+ #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1186
+ msgid "Name"
1187
+ msgstr "Nom"
1188
+
1189
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1190
+ #: adminpages/membershiplevels.php:316
1191
+ msgid "Confirmation Message"
1192
+ msgstr "Missatge de confirmació"
1193
+
1194
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1195
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1196
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:543
1197
+ #: adminpages/membershiplevels.php:585 adminpages/membershiplevels.php:639
1198
+ msgid "Billing Details"
1199
+ msgstr "Detalls de facturació"
1200
+
1201
+ #: adminpages/membershiplevels.php:372
1202
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1203
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1204
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:373
1205
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1206
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1207
+ #: classes/gateways/class.pmprogateway_stripe.php:630
1208
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1209
+ msgid "per"
1210
+ msgstr "per"
1211
+
1212
+ #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1213
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:388
1214
+ msgid ""
1215
+ "Stripe integration currently only supports billing periods of \"Week\", "
1216
+ "\"Month\" or \"Year\"."
1217
+ msgstr ""
1218
+ "La integració d’Stripe actualment només suporta períodes de facturació de "
1219
+ "“setmana”, “mes” o “any”."
1220
+
1221
+ #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1222
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1223
+ #: adminpages/membershiplevels.php:390
1224
+ msgid ""
1225
+ "Braintree integration currently only supports billing periods of \"Month\" "
1226
+ "or \"Year\"."
1227
+ msgstr ""
1228
+ "La integració de Braintree actualment només suporta períodes de facturació "
1229
+ "de “mes” o “any”."
1230
+
1231
+ #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1232
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1233
+ #: adminpages/membershiplevels.php:392
1234
+ msgid ""
1235
+ "Payflow integration currently only supports billing frequencies of 1 and "
1236
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1237
+ msgstr ""
1238
+ "La integració de Payflow actualment només suporta períodes de facturació de "
1239
+ "1 “setmana”, “mes” o “any”."
1240
+
1241
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1242
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1243
+ #: adminpages/membershiplevels.php:396
1244
+ msgid ""
1245
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1246
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1247
+ "<em>pmpro_#</em>, where # is the level ID."
1248
+ msgstr ""
1249
+ "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al "
1250
+ "dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to "
1251
+ "<em>pmpro_#</em>, on # és el level ID."
1252
+
1253
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1254
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1255
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1256
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1257
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1258
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1259
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1260
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1261
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1262
+ #: adminpages/paymentsettings.php:179
1263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1264
+ msgid "Note"
1265
+ msgstr "Nota"
1266
+
1267
+ #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1268
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1269
+ #: adminpages/membershiplevels.php:398
1270
+ msgid ""
1271
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1272
+ "settings and the \"Plan ID\" set to"
1273
+ msgstr ""
1274
+ "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configuració "
1275
+ "\"Plan ID\" "
1276
+
1277
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1278
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1279
+ #: adminpages/membershiplevels.php:410
1280
+ msgid ""
1281
+ "Stripe integration currently does not support billing limits. You can still "
1282
+ "set an expiration date below."
1283
+ msgstr ""
1284
+ "La integració d’Stripe no suporta límits de facturació actualment. Pots "
1285
+ "posar una data de límit de facturació a sota."
1286
+
1287
+ #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1288
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1289
+ #: adminpages/membershiplevels.php:422
1290
+ msgid ""
1291
+ "2Checkout integration does not support custom trials. You can do one period "
1292
+ "trials by setting an initial payment different from the billing amount."
1293
+ msgstr ""
1294
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
1295
+ "període de prova configurant un pagament inicial diferent del total de "
1296
+ "facturació."
1297
+
1298
+ #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1299
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1300
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:444
1301
+ msgid ""
1302
+ "Stripe integration currently does not support trial amounts greater than $0."
1303
+ msgstr "La integració d’Stripe no suporta preus de prova majors que $0."
1304
+
1305
+ #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1306
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1307
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:448
1308
+ msgid ""
1309
+ "Braintree integration currently does not support trial amounts greater than "
1310
+ "$0."
1311
+ msgstr "La integració de Braintree no suporta preus de prova majors que $0."
1312
+
1313
+ #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1314
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1315
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:452
1316
+ msgid ""
1317
+ "Payflow integration currently does not support trial amounts greater than $0."
1318
+ msgstr "La integració de Payflow no suporta preus de prova majors que $0."
1319
+
1320
+ #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1321
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1322
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1323
+ #: adminpages/membershiplevels.php:461
1324
+ msgid "Other Settings"
1325
+ msgstr "Configuració, altres"
1326
+
1327
+ #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1328
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1329
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1330
+ #: adminpages/membershiplevels.php:465
1331
+ msgid "Disable New Signups"
1332
+ msgstr "Deshabilita nous “signups”"
1333
+
1334
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1335
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1336
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1337
+ #: adminpages/membershiplevels.php:466
1338
+ msgid ""
1339
+ "Check to hide this level from the membership levels page and disable "
1340
+ "registration."
1341
+ msgstr ""
1342
+ "Clica per amagar aquest nivell de la pàgina de nivells de subscripció i no "
1343
+ "permetre’n el registre."
1344
+
1345
+ #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1346
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1347
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1348
+ #: adminpages/membershiplevels.php:496
1349
+ msgid "Content Settings"
1350
+ msgstr "Configuració de continguts"
1351
+
1352
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1353
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1354
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1355
+ #: adminpages/membershiplevels.php:500
1356
+ msgid "Categories"
1357
+ msgstr "Categories"
1358
+
1359
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:517
1360
+ msgid "Save Level"
1361
+ msgstr "Salva nivell"
1362
+
1363
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1364
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1365
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:511
1366
+ #: adminpages/orders.php:561 adminpages/orders.php:662 pages/account.php:44
1367
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1368
+ #: pages/billing.php:339 pages/billing.php:342 shortcodes/pmpro_account.php:70
1369
+ msgid "Cancel"
1370
+ msgstr "Cancel·la"
1371
+
1372
+ #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:490
1373
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1374
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1375
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
1376
+ msgid "Add New Level"
1377
+ msgstr "Afegeix un nou nivell"
1378
+
1379
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1380
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1381
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1382
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1383
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1384
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1385
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1386
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1387
+ msgid "Search Levels"
1388
+ msgstr "Cerca Nivells"
1389
+
1390
+ #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:579
1391
+ #: adminpages/membershiplevels.php:631
1392
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1393
+ msgstr ""
1394
+ "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la "
1395
+ "pàgina de nivells"
1396
+
1397
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53
1398
+ #: pages/confirmation.php:83 pages/invoice.php:70
1399
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1400
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1401
+ #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1402
+ #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:640
1403
+ #: pages/account.php:20 pages/confirmation.php:81 pages/invoice.php:68
1404
+ msgid "Expiration"
1405
+ msgstr "Data final (d’expiració)"
1406
+
1407
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:511
1408
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1409
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1410
+ #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:641
1411
+ msgid "Allow Signups"
1412
+ msgstr "Permet nous “signups”"
1413
+
1414
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:534
1415
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1416
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1417
+ #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:656
1418
+ msgid "FREE"
1419
+ msgstr "GRATUÏT"
1420
+
1421
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:560
1422
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1423
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1424
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:665
1425
+ msgid "After"
1426
+ msgstr "Després"
1427
+
1428
+ #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:566
1429
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1430
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1431
+ #: adminpages/membershiplevels.php:660
1432
+ #, php-format
1433
+ msgid ""
1434
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1435
+ "be cancelled."
1436
+ msgstr ""
1437
+ "Estàs segur que vols esborrar el nivell de subscripció %s? Tots els "
1438
+ "Subscriptors seran cancel·lats."
1439
+
1440
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1441
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1442
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1443
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1444
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:661
1445
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1446
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1447
+ #: adminpages/orders.php:1053
1448
+ msgid "copy"
1449
+ msgstr "copia"
1450
+
1451
+ #: adminpages/memberslist.php:25 includes/adminpages.php:54
1452
+ #: includes/adminpages.php:158 includes/adminpages.php:15
1453
+ #: includes/adminpages.php:53 includes/adminpages.php:74
1454
+ #: includes/adminpages.php:142 includes/adminpages.php:149
1455
+ #: includes/adminpages.php:153
1456
+ msgid "Members List"
1457
+ msgstr "Llistat de subscriptors"
1458
+
1459
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1460
+ #: adminpages/orders.php:522 adminpages/orders.php:591
1461
+ #: adminpages/orders.php:727
1462
+ msgid "Export to CSV"
1463
+ msgstr "Exporta a CSV"
1464
+
1465
+ #: adminpages/memberslist.php:30 adminpages/orders.php:710
1466
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:263
1467
+ #: adminpages/reports/sales.php:202 adminpages/orders.php:603
1468
+ #: adminpages/orders.php:739 adminpages/reports/login.php:65
1469
+ #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:256
1470
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1471
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1472
+ msgid "Show"
1473
+ msgstr "Mostra"
1474
+
1475
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1476
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1477
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:69
1478
+ #: adminpages/reports/memberships.php:281
1479
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1480
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1481
+ msgid "All Levels"
1482
+ msgstr "Tots els nivells"
1483
+
1484
+ #: adminpages/memberslist.php:42
1485
+ msgid "Cancelled Members"
1486
+ msgstr "Subscriptors cancel·lats"
1487
+
1488
+ #: adminpages/memberslist.php:43
1489
+ msgid "Expired Members"
1490
+ msgstr "Subscriptors “expirats”"
1491
+
1492
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1493
+ msgid "Old Members"
1494
+ msgstr "Subscriptors antics"
1495
+
1496
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1497
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1498
+ #: adminpages/memberslist.php:50
1499
+ msgid "Search Members"
1500
+ msgstr "Cerca Subscriptors"
1501
+
1502
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1503
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1504
+ #, php-format
1505
+ msgid "%d members found."
1506
+ msgstr "%d subscriptor no trobat."
1507
+
1508
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1509
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1510
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1511
+ #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1512
+ #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
1513
+ #: pages/checkout.php:180 pages/checkout.php:182
1514
+ #: shortcodes/pmpro_account.php:105
1515
+ msgid "Username"
1516
+ msgstr "Nom d’usuari"
1517
+
1518
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1519
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1520
+ msgid "First&nbsp;Name"
1521
+ msgstr "Nom"
1522
+
1523
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1524
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1525
+ msgid "Last&nbsp;Name"
1526
+ msgstr "Cognoms"
1527
+
1528
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1529
+ #: pages/confirmation.php:61 pages/invoice.php:48
1530
+ #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1531
+ #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1532
+ #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1533
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1534
+ #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:321
1535
+ #: pages/confirmation.php:59 pages/invoice.php:46
1536
+ msgid "Billing Address"
1537
+ msgstr "Adreça de Facturació"
1538
+
1539
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:161
1540
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1541
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1542
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1543
+ #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
1544
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1545
+ msgid "Membership"
1546
+ msgstr "Subscriptor"
1547
+
1548
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1549
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1550
+ msgid "Fee"
1551
+ msgstr "Preu"
1552
+
1553
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:162
1554
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1555
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1556
+ #: adminpages/reports/login.php:146
1557
+ msgid "Joined"
1558
+ msgstr "Afegit"
1559
+
1560
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1561
+ #: adminpages/memberslist.php:167
1562
+ msgid "Ended"
1563
+ msgstr "Finalitzat"
1564
+
1565
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1566
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1567
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1568
+ #: adminpages/reports/login.php:212
1569
+ msgid "No members found."
1570
+ msgstr "No s’han trobat subscriptors"
1571
+
1572
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1573
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1574
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1575
+ #: adminpages/reports/login.php:212
1576
+ msgid "Search all levels"
1577
+ msgstr "Cerca a tots els nivells"
1578
+
1579
+ #: adminpages/orders.php:155
1580
+ msgid "Invoice emailed successfully."
1581
+ msgstr "Factura correctament enviada per correu electrònic."
1582
+
1583
+ #: adminpages/orders.php:160
1584
+ msgid "Error emailing invoice."
1585
+ msgstr "Error en la factura enviada per correu electrònic."
1586
+
1587
+ #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1588
+ msgid "Order deleted successfully."
1589
+ msgstr "Comanda esborrada correctament"
1590
+
1591
+ #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1592
+ msgid "Error deleting order."
1593
+ msgstr "Error esborrant comanda."
1594
+
1595
+ #: adminpages/orders.php:270 adminpages/orders.php:119
1596
+ #: adminpages/orders.php:169
1597
+ msgid "Order saved successfully."
1598
+ msgstr "Comanda salvada correctament."
1599
+
1600
+ #: adminpages/orders.php:275 adminpages/orders.php:124
1601
+ #: adminpages/orders.php:174
1602
+ msgid "Error updating order timestamp."
1603
+ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)"
1604
+
1605
+ #: adminpages/orders.php:281 adminpages/orders.php:130
1606
+ #: adminpages/orders.php:180
1607
+ msgid "Error saving order."
1608
+ msgstr "Error guardant la comanda."
1609
+
1610
+ #: adminpages/orders.php:317 adminpages/orders.php:195
1611
+ #: adminpages/orders.php:245 adminpages/orders.php:346
1612
+ msgid "Order"
1613
+ msgstr "Comanda"
1614
+
1615
+ #: adminpages/orders.php:319 adminpages/orders.php:197
1616
+ #: adminpages/orders.php:247 adminpages/orders.php:348
1617
+ msgid "New Order"
1618
+ msgstr "Nova comanda"
1619
+
1620
+ #: adminpages/orders.php:342 adminpages/orders.php:220
1621
+ #: adminpages/orders.php:270 adminpages/orders.php:371
1622
+ msgid "Randomly generated for you."
1623
+ msgstr "Generat aleatoriament per a tu"
1624
+
1625
+ #: adminpages/orders.php:347 adminpages/orders.php:225
1626
+ #: adminpages/orders.php:275 adminpages/orders.php:376
1627
+ msgid "User ID"
1628
+ msgstr "ID d’usuari"
1629
+
1630
+ #: adminpages/orders.php:356 adminpages/orders.php:234
1631
+ #: adminpages/orders.php:284 adminpages/orders.php:385
1632
+ msgid "Membership Level ID"
1633
+ msgstr "ID del Nivell de subscripció"
1634
+
1635
+ #: adminpages/orders.php:365 adminpages/orders.php:243
1636
+ #: adminpages/orders.php:293 adminpages/orders.php:394
1637
+ msgid "Billing Name"
1638
+ msgstr "Nom de Facturació"
1639
+
1640
+ #: adminpages/orders.php:373 adminpages/orders.php:251
1641
+ #: adminpages/orders.php:301 adminpages/orders.php:402
1642
+ msgid "Billing Street"
1643
+ msgstr "Adreça de Facturació"
1644
+
1645
+ #: adminpages/orders.php:380 adminpages/orders.php:258
1646
+ #: adminpages/orders.php:308 adminpages/orders.php:409
1647
+ msgid "Billing City"
1648
+ msgstr "Ciutat de Facturació"
1649
+
1650
+ #: adminpages/orders.php:387 adminpages/orders.php:265
1651
+ #: adminpages/orders.php:315 adminpages/orders.php:416
1652
+ msgid "Billing State"
1653
+ msgstr "Provincia de Facturació"
1654
+
1655
+ #: adminpages/orders.php:394 adminpages/orders.php:272
1656
+ #: adminpages/orders.php:322 adminpages/orders.php:423
1657
+ msgid "Billing Postal Code"
1658
+ msgstr "Codi postal de Facturació"
1659
+
1660
+ #: adminpages/orders.php:401 adminpages/orders.php:279
1661
+ #: adminpages/orders.php:329 adminpages/orders.php:430
1662
+ msgid "Billing Country"
1663
+ msgstr "País de Facturació"
1664
+
1665
+ #: adminpages/orders.php:409 adminpages/orders.php:287
1666
+ #: adminpages/orders.php:337 adminpages/orders.php:438
1667
+ msgid "Billing Phone"
1668
+ msgstr "Telèfon de Facturació"
1669
+
1670
+ #: adminpages/orders.php:418 adminpages/orders.php:296
1671
+ #: adminpages/orders.php:346 adminpages/orders.php:447
1672
+ msgid "Sub Total"
1673
+ msgstr "Subtotal"
1674
+
1675
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1676
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1677
+ #: adminpages/orders.php:304 adminpages/orders.php:354
1678
+ #: adminpages/orders.php:455 pages/invoice.php:78
1679
+ msgid "Tax"
1680
+ msgstr "Impost"
1681
+
1682
+ #: adminpages/orders.php:434 adminpages/orders.php:312
1683
+ #: adminpages/orders.php:362 adminpages/orders.php:463
1684
+ msgid "Coupon Amount"
1685
+ msgstr "Valor del cupó"
1686
+
1687
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1688
+ #: adminpages/templates/orders-email.php:64
1689
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1690
+ #: adminpages/orders.php:320 adminpages/orders.php:370
1691
+ #: adminpages/orders.php:471 adminpages/orders.php:602
1692
+ #: adminpages/orders.php:905 adminpages/orders.php:915
1693
+ #: adminpages/orders.php:971 pages/invoice.php:82
1694
+ msgid "Total"
1695
+ msgstr "Total"
1696
+
1697
+ #: adminpages/orders.php:447 adminpages/orders.php:325
1698
+ #: adminpages/orders.php:375 adminpages/orders.php:476
1699
+ msgid "Should be subtotal + tax - couponamount."
1700
+ msgstr "Hauria de ser subtotal+impost+valor del cupó"
1701
+
1702
+ #: adminpages/orders.php:452 adminpages/orders.php:330
1703
+ #: adminpages/orders.php:380 adminpages/orders.php:481
1704
+ msgid "Payment Type"
1705
+ msgstr "Tipus de pagament"
1706
+
1707
+ #: adminpages/orders.php:457 adminpages/orders.php:335
1708
+ #: adminpages/orders.php:385 adminpages/orders.php:486
1709
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1710
+ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
1711
+
1712
+ #: adminpages/orders.php:461
1713
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1714
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1715
+ #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1716
+ #: adminpages/orders.php:490
1717
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1718
+ #: classes/gateways/class.pmprogateway_braintree.php:304
1719
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1720
+ #: classes/gateways/class.pmprogateway_stripe.php:409
1721
+ #: classes/gateways/class.pmprogateway_stripe.php:419
1722
+ #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:234
1723
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1724
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1725
+ #: pages/checkout.php:517 pages/checkout.php:525
1726
+ msgid "Card Type"
1727
+ msgstr "Tipus de targeta"
1728
+
1729
+ #: adminpages/orders.php:466 adminpages/orders.php:344
1730
+ #: adminpages/orders.php:394 adminpages/orders.php:495
1731
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1732
+ msgstr "Per exemple Visa, MasterCard, AMEX, etc"
1733
+
1734
+ #: adminpages/orders.php:470
1735
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1736
+ #: adminpages/orders.php:348 adminpages/orders.php:398
1737
+ #: adminpages/orders.php:499 adminpages/paymentsettings.php:347
1738
+ #: adminpages/paymentsettings.php:352
1739
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1740
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1741
+ msgid "Account Number"
1742
+ msgstr "Nombre de Compte"
1743
+
1744
+ #: adminpages/orders.php:475 adminpages/orders.php:353
1745
+ #: adminpages/orders.php:403 adminpages/orders.php:504
1746
+ msgid "Obscure all but last 4 digits."
1747
+ msgstr "Tot amagat menys els últims 4 dígits"
1748
+
1749
+ #: adminpages/orders.php:480 adminpages/orders.php:358
1750
+ #: adminpages/orders.php:408 adminpages/orders.php:509
1751
+ msgid "Expiration Month"
1752
+ msgstr "Mes de finalització/expiració"
1753
+
1754
+ #: adminpages/orders.php:487 adminpages/orders.php:365
1755
+ #: adminpages/orders.php:415 adminpages/orders.php:516
1756
+ msgid "Expiration Year"
1757
+ msgstr "Any de finalització/expiració"
1758
+
1759
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1760
+ #: adminpages/orders.php:373 adminpages/orders.php:423
1761
+ #: adminpages/orders.php:524 adminpages/orders.php:606
1762
+ #: adminpages/orders.php:909 adminpages/orders.php:919
1763
+ #: adminpages/orders.php:975
1764
+ msgid "Status"
1765
+ msgstr "Estat"
1766
+
1767
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1768
+ #: adminpages/orders.php:394 adminpages/orders.php:444
1769
+ #: adminpages/orders.php:545 adminpages/orders.php:604
1770
+ #: adminpages/orders.php:907 adminpages/orders.php:917
1771
+ #: adminpages/orders.php:973
1772
+ msgid "Gateway"
1773
+ msgstr "Passarel·la"
1774
+
1775
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1776
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1777
+ #: adminpages/orders.php:462 adminpages/orders.php:563
1778
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1779
+ #: adminpages/paymentsettings.php:184
1780
+ msgid "Gateway Environment"
1781
+ msgstr "Entorn de passarel·la"
1782
+
1783
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1784
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1785
+ #: adminpages/orders.php:466 adminpages/orders.php:567
1786
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1787
+ #: adminpages/paymentsettings.php:188
1788
+ msgid "Sandbox/Testing"
1789
+ msgstr "Sandbox/Proves"
1790
+
1791
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1792
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1793
+ #: adminpages/orders.php:467 adminpages/orders.php:568
1794
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1795
+ #: adminpages/paymentsettings.php:189
1796
+ msgid "Live/Production"
1797
+ msgstr "Live/Producció"
1798
+
1799
+ #: adminpages/orders.php:546 adminpages/orders.php:423
1800
+ #: adminpages/orders.php:473 adminpages/orders.php:474
1801
+ #: adminpages/orders.php:575
1802
+ msgid "Payment Transaction ID"
1803
+ msgstr "ID de la transacció de pagament"
1804
+
1805
+ #: adminpages/orders.php:551 adminpages/orders.php:428
1806
+ #: adminpages/orders.php:478 adminpages/orders.php:479
1807
+ #: adminpages/orders.php:580
1808
+ msgid "Generated by the gateway. Useful to cross reference orders."
1809
+ msgstr ""
1810
+ "Generat per la passarel·la. Útil per a comandes de referències creuades."
1811
+
1812
+ #: adminpages/orders.php:555 adminpages/orders.php:432
1813
+ #: adminpages/orders.php:482 adminpages/orders.php:483
1814
+ #: adminpages/orders.php:584
1815
+ msgid "Subscription Transaction ID"
1816
+ msgstr "ID de la transacció per a subscripció"
1817
+
1818
+ #: adminpages/orders.php:560 adminpages/orders.php:437
1819
+ #: adminpages/orders.php:487 adminpages/orders.php:488
1820
+ #: adminpages/orders.php:589
1821
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1822
+ msgstr ""
1823
+ "Generat per la passarel·la. Útil per a subscripcions de referències creuades."
1824
+
1825
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1826
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1827
+ #: adminpages/orders.php:492 adminpages/orders.php:493
1828
+ #: adminpages/orders.php:594 adminpages/orders.php:607
1829
+ #: adminpages/orders.php:910 adminpages/orders.php:920
1830
+ #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
1831
+ #: shortcodes/pmpro_account.php:122
1832
+ msgid "Date"
1833
+ msgstr "Data"
1834
+
1835
+ #: adminpages/orders.php:599 adminpages/orders.php:477
1836
+ #: adminpages/orders.php:527 adminpages/orders.php:628
1837
+ msgid "Affiliate ID"
1838
+ msgstr "ID de subscripció"
1839
+
1840
+ #: adminpages/orders.php:607 adminpages/orders.php:485
1841
+ #: adminpages/orders.php:535 adminpages/orders.php:636
1842
+ msgid "Affiliate SubID"
1843
+ msgstr "SubID de subscripció"
1844
+
1845
+ #: adminpages/orders.php:617 adminpages/orders.php:495
1846
+ #: adminpages/orders.php:545 adminpages/orders.php:646
1847
+ msgid "Notes"
1848
+ msgstr "Notes"
1849
+
1850
+ #: adminpages/orders.php:632 adminpages/orders.php:510
1851
+ #: adminpages/orders.php:560 adminpages/orders.php:661
1852
+ msgid "Save Order"
1853
+ msgstr "Salva Comanda"
1854
+
1855
+ #: adminpages/orders.php:667 adminpages/orders.php:696
1856
+ msgid "Email Invoice"
1857
+ msgstr "Factura per correu electrònic"
1858
+
1859
+ #: adminpages/orders.php:670 adminpages/orders.php:699
1860
+ msgid "Send an invoice for this order to: "
1861
+ msgstr "Envia factura per aquesta comanda a:"
1862
+
1863
+ #: adminpages/orders.php:672 adminpages/orders.php:701
1864
+ msgid "Send Email"
1865
+ msgstr "Envia Correu"
1866
+
1867
+ #: adminpages/orders.php:677 includes/adminpages.php:56
1868
+ #: includes/adminpages.php:172 adminpages/orders.php:520
1869
+ #: adminpages/orders.php:570 adminpages/orders.php:706
1870
+ #: includes/adminpages.php:17 includes/adminpages.php:55
1871
+ #: includes/adminpages.php:84 includes/adminpages.php:156
1872
+ #: includes/adminpages.php:163 includes/adminpages.php:167
1873
+ msgid "Orders"
1874
+ msgstr "Comandes"
1875
+
1876
+ #: adminpages/orders.php:678 adminpages/orders.php:521
1877
+ #: adminpages/orders.php:571 adminpages/orders.php:707
1878
+ msgid "Add New Order"
1879
+ msgstr "Afegeix nova comanda"
1880
+
1881
+ #: adminpages/orders.php:713 adminpages/orders.php:606
1882
+ #: adminpages/orders.php:742
1883
+ msgid "Within a Date Range"
1884
+ msgstr "Dins del període"
1885
+
1886
+ #: adminpages/orders.php:714 adminpages/orders.php:607
1887
+ #: adminpages/orders.php:743
1888
+ msgid "Predefined Date Range"
1889
+ msgstr "Període predefinit"
1890
+
1891
+ #: adminpages/orders.php:715 adminpages/orders.php:608
1892
+ #: adminpages/orders.php:744
1893
+ msgid "Within a Level"
1894
+ msgstr "Dins del nivell"
1895
+
1896
+ #: adminpages/orders.php:716 adminpages/orders.php:609
1897
+ #: adminpages/orders.php:745
1898
+ msgid "Within a Status"
1899
+ msgstr "Dins de l’”Status”"
1900
+
1901
+ #: adminpages/orders.php:719 adminpages/orders.php:612
1902
+ #: adminpages/orders.php:748
1903
+ msgid "From"
1904
+ msgstr "De"
1905
+
1906
+ #: adminpages/orders.php:731 adminpages/orders.php:624
1907
+ #: adminpages/orders.php:760
1908
+ msgid "To"
1909
+ msgstr "per a "
1910
+
1911
+ #: adminpages/orders.php:743 adminpages/orders.php:636
1912
+ #: adminpages/orders.php:772
1913
+ msgid "filter by "
1914
+ msgstr "filtrat per"
1915
+
1916
+ #: adminpages/orders.php:780 adminpages/orders.php:674
1917
+ #: adminpages/orders.php:809
1918
+ msgid "Filter"
1919
+ msgstr "Filtre"
1920
+
1921
+ #: adminpages/orders.php:883 adminpages/orders.php:886
1922
+ #: adminpages/orders.php:535 adminpages/orders.php:538
1923
+ #: adminpages/orders.php:777 adminpages/orders.php:780
1924
+ #: adminpages/orders.php:912 adminpages/orders.php:915
1925
+ msgid "Search Orders"
1926
+ msgstr "Cerca Comandes"
1927
+
1928
+ #: adminpages/orders.php:930 adminpages/orders.php:590
1929
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1930
+ #: adminpages/orders.php:959
1931
+ #, php-format
1932
+ msgid "%d orders found."
1933
+ msgstr "%d comandes no trobades"
1934
+
1935
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
1936
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1937
+ #: adminpages/orders.php:599 adminpages/orders.php:902
1938
+ #: adminpages/orders.php:912 adminpages/orders.php:968
1939
+ #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
1940
+ #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
1941
+ #: adminpages/reports/login.php:143
1942
+ msgid "User"
1943
+ msgstr "Usuari"
1944
+
1945
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
1946
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1947
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1948
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1949
+ #: adminpages/orders.php:914 adminpages/orders.php:970 includes/init.php:214
1950
+ #: includes/init.php:217 includes/init.php:218 includes/init.php:220
1951
+ #: includes/init.php:222 includes/init.php:230 includes/profile.php:25
1952
+ #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
1953
+ #: pages/confirmation.php:46 pages/confirmation.php:62
1954
+ #: pages/confirmation.php:103 pages/invoice.php:27 pages/invoice.php:49
1955
+ msgid "Membership Level"
1956
+ msgstr "Nivell de subscripció"
1957
+
1958
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
1959
+ #: adminpages/orders.php:603 adminpages/orders.php:651
1960
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1961
+ #: adminpages/orders.php:954 adminpages/orders.php:972
1962
+ #: adminpages/orders.php:982 adminpages/orders.php:1040
1963
+ msgid "Payment"
1964
+ msgstr "Pagament"
1965
+
1966
+ #: adminpages/orders.php:945 adminpages/orders.php:605
1967
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1968
+ #: adminpages/orders.php:974
1969
+ msgid "Transaction IDs"
1970
+ msgstr "IDs de transacció"
1971
+
1972
+ #: adminpages/orders.php:972 adminpages/orders.php:630
1973
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1974
+ #: adminpages/orders.php:1001
1975
+ msgid "deleted"
1976
+ msgstr "esborrat"
1977
+
1978
+ #: adminpages/orders.php:1013 adminpages/orders.php:653
1979
+ #: adminpages/orders.php:956 adminpages/orders.php:974
1980
+ #: adminpages/orders.php:984 adminpages/orders.php:1042
1981
+ msgid "Subscription"
1982
+ msgstr "Subscripció"
1983
+
1984
+ #: adminpages/orders.php:1027 adminpages/orders.php:664
1985
+ #: adminpages/orders.php:967 adminpages/orders.php:985
1986
+ #: adminpages/orders.php:995 adminpages/orders.php:998
1987
+ #: adminpages/orders.php:1056
1988
+ #, php-format
1989
+ msgid ""
1990
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1991
+ "want to delete order %s?"
1992
+ msgstr ""
1993
+ "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que "
1994
+ "vols esborrar la comanda %s?"
1995
+
1996
+ #: adminpages/orders.php:1030 adminpages/orders.php:1059
1997
+ msgid "print"
1998
+ msgstr "imprimeix"
1999
+
2000
+ #: adminpages/orders.php:1033 adminpages/orders.php:1062
2001
+ msgid "email"
2002
+ msgstr "correu electrònic"
2003
+
2004
+ #: adminpages/orders.php:1043 adminpages/orders.php:674
2005
+ #: adminpages/orders.php:977 adminpages/orders.php:995
2006
+ #: adminpages/orders.php:1005 adminpages/orders.php:1008
2007
+ #: adminpages/orders.php:1072
2008
+ msgid "No orders found."
2009
+ msgstr "No s’han trobat comandes"
2010
+
2011
+ #: adminpages/pagesettings.php:54
2012
+ msgid "Your page settings have been updated."
2013
+ msgstr "La teva pàgina de configuració ha estat actualitzada"
2014
+
2015
+ #: adminpages/pagesettings.php:64 adminpages/pagesettings.php:51
2016
+ msgid "Membership Account"
2017
+ msgstr "Compte de Subscriptor"
2018
+
2019
+ #: adminpages/pagesettings.php:65 adminpages/pagesettings.php:54
2020
+ msgid "Membership Billing"
2021
+ msgstr "Facturació de la subscripció"
2022
+
2023
+ #: adminpages/pagesettings.php:66 adminpages/pagesettings.php:57
2024
+ msgid "Membership Cancel"
2025
+ msgstr "Cancel·lació de la subscripció"
2026
+
2027
+ #: adminpages/pagesettings.php:67 adminpages/pagesettings.php:60
2028
+ msgid "Membership Checkout"
2029
+ msgstr "Checkout de la subscripció"
2030
+
2031
+ #: adminpages/pagesettings.php:68 adminpages/pagesettings.php:63
2032
+ msgid "Membership Confirmation"
2033
+ msgstr "Confirmació de la subscripció"
2034
+
2035
+ #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:66
2036
+ msgid "Membership Invoice"
2037
+ msgstr "Factura de la subscripció"
2038
+
2039
+ #: adminpages/pagesettings.php:83 adminpages/pagesettings.php:111
2040
+ msgid "The following pages have been created for you"
2041
+ msgstr "Les següents pàgines han estat creades per a tu"
2042
+
2043
+ #: adminpages/pagesettings.php:97 adminpages/pagesettings.php:98
2044
+ #: adminpages/pagesettings.php:126
2045
+ msgid ""
2046
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
2047
+ "page."
2048
+ msgstr ""
2049
+ "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per "
2050
+ "al Paid Memberships Pro"
2051
+
2052
+ #: adminpages/pagesettings.php:101 adminpages/pagesettings.php:104
2053
+ #: adminpages/pagesettings.php:132
2054
+ msgid ""
2055
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
2056
+ msgstr ""
2057
+ "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel "
2058
+ "Paid Memberships Pro o"
2059
+
2060
+ #: adminpages/pagesettings.php:102 adminpages/pagesettings.php:104
2061
+ #: adminpages/pagesettings.php:132
2062
+ msgid "click here to let us generate them for you"
2063
+ msgstr "Clica aquí per permetre’ns generar-les per a tu"
2064
+
2065
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:112
2066
+ #: adminpages/pagesettings.php:140
2067
+ msgid "Account Page"
2068
+ msgstr "Pàgina de Compte"
2069
+
2070
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
2071
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
2072
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
2073
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
2074
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
2075
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2076
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:177
2077
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:193
2078
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
2079
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
2080
+ #: adminpages/pagesettings.php:241
2081
+ msgid "Choose One"
2082
+ msgstr "Escull-ne un"
2083
+
2084
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
2085
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
2086
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
2087
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
2088
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
2089
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
2090
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
2091
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2092
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
2093
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
2094
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
2095
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:197
2096
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
2097
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:225
2098
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
2099
+ #: adminpages/pagesettings.php:244
2100
+ msgid "edit page"
2101
+ msgstr "Edita la pàgina"
2102
+
2103
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
2104
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
2105
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
2106
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
2107
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
2108
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:151
2109
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:164
2110
+ #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
2111
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
2112
+ #: adminpages/pagesettings.php:195 adminpages/pagesettings.php:198
2113
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
2114
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
2115
+ #: adminpages/pagesettings.php:227 adminpages/pagesettings.php:230
2116
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:246
2117
+ msgid "view page"
2118
+ msgstr "Mira la pàgina"
2119
+
2120
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
2121
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
2122
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
2123
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:121
2124
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2125
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2126
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2127
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:166
2128
+ #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
2129
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:184
2130
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
2131
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:200
2132
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
2133
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:216
2134
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:229
2135
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:245
2136
+ #: adminpages/pagesettings.php:248
2137
+ msgid "Include the shortcode"
2138
+ msgstr "Inclou l’”enllaç” (shortcode)"
2139
+
2140
+ #: adminpages/pagesettings.php:129 adminpages/pagesettings.php:125
2141
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2142
+ #: adminpages/pagesettings.php:158
2143
+ msgid "Billing Information Page"
2144
+ msgstr "Pàgina d’informació de Facturació"
2145
+
2146
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:138
2147
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2148
+ #: adminpages/pagesettings.php:173
2149
+ msgid "Cancel Page"
2150
+ msgstr "Cancel·la pàgina"
2151
+
2152
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:152
2153
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2154
+ #: adminpages/pagesettings.php:189
2155
+ msgid "Checkout Page"
2156
+ msgstr "Pàgina de Checkout"
2157
+
2158
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:166
2159
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2160
+ #: adminpages/pagesettings.php:205
2161
+ msgid "Confirmation Page"
2162
+ msgstr "Pàgina de Confirmació"
2163
+
2164
+ #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:180
2165
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2166
+ #: adminpages/pagesettings.php:221
2167
+ msgid "Invoice Page"
2168
+ msgstr "Pàgina de Factura"
2169
+
2170
+ #: adminpages/pagesettings.php:224 adminpages/pagesettings.php:194
2171
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2172
+ #: adminpages/pagesettings.php:237
2173
+ msgid "Levels Page"
2174
+ msgstr "Pàgina de Nivells"
2175
+
2176
+ #: adminpages/pagesettings.php:245
2177
+ msgid "Additional Page Settings"
2178
+ msgstr "Configuració addicional de pàgina"
2179
+
2180
+ #: adminpages/pagesettings.php:280
2181
+ msgid "Generate Page"
2182
+ msgstr "Genera pàgina"
2183
+
2184
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
2185
+ #: adminpages/paymentsettings.php:82
2186
+ msgid "Your payment settings have been updated."
2187
+ msgstr "La teva configuració de pagament ha estat actualitzada"
2188
+
2189
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
2190
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2191
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
2192
+ msgid "Payment Gateway"
2193
+ msgstr "Passarela de pagament (Payment Gateway)"
2194
+
2195
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:201
2196
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2197
+ msgid "SSL Settings"
2198
+ msgstr "Configuració SSL"
2199
+
2200
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
2201
+ msgid ""
2202
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
2203
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2204
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2205
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2206
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2207
+ msgstr ""
2208
+ "Aprèn més sobre <a title=\"Paid Memberships Pro - SSL Settings\" target="
2209
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2210
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2211
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2212
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2213
+
2214
+ #: adminpages/paymentsettings.php:101
2215
+ msgid "Choose a Gateway"
2216
+ msgstr "Escull una passarel·la"
2217
+
2218
+ #: adminpages/paymentsettings.php:148
2219
+ msgid "Currency and Tax Settings"
2220
+ msgstr "Configuració de moneda i impostos"
2221
+
2222
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
2223
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
2224
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
2225
+ msgid "Currency"
2226
+ msgstr "Moneda"
2227
+
2228
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
2229
+ #: adminpages/paymentsettings.php:402
2230
+ msgid ""
2231
+ "Not all currencies will be supported by every gateway. Please check with "
2232
+ "your gateway."
2233
+ msgstr ""
2234
+ "No totes les monedes es poden usar a totes les passarel·les. Si us plau "
2235
+ "comprova la teva passarel·la."
2236
+
2237
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
2238
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
2239
+ #: adminpages/paymentsettings.php:408
2240
+ msgid "Accepted Credit Card Types"
2241
+ msgstr "Tipus de tarjetes de crèdit acceptades."
2242
+
2243
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2244
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2245
+ #: adminpages/paymentsettings.php:445
2246
+ msgid "Sales Tax"
2247
+ msgstr "Impost a la venta"
2248
+
2249
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2250
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
2251
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
2252
+ #: pages/billing.php:78 pages/billing.php:82
2253
+ msgid "optional"
2254
+ msgstr "opcional"
2255
+
2256
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
2257
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
2258
+ #: adminpages/paymentsettings.php:448
2259
+ msgid "Tax State"
2260
+ msgstr "Estat/país de la taxa"
2261
+
2262
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
2263
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
2264
+ #: adminpages/paymentsettings.php:449
2265
+ msgid "abbreviation, e.g. \"PA\""
2266
+ msgstr "abreviació, per exemple “PA”"
2267
+
2268
+ #: adminpages/paymentsettings.php:193
2269
+ msgid "Tax Rate"
2270
+ msgstr "Tarifa de l’impost"
2271
+
2272
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
2273
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
2274
+ #: adminpages/paymentsettings.php:451
2275
+ msgid "decimal, e.g. \"0.06\""
2276
+ msgstr "decimal, per exemple \"0.06\""
2277
+
2278
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
2279
+ #: adminpages/paymentsettings.php:452
2280
+ msgid ""
2281
+ "US only. If values are given, tax will be applied for any members ordering "
2282
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
2283
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
2284
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
2285
+ msgstr ""
2286
+ "Només US. Si es donen els valors, l’impost s’aplicarà per a qualsevol "
2287
+ "subscriptor que faci una comanda des de l’Estat seleccionat.<br />per a "
2288
+ "normes més complexes fora dels US utilitzeu <a target=\"_blank\" href="
2289
+ "\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-"
2290
+ "pro/\">pmpro_tax filter</a>."
2291
+
2292
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
2293
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
2294
+ msgid "Force SSL"
2295
+ msgstr "Força SSL"
2296
+
2297
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
2298
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
2299
+ msgid "Yes (with JavaScript redirects)"
2300
+ msgstr "Sí (amb redirecció de JavaScript)"
2301
+
2302
+ #: adminpages/paymentsettings.php:214
2303
+ msgid ""
2304
+ "Recommended: Yes. Try the JavaScript redirects setting if you are having "
2305
+ "issues with infinite redirect loops."
2306
+ msgstr ""
2307
+ "Recomanat: Sí. Prova la redirecció de JavaScript si tens problemes amb "
2308
+ "redireccions amb “loops” infinits."
2309
+
2310
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
2311
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
2312
+ #: adminpages/paymentsettings.php:470
2313
+ msgid "SSL Seal Code"
2314
+ msgstr "SSL Seal Code"
2315
+
2316
+ #: adminpages/paymentsettings.php:223
2317
+ msgid ""
2318
+ "Your <strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2319
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> must "
2320
+ "be installed by your web host. Your <strong>SSL Seal</strong> will be a "
2321
+ "short HTML or JavaScript snippet that can be pasted here."
2322
+ msgstr ""
2323
+ "El teu<strong><a target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2324
+ "documentation/initial-plugin-setup/ssl/\">SSL Certificate</a></strong> ha de "
2325
+ "ser instal·lat pel vostre hosting. El teu <strong>SSL Seal</strong> serà un "
2326
+ "petit HTML o JavaScript snippet que es pot enganxar aquí."
2327
+
2328
+ #: adminpages/paymentsettings.php:228
2329
+ msgid "Extra HTTPS URL Filter"
2330
+ msgstr "Extra HTTPS URL Filtre"
2331
+
2332
+ #: adminpages/paymentsettings.php:231
2333
+ msgid ""
2334
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
2335
+ "secure pages. Check this if you are using SSL and have warnings on your "
2336
+ "checkout pages."
2337
+ msgstr ""
2338
+ "Passa tot el codi HTML generat a través del filtre URL per a afegir HTTPS a "
2339
+ "URLs utilitzat a les pàgines segures. Comprova això si estàs utilitzant SSL "
2340
+ "i tens advertències a les teves pàgines de Checkout."
2341
+
2342
+ #: adminpages/reports.php:40 adminpages/reports.php:26
2343
+ #: adminpages/reports.php:37
2344
+ msgid "Details"
2345
+ msgstr "Detalls"
2346
+
2347
+ #: adminpages/reports.php:61
2348
+ msgid "Back to Reports Dashboard"
2349
+ msgstr "Torna a l’escriptori de Reports (Reports Dashboard)"
2350
+
2351
+ #: adminpages/reports/login.php:16
2352
+ msgid "Visits, Views, and Logins"
2353
+ msgstr "Visites, vistes i Logins"
2354
+
2355
+ #: adminpages/reports/login.php:31
2356
+ msgid "Visits"
2357
+ msgstr "Visites"
2358
+
2359
+ #: adminpages/reports/login.php:32
2360
+ msgid "Views"
2361
+ msgstr "Vistes"
2362
+
2363
+ #: adminpages/reports/login.php:33
2364
+ msgid "Logins"
2365
+ msgstr "Logins"
2366
+
2367
+ #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2368
+ #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2369
+ #: adminpages/reports/memberships.php:81
2370
+ msgid "Today"
2371
+ msgstr "Avui"
2372
+
2373
+ #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2374
+ #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2375
+ #: adminpages/reports/memberships.php:77
2376
+ msgid "This Month"
2377
+ msgstr "Aquest mes"
2378
+
2379
+ #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2380
+ #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2381
+ #: adminpages/reports/memberships.php:69
2382
+ msgid "All Time"
2383
+ msgstr "Sempre"
2384
+
2385
+ #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2386
+ #: adminpages/reports/login.php:63
2387
+ msgid "Visits, Views, and Logins Report"
2388
+ msgstr "Visites, vistes i informe de Logins "
2389
+
2390
+ #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2391
+ #: adminpages/reports/login.php:68
2392
+ msgid "All Users"
2393
+ msgstr "Tots els usuaris"
2394
+
2395
+ #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2396
+ #: adminpages/reports/login.php:148
2397
+ msgid "Last Visit"
2398
+ msgstr "Última visita"
2399
+
2400
+ #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2401
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2402
+ #: adminpages/reports/login.php:149
2403
+ msgid "Visits This Month"
2404
+ msgstr "Visites aquest mes"
2405
+
2406
+ #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2407
+ #: adminpages/reports/login.php:150
2408
+ msgid "Total Visits"
2409
+ msgstr "Visites totals"
2410
+
2411
+ #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2412
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2413
+ #: adminpages/reports/login.php:151
2414
+ msgid "Views This Month"
2415
+ msgstr "Visites aquest mes"
2416
+
2417
+ #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2418
+ #: adminpages/reports/login.php:152
2419
+ msgid "Total Views"
2420
+ msgstr "Visites totals"
2421
+
2422
+ #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2423
+ #: adminpages/reports/login.php:153
2424
+ msgid "Last Login"
2425
+ msgstr "Últim Login"
2426
+
2427
+ #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2428
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2429
+ #: adminpages/reports/login.php:154
2430
+ msgid "Logins This Month"
2431
+ msgstr "Logins aquest mes"
2432
+
2433
+ #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2434
+ #: adminpages/reports/login.php:155
2435
+ msgid "Total Logins"
2436
+ msgstr "Total de Logins"
2437
+
2438
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:259
2439
+ #: adminpages/reports/memberships.php:252
2440
+ #: adminpages/reports/memberships.php:288
2441
+ msgid "Membership Stats"
2442
+ msgstr "Estadístiques dels subscriptors"
2443
+
2444
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
2445
+ msgid "Signups"
2446
+ msgstr "Altes (Signups)"
2447
+
2448
+ #: adminpages/reports/memberships.php:38
2449
+ msgid "All Cancellations"
2450
+ msgstr "Totes les cancel·lacions"
2451
+
2452
+ #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2453
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2454
+ msgid "This Year"
2455
+ msgstr "Aquest any"
2456
+
2457
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2458
+ #: adminpages/reports/memberships.php:258
2459
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2460
+ #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2461
+ msgid "Daily"
2462
+ msgstr "Diari"
2463
+
2464
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2465
+ #: adminpages/reports/memberships.php:259
2466
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2467
+ #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2468
+ msgid "Monthly"
2469
+ msgstr "Mensual"
2470
+
2471
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2472
+ #: adminpages/reports/memberships.php:260
2473
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2474
+ #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2475
+ msgid "Annual"
2476
+ msgstr "Anual"
2477
+
2478
+ #: adminpages/reports/memberships.php:270
2479
+ msgid "Signups vs. All Cancellations"
2480
+ msgstr "Altes vs. totes les Cancel·lacions"
2481
+
2482
+ #: adminpages/reports/memberships.php:271
2483
+ #: adminpages/reports/memberships.php:263
2484
+ #: adminpages/reports/memberships.php:299
2485
+ msgid "Signups vs. Cancellations"
2486
+ msgstr "Altes vs. Cancel·lacions"
2487
+
2488
+ #: adminpages/reports/memberships.php:272
2489
+ msgid "Signups vs. Expirations"
2490
+ msgstr "Altes vs. Expiracions"
2491
+
2492
+ #: adminpages/reports/memberships.php:277
2493
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2494
+ #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2495
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2496
+ #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2497
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2498
+ #: adminpages/reports/memberships.php:268
2499
+ #: adminpages/reports/memberships.php:279
2500
+ #: adminpages/reports/memberships.php:304
2501
+ #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2502
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2503
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2504
+ #: adminpages/reports/sales.php:215
2505
+ msgid "for"
2506
+ msgstr "per a"
2507
+
2508
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2509
+ #: adminpages/reports/memberships.php:295
2510
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2511
+ #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2512
+ msgid "Generate Report"
2513
+ msgstr "Genera Informe"
2514
+
2515
+ #: adminpages/reports/sales.php:18
2516
+ msgid "Sales and Revenue (Testing/Sandbox)"
2517
+ msgstr "Vendes i beneficis (prova/Sandbox)"
2518
+
2519
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2520
+ #: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
2521
+ msgid "Sales and Revenue"
2522
+ msgstr "Vendes i beneficis"
2523
+
2524
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2525
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2526
+ #: adminpages/reports/sales.php:202
2527
+ msgid "Sales"
2528
+ msgstr "Vendes"
2529
+
2530
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2531
+ #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2532
+ #: adminpages/reports/sales.php:201
2533
+ msgid "Revenue"
2534
+ msgstr "Benefici"
2535
+
2536
+ #: adminpages/templates/orders-email.php:14
2537
+ #: adminpages/templates/orders-print.php:50
2538
+ msgid "Invoice #: "
2539
+ msgstr "Factura #: "
2540
+
2541
+ #: adminpages/templates/orders-email.php:18
2542
+ #: adminpages/templates/orders-print.php:54
2543
+ msgid "Date:"
2544
+ msgstr "Data:"
2545
+
2546
+ #: adminpages/templates/orders-email.php:24
2547
+ msgid "Bill to:"
2548
+ msgstr "Facturat a:"
2549
+
2550
+ #: adminpages/templates/orders-email.php:47
2551
+ #: adminpages/templates/orders-print.php:76
2552
+ msgid "Item"
2553
+ msgstr "Item"
2554
+
2555
+ #: adminpages/templates/orders-email.php:48
2556
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2557
+ #: pages/levels.php:14
2558
+ msgid "Price"
2559
+ msgstr "Preu"
2560
+
2561
+ #: adminpages/templates/orders-email.php:56
2562
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2563
+ #: pages/invoice.php:77
2564
+ msgid "Subtotal"
2565
+ msgstr "Subtotal"
2566
+
2567
+ #: adminpages/updates.php:11
2568
+ msgid "Updating Paid Memberships Pro"
2569
+ msgstr "Actualitzant Paid Memberships Pro"
2570
+
2571
+ #: adminpages/updates.php:18
2572
+ msgid "Updates are processing. This may take a few minutes to complete."
2573
+ msgstr "S’està processant l’actualització. Això pot trigar uns minuts."
2574
+
2575
+ #: adminpages/updates.php:23
2576
+ msgid "Update complete."
2577
+ msgstr "Actualització completa"
2578
+
2579
+ #: classes/class.memberorder.php:697 classes/class.memberorder.php:553
2580
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2581
+ #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2582
+ #: includes/cleanup.php:24
2583
+ #, php-format
2584
+ msgid ""
2585
+ "There was an error canceling the subscription for user with ID=%s. You will "
2586
+ "want to check your payment gateway to see if their subscription is still "
2587
+ "active."
2588
+ msgstr ""
2589
+ "Hi ha hagut un error cancel·lant la subscripció per a l’usuari ID=%s. "
2590
+ "Comprova a la passarel·la de pagament si la seva subscripció encara és "
2591
+ "activa."
2592
+
2593
+ #: classes/class.pmproemail.php:37
2594
+ #, php-format
2595
+ msgid "An Email From %s"
2596
+ msgstr "Un correu electrònic de %s"
2597
+
2598
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2599
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2600
+ #, php-format
2601
+ msgid "Your membership at %s has been CANCELLED"
2602
+ msgstr "La seva subscripció a %s ha estat Cancel·lada"
2603
+
2604
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2605
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2606
+ #, php-format
2607
+ msgid "Membership for %s at %s has been CANCELLED"
2608
+ msgstr "La subscripció per a %s a %s ha estat cancel·lada"
2609
+
2610
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2611
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2612
+ #: classes/class.pmproemail.php:178
2613
+ #, php-format
2614
+ msgid "Your membership confirmation for %s"
2615
+ msgstr "Confirmació per a la seva subscripció %s"
2616
+
2617
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2618
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2619
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2620
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2621
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2622
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2623
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2624
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2625
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2626
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2627
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2628
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2629
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2630
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2631
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2632
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2633
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2634
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2635
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2636
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2637
+ #: classes/gateways/class.pmprogateway_stripe.php:496
2638
+ #: classes/gateways/class.pmprogateway_stripe.php:506
2639
+ #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:66
2640
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2641
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:85
2642
+ #: pages/checkout.php:549 pages/checkout.php:565 pages/checkout.php:566
2643
+ #: pages/checkout.php:573 pages/checkout.php:594 pages/checkout.php:603
2644
+ #: pages/checkout.php:612 pages/confirmation.php:51 pages/invoice.php:32
2645
+ msgid "Discount Code"
2646
+ msgstr "Codi de descompte"
2647
+
2648
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2649
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2650
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2651
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2652
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2653
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2654
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2655
+ #: classes/class.pmproemail.php:654
2656
+ #, php-format
2657
+ msgid "This membership will expire on %s."
2658
+ msgstr "Aquesta subscripció expirarà a %s."
2659
+
2660
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2661
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2662
+ #: classes/class.pmproemail.php:278
2663
+ #, php-format
2664
+ msgid "Member Checkout for %s at %s"
2665
+ msgstr "Checkout de subscriptor per %s a %s"
2666
+
2667
+ #: classes/class.pmproemail.php:375
2668
+ #, php-format
2669
+ msgid "Your billing information has been updated at %s"
2670
+ msgstr "S’ha actualitzat la seva informació de facturació a %s"
2671
+
2672
+ #: classes/class.pmproemail.php:428
2673
+ #, php-format
2674
+ msgid "Billing information has been updated for %s at %s"
2675
+ msgstr "Informació de facturació ha estat actualitzat per %s a %s"
2676
+
2677
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2678
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2679
+ #: classes/class.pmproemail.php:467
2680
+ #, php-format
2681
+ msgid "Membership Payment Failed at %s"
2682
+ msgstr "Pagament per a subscripció ha Errat a %s"
2683
+
2684
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2685
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2686
+ #: classes/class.pmproemail.php:513
2687
+ #, php-format
2688
+ msgid "Membership Payment Failed For %s at %s"
2689
+ msgstr "Pagament per a subscripció ha Errat per %s a %s"
2690
+
2691
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2692
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2693
+ #, php-format
2694
+ msgid "Credit Card on File Expiring Soon at %s"
2695
+ msgstr "La tarjeta de crèdit a l’arxiu caducarà aviat a %s"
2696
+
2697
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2698
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2699
+ #: classes/class.pmproemail.php:608
2700
+ #, php-format
2701
+ msgid "INVOICE for %s membership"
2702
+ msgstr "FACTURA per a %s subscriptor"
2703
+
2704
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2705
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2706
+ #: classes/class.pmproemail.php:679
2707
+ #, php-format
2708
+ msgid "Your trial at %s is ending soon"
2709
+ msgstr "El teu període de prova a %s aviat acabarà."
2710
+
2711
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2712
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2713
+ #: classes/class.pmproemail.php:713
2714
+ #, php-format
2715
+ msgid "Your membership at %s has ended"
2716
+ msgstr "La teva subscripció a %s ha finalitzat"
2717
+
2718
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2719
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2720
+ #: classes/class.pmproemail.php:738
2721
+ #, php-format
2722
+ msgid "Your membership at %s will end soon"
2723
+ msgstr "La teva subscripció a %s finalitzarà aviat."
2724
+
2725
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2726
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2727
+ #: classes/class.pmproemail.php:758
2728
+ #, php-format
2729
+ msgid "Your membership at %s has been changed"
2730
+ msgstr "La teva subscripció a %s ha canviat"
2731
+
2732
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2733
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2734
+ #: classes/class.pmproemail.php:800
2735
+ #, php-format
2736
+ msgid "The new level is %s"
2737
+ msgstr "El teu nou nivell és %s"
2738
+
2739
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2740
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2741
+ #: classes/class.pmproemail.php:764
2742
+ msgid "Your membership has been cancelled"
2743
+ msgstr "La teva subscripció ha finalitzat"
2744
+
2745
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2746
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2747
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2748
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2749
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2750
+ #, php-format
2751
+ msgid "This membership will expire on %s"
2752
+ msgstr "La teva subscripció finalitzarà a %s"
2753
+
2754
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2755
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2756
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2757
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2758
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2759
+ msgid "This membership does not expire"
2760
+ msgstr "Aquesta subscripció no expira"
2761
+
2762
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2763
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2764
+ #: classes/class.pmproemail.php:796
2765
+ #, php-format
2766
+ msgid "Membership for %s at %s has been changed"
2767
+ msgstr "Subscripció per %s a %s ha canviat"
2768
+
2769
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2770
+ #: classes/class.pmproemail.php:802
2771
+ msgid "Membership has been cancelled"
2772
+ msgstr "Subscripció cancel·lada"
2773
+
2774
+ #: classes/class.pmproemail.php:848
2775
+ msgid "Invoice for Order #: "
2776
+ msgstr "Factura per a la comanda #:"
2777
+
2778
+ #: classes/gateways/class.pmprogateway.php:55
2779
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2780
+ #: classes/gateways/class.pmprogateway_check.php:193
2781
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2782
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2783
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2784
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2785
+ #: classes/gateways/class.pmprogateway_check.php:60
2786
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2787
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2788
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2789
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2790
+ msgid "Unknown error: Authorization failed."
2791
+ msgstr "Error desconegut: Ha fallat l’autorització"
2792
+
2793
+ #: classes/gateways/class.pmprogateway.php:106
2794
+ #: classes/gateways/class.pmprogateway.php:111
2795
+ #: classes/gateways/class.pmprogateway.php:129
2796
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2797
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2798
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2799
+ #: classes/gateways/class.pmprogateway_check.php:245
2800
+ #: classes/gateways/class.pmprogateway_check.php:250
2801
+ #: classes/gateways/class.pmprogateway_check.php:268
2802
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2803
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2804
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2805
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2806
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2807
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2808
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2809
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2810
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2811
+ #: classes/gateways/class.pmprogateway_check.php:111
2812
+ #: classes/gateways/class.pmprogateway_check.php:116
2813
+ #: classes/gateways/class.pmprogateway_check.php:134
2814
+ #: classes/gateways/class.pmprogateway_check.php:244
2815
+ #: classes/gateways/class.pmprogateway_check.php:249
2816
+ #: classes/gateways/class.pmprogateway_check.php:267
2817
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2818
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2819
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2820
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2821
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2822
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2823
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2824
+ msgid "Unknown error: Payment failed."
2825
+ msgstr "Error desconegut: Ha fallat el pagament."
2826
+
2827
+ #: classes/gateways/class.pmprogateway.php:113
2828
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2829
+ #: classes/gateways/class.pmprogateway_check.php:252
2830
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2831
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2832
+ #: classes/gateways/class.pmprogateway_check.php:118
2833
+ #: classes/gateways/class.pmprogateway_check.php:251
2834
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2835
+ msgid ""
2836
+ "A partial payment was made that we could not void. Please contact the site "
2837
+ "owner immediately to correct this."
2838
+ msgstr ""
2839
+ "Un pagament parcial es va fer que no ens podia anular. Contacteu al "
2840
+ "propietari del lloc immediatament per corregir-ho."
2841
+
2842
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
2843
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:122
2844
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:130
2845
+ #: paid-memberships-pro.php:131
2846
+ msgid "Authorize.net"
2847
+ msgstr "Authorize.net"
2848
+
2849
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2850
+ msgid "Authorize.net Settings"
2851
+ msgstr "Authorize.net Configuració"
2852
+
2853
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2854
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2855
+ #: adminpages/paymentsettings.php:269
2856
+ msgid "Login Name"
2857
+ msgstr "Nom d’usuari"
2858
+
2859
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2860
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2861
+ #: adminpages/paymentsettings.php:277
2862
+ msgid "Transaction Key"
2863
+ msgstr "Clau de transacció"
2864
+
2865
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2866
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2867
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2868
+ msgid "Silent Post URL"
2869
+ msgstr "Silent Post URL"
2870
+
2871
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2872
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2873
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2874
+ msgid ""
2875
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2876
+ msgstr ""
2877
+ "Per integrar totalment Authorize.net, assegura’t de configurar Silent Post "
2878
+ "URL a"
2879
+
2880
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2881
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
2882
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2883
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2884
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2885
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2886
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2887
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2888
+ msgid "Could not connect to Authorize.net"
2889
+ msgstr "No podria connectar a Authorize.net"
2890
+
2891
+ #: classes/gateways/class.pmprogateway_braintree.php:76
2892
+ #: paid-memberships-pro.php:133
2893
+ #: classes/gateways/class.pmprogateway_braintree.php:63
2894
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2895
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
2896
+ msgid "Braintree Payments"
2897
+ msgstr "Pagaments Braintree"
2898
+
2899
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2900
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2901
+ msgid "Braintree Settings"
2902
+ msgstr "Configuració Braintree"
2903
+
2904
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2905
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2906
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2907
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2908
+ #: adminpages/paymentsettings.php:369
2909
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2910
+ msgid "Merchant ID"
2911
+ msgstr "ID de comerciant"
2912
+
2913
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2914
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2915
+ #: adminpages/paymentsettings.php:311
2916
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2917
+ msgid "Public Key"
2918
+ msgstr "Clau Pública"
2919
+
2920
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2921
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2922
+ #: adminpages/paymentsettings.php:319
2923
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2924
+ msgid "Private Key"
2925
+ msgstr "Clau Privada"
2926
+
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2928
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2929
+ #: adminpages/paymentsettings.php:327
2930
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2931
+ msgid "Client-Side Encryption Key"
2932
+ msgstr "Clau d’encriptació del Client"
2933
+
2934
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2935
+ #: classes/gateways/class.pmprogateway_stripe.php:214
2936
+ #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2937
+ #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2938
+ #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2939
+ #: adminpages/paymentsettings.php:519
2940
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2941
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2942
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2943
+ #: classes/gateways/class.pmprogateway_stripe.php:192
2944
+ msgid "Web Hook URL"
2945
+ msgstr "Web Hook URL"
2946
+
2947
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2948
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2949
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2950
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2951
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2952
+ msgstr ""
2953
+ "Per integrar totalment Braintree, assegura’t de configurar Web Hook URL a"
2954
+
2955
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2956
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
2957
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2958
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2959
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2960
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2961
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2962
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2963
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2964
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
2965
+ msgid "Payment Information"
2966
+ msgstr "Informació de pagament"
2967
+
2968
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2969
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
2970
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2971
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2972
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2973
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2974
+ #: classes/gateways/class.pmprogateway_stripe.php:398
2975
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:476
2976
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2977
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
2978
+ #, php-format
2979
+ msgid "We Accept %s"
2980
+ msgstr "Acceptem %s"
2981
+
2982
+ #: classes/gateways/class.pmprogateway_braintree.php:318
2983
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
2984
+ #: pages/checkout.php:570 classes/gateways/class.pmprogateway_braintree.php:303
2985
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2986
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2987
+ #: classes/gateways/class.pmprogateway_stripe.php:450
2988
+ #: classes/gateways/class.pmprogateway_stripe.php:460
2989
+ #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:244
2990
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2991
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2992
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
2993
+ msgid "Card Number"
2994
+ msgstr "Nombre de Tarjeta"
2995
+
2996
+ #: classes/gateways/class.pmprogateway_braintree.php:355
2997
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
2998
+ #: pages/checkout.php:607 classes/gateways/class.pmprogateway_braintree.php:340
2999
+ #: classes/gateways/class.pmprogateway_braintree.php:353
3000
+ #: classes/gateways/class.pmprogateway_stripe.php:486
3001
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3002
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3003
+ #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:281
3004
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
3005
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3006
+ #: pages/checkout.php:585 pages/checkout.php:594 pages/checkout.php:603
3007
+ msgid "CVV"
3008
+ msgstr "CVV"
3009
+
3010
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3011
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
3012
+ #: pages/checkout.php:608 classes/gateways/class.pmprogateway_braintree.php:341
3013
+ #: classes/gateways/class.pmprogateway_braintree.php:354
3014
+ #: classes/gateways/class.pmprogateway_stripe.php:487
3015
+ #: classes/gateways/class.pmprogateway_stripe.php:488
3016
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3017
+ #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:282
3018
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
3019
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3020
+ #: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
3021
+ msgid "what's this?"
3022
+ msgstr "què és això?"
3023
+
3024
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3025
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
3026
+ #: pages/checkout.php:618 classes/gateways/class.pmprogateway_braintree.php:351
3027
+ #: classes/gateways/class.pmprogateway_braintree.php:364
3028
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3029
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3030
+ #: classes/gateways/class.pmprogateway_stripe.php:508
3031
+ #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:78
3032
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3033
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
3034
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
3035
+ #: pages/checkout.php:614
3036
+ msgid "Apply"
3037
+ msgstr "Aplica"
3038
+
3039
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3040
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3041
+ #: classes/gateways/class.pmprogateway_braintree.php:61
3042
+ #: classes/gateways/class.pmprogateway_braintree.php:406
3043
+ #: classes/gateways/class.pmprogateway_braintree.php:419
3044
+ #: classes/gateways/class.pmprogateway_stripe.php:53
3045
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
3046
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
3047
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
3048
+ #: classes/gateways/class.pmprogateway_stripe.php:1036
3049
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
3050
+ msgid "Unknown error: Initial payment failed."
3051
+ msgstr "Error desconegut: ha fallat el pagament inicial"
3052
+
3053
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3054
+ #: classes/gateways/class.pmprogateway_braintree.php:120
3055
+ #: classes/gateways/class.pmprogateway_braintree.php:465
3056
+ #: classes/gateways/class.pmprogateway_braintree.php:478
3057
+ msgid "Error during settlement:"
3058
+ msgstr "Error durant la liquidació:"
3059
+
3060
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3061
+ #: classes/gateways/class.pmprogateway_braintree.php:129
3062
+ #: classes/gateways/class.pmprogateway_braintree.php:474
3063
+ #: classes/gateways/class.pmprogateway_braintree.php:487
3064
+ msgid "Error during charge:"
3065
+ msgstr "Error durant la càrrega:"
3066
+
3067
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3068
+ #: classes/gateways/class.pmprogateway_braintree.php:198
3069
+ #: classes/gateways/class.pmprogateway_braintree.php:221
3070
+ #: classes/gateways/class.pmprogateway_braintree.php:566
3071
+ #: classes/gateways/class.pmprogateway_braintree.php:579
3072
+ msgid "Failed to update customer."
3073
+ msgstr "No s’ha pogut actualitzar el comprador."
3074
+
3075
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3076
+ #: classes/gateways/class.pmprogateway_braintree.php:246
3077
+ #: classes/gateways/class.pmprogateway_braintree.php:269
3078
+ #: classes/gateways/class.pmprogateway_braintree.php:614
3079
+ #: classes/gateways/class.pmprogateway_braintree.php:627
3080
+ msgid "Failed to create customer."
3081
+ msgstr "No s’ha pogut crear el comprador"
3082
+
3083
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3084
+ #: classes/gateways/class.pmprogateway_braintree.php:253
3085
+ #: classes/gateways/class.pmprogateway_braintree.php:276
3086
+ #: classes/gateways/class.pmprogateway_braintree.php:621
3087
+ #: classes/gateways/class.pmprogateway_braintree.php:634
3088
+ msgid "Error creating customer record with Braintree:"
3089
+ msgstr "No s’ha pogut crear el comprador amb Branitree:"
3090
+
3091
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3092
+ #: classes/gateways/class.pmprogateway_braintree.php:344
3093
+ #: classes/gateways/class.pmprogateway_braintree.php:345
3094
+ #: classes/gateways/class.pmprogateway_braintree.php:376
3095
+ #: classes/gateways/class.pmprogateway_braintree.php:721
3096
+ #: classes/gateways/class.pmprogateway_braintree.php:734
3097
+ msgid "Error subscribing customer to plan with Braintree:"
3098
+ msgstr "No s’ha pogut subscriure el comprador al pla amb Braintree:"
3099
+
3100
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3101
+ #: classes/gateways/class.pmprogateway_braintree.php:359
3102
+ #: classes/gateways/class.pmprogateway_braintree.php:360
3103
+ #: classes/gateways/class.pmprogateway_braintree.php:391
3104
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3105
+ #: classes/gateways/class.pmprogateway_braintree.php:749
3106
+ msgid "Failed to subscribe with Braintree:"
3107
+ msgstr "No s’ha pogut subscriure a Braintree:"
3108
+
3109
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3110
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3111
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3112
+ #: classes/gateways/class.pmprogateway_braintree.php:397
3113
+ #: classes/gateways/class.pmprogateway_braintree.php:398
3114
+ #: classes/gateways/class.pmprogateway_braintree.php:410
3115
+ #: classes/gateways/class.pmprogateway_braintree.php:411
3116
+ #: classes/gateways/class.pmprogateway_braintree.php:417
3117
+ #: classes/gateways/class.pmprogateway_braintree.php:418
3118
+ #: classes/gateways/class.pmprogateway_braintree.php:429
3119
+ #: classes/gateways/class.pmprogateway_braintree.php:442
3120
+ #: classes/gateways/class.pmprogateway_braintree.php:449
3121
+ #: classes/gateways/class.pmprogateway_braintree.php:774
3122
+ #: classes/gateways/class.pmprogateway_braintree.php:787
3123
+ #: classes/gateways/class.pmprogateway_braintree.php:794
3124
+ #: classes/gateways/class.pmprogateway_braintree.php:800
3125
+ #: classes/gateways/class.pmprogateway_braintree.php:807
3126
+ #: classes/gateways/class.pmprogateway_stripe.php:343
3127
+ #: classes/gateways/class.pmprogateway_stripe.php:344
3128
+ #: classes/gateways/class.pmprogateway_stripe.php:351
3129
+ #: classes/gateways/class.pmprogateway_stripe.php:353
3130
+ #: classes/gateways/class.pmprogateway_stripe.php:354
3131
+ #: classes/gateways/class.pmprogateway_stripe.php:361
3132
+ #: classes/gateways/class.pmprogateway_stripe.php:396
3133
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3134
+ #: classes/gateways/class.pmprogateway_stripe.php:423
3135
+ msgid "Could not find the subscription."
3136
+ msgstr "No s’ha trobat la subscripció"
3137
+
3138
+ #: classes/gateways/class.pmprogateway_check.php:48
3139
+ #: paid-memberships-pro.php:126 adminpages/orders.php:399
3140
+ #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3141
+ #: adminpages/paymentsettings.php:159 paid-memberships-pro.php:116
3142
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:124
3143
+ #: paid-memberships-pro.php:125
3144
+ msgid "Pay by Check"
3145
+ msgstr "Pagament amb Check"
3146
+
3147
+ #: classes/gateways/class.pmprogateway_check.php:100
3148
+ msgid "Pay by Check Settings"
3149
+ msgstr "Configuració pagament amb check"
3150
+
3151
+ #: classes/gateways/class.pmprogateway_check.php:105
3152
+ #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3153
+ #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3154
+ msgid "Instructions"
3155
+ msgstr "Instruccions"
3156
+
3157
+ #: classes/gateways/class.pmprogateway_check.php:109
3158
+ #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3159
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3160
+ msgid ""
3161
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
3162
+ "confirmation, and invoice pages."
3163
+ msgstr ""
3164
+ "A quí escriure per a fer el check out. A on enviar-li un correu. Es mostra a "
3165
+ "les pàgines de checkout, confirmació i facturació."
3166
+
3167
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
3168
+ msgid "CyberSource"
3169
+ msgstr "CyberSource"
3170
+
3171
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
3172
+ msgid "CyberSource Settings"
3173
+ msgstr "Configuració de CyberSource"
3174
+
3175
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
3176
+ #: adminpages/paymentsettings.php:174
3177
+ msgid ""
3178
+ "This gateway option is in beta. Some functionality may not be available. "
3179
+ "Please contact Paid Memberships Pro with any issues you run into. "
3180
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
3181
+ "versions when available.</strong>"
3182
+ msgstr ""
3183
+ "Aquesta opció de passarel·la està en beta. Algunes funcions no estaran "
3184
+ "disponibles. Si us plau contacta amb Paid Memberships Pro. "
3185
+ "<strong>Assegura’t de tenir la última versió de Paid Memberships Pro</strong>"
3186
+
3187
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
3188
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
3189
+ msgid "Transaction Security Key"
3190
+ msgstr "Transaction Security Key"
3191
+
3192
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
3193
+ msgid "Payflow Pro/PayPal Pro"
3194
+ msgstr "Payflow Pro/PayPal Pro"
3195
+
3196
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
3197
+ msgid "Payflow Pro Settings"
3198
+ msgstr "Configuració Payflow Pro"
3199
+
3200
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
3201
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
3202
+ #: adminpages/paymentsettings.php:204
3203
+ msgid "Partner"
3204
+ msgstr "Soci"
3205
+
3206
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
3207
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
3208
+ #: adminpages/paymentsettings.php:212
3209
+ msgid "Vendor"
3210
+ msgstr "Venedor"
3211
+
3212
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124
3213
+ #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3214
+ #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3215
+ #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3216
+ #: pages/checkout.php:189 pages/checkout.php:191
3217
+ msgid "Password"
3218
+ msgstr "Clau"
3219
+
3220
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
3221
+ msgid "IPN Handler"
3222
+ msgstr "IPN Handler"
3223
+
3224
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
3225
+ #, php-format
3226
+ msgid ""
3227
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a "
3228
+ "target=\"_blank\" href=\"%s\">this addon</a>."
3229
+ msgstr ""
3230
+ "Payflow no utilitza IPN. Per sincronitzar subscripcions recursives, si us "
3231
+ "plau mira <a target=\"_blank\" href=\"%s\">this addon</a>."
3232
+
3233
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
3234
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3235
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
3236
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3237
+ #: classes/gateways/class.pmprogateway_paypal.php:277
3238
+ msgid ""
3239
+ "A partial payment was made that we could not refund. Please contact the site "
3240
+ "owner immediately to correct this."
3241
+ msgstr ""
3242
+ "S’ha realitzat un pagament parcial que no s’ha pogut tornar. Contacteu al "
3243
+ "propietari del lloc immediatament per corregir-ho."
3244
+
3245
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3246
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:119
3247
+ #: paid-memberships-pro.php:120 paid-memberships-pro.php:127
3248
+ #: paid-memberships-pro.php:128
3249
+ msgid "PayPal Website Payments Pro"
3250
+ msgstr "PayPal Website Payments Pro"
3251
+
3252
+ #: classes/gateways/class.pmprogateway_paypal.php:113
3253
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3254
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3255
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3256
+ msgid "PayPal Settings"
3257
+ msgstr "Configuració PayPal"
3258
+
3259
+ #: classes/gateways/class.pmprogateway_paypal.php:118
3260
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3261
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3262
+ #: adminpages/paymentsettings.php:179
3263
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3264
+ msgid ""
3265
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3266
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
3267
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
3268
+ "paypal-standard-paid-memberships-pro/\">More information on why can be found "
3269
+ "here.</a>"
3270
+ msgstr ""
3271
+ "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPal "
3272
+ "Express, Website Payments Pro (Legacy), o PayPal Pro (Payflow Pro). <a "
3273
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-"
3274
+ "using-paypal-standard-paid-memberships-pro/\">Més informació sobre per què, "
3275
+ "aquí.</a>"
3276
+
3277
+ #: classes/gateways/class.pmprogateway_paypal.php:123
3278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3279
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3280
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3281
+ #: adminpages/paymentsettings.php:236
3282
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3283
+ msgid "Gateway Account Email"
3284
+ msgstr "Correu electrònic del compte de la Passarel·la"
3285
+
3286
+ #: classes/gateways/class.pmprogateway_paypal.php:131
3287
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3288
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3289
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3290
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3291
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3292
+ #: adminpages/paymentsettings.php:336
3293
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3294
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
3295
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3296
+ msgid "API Username"
3297
+ msgstr "API Usuari"
3298
+
3299
+ #: classes/gateways/class.pmprogateway_paypal.php:139
3300
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3301
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3302
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3303
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3304
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3305
+ #: adminpages/paymentsettings.php:344
3306
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3307
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3308
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3309
+ msgid "API Password"
3310
+ msgstr "API Clau"
3311
+
3312
+ #: classes/gateways/class.pmprogateway_paypal.php:147
3313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3314
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3315
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3316
+ #: adminpages/paymentsettings.php:260
3317
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3318
+ msgid "API Signature"
3319
+ msgstr "API Signatura"
3320
+
3321
+ #: classes/gateways/class.pmprogateway_paypal.php:155
3322
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3323
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3324
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3325
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3326
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3327
+ msgid "IPN Handler URL"
3328
+ msgstr "IPN Handler URL"
3329
+
3330
+ #: classes/gateways/class.pmprogateway_paypal.php:158
3331
+ msgid ""
3332
+ "This URL is passed to PayPal for all new charges and subscriptions. You "
3333
+ "SHOULD NOT set this in your PayPal account settings."
3334
+ msgstr ""
3335
+ "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions. NO "
3336
+ "HAURIES de posar-ho a la teva configuració de compte de PAyPal"
3337
+
3338
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3339
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3340
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3341
+ #: pages/checkout.php:302
3342
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3343
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3344
+ #: pages/checkout.php:300 pages/checkout.php:309 pages/checkout.php:675
3345
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3346
+ msgid "Check Out with PayPal"
3347
+ msgstr "Check Out amb PayPal"
3348
+
3349
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3351
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3352
+ #: pages/checkout.php:728
3353
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3354
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3355
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3356
+ #: pages/checkout.php:722
3357
+ msgid "Submit and Check Out"
3358
+ msgstr "Envia i fés el Check Out"
3359
+
3360
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3361
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3362
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3363
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3364
+ #: pages/checkout.php:728
3365
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3366
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3367
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3368
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3369
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3370
+ #: pages/checkout.php:722
3371
+ msgid "Submit and Confirm"
3372
+ msgstr "Envia i confirma"
3373
+
3374
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3375
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3376
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3377
+ #: classes/gateways/class.pmprogateway_paypal.php:385
3378
+ #: classes/gateways/class.pmprogateway_paypal.php:605
3379
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3380
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3381
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3382
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3383
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3384
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3385
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3386
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3387
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3388
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
3389
+ msgid ""
3390
+ "Please contact the site owner or cancel your subscription from within PayPal "
3391
+ "to make sure you are not charged going forward."
3392
+ msgstr ""
3393
+ "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de "
3394
+ "PayPal per assegurar-te que no et cobraran en el futur."
3395
+
3396
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3397
+ #: paid-memberships-pro.php:128
3398
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3399
+ #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3400
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3401
+ msgid "PayPal Express"
3402
+ msgstr "PayPal Express"
3403
+
3404
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3405
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3406
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3407
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3408
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3409
+ msgstr ""
3410
+ "Per integrar completament PayPal, assegura’t de configurar el teu IPN "
3411
+ "Handler URL a"
3412
+
3413
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3414
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3415
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3416
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3417
+ #: preheaders/checkout.php:690 preheaders/checkout.php:697
3418
+ #: preheaders/checkout.php:702 preheaders/checkout.php:735
3419
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753
3420
+ #: preheaders/checkout.php:754 preheaders/checkout.php:757
3421
+ #: preheaders/checkout.php:762 preheaders/checkout.php:803
3422
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
3423
+ msgid "The PayPal Token was lost."
3424
+ msgstr "S’ha perdut el Token de PayPal"
3425
+
3426
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3427
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:121
3428
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:129
3429
+ #: paid-memberships-pro.php:130
3430
+ msgid "PayPal Standard"
3431
+ msgstr "PayPal Standard"
3432
+
3433
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
3434
+ msgid ""
3435
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
3436
+ "settings."
3437
+ msgstr ""
3438
+ "Aquest és el teu IPN URL. NO HAURIES de posar-ho a la teva configuració de "
3439
+ "PayPal"
3440
+
3441
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3442
+ #, php-format
3443
+ msgid ""
3444
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3445
+ "your hosting provider to enable it"
3446
+ msgstr ""
3447
+ "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilitalà o "
3448
+ "pregunta com fer-ho al teu proveidor de hosting."
3449
+
3450
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3451
+ #: paid-memberships-pro.php:127
3452
+ #: classes/gateways/class.pmprogateway_stripe.php:93
3453
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3454
+ #: classes/gateways/class.pmprogateway_stripe.php:104
3455
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3456
+ #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3457
+ msgid "Stripe"
3458
+ msgstr "Stripe"
3459
+
3460
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3461
+ #: classes/gateways/class.pmprogateway_stripe.php:148
3462
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3463
+ #: classes/gateways/class.pmprogateway_stripe.php:159
3464
+ msgid "Stripe Settings"
3465
+ msgstr "Configuració d’Stripe"
3466
+
3467
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3468
+ #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3469
+ #: adminpages/paymentsettings.php:286
3470
+ #: classes/gateways/class.pmprogateway_stripe.php:153
3471
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3472
+ #: classes/gateways/class.pmprogateway_stripe.php:164
3473
+ msgid "Secret Key"
3474
+ msgstr "Secret Key"
3475
+
3476
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3477
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3478
+ #: adminpages/paymentsettings.php:294
3479
+ #: classes/gateways/class.pmprogateway_stripe.php:161
3480
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3481
+ #: classes/gateways/class.pmprogateway_stripe.php:172
3482
+ msgid "Publishable Key"
3483
+ msgstr "Clau Publicable"
3484
+
3485
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3486
+ #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3487
+ #: adminpages/paymentsettings.php:432
3488
+ #: classes/gateways/class.pmprogateway_stripe.php:169
3489
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3490
+ #: classes/gateways/class.pmprogateway_stripe.php:180
3491
+ msgid "Show Billing Address Fields"
3492
+ msgstr "Mostra els camps d’adreça de facturació"
3493
+
3494
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3495
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3496
+ #: classes/gateways/class.pmprogateway_stripe.php:176
3497
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3498
+ #: classes/gateways/class.pmprogateway_stripe.php:187
3499
+ msgid ""
3500
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3501
+ "the checkout page.<br /><strong>If No, make sure you disable address "
3502
+ "verification in the Stripe dashboard settings.</strong>"
3503
+ msgstr ""
3504
+ "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los "
3505
+ "de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la "
3506
+ "verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
3507
+
3508
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3509
+ #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3510
+ #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3511
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3512
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3513
+ #: classes/gateways/class.pmprogateway_stripe.php:195
3514
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3515
+ msgstr ""
3516
+ "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web Hook "
3517
+ "URL a"
3518
+
3519
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3520
+ #: classes/gateways/class.pmprogateway_stripe.php:567
3521
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3522
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3523
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3524
+ msgid "Subscription Updates"
3525
+ msgstr "Actualització de subscripcions"
3526
+
3527
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3528
+ #: classes/gateways/class.pmprogateway_stripe.php:571
3529
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3530
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3531
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3532
+ msgid ""
3533
+ "Subscription updates, allow you to change the member's subscription values "
3534
+ "at predefined times. Be sure to click Update Profile after making changes."
3535
+ msgstr ""
3536
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3537
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Perfil "
3538
+ "després de fer els canvis."
3539
+
3540
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3541
+ #: classes/gateways/class.pmprogateway_stripe.php:573
3542
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3543
+ #: classes/gateways/class.pmprogateway_stripe.php:584
3544
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3545
+ msgid ""
3546
+ "Subscription updates, allow you to change the member's subscription values "
3547
+ "at predefined times. Be sure to click Update User after making changes."
3548
+ msgstr ""
3549
+ "Actualització de subscripcions, et permet canviar el valor subscripció dels "
3550
+ "membres en un moment determinat. Assegura’t de clicar Actualitza Usuari "
3551
+ "després de fer els canvis."
3552
+
3553
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
3554
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3555
+ #: classes/gateways/class.pmprogateway_stripe.php:579
3556
+ #: classes/gateways/class.pmprogateway_stripe.php:589
3557
+ #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:294
3558
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3559
+ #: pages/billing.php:341
3560
+ msgid "Update"
3561
+ msgstr "Actualitza"
3562
+
3563
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3564
+ #: classes/gateways/class.pmprogateway_stripe.php:769
3565
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3566
+ #: classes/gateways/class.pmprogateway_stripe.php:780
3567
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3568
+ msgid "Could not cancel the old subscription. Updates have not been processed."
3569
+ msgstr ""
3570
+ "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han "
3571
+ "processat."
3572
+
3573
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3574
+ #: classes/gateways/class.pmprogateway_stripe.php:190
3575
+ #: classes/gateways/class.pmprogateway_stripe.php:192
3576
+ #: classes/gateways/class.pmprogateway_stripe.php:199
3577
+ #: classes/gateways/class.pmprogateway_stripe.php:201
3578
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
3579
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
3580
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
3581
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
3582
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3583
+ #: classes/gateways/class.pmprogateway_stripe.php:1214
3584
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3585
+ msgid "Error creating customer record with Stripe:"
3586
+ msgstr "Error creant un registre d’usuari amb Stripe:"
3587
+
3588
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3589
+ #: classes/gateways/class.pmprogateway_stripe.php:1275
3590
+ msgid "Error getting subscription with Stripe:"
3591
+ msgstr "Error agafant la subscripció amb Stripe:"
3592
+
3593
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3594
+ #: classes/gateways/class.pmprogateway_stripe.php:278
3595
+ #: classes/gateways/class.pmprogateway_stripe.php:279
3596
+ #: classes/gateways/class.pmprogateway_stripe.php:286
3597
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3598
+ #: classes/gateways/class.pmprogateway_stripe.php:308
3599
+ #: classes/gateways/class.pmprogateway_stripe.php:311
3600
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
3601
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
3602
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
3603
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
3604
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3605
+ #: classes/gateways/class.pmprogateway_stripe.php:1271
3606
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
3607
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
3608
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
3609
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
3610
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3611
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3612
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3613
+ msgid "Error creating plan with Stripe:"
3614
+ msgstr "Error creant pla amb Stripe:"
3615
+
3616
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3617
+ #: classes/gateways/class.pmprogateway_stripe.php:294
3618
+ #: classes/gateways/class.pmprogateway_stripe.php:295
3619
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3620
+ #: classes/gateways/class.pmprogateway_stripe.php:318
3621
+ #: classes/gateways/class.pmprogateway_stripe.php:324
3622
+ #: classes/gateways/class.pmprogateway_stripe.php:330
3623
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3624
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3625
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3626
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
3627
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
3628
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3629
+ #: classes/gateways/class.pmprogateway_stripe.php:1452
3630
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3631
+ msgid "Error subscribing customer to plan with Stripe:"
3632
+ msgstr "Error subscrivint un pla de comprador amb Stripe:"
3633
+
3634
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3635
+ #: classes/gateways/class.pmprogateway_stripe.php:383
3636
+ #: classes/gateways/class.pmprogateway_stripe.php:389
3637
+ #: classes/gateways/class.pmprogateway_stripe.php:410
3638
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
3639
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
3640
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
3641
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
3642
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
3643
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3644
+ #: classes/gateways/class.pmprogateway_stripe.php:1548
3645
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3646
+ msgid "Could not cancel old subscription."
3647
+ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
3648
+
3649
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3650
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
3651
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
3652
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
3653
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
3654
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
3655
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3656
+ #: classes/gateways/class.pmprogateway_stripe.php:1565
3657
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3658
+ msgid "Could not find the customer."
3659
+ msgstr "No s’ha trobat el comprador."
3660
+
3661
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3662
+ #: paid-memberships-pro.php:134
3663
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53
3664
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3665
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3666
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:133
3667
+ msgid "2Checkout"
3668
+ msgstr "2Checkout"
3669
+
3670
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3671
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
3672
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3673
+ msgid "2Checkout Settings"
3674
+ msgstr "Configuració de 2Checkout"
3675
+
3676
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3677
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3678
+ msgid ""
3679
+ "Go to Account &raquo; User Management in 2Checkout and create a user with "
3680
+ "API Access and API Updating."
3681
+ msgstr ""
3682
+ "Vés a Account &raquo; User Management in 2Checkout i crea un usuari amb API "
3683
+ "Access i API Updating."
3684
+
3685
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3686
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3687
+ msgid "Password for the API user created."
3688
+ msgstr "Clau per a l’usuari de l’API creada."
3689
+
3690
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
3691
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3692
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3693
+ msgstr ""
3694
+ "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number."
3695
+
3696
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3697
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3698
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3699
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3700
+ msgid "Secret Word"
3701
+ msgstr "Paraula Secreta"
3702
+
3703
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3704
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3705
+ msgid ""
3706
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3707
+ "the Secret Word."
3708
+ msgstr ""
3709
+ "Vés a Account &raquo; Site Management. Mira sota Checkout Options i troba la "
3710
+ "Paraula Secreta"
3711
+
3712
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
3713
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3714
+ #: adminpages/paymentsettings.php:495
3715
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3716
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3717
+ msgid "TwoCheckout INS URL"
3718
+ msgstr "TwoCheckout INS URL"
3719
+
3720
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
3721
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3722
+ msgid ""
3723
+ "To fully integrate with 2Checkout, be sure to use the following for your INS "
3724
+ "URL and Approved URL"
3725
+ msgstr ""
3726
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent "
3727
+ "INS URL i Approved URL"
3728
+
3729
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3730
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3731
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3732
+ msgid "Check Out with 2Checkout"
3733
+ msgstr "Check Out amb 2Checkout"
3734
+
3735
+ #: includes/adminpages.php:48 includes/adminpages.php:9
3736
+ #: includes/adminpages.php:39 includes/adminpages.php:47
3737
+ #: includes/adminpages.php:93 includes/adminpages.php:100
3738
+ msgid "Memberships"
3739
+ msgstr "Subscripcions"
3740
+
3741
+ #: includes/adminpages.php:49 includes/adminpages.php:123
3742
+ #: includes/adminpages.php:10 includes/adminpages.php:48
3743
+ #: includes/adminpages.php:107 includes/adminpages.php:114
3744
+ #: includes/adminpages.php:118
3745
+ msgid "Page Settings"
3746
+ msgstr "Pàgina de configuració"
3747
+
3748
+ #: includes/adminpages.php:50 includes/adminpages.php:130
3749
+ #: includes/adminpages.php:11 includes/adminpages.php:49
3750
+ #: includes/adminpages.php:54 includes/adminpages.php:114
3751
+ #: includes/adminpages.php:121 includes/adminpages.php:125
3752
+ msgid "Payment Settings"
3753
+ msgstr "Configuració de Pagament"
3754
+
3755
+ #: includes/adminpages.php:55 includes/adminpages.php:165
3756
+ #: includes/adminpages.php:16 includes/adminpages.php:54
3757
+ #: includes/adminpages.php:79 includes/adminpages.php:149
3758
+ #: includes/adminpages.php:156 includes/adminpages.php:160
3759
+ msgid "Reports"
3760
+ msgstr "Informes"
3761
+
3762
+ #: includes/adminpages.php:57 includes/adminpages.php:179
3763
+ #: includes/adminpages.php:18 includes/adminpages.php:56
3764
+ #: includes/adminpages.php:89 includes/adminpages.php:163
3765
+ #: includes/adminpages.php:170 includes/adminpages.php:174
3766
+ msgid "Discount Codes"
3767
+ msgstr "Codis de descompte"
3768
+
3769
+ #: includes/adminpages.php:61
3770
+ msgid "Updates Required"
3771
+ msgstr "Actualitzacions requerides"
3772
+
3773
+ #: includes/adminpages.php:109 includes/adminpages.php:100
3774
+ #: includes/adminpages.php:104
3775
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3776
+ msgstr "<span class=\"ab-icon\"></span>Subscripcions"
3777
+
3778
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3779
+ #: includes/adminpages.php:265
3780
+ msgid "Docs"
3781
+ msgstr "Docs"
3782
+
3783
+ #: includes/adminpages.php:274 includes/adminpages.php:261
3784
+ #: includes/adminpages.php:265
3785
+ msgid "View PMPro Documentation"
3786
+ msgstr "Mira PMPro Documentation"
3787
+
3788
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3789
+ #: includes/adminpages.php:266
3790
+ msgid "Support"
3791
+ msgstr "Suport"
3792
+
3793
+ #: includes/adminpages.php:275 includes/adminpages.php:262
3794
+ #: includes/adminpages.php:266
3795
+ msgid "Visit Customer Support Forum"
3796
+ msgstr "Visita el fòrum de suport al comprador"
3797
+
3798
+ #: includes/currencies.php:17 includes/currencies.php:87
3799
+ #: includes/currencies.php:7 includes/currencies.php:37
3800
+ #: includes/currencies.php:44 includes/currencies.php:64
3801
+ #: includes/currencies.php:68 includes/currencies.php:75
3802
+ #: includes/currencies.php:85
3803
+ msgid "US Dollars (&#36;)"
3804
+ msgstr "US Dollars (&#36;)"
3805
+
3806
+ #: includes/currencies.php:19 includes/currencies.php:90
3807
+ #: includes/currencies.php:8 includes/currencies.php:9
3808
+ #: includes/currencies.php:40 includes/currencies.php:47
3809
+ #: includes/currencies.php:67 includes/currencies.php:71
3810
+ #: includes/currencies.php:78 includes/currencies.php:88
3811
+ msgid "Euros (&euro;)"
3812
+ msgstr "Euros (&euro;)"
3813
+
3814
+ #: includes/currencies.php:24 includes/currencies.php:89
3815
+ #: includes/currencies.php:9 includes/currencies.php:14
3816
+ #: includes/currencies.php:39 includes/currencies.php:46
3817
+ #: includes/currencies.php:66 includes/currencies.php:70
3818
+ #: includes/currencies.php:77 includes/currencies.php:87
3819
+ msgid "Pounds Sterling (&pound;)"
3820
+ msgstr "Lliura Esterlina (&pound;)"
3821
+
3822
+ #: includes/currencies.php:28
3823
+ msgid "Argentine Peso (&#36;)"
3824
+ msgstr "Peso Argentí (&#36;)"
3825
+
3826
+ #: includes/currencies.php:29 includes/currencies.php:10
3827
+ #: includes/currencies.php:18 includes/currencies.php:28
3828
+ msgid "Australian Dollars (&#36;)"
3829
+ msgstr "Australian Dollars (&#36;)"
3830
+
3831
+ #: includes/currencies.php:31 includes/currencies.php:20
3832
+ #: includes/currencies.php:30
3833
+ msgid "Brazilian Real (R&#36;)"
3834
+ msgstr "Brazilian Real (R&#36;)"
3835
+
3836
+ #: includes/currencies.php:35 includes/currencies.php:88
3837
+ #: includes/currencies.php:12 includes/currencies.php:24
3838
+ #: includes/currencies.php:34 includes/currencies.php:38
3839
+ #: includes/currencies.php:45 includes/currencies.php:65
3840
+ #: includes/currencies.php:69 includes/currencies.php:76
3841
+ #: includes/currencies.php:86
3842
+ msgid "Canadian Dollars (&#36;)"
3843
+ msgstr "Canadian Dollars (&#36;)"
3844
+
3845
+ #: includes/currencies.php:36 includes/currencies.php:13
3846
+ #: includes/currencies.php:25 includes/currencies.php:35
3847
+ msgid "Chinese Yuan"
3848
+ msgstr "Chinese Yuan"
3849
+
3850
+ #: includes/currencies.php:38 includes/currencies.php:13
3851
+ #: includes/currencies.php:14 includes/currencies.php:26
3852
+ #: includes/currencies.php:27 includes/currencies.php:37
3853
+ msgid "Czech Koruna"
3854
+ msgstr "Czech Koruna"
3855
+
3856
+ #: includes/currencies.php:45 includes/currencies.php:14
3857
+ #: includes/currencies.php:15 includes/currencies.php:27
3858
+ #: includes/currencies.php:34 includes/currencies.php:44
3859
+ msgid "Danish Krone"
3860
+ msgstr "Danish Krone"
3861
+
3862
+ #: includes/currencies.php:46 includes/currencies.php:15
3863
+ #: includes/currencies.php:16 includes/currencies.php:28
3864
+ #: includes/currencies.php:35 includes/currencies.php:45
3865
+ msgid "Hong Kong Dollar (&#36;)"
3866
+ msgstr "Hong Kong Dollar (&#36;)"
3867
+
3868
+ #: includes/currencies.php:47 includes/currencies.php:16
3869
+ #: includes/currencies.php:17 includes/currencies.php:29
3870
+ #: includes/currencies.php:36 includes/currencies.php:46
3871
+ msgid "Hungarian Forint"
3872
+ msgstr "Hungarian Forint"
3873
+
3874
+ #: includes/currencies.php:48 includes/currencies.php:18
3875
+ #: includes/currencies.php:30 includes/currencies.php:37
3876
+ #: includes/currencies.php:47
3877
+ msgid "Indian Rupee"
3878
+ msgstr "Indian Rupee"
3879
+
3880
+ #: includes/currencies.php:49 includes/currencies.php:19
3881
+ #: includes/currencies.php:31 includes/currencies.php:38
3882
+ #: includes/currencies.php:48
3883
+ msgid "Indonesia Rupiah"
3884
+ msgstr "Indonesia Rupiah"
3885
+
3886
+ #: includes/currencies.php:50 includes/currencies.php:17
3887
+ #: includes/currencies.php:20 includes/currencies.php:32
3888
+ #: includes/currencies.php:39 includes/currencies.php:49
3889
+ msgid "Israeli Shekel"
3890
+ msgstr "Israeli Shekel"
3891
+
3892
+ #: includes/currencies.php:52 includes/currencies.php:18
3893
+ #: includes/currencies.php:21 includes/currencies.php:34
3894
+ #: includes/currencies.php:41 includes/currencies.php:51
3895
+ msgid "Japanese Yen (&yen;)"
3896
+ msgstr "Japanese Yen (&yen;)"
3897
+
3898
+ #: includes/currencies.php:56 includes/currencies.php:19
3899
+ #: includes/currencies.php:22 includes/currencies.php:38
3900
+ #: includes/currencies.php:45 includes/currencies.php:55
3901
+ msgid "Malaysian Ringgits"
3902
+ msgstr "Malaysian Ringgits"
3903
+
3904
+ #: includes/currencies.php:57 includes/currencies.php:20
3905
+ #: includes/currencies.php:23 includes/currencies.php:39
3906
+ #: includes/currencies.php:46 includes/currencies.php:56
3907
+ msgid "Mexican Peso (&#36;)"
3908
+ msgstr "Mexican Peso (&#36;)"
3909
+
3910
+ #: includes/currencies.php:58
3911
+ msgid "Nigerian Naira (&#8358;)"
3912
+ msgstr "Nigerian Naira (&#8358;)"
3913
+
3914
+ #: includes/currencies.php:59 includes/currencies.php:21
3915
+ #: includes/currencies.php:24 includes/currencies.php:40
3916
+ #: includes/currencies.php:47 includes/currencies.php:57
3917
+ msgid "New Zealand Dollar (&#36;)"
3918
+ msgstr "New Zealand Dollar (&#36;)"
3919
+
3920
+ #: includes/currencies.php:60 includes/currencies.php:22
3921
+ #: includes/currencies.php:25 includes/currencies.php:41
3922
+ #: includes/currencies.php:48 includes/currencies.php:58
3923
+ msgid "Norwegian Krone"
3924
+ msgstr "Norwegian Krone"
3925
+
3926
+ #: includes/currencies.php:61 includes/currencies.php:23
3927
+ #: includes/currencies.php:26 includes/currencies.php:42
3928
+ #: includes/currencies.php:49 includes/currencies.php:59
3929
+ msgid "Philippine Pesos"
3930
+ msgstr "Philippine Pesos"
3931
+
3932
+ #: includes/currencies.php:62 includes/currencies.php:24
3933
+ #: includes/currencies.php:27 includes/currencies.php:43
3934
+ #: includes/currencies.php:50 includes/currencies.php:60
3935
+ msgid "Polish Zloty"
3936
+ msgstr "Polish Zloty"
3937
+
3938
+ #: includes/currencies.php:64 includes/currencies.php:25
3939
+ #: includes/currencies.php:28 includes/currencies.php:45
3940
+ #: includes/currencies.php:52 includes/currencies.php:62
3941
+ msgid "Singapore Dollar (&#36;)"
3942
+ msgstr "Singapore Dollar (&#36;)"
3943
+
3944
+ #: includes/currencies.php:69 includes/currencies.php:50
3945
+ #: includes/currencies.php:57 includes/currencies.php:67
3946
+ msgid "South African Rand (R)"
3947
+ msgstr "South African Rand (R)"
3948
+
3949
+ #: includes/currencies.php:73 includes/currencies.php:30
3950
+ #: includes/currencies.php:50 includes/currencies.php:54
3951
+ #: includes/currencies.php:61 includes/currencies.php:71
3952
+ msgid "South Korean Won"
3953
+ msgstr "South Korean Won"
3954
+
3955
+ #: includes/currencies.php:74 includes/currencies.php:26
3956
+ #: includes/currencies.php:31 includes/currencies.php:51
3957
+ #: includes/currencies.php:55 includes/currencies.php:62
3958
+ #: includes/currencies.php:72
3959
+ msgid "Swedish Krona"
3960
+ msgstr "Swedish Krona"
3961
+
3962
+ #: includes/currencies.php:75 includes/currencies.php:27
3963
+ #: includes/currencies.php:32 includes/currencies.php:52
3964
+ #: includes/currencies.php:56 includes/currencies.php:63
3965
+ #: includes/currencies.php:73
3966
+ msgid "Swiss Franc"
3967
+ msgstr "Swiss Franc"
3968
+
3969
+ #: includes/currencies.php:76 includes/currencies.php:28
3970
+ #: includes/currencies.php:33 includes/currencies.php:53
3971
+ #: includes/currencies.php:57 includes/currencies.php:64
3972
+ #: includes/currencies.php:74
3973
+ msgid "Taiwan New Dollars"
3974
+ msgstr "Taiwan New Dollars"
3975
+
3976
+ #: includes/currencies.php:77 includes/currencies.php:29
3977
+ #: includes/currencies.php:34 includes/currencies.php:54
3978
+ #: includes/currencies.php:58 includes/currencies.php:65
3979
+ #: includes/currencies.php:75
3980
+ msgid "Thai Baht"
3981
+ msgstr "Thai Baht"
3982
+
3983
+ #: includes/currencies.php:78 includes/currencies.php:35
3984
+ #: includes/currencies.php:55 includes/currencies.php:59
3985
+ #: includes/currencies.php:66 includes/currencies.php:76
3986
+ msgid "Turkish Lira"
3987
+ msgstr "Turkish Lira"
3988
+
3989
+ #: includes/currencies.php:79 includes/currencies.php:36
3990
+ #: includes/currencies.php:56 includes/currencies.php:60
3991
+ #: includes/currencies.php:67 includes/currencies.php:77
3992
+ msgid "Vietnamese Dong"
3993
+ msgstr "Vietnamese Dong"
3994
+
3995
+ #: includes/functions.php:243 includes/functions.php:160
3996
+ #: includes/functions.php:196 includes/functions.php:200
3997
+ #: includes/functions.php:202 includes/functions.php:203
3998
+ #: includes/functions.php:204 includes/functions.php:207
3999
+ #, php-format
4000
+ msgid "The price for membership is <strong>%s</strong> now"
4001
+ msgstr "El preu per a la subscripció és <strong>%s</strong> ara"
4002
+
4003
+ #: includes/functions.php:245 includes/functions.php:202
4004
+ #: includes/functions.php:204 includes/functions.php:205
4005
+ #: includes/functions.php:206 includes/functions.php:209
4006
+ #, php-format
4007
+ msgid "<strong>%s</strong> now"
4008
+ msgstr "<strong>%s</strong> ara"
4009
+
4010
+ #: includes/functions.php:254 includes/functions.php:169
4011
+ #: includes/functions.php:205 includes/functions.php:211
4012
+ #: includes/functions.php:213 includes/functions.php:214
4013
+ #: includes/functions.php:215 includes/functions.php:218
4014
+ #, php-format
4015
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
4016
+ msgstr "i després <strong>%s per %s per %d més %s</strong>."
4017
+
4018
+ #: includes/functions.php:258
4019
+ #, php-format
4020
+ msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4021
+ msgstr "i després <strong>%s cada %d %s per %d més pagaments</strong>."
4022
+
4023
+ #: includes/functions.php:263 includes/functions.php:178
4024
+ #: includes/functions.php:214 includes/functions.php:220
4025
+ #: includes/functions.php:222 includes/functions.php:223
4026
+ #: includes/functions.php:224 includes/functions.php:227
4027
+ #, php-format
4028
+ msgid " and then <strong>%s after %d %s</strong>."
4029
+ msgstr "i després <strong>%s després %d %s</strong>."
4030
+
4031
+ #: includes/functions.php:271 includes/functions.php:228
4032
+ #: includes/functions.php:229 includes/functions.php:230
4033
+ #: includes/functions.php:231 includes/functions.php:235
4034
+ #, php-format
4035
+ msgid "The price for membership is <strong>%s per %s</strong>."
4036
+ msgstr "El preu per a la subscripció és de <strong>%s per %s</strong>."
4037
+
4038
+ #: includes/functions.php:273 includes/functions.php:230
4039
+ #: includes/functions.php:233 includes/functions.php:237
4040
+ #, php-format
4041
+ msgid "<strong>%s per %s</strong>."
4042
+ msgstr "<strong>%s per %s</strong>."
4043
+
4044
+ #: includes/functions.php:278 includes/functions.php:233
4045
+ #: includes/functions.php:234 includes/functions.php:235
4046
+ #: includes/functions.php:238 includes/functions.php:242
4047
+ #, php-format
4048
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
4049
+ msgstr "El preu per a la subscripció és de <strong>%s cada %d %s</strong>."
4050
+
4051
+ #: includes/functions.php:280 includes/functions.php:237
4052
+ #: includes/functions.php:240 includes/functions.php:244
4053
+ #, php-format
4054
+ msgid "<strong>%s every %d %s</strong>."
4055
+ msgstr "<strong>%s cada %d %s</strong>."
4056
+
4057
+ #: includes/functions.php:285 includes/functions.php:184
4058
+ #: includes/functions.php:220 includes/functions.php:228
4059
+ #: includes/functions.php:238 includes/functions.php:239
4060
+ #: includes/functions.php:240 includes/functions.php:242
4061
+ #: includes/functions.php:245 includes/functions.php:249
4062
+ #, php-format
4063
+ msgid " and then <strong>%s per %s</strong>."
4064
+ msgstr "i després <strong>%s per %s</strong>."
4065
+
4066
+ #: includes/functions.php:289 includes/functions.php:188
4067
+ #: includes/functions.php:224 includes/functions.php:232
4068
+ #: includes/functions.php:242 includes/functions.php:243
4069
+ #: includes/functions.php:244 includes/functions.php:246
4070
+ #: includes/functions.php:249 includes/functions.php:253
4071
+ #, php-format
4072
+ msgid " and then <strong>%s every %d %s</strong>."
4073
+ msgstr "i després <strong>%s cada %d %s</strong>."
4074
+
4075
+ #: includes/functions.php:307 includes/functions.php:202
4076
+ #: includes/functions.php:238 includes/functions.php:249
4077
+ #: includes/functions.php:260 includes/functions.php:261
4078
+ #: includes/functions.php:262 includes/functions.php:264
4079
+ #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
4080
+ msgid "After your initial payment, your first payment is Free."
4081
+ msgstr "Després del teu pagament inicial, el teu primer pagament és Gratuït."
4082
+
4083
+ #: includes/functions.php:311 includes/functions.php:206
4084
+ #: includes/functions.php:242 includes/functions.php:253
4085
+ #: includes/functions.php:264 includes/functions.php:265
4086
+ #: includes/functions.php:266 includes/functions.php:268
4087
+ #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
4088
+ #, php-format
4089
+ msgid "After your initial payment, your first %d payments are Free."
4090
+ msgstr "Després del teu pagament inicial, el teu %d pagaments són gratuïts."
4091
+
4092
+ #: includes/functions.php:318 includes/functions.php:213
4093
+ #: includes/functions.php:249 includes/functions.php:260
4094
+ #: includes/functions.php:271 includes/functions.php:272
4095
+ #: includes/functions.php:273 includes/functions.php:275
4096
+ #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
4097
+ #, php-format
4098
+ msgid "After your initial payment, your first payment will cost %s."
4099
+ msgstr "Després del teu pagament inicial, el teu primer pagament és de %s."
4100
+
4101
+ #: includes/functions.php:322 includes/functions.php:217
4102
+ #: includes/functions.php:253 includes/functions.php:264
4103
+ #: includes/functions.php:275 includes/functions.php:276
4104
+ #: includes/functions.php:277 includes/functions.php:279
4105
+ #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
4106
+ #, php-format
4107
+ msgid "After your initial payment, your first %d payments will cost %s."
4108
+ msgstr ""
4109
+ "Després del teu pagament inicial, els teus primers %d pagaments seran de %s."
4110
+
4111
+ #: includes/functions.php:333 includes/functions.php:228
4112
+ #: includes/functions.php:264 includes/functions.php:275
4113
+ #: includes/functions.php:286 includes/functions.php:287
4114
+ #: includes/functions.php:288 includes/functions.php:290
4115
+ #: includes/functions.php:293 includes/functions.php:297
4116
+ #, php-format
4117
+ msgid "Customers in %s will be charged %s%% tax."
4118
+ msgstr "Als compradors de %s se’ls carregarà %s%% en impost."
4119
+
4120
+ #: includes/functions.php:347 includes/functions.php:242
4121
+ #: includes/functions.php:278 includes/functions.php:289
4122
+ #: includes/functions.php:300 includes/functions.php:301
4123
+ #: includes/functions.php:302 includes/functions.php:304
4124
+ #: includes/functions.php:307 includes/functions.php:311
4125
+ #, php-format
4126
+ msgid "Membership expires after %d %s."
4127
+ msgstr "La subscripció expira després de %d %s."
4128
+
4129
+ #: includes/functions.php:694 includes/functions.php:491
4130
+ #: includes/functions.php:514 includes/functions.php:525
4131
+ #: includes/functions.php:536 includes/functions.php:537
4132
+ #: includes/functions.php:538 includes/functions.php:545
4133
+ #: includes/functions.php:569 includes/functions.php:570
4134
+ #: includes/functions.php:576 includes/functions.php:592
4135
+ #: includes/functions.php:615
4136
+ msgid "User ID not found."
4137
+ msgstr "No s’ha trobat el teu ID d’usuari"
4138
+
4139
+ #: includes/functions.php:714 includes/functions.php:508
4140
+ #: includes/functions.php:531 includes/functions.php:542
4141
+ #: includes/functions.php:553 includes/functions.php:554
4142
+ #: includes/functions.php:555 includes/functions.php:562
4143
+ #: includes/functions.php:586 includes/functions.php:587
4144
+ #: includes/functions.php:589 includes/functions.php:596
4145
+ #: includes/functions.php:612 includes/functions.php:635
4146
+ msgid "Invalid level."
4147
+ msgstr "Nivell no vàlid"
4148
+
4149
+ #: includes/functions.php:725 includes/functions.php:520
4150
+ #: includes/functions.php:542 includes/functions.php:553
4151
+ #: includes/functions.php:564 includes/functions.php:565
4152
+ #: includes/functions.php:566 includes/functions.php:573
4153
+ #: includes/functions.php:597 includes/functions.php:598
4154
+ #: includes/functions.php:600 includes/functions.php:607
4155
+ #: includes/functions.php:623 includes/functions.php:646
4156
+ msgid "not changing?"
4157
+ msgstr "no està canviant?"
4158
+
4159
+ #: includes/functions.php:742 includes/functions.php:815
4160
+ #: includes/functions.php:839 includes/functions.php:537
4161
+ #: includes/functions.php:559 includes/functions.php:570
4162
+ #: includes/functions.php:581 includes/functions.php:582
4163
+ #: includes/functions.php:583 includes/functions.php:590
4164
+ #: includes/functions.php:592 includes/functions.php:605
4165
+ #: includes/functions.php:614 includes/functions.php:615
4166
+ #: includes/functions.php:617 includes/functions.php:624
4167
+ #: includes/functions.php:626 includes/functions.php:628
4168
+ #: includes/functions.php:631 includes/functions.php:632
4169
+ #: includes/functions.php:633 includes/functions.php:637
4170
+ #: includes/functions.php:640 includes/functions.php:649
4171
+ #: includes/functions.php:656 includes/functions.php:657
4172
+ #: includes/functions.php:663 includes/functions.php:673
4173
+ #: includes/functions.php:674 includes/functions.php:676
4174
+ #: includes/functions.php:683 includes/functions.php:697
4175
+ #: includes/functions.php:698 includes/functions.php:699
4176
+ #: includes/functions.php:700 includes/functions.php:707
4177
+ #: includes/functions.php:722 includes/functions.php:723
4178
+ #: includes/functions.php:746
4179
+ msgid "Error interacting with database"
4180
+ msgstr "Error interactuant amb la base de dades"
4181
+
4182
+ #: includes/functions.php:881 includes/functions.php:920
4183
+ #: includes/functions.php:629 includes/functions.php:651
4184
+ #: includes/functions.php:667 includes/functions.php:668
4185
+ #: includes/functions.php:678 includes/functions.php:681
4186
+ #: includes/functions.php:690 includes/functions.php:697
4187
+ #: includes/functions.php:698 includes/functions.php:706
4188
+ #: includes/functions.php:714 includes/functions.php:717
4189
+ #: includes/functions.php:720 includes/functions.php:736
4190
+ #: includes/functions.php:737 includes/functions.php:738
4191
+ #: includes/functions.php:739 includes/functions.php:741
4192
+ #: includes/functions.php:748 includes/functions.php:753
4193
+ #: includes/functions.php:764 includes/functions.php:777
4194
+ #: includes/functions.php:778 includes/functions.php:780
4195
+ #: includes/functions.php:787 includes/functions.php:803
4196
+ #: includes/functions.php:826
4197
+ msgid "Membership level not found."
4198
+ msgstr "Nivell de subscripció no trobat."
4199
+
4200
+ #: includes/functions.php:1290 includes/functions.php:1100
4201
+ #: includes/functions.php:1101 includes/functions.php:1118
4202
+ #: includes/functions.php:1142 includes/functions.php:1143
4203
+ #: includes/functions.php:1150 includes/functions.php:1157
4204
+ #: includes/functions.php:1173 includes/functions.php:1196
4205
+ msgid "No code was given to check."
4206
+ msgstr "No s’ha donat cap codi per a fer el check"
4207
+
4208
+ #: includes/functions.php:1299 includes/functions.php:1050
4209
+ #: includes/functions.php:1072 includes/functions.php:1088
4210
+ #: includes/functions.php:1099 includes/functions.php:1102
4211
+ #: includes/functions.php:1109 includes/functions.php:1110
4212
+ #: includes/functions.php:1112 includes/functions.php:1113
4213
+ #: includes/functions.php:1127 includes/functions.php:1151
4214
+ #: includes/functions.php:1152 includes/functions.php:1159
4215
+ #: includes/functions.php:1166 includes/functions.php:1182
4216
+ #: includes/functions.php:1205
4217
+ msgid "The discount code could not be found."
4218
+ msgstr "No s’ha trobat el codi de descompte"
4219
+
4220
+ #: includes/functions.php:1314 includes/functions.php:1066
4221
+ #: includes/functions.php:1088 includes/functions.php:1104
4222
+ #: includes/functions.php:1115 includes/functions.php:1118
4223
+ #: includes/functions.php:1124 includes/functions.php:1125
4224
+ #: includes/functions.php:1128 includes/functions.php:1129
4225
+ #: includes/functions.php:1142 includes/functions.php:1166
4226
+ #: includes/functions.php:1167 includes/functions.php:1174
4227
+ #: includes/functions.php:1181 includes/functions.php:1197
4228
+ #: includes/functions.php:1220
4229
+ #, php-format
4230
+ msgid "This discount code goes into effect on %s."
4231
+ msgstr "El codi de descompte serà efectiu a %s."
4232
+
4233
+ #: includes/functions.php:1321 includes/functions.php:1075
4234
+ #: includes/functions.php:1097 includes/functions.php:1113
4235
+ #: includes/functions.php:1124 includes/functions.php:1127
4236
+ #: includes/functions.php:1131 includes/functions.php:1132
4237
+ #: includes/functions.php:1137 includes/functions.php:1138
4238
+ #: includes/functions.php:1149 includes/functions.php:1173
4239
+ #: includes/functions.php:1174 includes/functions.php:1181
4240
+ #: includes/functions.php:1188 includes/functions.php:1204
4241
+ #: includes/functions.php:1227
4242
+ #, php-format
4243
+ msgid "This discount code expired on %s."
4244
+ msgstr "Aquest codi de descompte ha expirat a %s."
4245
+
4246
+ #: includes/functions.php:1331 includes/functions.php:1087
4247
+ #: includes/functions.php:1109 includes/functions.php:1125
4248
+ #: includes/functions.php:1136 includes/functions.php:1139
4249
+ #: includes/functions.php:1141 includes/functions.php:1142
4250
+ #: includes/functions.php:1149 includes/functions.php:1150
4251
+ #: includes/functions.php:1159 includes/functions.php:1183
4252
+ #: includes/functions.php:1184 includes/functions.php:1191
4253
+ #: includes/functions.php:1198 includes/functions.php:1214
4254
+ #: includes/functions.php:1237
4255
+ msgid "This discount code is no longer valid."
4256
+ msgstr "Aquest codi de descompte ja no és vàlid."
4257
+
4258
+ #: includes/functions.php:1344 includes/functions.php:1102
4259
+ #: includes/functions.php:1124 includes/functions.php:1140
4260
+ #: includes/functions.php:1151 includes/functions.php:1154
4261
+ #: includes/functions.php:1155 includes/functions.php:1164
4262
+ #: includes/functions.php:1165 includes/functions.php:1172
4263
+ #: includes/functions.php:1196 includes/functions.php:1197
4264
+ #: includes/functions.php:1204 includes/functions.php:1211
4265
+ #: includes/functions.php:1227 includes/functions.php:1250
4266
+ msgid "This discount code does not apply to this membership level."
4267
+ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
4268
+
4269
+ #: includes/functions.php:1370 includes/functions.php:1110
4270
+ #: includes/functions.php:1132 includes/functions.php:1148
4271
+ #: includes/functions.php:1159 includes/functions.php:1162
4272
+ #: includes/functions.php:1172 includes/functions.php:1180
4273
+ #: includes/functions.php:1181 includes/functions.php:1182
4274
+ #: includes/functions.php:1198 includes/functions.php:1222
4275
+ #: includes/functions.php:1223 includes/functions.php:1230
4276
+ #: includes/functions.php:1237 includes/functions.php:1253
4277
+ #: includes/functions.php:1276
4278
+ msgid "This discount code is okay."
4279
+ msgstr "El codi de descompte és OK"
4280
+
4281
+ #: includes/functions.php:1397 includes/functions.php:1134
4282
+ #: includes/functions.php:1156 includes/functions.php:1172
4283
+ #: includes/functions.php:1183 includes/functions.php:1186
4284
+ #: includes/functions.php:1196 includes/functions.php:1205
4285
+ #: includes/functions.php:1206 includes/functions.php:1223
4286
+ #: includes/functions.php:1247 includes/functions.php:1248
4287
+ #: includes/functions.php:1255 includes/functions.php:1262
4288
+ #: includes/functions.php:1278 includes/functions.php:1301
4289
+ #: includes/functions.php:1395
4290
+ msgid "and"
4291
+ msgstr "i"
4292
+
4293
+ #: includes/functions.php:1624 includes/functions.php:1319
4294
+ #: includes/functions.php:1341 includes/functions.php:1361
4295
+ #: includes/functions.php:1372 includes/functions.php:1375
4296
+ #: includes/functions.php:1385 includes/functions.php:1394
4297
+ #: includes/functions.php:1395 includes/functions.php:1412
4298
+ #: includes/functions.php:1436 includes/functions.php:1437
4299
+ #: includes/functions.php:1450 includes/functions.php:1457
4300
+ #: includes/functions.php:1473 includes/functions.php:1496
4301
+ #: includes/functions.php:1501 includes/functions.php:1620
4302
+ msgid "Sign Up for !!name!! Now"
4303
+ msgstr "Sign Up per !!name!! Ara"
4304
+
4305
+ #: includes/functions.php:1630 includes/functions.php:1325
4306
+ #: includes/functions.php:1347 includes/functions.php:1367
4307
+ #: includes/functions.php:1378 includes/functions.php:1381
4308
+ #: includes/functions.php:1391 includes/functions.php:1400
4309
+ #: includes/functions.php:1401 includes/functions.php:1418
4310
+ #: includes/functions.php:1442 includes/functions.php:1443
4311
+ #: includes/functions.php:1456 includes/functions.php:1463
4312
+ #: includes/functions.php:1479 includes/functions.php:1502
4313
+ #: includes/functions.php:1507 includes/functions.php:1626
4314
+ msgid "Please specify a level id."
4315
+ msgstr "Si us plau especifica un ID de Nivell"
4316
+
4317
+ #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4318
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4319
+ #: includes/init.php:237 includes/init.php:245 includes/profile.php:37
4320
+ msgid "None"
4321
+ msgstr "Cap"
4322
+
4323
+ #: includes/license.php:51
4324
+ msgid "Your license key has been validated."
4325
+ msgstr "La teva clau (license key) ha estat validada."
4326
+
4327
+ #: includes/license.php:81
4328
+ msgid "Paid Memberships Pro Support License"
4329
+ msgstr "Paid Memberships Pro Support License"
4330
+
4331
+ #: includes/license.php:86
4332
+ msgid "License Key"
4333
+ msgstr "License Key"
4334
+
4335
+ #: includes/license.php:89
4336
+ msgid ""
4337
+ "Enter your support license key.</strong> Your license key can be found in "
4338
+ "your membership email receipt or in your <a href=\"http://www."
4339
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
4340
+ "\"_blank\">Membership Account</a>."
4341
+ msgstr ""
4342
+ "Introdueix la teva license key.</strong> Pots trobar la teva license key al "
4343
+ "teu correu electrònic<a href=\"http://www.paidmembershipspro.com/login/?"
4344
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
4345
+
4346
+ #: includes/license.php:91
4347
+ msgid ""
4348
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
4349
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
4350
+ "page to confirm that your account is active and to find your license key."
4351
+ msgstr ""
4352
+ "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
4353
+ "membership-account/\" target=\"_blank\">Membership Account</a> per confirmar "
4354
+ "que el teu compte és actiu i per trobar la teva license key."
4355
+
4356
+ #: includes/license.php:91
4357
+ msgid "Your license is invalid or expired."
4358
+ msgstr "La teva license és invalida o ha expirat"
4359
+
4360
+ #: includes/license.php:93
4361
+ #, php-format
4362
+ msgid ""
4363
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
4364
+ "been used to activate your support license on this site.</p>"
4365
+ msgstr ""
4366
+ "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license key "
4367
+ "ha estat utilitzada per a activar el suport en aquest lloc web</p>"
4368
+
4369
+ #: includes/license.php:100
4370
+ msgid "Enter license key here..."
4371
+ msgstr "Introdueix license key aquí"
4372
+
4373
+ #: includes/license.php:102
4374
+ msgid "Verify Key"
4375
+ msgstr "Verifica la Clau"
4376
+
4377
+ #: includes/license.php:288 includes/license.php:273
4378
+ msgid ""
4379
+ "If you're running Paid Memberships Pro on a production website, we recommend "
4380
+ "an annual support license."
4381
+ msgstr ""
4382
+ "Si utilitzes Paid Memberships Pro en un lloc web, et recomanem una llicència "
4383
+ "de suport anual."
4384
+
4385
+ #: includes/license.php:288 includes/license.php:273
4386
+ msgid "Invalid PMPro License Key."
4387
+ msgstr "Invalid PMPro License Key."
4388
+
4389
+ #: includes/license.php:289 includes/license.php:274
4390
+ msgid "Dismiss"
4391
+ msgstr "Acomiada"
4392
+
4393
+ #: includes/license.php:289 includes/license.php:274
4394
+ msgid "More Info"
4395
+ msgstr "Més informació"
4396
+
4397
+ #: includes/localization.php:26 includes/localization.php:23
4398
+ msgid "Day"
4399
+ msgstr "Dia"
4400
+
4401
+ #: includes/localization.php:28 includes/localization.php:25
4402
+ msgid "Week"
4403
+ msgstr "Setmana"
4404
+
4405
+ #: includes/localization.php:30 includes/localization.php:27
4406
+ msgid "Month"
4407
+ msgstr "Mes"
4408
+
4409
+ #: includes/localization.php:32 includes/localization.php:29
4410
+ msgid "Year"
4411
+ msgstr "Any"
4412
+
4413
+ #: includes/localization.php:37
4414
+ msgid "Days"
4415
+ msgstr "Dies"
4416
+
4417
+ #: includes/localization.php:39
4418
+ msgid "Weeks"
4419
+ msgstr "Setmanes"
4420
+
4421
+ #: includes/localization.php:41
4422
+ msgid "Months"
4423
+ msgstr "Mesos"
4424
+
4425
+ #: includes/localization.php:43
4426
+ msgid "Years"
4427
+ msgstr "Anys"
4428
+
4429
+ #: includes/metaboxes.php:39 includes/metaboxes.php:38
4430
+ msgid ""
4431
+ "This post is already protected for this level because it is within a "
4432
+ "category that requires membership."
4433
+ msgstr ""
4434
+ "Aquest post està protegit per a aquest nivell perquè està dins d’una "
4435
+ "categoria que requereix subscripció."
4436
+
4437
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4438
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
4439
+ msgid "Require Membership"
4440
+ msgstr "Requereix Subscripció"
4441
+
4442
+ #: includes/metaboxes.php:135 includes/metaboxes.php:130
4443
+ msgid ""
4444
+ "Only members of these levels will be able to view posts in this category."
4445
+ msgstr ""
4446
+ "Només els subscriptors d’aquests nivell podran veure els posts d’aquesta "
4447
+ "categoria."
4448
+
4449
+ #: includes/profile.php:36 includes/profile.php:34
4450
+ msgid "Current Level"
4451
+ msgstr "Nivell actual"
4452
+
4453
+ #: includes/profile.php:65 includes/profile.php:54 includes/profile.php:60
4454
+ msgid "Not paying."
4455
+ msgstr "Sense pagament fet."
4456
+
4457
+ #: includes/profile.php:73 includes/profile.php:64 includes/profile.php:68
4458
+ msgid ""
4459
+ "This will not change the subscription at the gateway unless the 'Cancel' "
4460
+ "checkbox is selected below."
4461
+ msgstr ""
4462
+ "Això no canviarà la subscripció a la passarel·la a menys que es seleccioni "
4463
+ "“Cancel·la” a sota."
4464
+
4465
+ #: includes/updates.php:97
4466
+ msgid "Paid Memberships Pro Data Update Required"
4467
+ msgstr "Paid Memberships Pro Data Requereix Actualització"
4468
+
4469
+ #: includes/updates.php:102
4470
+ msgid "Start the Update"
4471
+ msgstr "Actualitza"
4472
+
4473
+ #: includes/updates.php:123
4474
+ msgid "All Paid Memberships Pro updates have finished."
4475
+ msgstr "Totes les actualitzacions de Paid Memberships Pro han acabat."
4476
+
4477
+ #: includes/upgradecheck.php:563 includes/upgradecheck.php:401
4478
+ #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
4479
+ #: includes/upgradecheck.php:442 includes/upgradecheck.php:542
4480
+ #, php-format
4481
+ msgid ""
4482
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4483
+ msgstr ""
4484
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4485
+ "\">Register</a>"
4486
+
4487
+ #: includes/upgradecheck.php:566 includes/upgradecheck.php:404
4488
+ #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
4489
+ #: includes/upgradecheck.php:445 includes/upgradecheck.php:545
4490
+ #, php-format
4491
+ msgid ""
4492
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4493
+ "<a href=\"%s\">Register</a>"
4494
+ msgstr ""
4495
+ "Aquest contingut és només per a subscriptors !!levels!! .<br /><a href=\"%s"
4496
+ "\">Log In</a> <a href=\"%s\">Register</a>"
4497
+
4498
+ #: includes/upgradecheck.php:570 includes/upgradecheck.php:408
4499
+ #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
4500
+ #: includes/upgradecheck.php:449 includes/upgradecheck.php:549
4501
+ msgid ""
4502
+ "This content is for !!levels!! members only. Visit the site and log in/"
4503
+ "register to read."
4504
+ msgstr ""
4505
+ "Aquest contingut és només per a subscriptors !!levels!! . Visita el lloc i "
4506
+ "fés un log in/registre per a poder llegir."
4507
+
4508
+ #: pages/billing.php:23 pages/billing.php:14
4509
+ #, php-format
4510
+ msgid "Logged in as <strong>%s</strong>."
4511
+ msgstr "Logged in com a <strong>%s</strong>."
4512
+
4513
+ #: pages/billing.php:23 pages/billing.php:14
4514
+ msgid "logout"
4515
+ msgstr "logout"
4516
+
4517
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
4518
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
4519
+ #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4520
+ #: pages/account.php:92 pages/billing.php:16 pages/levels.php:13
4521
+ #: shortcodes/pmpro_account.php:123
4522
+ msgid "Level"
4523
+ msgstr "Nivell"
4524
+
4525
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
4526
+ msgid "Membership Fee"
4527
+ msgstr "Preu de subscripció"
4528
+
4529
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22
4530
+ #: pages/levels.php:70
4531
+ #, php-format
4532
+ msgid "%s every %d %s."
4533
+ msgstr "%s cada %d %s."
4534
+
4535
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24
4536
+ #: pages/levels.php:66
4537
+ #, php-format
4538
+ msgid "%s per %s."
4539
+ msgstr "%s per %s."
4540
+
4541
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29
4542
+ #: pages/billing.php:29 pages/billing.php:33
4543
+ msgid "Duration"
4544
+ msgstr "Durada"
4545
+
4546
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
4547
+ msgid ""
4548
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
4549
+ "paypal.com\">login to PayPal here</a> to update your billing information."
4550
+ msgstr ""
4551
+ "El pagament de la teva subscripció és gestionat per PayPal. Si us plau <a "
4552
+ "href=\"http://www.paypal.com\">login to PayPal aquí</a> per actualitzar la "
4553
+ "teva informació de pagament."
4554
+
4555
+ #: pages/billing.php:78 pages/checkout.php:326 pages/billing.php:65
4556
+ #: pages/billing.php:69 pages/checkout.php:305 pages/checkout.php:307
4557
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
4558
+ #: pages/checkout.php:324 pages/checkout.php:328
4559
+ msgid "First Name"
4560
+ msgstr "Nom"
4561
+
4562
+ #: pages/billing.php:82 pages/checkout.php:330 pages/billing.php:69
4563
+ #: pages/billing.php:73 pages/checkout.php:309 pages/checkout.php:311
4564
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
4565
+ #: pages/checkout.php:328 pages/checkout.php:332
4566
+ msgid "Last Name"
4567
+ msgstr "Cognoms"
4568
+
4569
+ #: pages/billing.php:86 pages/checkout.php:334 pages/billing.php:73
4570
+ #: pages/billing.php:77 pages/checkout.php:313 pages/checkout.php:315
4571
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
4572
+ #: pages/checkout.php:332 pages/checkout.php:336
4573
+ msgid "Address 1"
4574
+ msgstr "Adreça 1"
4575
+
4576
+ #: pages/billing.php:90 pages/checkout.php:338 pages/billing.php:77
4577
+ #: pages/billing.php:81 pages/checkout.php:317 pages/checkout.php:319
4578
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
4579
+ #: pages/checkout.php:336 pages/checkout.php:340
4580
+ msgid "Address 2"
4581
+ msgstr "Adreça 2"
4582
+
4583
+ #: pages/billing.php:100 pages/checkout.php:348 pages/billing.php:87
4584
+ #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
4585
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
4586
+ #: pages/checkout.php:346 pages/checkout.php:350
4587
+ msgid "City"
4588
+ msgstr "Ciutat"
4589
+
4590
+ #: pages/billing.php:104 pages/checkout.php:352 pages/billing.php:91
4591
+ #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
4592
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
4593
+ #: pages/checkout.php:350 pages/checkout.php:354
4594
+ msgid "State"
4595
+ msgstr "State/província"
4596
+
4597
+ #: pages/billing.php:108 pages/checkout.php:356 pages/billing.php:95
4598
+ #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
4599
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
4600
+ #: pages/checkout.php:354 pages/checkout.php:358
4601
+ msgid "Postal Code"
4602
+ msgstr "Codi Postal"
4603
+
4604
+ #: pages/billing.php:117 pages/checkout.php:365 pages/billing.php:104
4605
+ #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
4606
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
4607
+ #: pages/checkout.php:363 pages/checkout.php:367
4608
+ msgid "City, State Zip"
4609
+ msgstr "Ciutat, CP"
4610
+
4611
+ #: pages/billing.php:170 pages/checkout.php:418 pages/billing.php:157
4612
+ #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
4613
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
4614
+ #: pages/checkout.php:416 pages/checkout.php:420
4615
+ msgid "Country"
4616
+ msgstr "País"
4617
+
4618
+ #: pages/billing.php:195 pages/checkout.php:443 pages/billing.php:182
4619
+ #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
4620
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
4621
+ #: pages/checkout.php:441 pages/checkout.php:445
4622
+ msgid "Phone"
4623
+ msgstr "Telèfon"
4624
+
4625
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
4626
+ #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
4627
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
4628
+ #: pages/checkout.php:218 pages/checkout.php:436 pages/checkout.php:438
4629
+ #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4630
+ #: pages/checkout.php:455 pages/checkout.php:460
4631
+ msgid "E-mail Address"
4632
+ msgstr "Correu electrònic"
4633
+
4634
+ #: pages/billing.php:210 pages/checkout.php:466 pages/billing.php:197
4635
+ #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
4636
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
4637
+ #: pages/checkout.php:464 pages/checkout.php:469
4638
+ msgid "Confirm E-mail"
4639
+ msgstr "Confirma Correu electrònic"
4640
+
4641
+ #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4642
+ #: pages/billing.php:230
4643
+ msgid "Credit Card Information"
4644
+ msgstr "Informació de la Tarjeta de Crèdit"
4645
+
4646
+ #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4647
+ #: pages/billing.php:230
4648
+ #, php-format
4649
+ msgid "We accept %s"
4650
+ msgstr "Acceptem %s"
4651
+
4652
+ #: pages/billing.php:360 pages/billing.php:309 pages/billing.php:313
4653
+ #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
4654
+ msgid ""
4655
+ "This subscription is not recurring. So you don't need to update your billing "
4656
+ "information."
4657
+ msgstr ""
4658
+ "Aquesta subscripció no és recurrent. Per tant, no necessites actualitzar la "
4659
+ "teva informació de pagament."
4660
+
4661
+ #: pages/cancel.php:26 pages/cancel.php:14
4662
+ msgid "Are you sure you want to cancel your membership?"
4663
+ msgstr "Estàs segur que vols cancel·lar la teva subscripció?"
4664
+
4665
+ #: pages/cancel.php:32
4666
+ #, php-format
4667
+ msgid "Are you sure you want to cancel your %s membership?"
4668
+ msgstr "Estàs segur que vols cancel·lar la teva %s subscripció?"
4669
+
4670
+ #: pages/cancel.php:37 pages/cancel.php:17
4671
+ msgid "Yes, cancel my account"
4672
+ msgstr "Sí, cancel·la el meu compte"
4673
+
4674
+ #: pages/cancel.php:38 pages/cancel.php:19
4675
+ msgid "No, keep my account"
4676
+ msgstr "No, conserva el meu compte"
4677
+
4678
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
4679
+ msgid "My Memberships"
4680
+ msgstr "Les meves subscripcions"
4681
+
4682
+ #: pages/cancel.php:77
4683
+ msgid "Cancel All Memberships"
4684
+ msgstr "Cancel·la totes les subscripcions"
4685
+
4686
+ #: pages/cancel.php:86 pages/cancel.php:22
4687
+ msgid "Click here to go to the home page."
4688
+ msgstr "Clica aquí per anar a la pàgina d’inici"
4689
+
4690
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4691
+ #: pages/checkout.php:28
4692
+ msgid ""
4693
+ "Almost done. Review the membership information and pricing below then "
4694
+ "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4695
+ msgstr ""
4696
+ "Gairebé hem acabat. Revisa la teva subscripció i el preu a sota "
4697
+ "<strong>clica el botó de ”Completa Pagament” </strong> per a finalitzar."
4698
+
4699
+ #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
4700
+ #: pages/checkout.php:35 pages/checkout.php:42
4701
+ msgid "change"
4702
+ msgstr "canvi"
4703
+
4704
+ #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
4705
+ #: pages/checkout.php:43 pages/checkout.php:50
4706
+ #, php-format
4707
+ msgid "You have selected the <strong>%s</strong> membership level."
4708
+ msgstr "Has escollit el nivell de subscripció <strong>%s</strong>."
4709
+
4710
+ #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
4711
+ #: pages/checkout.php:60
4712
+ #, php-format
4713
+ msgid ""
4714
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4715
+ "been applied to your order.</p>"
4716
+ msgstr ""
4717
+ "<p class=\"pmpro_level_discount_applied\">El<strong>%s</strong> codi s’ha "
4718
+ "aplicat a la teva comanda.</p>"
4719
+
4720
+ #: pages/checkout.php:72 services/applydiscountcode.php:89
4721
+ #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4722
+ #: pages/checkout.php:71 services/applydiscountcode.php:74
4723
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4724
+ msgid "Click here to change your discount code"
4725
+ msgstr "Clica aquí per canviar el teu codi de descompte"
4726
+
4727
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4728
+ #: pages/checkout.php:66 pages/checkout.php:73
4729
+ msgid "Click here to enter your discount code"
4730
+ msgstr "Clica aquí per introduir el teu codi de descompte"
4731
+
4732
+ #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4733
+ #: pages/checkout.php:66 pages/checkout.php:73
4734
+ msgid "Do you have a discount code?"
4735
+ msgstr "Tens un codi de descompte?"
4736
+
4737
+ #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
4738
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
4739
+ msgid "Account Information"
4740
+ msgstr "Informació del compte"
4741
+
4742
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4743
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4744
+ msgid "Already have an account?"
4745
+ msgstr "Ja tens un compte?"
4746
+
4747
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
4748
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
4749
+ msgid "Log in here"
4750
+ msgstr "Log in aquí"
4751
+
4752
+ #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
4753
+ #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
4754
+ msgid "Confirm Password"
4755
+ msgstr "Confirma Clau"
4756
+
4757
+ #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
4758
+ #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
4759
+ msgid "Confirm E-mail Address"
4760
+ msgstr "Confirma correu electrònic"
4761
+
4762
+ #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
4763
+ #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
4764
+ msgid "Full Name"
4765
+ msgstr "Nom complet"
4766
+
4767
+ #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
4768
+ #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
4769
+ msgid "LEAVE THIS BLANK"
4770
+ msgstr "DEIXA AIXÒ EN BLANC"
4771
+
4772
+ #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
4773
+ #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
4774
+ #, php-format
4775
+ msgid ""
4776
+ "You are logged in as <strong>%s</strong>. If you would like to use a "
4777
+ "different account for this membership, <a href=\"%s\">log out now</a>."
4778
+ msgstr ""
4779
+ "Estàs logged in com a <strong>%s</strong>.Si vols utilitzar un compte "
4780
+ "diferent per a aquesta subscripció, <a href=\"%s\">log out now</a>."
4781
+
4782
+ #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
4783
+ #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:292
4784
+ #: pages/checkout.php:299
4785
+ msgid "Choose your Payment Method"
4786
+ msgstr "Escull el mètode de pagament"
4787
+
4788
+ #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
4789
+ #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:300
4790
+ #: pages/checkout.php:307
4791
+ msgid "Check Out with a Credit Card Here"
4792
+ msgstr "Check Out amb tarjeta de crèdit aquí"
4793
+
4794
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
4795
+ #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4796
+ #: pages/checkout.php:681 pages/checkout.php:690
4797
+ #, php-format
4798
+ msgid "I agree to the %s"
4799
+ msgstr "Estic d’acord amb %s"
4800
+
4801
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
4802
+ #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4803
+ #: pages/checkout.php:701 pages/checkout.php:710
4804
+ msgid "Complete Payment"
4805
+ msgstr "Completa pagament"
4806
+
4807
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
4808
+ #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4809
+ #: pages/checkout.php:723 pages/checkout.php:732
4810
+ msgid "Processing..."
4811
+ msgstr "Processant…"
4812
+
4813
+ #: pages/confirmation.php:12
4814
+ msgid ""
4815
+ "Your payment has been submitted. Your membership will be activated shortly."
4816
+ msgstr ""
4817
+ "El teu pagament ha estat enviat. La teva subscripció estarà activa aviat."
4818
+
4819
+ #: pages/confirmation.php:14
4820
+ #, php-format
4821
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
4822
+ msgstr ""
4823
+ "Moltes gràcies per la teva subscripció a %s. La teva %s subscripció està "
4824
+ "activa."
4825
+
4826
+ #: pages/confirmation.php:28
4827
+ #, php-format
4828
+ msgid ""
4829
+ "Below are details about your membership account and a receipt for your "
4830
+ "initial membership invoice. A welcome email with a copy of your initial "
4831
+ "membership invoice has been sent to %s."
4832
+ msgstr ""
4833
+ "A sota hi ha els detalls del teu compte de subscripció i l’import del teu "
4834
+ "pagament inicial. Un correu electrònic de benviguda amb la còpia de la "
4835
+ "factura s’ha enviat a %s."
4836
+
4837
+ #: pages/confirmation.php:41 pages/invoice.php:22
4838
+ #, php-format
4839
+ msgid "Invoice #%s on %s"
4840
+ msgstr "Factura #%s a %s"
4841
+
4842
+ #: pages/confirmation.php:43 pages/invoice.php:24
4843
+ msgid "Print"
4844
+ msgstr "Imprimeix"
4845
+
4846
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
4847
+ #: pages/confirmation.php:45 pages/confirmation.php:102 pages/invoice.php:26
4848
+ msgid "Account"
4849
+ msgstr "Compte"
4850
+
4851
+ #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
4852
+ #: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
4853
+ msgid "Membership Expires"
4854
+ msgstr "La subscripció acaba"
4855
+
4856
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
4857
+ #: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
4858
+ msgid "Payment Method"
4859
+ msgstr "Mètode de pagament"
4860
+
4861
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
4862
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
4863
+ #: pages/invoice.php:109
4864
+ msgid "Total Billed"
4865
+ msgstr "Total facturat"
4866
+
4867
+ #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
4868
+ #: pages/invoice.php:67
4869
+ msgid "ending in"
4870
+ msgstr "acaba a"
4871
+
4872
+ #: pages/confirmation.php:97
4873
+ #, php-format
4874
+ msgid ""
4875
+ "Below are details about your membership account. A welcome email has been "
4876
+ "sent to %s."
4877
+ msgstr ""
4878
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
4879
+ "de benviguda s’ha enviat a %s."
4880
+
4881
+ #: pages/confirmation.php:105 pages/confirmation.php:103
4882
+ msgid "Pending"
4883
+ msgstr "Pendent"
4884
+
4885
+ #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
4886
+ #: pages/invoice.php:139
4887
+ msgid "View Your Membership Account &rarr;"
4888
+ msgstr "Mira el teu compte de subscripció &rarr;"
4889
+
4890
+ #: pages/confirmation.php:115 pages/confirmation.php:113
4891
+ msgid ""
4892
+ "If your account is not activated within a few minutes, please contact the "
4893
+ "site owner."
4894
+ msgstr ""
4895
+ "Si el teu compte no s’activa en uns minuts, si us plau contacta amb "
4896
+ "l’administrador del lloc web."
4897
+
4898
+ #: pages/invoice.php:82 pages/invoice.php:80
4899
+ msgid "Coupon"
4900
+ msgstr "Cupó"
4901
+
4902
+ #: pages/invoice.php:108 pages/invoice.php:106
4903
+ msgid "Invoice #"
4904
+ msgstr "Factura #"
4905
+
4906
+ #: pages/invoice.php:134 pages/invoice.php:132
4907
+ msgid "No invoices found."
4908
+ msgstr "No s’han trobat factures."
4909
+
4910
+ #: pages/invoice.php:145 pages/invoice.php:143
4911
+ msgid "&larr; View All Invoices"
4912
+ msgstr "&larr; Mira totes les factures"
4913
+
4914
+ #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
4915
+ msgid "Free"
4916
+ msgstr "Gratuït"
4917
+
4918
+ #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
4919
+ #: pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
4920
+ msgid "Select"
4921
+ msgstr "Tria"
4922
+
4923
+ #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
4924
+ #: pages/levels.php:57 pages/levels.php:123 shortcodes/pmpro_account.php:59
4925
+ msgid "Renew"
4926
+ msgstr "Renova"
4927
+
4928
+ #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:117
4929
+ #: pages/levels.php:129
4930
+ msgid "Your&nbsp;Level"
4931
+ msgstr "El teu&nbsp;Nivell"
4932
+
4933
+ #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:129
4934
+ #: pages/levels.php:145
4935
+ msgid "&larr; Return to Your Account"
4936
+ msgstr "&larr; Torna al teu compte"
4937
+
4938
+ #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:131
4939
+ #: pages/levels.php:147
4940
+ msgid "&larr; Return to Home"
4941
+ msgstr "&larr; Torna a la pàgina d’inici"
4942
+
4943
+ #: paid-memberships-pro.php:125 adminpages/orders.php:398
4944
+ #: adminpages/orders.php:448 paid-memberships-pro.php:115
4945
+ #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
4946
+ #: paid-memberships-pro.php:124
4947
+ msgid "Testing Only"
4948
+ msgstr "Només test"
4949
+
4950
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:120
4951
+ #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
4952
+ #: paid-memberships-pro.php:129
4953
+ msgid "PayPal Payflow Pro/PayPal Pro"
4954
+ msgstr "PayPal Payflow Pro/PayPal Pro"
4955
+
4956
+ #: paid-memberships-pro.php:135 paid-memberships-pro.php:125
4957
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
4958
+ #: paid-memberships-pro.php:134
4959
+ msgid "Cybersource"
4960
+ msgstr "Cybersource"
4961
+
4962
+ #: paid-memberships-pro.php:156
4963
+ msgid "Once a month"
4964
+ msgstr "Un cop al mes"
4965
+
4966
+ #: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
4967
+ #: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
4968
+ msgid "Your membership status has been updated - Thank you!"
4969
+ msgstr "El teu status de subscripció ha estat actualitzat - Moltes gràcies!"
4970
+
4971
+ #: preheaders/account.php:12 preheaders/levels.php:24 preheaders/account.php:11
4972
+ #: preheaders/levels.php:23
4973
+ msgid ""
4974
+ "Sorry, your request could not be completed - please try again in a few "
4975
+ "moments."
4976
+ msgstr ""
4977
+ "Perdò, el què has demanat no es pot completar - si us plau torna-ho a provar "
4978
+ "en uns moments."
4979
+
4980
+ #: preheaders/billing.php:270 preheaders/checkout.php:336
4981
+ #: preheaders/billing.php:258 preheaders/billing.php:265
4982
+ #: preheaders/billing.php:266 preheaders/billing.php:279
4983
+ #: preheaders/checkout.php:332 preheaders/checkout.php:458
4984
+ #: preheaders/checkout.php:464 preheaders/checkout.php:465
4985
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481
4986
+ #: preheaders/checkout.php:482
4987
+ msgid "Please complete all required fields."
4988
+ msgstr "Si us plau completa tots els camps requerits."
4989
+
4990
+ #: preheaders/billing.php:273 preheaders/checkout.php:344
4991
+ #: preheaders/billing.php:263 preheaders/billing.php:268
4992
+ #: preheaders/billing.php:269 preheaders/billing.php:284
4993
+ #: preheaders/checkout.php:340 preheaders/checkout.php:466
4994
+ #: preheaders/checkout.php:473 preheaders/checkout.php:474
4995
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491
4996
+ #: preheaders/checkout.php:492
4997
+ msgid "Your email addresses do not match. Please try again."
4998
+ msgstr "El teu correu electrònic no coincideix. Si us plau torna a intentar-ho"
4999
+
5000
+ #: preheaders/billing.php:276 preheaders/checkout.php:349
5001
+ #: preheaders/billing.php:268 preheaders/billing.php:271
5002
+ #: preheaders/billing.php:272 preheaders/billing.php:289
5003
+ #: preheaders/checkout.php:345 preheaders/checkout.php:471
5004
+ #: preheaders/checkout.php:478 preheaders/checkout.php:480
5005
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497
5006
+ #: preheaders/checkout.php:498
5007
+ msgid "The email address entered is in an invalid format. Please try again."
5008
+ msgstr ""
5009
+ "El correu electrònic està en un format incorrecte. Si us plau, torna a "
5010
+ "provar-ho."
5011
+
5012
+ #: preheaders/billing.php:280 preheaders/billing.php:274
5013
+ #: preheaders/billing.php:275 preheaders/billing.php:276
5014
+ #: preheaders/billing.php:295
5015
+ msgid "All good!"
5016
+ msgstr "Tot bé!"
5017
+
5018
+ #: preheaders/billing.php:350 preheaders/billing.php:340
5019
+ #: preheaders/billing.php:345 preheaders/billing.php:346
5020
+ #: preheaders/billing.php:370
5021
+ #, php-format
5022
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5023
+ msgstr ""
5024
+ "Informació actualitzada. <a href=\"%s\">&laquo; torna al meu compte</a>"
5025
+
5026
+ #: preheaders/billing.php:356 preheaders/billing.php:347
5027
+ #: preheaders/billing.php:351 preheaders/billing.php:352
5028
+ #: preheaders/billing.php:378 preheaders/billing.php:380
5029
+ msgid "Error updating billing information."
5030
+ msgstr "Error actualitzant la informació de facturació."
5031
+
5032
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
5033
+ msgid "Your membership has been cancelled."
5034
+ msgstr "La teva subscripció ha estat cancel·lada."
5035
+
5036
+ #: preheaders/checkout.php:32 preheaders/checkout.php:358
5037
+ #: preheaders/checkout.php:28 preheaders/checkout.php:30
5038
+ #: preheaders/checkout.php:31 preheaders/checkout.php:354
5039
+ #: preheaders/checkout.php:480 preheaders/checkout.php:487
5040
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5041
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
5042
+ msgid "Invalid gateway."
5043
+ msgstr "Passarel·la invàlida."
5044
+
5045
+ #: preheaders/checkout.php:95 preheaders/checkout.php:88
5046
+ #: preheaders/checkout.php:89 preheaders/checkout.php:91
5047
+ #: preheaders/checkout.php:96
5048
+ msgid "Checkout: Payment Information"
5049
+ msgstr "Checkout: Informació de pagament."
5050
+
5051
+ #: preheaders/checkout.php:100
5052
+ msgid "Set Up Your Account"
5053
+ msgstr "Configura el teu compte"
5054
+
5055
+ #: preheaders/checkout.php:304 preheaders/checkout.php:300
5056
+ #: preheaders/checkout.php:416 preheaders/checkout.php:421
5057
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
5058
+ msgstr "Hi ha errors de JavaScript. Si us plau contacta el webmaster."
5059
+
5060
+ #: preheaders/checkout.php:339 preheaders/checkout.php:335
5061
+ #: preheaders/checkout.php:461 preheaders/checkout.php:468
5062
+ #: preheaders/checkout.php:473 preheaders/checkout.php:485
5063
+ #: preheaders/checkout.php:486
5064
+ msgid "Your passwords do not match. Please try again."
5065
+ msgstr "La teva clau no coincideix. Si us plau, torna a intentar-ho."
5066
+
5067
+ #: preheaders/checkout.php:354 preheaders/checkout.php:350
5068
+ #: preheaders/checkout.php:476 preheaders/checkout.php:483
5069
+ #: preheaders/checkout.php:486 preheaders/checkout.php:488
5070
+ #: preheaders/checkout.php:503 preheaders/checkout.php:504
5071
+ #, php-format
5072
+ msgid "Please check the box to agree to the %s."
5073
+ msgstr "Si us plau, clica per acceptar %s."
5074
+
5075
+ #: preheaders/checkout.php:361 preheaders/checkout.php:357
5076
+ #: preheaders/checkout.php:483 preheaders/checkout.php:490
5077
+ #: preheaders/checkout.php:495 preheaders/checkout.php:512
5078
+ #: preheaders/checkout.php:513
5079
+ msgid "Are you a spammer?"
5080
+ msgstr "Ets un spammer?"
5081
+
5082
+ #: preheaders/checkout.php:381 preheaders/checkout.php:377
5083
+ #: preheaders/checkout.php:503 preheaders/checkout.php:510
5084
+ #: preheaders/checkout.php:515 preheaders/checkout.php:518
5085
+ #: preheaders/checkout.php:535 preheaders/checkout.php:536
5086
+ msgid "That username is already taken. Please try another."
5087
+ msgstr "Aquest nom d’usuari ja està en ús. Si us plau escull-ne un altre."
5088
+
5089
+ #: preheaders/checkout.php:386 preheaders/checkout.php:382
5090
+ #: preheaders/checkout.php:508 preheaders/checkout.php:515
5091
+ #: preheaders/checkout.php:520 preheaders/checkout.php:524
5092
+ #: preheaders/checkout.php:541 preheaders/checkout.php:542
5093
+ msgid "That email address is already taken. Please try another."
5094
+ msgstr "Aquest correu electrònic ja està en ús. Si us plau escull-ne un altre."
5095
+
5096
+ #: preheaders/checkout.php:420 preheaders/checkout.php:397
5097
+ #: preheaders/checkout.php:399 preheaders/checkout.php:416
5098
+ #: preheaders/checkout.php:525 preheaders/checkout.php:532
5099
+ #: preheaders/checkout.php:537 preheaders/checkout.php:544
5100
+ #: preheaders/checkout.php:561 preheaders/checkout.php:562
5101
+ #, php-format
5102
+ msgid "reCAPTCHA failed. (%s) Please try again."
5103
+ msgstr "reCAPTCHA ha fallat. (%s) Si us plau, torna a intentar-ho."
5104
+
5105
+ #: preheaders/checkout.php:505 preheaders/checkout.php:482
5106
+ #: preheaders/checkout.php:484 preheaders/checkout.php:501
5107
+ #: preheaders/checkout.php:647 preheaders/checkout.php:654
5108
+ #: preheaders/checkout.php:659 preheaders/checkout.php:683
5109
+ #: preheaders/checkout.php:701 preheaders/checkout.php:702
5110
+ msgid "Payment accepted."
5111
+ msgstr "Pagament acceptat"
5112
+
5113
+ #: preheaders/checkout.php:513 preheaders/checkout.php:490
5114
+ #: preheaders/checkout.php:492 preheaders/checkout.php:509
5115
+ #: preheaders/checkout.php:653 preheaders/checkout.php:660
5116
+ #: preheaders/checkout.php:665 preheaders/checkout.php:691
5117
+ #: preheaders/checkout.php:709 preheaders/checkout.php:710
5118
+ msgid ""
5119
+ "Unknown error generating account. Please contact us to set up your "
5120
+ "membership."
5121
+ msgstr ""
5122
+ "Error desconegut generant el compte. Si us plau, contacta amb nosaltres per "
5123
+ "a configurar la teva subscripció."
5124
+
5125
+ #: preheaders/checkout.php:575 preheaders/checkout.php:550
5126
+ #: preheaders/checkout.php:552 preheaders/checkout.php:569
5127
+ #: preheaders/checkout.php:571 preheaders/checkout.php:785
5128
+ #: preheaders/checkout.php:792 preheaders/checkout.php:797
5129
+ #: preheaders/checkout.php:825 preheaders/checkout.php:844
5130
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
5131
+ msgid ""
5132
+ "Your payment was accepted, but there was an error setting up your account. "
5133
+ "Please contact us."
5134
+ msgstr ""
5135
+ "El teu pagament ha estat acceptat, però hi ha hagut un error configurant el "
5136
+ "teu compte. Si us plau contacta amb nosaltres."
5137
+
5138
+ #: preheaders/checkout.php:722 preheaders/checkout.php:691
5139
+ #: preheaders/checkout.php:693 preheaders/checkout.php:710
5140
+ #: preheaders/checkout.php:712 preheaders/checkout.php:953
5141
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
5142
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5143
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
5144
+ msgid ""
5145
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5146
+ "authorized, but we cancelled the order immediately. You should not try to "
5147
+ "submit this form again. Please contact the site owner to fix this issue."
5148
+ msgstr ""
5149
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5150
+ "tarjeta ha estat autoritzada, però hem cancel·lat l’orde immediatament. No "
5151
+ "hauries de tornar a enviar aquest formulari. Si us plau contacta amb els "
5152
+ "administradors de la pàgina per a resoldre aquest problema."
5153
+
5154
+ #: preheaders/checkout.php:725 preheaders/checkout.php:694
5155
+ #: preheaders/checkout.php:696 preheaders/checkout.php:713
5156
+ #: preheaders/checkout.php:715 preheaders/checkout.php:956
5157
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
5158
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5159
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
5160
+ msgid ""
5161
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
5162
+ "was charged, but we couldn't assign your membership. You should not submit "
5163
+ "this form again. Please contact the site owner to fix this issue."
5164
+ msgstr ""
5165
+ "IMPORTANT: Hi ha hagut un error mentre es creava la subscripció. La teva "
5166
+ "tarjeta de credit ha estat carregada, però no hem pogut assignar una "
5167
+ "subscripció. No hauries de tornar a enviar aquest formulari. Si us plau "
5168
+ "contacta amb els administradors de la pàgina per a resoldre aquest problema."
5169
+
5170
+ #: preheaders/checkout.php:736 preheaders/checkout.php:705
5171
+ #: preheaders/checkout.php:707 preheaders/checkout.php:724
5172
+ #: preheaders/checkout.php:726 preheaders/checkout.php:967
5173
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
5174
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5175
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
5176
+ #, php-format
5177
+ msgid ""
5178
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
5179
+ "will be processed."
5180
+ msgstr ""
5181
+ "Has de <a href=\"%s\">configurar la passarel·la de pagament</a> abans de "
5182
+ "processar cap pagament."
5183
+
5184
+ #: preheaders/checkout.php:738 preheaders/checkout.php:707
5185
+ #: preheaders/checkout.php:709 preheaders/checkout.php:726
5186
+ #: preheaders/checkout.php:728 preheaders/checkout.php:969
5187
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
5188
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5189
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
5190
+ msgid "A Payment Gateway must be set up before any payments will be processed."
5191
+ msgstr ""
5192
+ "Has de configurar la passarel·la de pagament abans de processar cap pagament."
5193
+
5194
+ #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5195
+ #: scheduled/crons.php:38 scheduled/crons.php:61
5196
+ #, php-format
5197
+ msgid "Membership expired email sent to %s. "
5198
+ msgstr "Correu electrònic d’expiració de subscripció enviat a %s. "
5199
+
5200
+ #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5201
+ #: scheduled/crons.php:80 scheduled/crons.php:84
5202
+ #, php-format
5203
+ msgid "Membership expiring email sent to %s. "
5204
+ msgstr "Correu electrònic d’expiració enviat a %s. "
5205
+
5206
+ #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5207
+ #: scheduled/crons.php:157
5208
+ #, php-format
5209
+ msgid "Credit card expiring email sent to %s. "
5210
+ msgstr "Correu electrònic d’expiració de tarjeta de crèdit enviat a %s. "
5211
+
5212
+ #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5213
+ #: scheduled/crons.php:208 scheduled/crons.php:210
5214
+ #, php-format
5215
+ msgid "Trial ending email sent to %s. "
5216
+ msgstr "Correu electrònic de finalització de període de prova enviat a %s. "
5217
+
5218
+ #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
5219
+ #, php-format
5220
+ msgid "The %s code has been applied to your order. "
5221
+ msgstr "El codi %s s’ha aplicat a la teva comanda."
5222
+
5223
+ #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
5224
+ #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
5225
+ #, php-format
5226
+ msgid "The <strong>%s</strong> code has been applied to your order."
5227
+ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
5228
+
5229
+ #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:133
5230
+ #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5231
+ msgid ""
5232
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5233
+ "Information From Authorize.net"
5234
+ msgstr ""
5235
+ "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information "
5236
+ "From Authorize.net"
5237
+
5238
+ #: services/stripe-webhook.php:272 services/stripe-webhook.php:176
5239
+ #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5240
+ #: services/stripe-webhook.php:271
5241
+ #, php-format
5242
+ msgid ""
5243
+ "%s has had their payment subscription cancelled by Stripe. Please check that "
5244
+ "this user's membership is cancelled on your site if it should be."
5245
+ msgstr ""
5246
+ "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma que la "
5247
+ "subscripció d’aquest membre ha estat cancel·lada al teu lloc web (per si no "
5248
+ "fós correcte)."
5249
+
5250
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
5251
+ msgid "Billing"
5252
+ msgstr "Facturació"
5253
+
5254
+ #: shortcodes/pmpro_account.php:65 pages/account.php:36
5255
+ #: shortcodes/pmpro_account.php:62
5256
+ msgid "Update Billing Info"
5257
+ msgstr "Actualitza l’informació de facturació"
5258
+
5259
+ #: shortcodes/pmpro_account.php:71 pages/account.php:42
5260
+ #: shortcodes/pmpro_account.php:68
5261
+ msgid "Change"
5262
+ msgstr "Canvi"
5263
+
5264
+ #: shortcodes/pmpro_account.php:93 pages/account.php:64
5265
+ #: shortcodes/pmpro_account.php:90
5266
+ msgid "View all Membership Options"
5267
+ msgstr "Mira totes les opcions de subscripció"
5268
+
5269
+ #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5270
+ #: pages/account.php:71 shortcodes/pmpro_account.php:99
5271
+ msgid "My Account"
5272
+ msgstr "El meu compte"
5273
+
5274
+ #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5275
+ #: pages/account.php:80 shortcodes/pmpro_account.php:110
5276
+ msgid "Edit Profile"
5277
+ msgstr "Edita el perfil"
5278
+
5279
+ #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5280
+ #: pages/account.php:81 shortcodes/pmpro_account.php:111
5281
+ msgid "Change Password"
5282
+ msgstr "Canvia Clau"
5283
+
5284
+ #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5285
+ #: pages/account.php:129 shortcodes/pmpro_account.php:118
5286
+ msgid "Past Invoices"
5287
+ msgstr "Factures anteriors"
5288
+
5289
+ #: shortcodes/pmpro_account.php:127 pages/account.php:93
5290
+ #: shortcodes/pmpro_account.php:124
5291
+ msgid "Amount"
5292
+ msgstr "Quantitat"
5293
+
5294
+ #: shortcodes/pmpro_account.php:155 pages/account.php:121 pages/account.php:140
5295
+ #: pages/account.php:144 shortcodes/pmpro_account.php:152
5296
+ msgid "View All Invoices"
5297
+ msgstr "Mira totes les Factures"
5298
+
5299
+ #: shortcodes/pmpro_account.php:162 pages/account.php:128 pages/account.php:146
5300
+ #: pages/account.php:150 shortcodes/pmpro_account.php:159
5301
+ msgid "Member Links"
5302
+ msgstr "Links dels subscriptors"
5303
+
5304
+ #: adminpages/addons.php:79
5305
+ msgid "Disabled"
5306
+ msgstr "Desactivat"
5307
+
5308
+ #: adminpages/addons.php:79
5309
+ msgid "Enabled"
5310
+ msgstr "Activat"
5311
+
5312
+ #: adminpages/discountcodes.php:437
5313
+ msgid "Billing Ammount"
5314
+ msgstr "Quantitat de facturació"
5315
+
5316
+ #: adminpages/discountcodes.php:480
5317
+ msgid "Check this to set an expiration date for new sign ups."
5318
+ msgstr ""
5319
+ "Comproveu això per establir una data de caducitat per als nous sign ups."
5320
+
5321
+ #: adminpages/discountcodes.php:497
5322
+ msgid ""
5323
+ "How long before the expiration expires. Note that any future payments will "
5324
+ "be cancelled when the membership expires."
5325
+ msgstr ""
5326
+ "Temps abans que expiri l’expiració. Nota que els futurs pagament es "
5327
+ "cancel·laran quan expiri la subscripció."
5328
+
5329
+ #: adminpages/emailsettings.php:98
5330
+ msgid "If unchecked, all emails from \"WordPress &lt;"
5331
+ msgstr "Si no està clicat, tots els correus electrònics desde \"WordPress &lt;"
5332
+
5333
+ #: adminpages/membershiplevels.php:364
5334
+ msgid ""
5335
+ "Stripe integration currently only supports billing periods of \"Month\" or "
5336
+ "\"Year\"."
5337
+ msgstr ""
5338
+ "Integració d’Stripe actualment només suporta períodes facturació de “Mes” o "
5339
+ "“Any”."
5340
+
5341
+ #: adminpages/membershiplevels.php:398
5342
+ msgid ""
5343
+ "2Checkout integration does not currently support custom trials. You can do "
5344
+ "one period trials by setting an initial payment different from the billing "
5345
+ "amount."
5346
+ msgstr ""
5347
+ "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un "
5348
+ "període de prova configurant un pagament inicial diferent del total de "
5349
+ "facturació."
5350
+
5351
+ #: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
5352
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
5353
+ msgid "Billing Cycle"
5354
+ msgstr "Cicle de facturació"
5355
+
5356
+ #: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
5357
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
5358
+ msgid "Trial Cycle"
5359
+ msgstr "Cicle de prova"
5360
+
5361
+ #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
5362
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
5363
+ msgid "every"
5364
+ msgstr "cada"
5365
+
5366
+ #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
5367
+ msgid "Never"
5368
+ msgstr "Mai"
5369
+
5370
+ #: adminpages/pagesettings.php:73
5371
+ #, php-format
5372
+ msgid "Membership %s"
5373
+ msgstr "Subscripció %s"
5374
+
5375
+ #: adminpages/paymentsettings.php:170
5376
+ msgid ""
5377
+ "Payflow Pro currently only supports one-time payments. Users will not be "
5378
+ "able to checkout for levels with recurring payments."
5379
+ msgstr ""
5380
+ "Payflow Pro només suporta pagaments d’un cop. Els usuaris no podran fer el "
5381
+ "checkout per nivells amb pagaments recurrents."
5382
+
5383
+ #: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
5384
+ msgid ""
5385
+ "If values are given, tax will be applied for any members ordering from the "
5386
+ "selected state. For more complex tax rules, use the \"pmpro_tax\" filter."
5387
+ msgstr ""
5388
+ "Si es posen valors, l’impost s’aplicarà per a tots els membres que comprin "
5389
+ "des de l’estat seleccionat. Per regles més complexes d’impostos utilitza el "
5390
+ "filtre \"pmpro_tax”."
5391
+
5392
+ #: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
5393
+ msgid "Use SSL"
5394
+ msgstr "Utilitza SSL"
5395
+
5396
+ #: adminpages/paymentsettings.php:425
5397
+ msgid "Required by this Gateway Option"
5398
+ msgstr "Requerit per aquesta opció de Passarel·la"
5399
+
5400
+ #: adminpages/paymentsettings.php:432
5401
+ msgid ""
5402
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
5403
+ "the checkout page."
5404
+ msgstr ""
5405
+ "Stripe no requereix camps d’adreça de facturació. Escull “No” per amagar-los "
5406
+ "de la pàgina de checkout."
5407
+
5408
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
5409
+ #: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
5410
+ msgid "HTTPS Nuclear Option"
5411
+ msgstr "HTTPS Nuclear Option"
5412
+
5413
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
5414
+ #: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
5415
+ msgid ""
5416
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
5417
+ "Check this if you are using SSL and have warnings on your checkout pages."
5418
+ msgstr ""
5419
+ "Utilitza la \"Nuclear Option\" per utilitzar (HTTPS) URLs a les teves "
5420
+ "pàgines segures. Clica si estàs utilitzant SSL i tens missatges "
5421
+ "d’advertiment a les teves pàgines de checkout"
5422
+
5423
+ #: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
5424
+ #: adminpages/paymentsettings.php:498
5425
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
5426
+ msgid ""
5427
+ "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
5428
+ msgstr ""
5429
+ "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar 2Checkout "
5430
+ "INS URL "
5431
+
5432
+ #: adminpages/reports/login.php:26 adminpages/reports/login.php:27
5433
+ msgid "Visits Today"
5434
+ msgstr "Visites avui"
5435
+
5436
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:29
5437
+ msgid "Visits All Time"
5438
+ msgstr "Visites sempre"
5439
+
5440
+ #: adminpages/reports/login.php:31 adminpages/reports/login.php:32
5441
+ msgid "Views Today"
5442
+ msgstr "Vistes avui"
5443
+
5444
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:34
5445
+ msgid "Views All Time"
5446
+ msgstr "Vistes sempre"
5447
+
5448
+ #: adminpages/reports/login.php:36 adminpages/reports/login.php:37
5449
+ msgid "Logins Today"
5450
+ msgstr "Logins avui"
5451
+
5452
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:39
5453
+ msgid "Logins All Time"
5454
+ msgstr "Logins sempre"
5455
+
5456
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
5457
+ msgid "Cancellations"
5458
+ msgstr "Cancel·lacions"
5459
+
5460
+ #: adminpages/reports/memberships.php:86
5461
+ msgid "Other Stats"
5462
+ msgstr "Altres estadístiques"
5463
+
5464
+ #: adminpages/reports/memberships.php:88
5465
+ msgid "Monthly Recurring Revenue (MRR)"
5466
+ msgstr "Beneficis Recurrents Mensuals (MRR)"
5467
+
5468
+ #: adminpages/reports/memberships.php:92
5469
+ msgid "Cancellation Rate"
5470
+ msgstr "Rati de cancel·lació"
5471
+
5472
+ #: adminpages/reports/memberships.php:96
5473
+ msgid "Lifetime Value (LTV)"
5474
+ msgstr "Lifetime Value (LTV)"
5475
+
5476
+ #: classes/class.pmproemail.php:342 classes/class.pmproemail.php:345
5477
+ #: classes/class.pmproemail.php:363 classes/class.pmproemail.php:366
5478
+ #: classes/class.pmproemail.php:375
5479
+ #, php-format
5480
+ msgid "Your billing information has been udpated at %s"
5481
+ msgstr "La teva informació de facturació ha estat actualitzada a %s"
5482
+
5483
+ #: classes/class.pmproemail.php:386 classes/class.pmproemail.php:390
5484
+ #: classes/class.pmproemail.php:416 classes/class.pmproemail.php:419
5485
+ #: classes/class.pmproemail.php:428
5486
+ #, php-format
5487
+ msgid "Billing information has been udpated for %s at %s"
5488
+ msgstr "Informació de facturació actualitzada per %s a %s"
5489
+
5490
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5491
+ #: classes/class.pmproemail.php:799
5492
+ msgid "membership has been cancelled"
5493
+ msgstr "La subscripció ha estat cancel·lada"
5494
+
5495
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
5496
+ msgid "API Private Key"
5497
+ msgstr "API Private Key"
5498
+
5499
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
5500
+ msgid ""
5501
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
5502
+ "here."
5503
+ msgstr ""
5504
+ "Vés a API in 2Checkout i genera un nou key pair. Enganxa la Private Key aquí."
5505
+
5506
+ #: includes/currencies.php:11
5507
+ msgid "Brazilian Real (&#36;)"
5508
+ msgstr "Brazilian Real (&#36;)"
5509
+
5510
+ #: includes/currencies.php:29 includes/currencies.php:49
5511
+ msgid "South African Rand"
5512
+ msgstr "South African Rand"
5513
+
5514
+ #: includes/functions.php:173 includes/functions.php:209
5515
+ #: includes/functions.php:215 includes/functions.php:217
5516
+ #: includes/functions.php:218 includes/functions.php:219
5517
+ #: includes/functions.php:222
5518
+ #, php-format
5519
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
5520
+ msgstr "i després <strong>%s cada %d %s per %d mes %s</strong>."
5521
+
5522
+ #: includes/profile.php:82 includes/profile.php:84
5523
+ msgid "User is not paying."
5524
+ msgstr "L’usuari no està pagant"
5525
+
5526
+ #: pages/account.php:10
5527
+ msgid "Your membership is <strong>active</strong>."
5528
+ msgstr "La teva subscripció és <strong>active</strong>."
5529
+
5530
+ #: pages/account.php:34 pages/account.php:38
5531
+ #, php-format
5532
+ msgid "Your first payment will cost %s."
5533
+ msgstr "El teu primer pagament serà de %s."
5534
+
5535
+ #: pages/account.php:38 pages/account.php:42
5536
+ #, php-format
5537
+ msgid "Your first %d payments will cost %s."
5538
+ msgstr "El teu primer %d pagament serà de %s."
5539
+
5540
+ #: pages/account.php:87 pages/account.php:91
5541
+ msgid "Billing Information"
5542
+ msgstr "Informació de Facturació"
5543
+
5544
+ #: pages/account.php:114 pages/account.php:118
5545
+ msgid "Edit Billing Information"
5546
+ msgstr "Edita l’Informació de Facturació"
5547
+
5548
+ #: pages/account.php:152 pages/account.php:156
5549
+ msgid "Update Billing Information"
5550
+ msgstr "Actualitza l’Informació de Facturació"
5551
+
5552
+ #: pages/account.php:155 pages/account.php:159
5553
+ msgid "Change Membership Level"
5554
+ msgstr "Canvia el nivell de subscripció"
5555
+
5556
+ #: pages/account.php:157 pages/account.php:161
5557
+ msgid "Cancel Membership"
5558
+ msgstr "Cancel·la la subscripció"
5559
+
5560
+ #: pages/checkout.php:51 pages/checkout.php:52
5561
+ #, php-format
5562
+ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
5563
+ msgstr "<p>El codi <strong>%s</strong> s’ha aplicat a la teva comanda.</p>"
5564
+
5565
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
5566
+ msgid "Submit and Pay with 2CheckOut"
5567
+ msgstr "Envia i paga amb 2CheckOut"
5568
+
5569
+ #: pages/confirmation.php:12
5570
+ msgid ""
5571
+ "Your payment has been submitted to PayPal. Your membership will be activated "
5572
+ "shortly."
5573
+ msgstr ""
5574
+ "El teu pagament s’ha realitzat via PayPal. La teva subscripció s’activarà "
5575
+ "aviat."
5576
+
5577
+ #: pages/confirmation.php:95 pages/confirmation.php:97
5578
+ #, php-format
5579
+ msgid ""
5580
+ "Below are details about your membership account. A welcome email with has "
5581
+ "been sent to %s."
5582
+ msgstr ""
5583
+ "A sota hi ha els detalls del teu compte de subscripció. Un correu electrònic "
5584
+ "de benvinguda s’ha enviat a %s."
5585
+
5586
+ #: pages/invoice.php:120 pages/invoice.php:122
5587
+ msgid "View Invoice"
5588
+ msgstr "Mira Factura"
5589
+
5590
+ #: pages/levels.php:15
5591
+ msgid "Subscription Information"
5592
+ msgstr "Informació de subscripció"
5593
+
5594
+ #: pages/levels.php:33
5595
+ msgid "--"
5596
+ msgstr "--"
5597
+
5598
+ #: pages/levels.php:51
5599
+ #, php-format
5600
+ msgid "%s per %s for %d more %s."
5601
+ msgstr "%s per %s per %d més %s."
5602
+
5603
+ #: pages/levels.php:55
5604
+ #, php-format
5605
+ msgid "%s every %d %s for %d more %s."
5606
+ msgstr "%s cada %d %s per %d més %s."
5607
+
5608
+ #: pages/levels.php:60
5609
+ #, php-format
5610
+ msgid "%s after %d %s."
5611
+ msgstr "%s després %d %s."
5612
+
5613
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100
5614
+ #: preheaders/checkout.php:102 preheaders/checkout.php:109
5615
+ msgid "Set up Your Account"
5616
+ msgstr "Configura el teu compte"
languages/pmpro-et_EE.mo ADDED
Binary file
languages/pmpro-et_EE.po ADDED
@@ -0,0 +1,5294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-21 12:08+0200\n"
9
+ "PO-Revision-Date: 2016-02-04 19:40+0200\n"
10
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "Last-Translator: \n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: et_EE\n"
18
+ "X-Poedit-Bookmarks: -1,-1,-1,663,184,-1,-1,-1,-1,-1\n"
19
+
20
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
21
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
22
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
23
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
24
+ #: adminpages/orders-print.php:12 adminpages/orders.php:5
25
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
26
+ #: includes/license.php:36 adminpages/addons.php:21
27
+ #: adminpages/pagesettings.php:5
28
+ msgid "You do not have permissions to perform this action."
29
+ msgstr "Teil puuduvad antud tegevuse sooritamiseks õigused."
30
+
31
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170
32
+ #: includes/adminpages.php:52 includes/adminpages.php:146
33
+ #: adminpages/addons.php:80 adminpages/admin_header.php:133
34
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14
35
+ #: includes/adminpages.php:69 includes/adminpages.php:135
36
+ #: includes/adminpages.php:142
37
+ msgid "Add Ons"
38
+ msgstr "Lisad"
39
+
40
+ #: adminpages/addons.php:71 adminpages/addons.php:87
41
+ #, php-format
42
+ msgid "Last checked on %s at %s."
43
+ msgstr "Viimati kontrollitud %s %s."
44
+
45
+ #: adminpages/addons.php:72 adminpages/addons.php:88
46
+ msgid "Check Again"
47
+ msgstr "Kontrollige uuesti"
48
+
49
+ #: adminpages/addons.php:76 adminpages/orders.php:741 adminpages/addons.php:92
50
+ #: adminpages/orders.php:605
51
+ msgid "All"
52
+ msgstr "Kõik"
53
+
54
+ #: adminpages/addons.php:77 adminpages/addons.php:93
55
+ msgid "Active"
56
+ msgstr "Aktiivne"
57
+
58
+ #: adminpages/addons.php:78 adminpages/addons.php:94
59
+ msgid "Inactive"
60
+ msgstr "Mitteaktiivne"
61
+
62
+ #: adminpages/addons.php:79 adminpages/addons.php:95
63
+ msgid "Update Available"
64
+ msgstr "Uuendused saadaval "
65
+
66
+ #: adminpages/addons.php:80 adminpages/addons.php:96
67
+ msgid "Not Installed"
68
+ msgstr "Ei ole installitud"
69
+
70
+ #: adminpages/addons.php:93 adminpages/addons.php:109
71
+ msgid "Add On Name"
72
+ msgstr "Lisa nimi"
73
+
74
+ #: adminpages/addons.php:94 adminpages/addons.php:110
75
+ msgid "Type"
76
+ msgstr "Tüüp"
77
+
78
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:296
80
+ #: adminpages/membershiplevels.php:298
81
+ msgid "Description"
82
+ msgstr "Kirjeldus"
83
+
84
+ #: adminpages/addons.php:118 adminpages/addons.php:134
85
+ msgid "No Add Ons found."
86
+ msgstr "Ei leitud ühtegi lisa"
87
+
88
+ #: adminpages/addons.php:179 adminpages/addons.php:184
89
+ #: adminpages/addons.php:196 adminpages/addons.php:195
90
+ #: adminpages/addons.php:200 adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr "Installi nüüd"
93
+
94
+ #: adminpages/addons.php:185 adminpages/addons.php:191
95
+ #: adminpages/addons.php:197 adminpages/addons.php:203
96
+ #: adminpages/addons.php:201 adminpages/addons.php:207
97
+ #: adminpages/addons.php:213 adminpages/addons.php:219
98
+ msgid "Download"
99
+ msgstr "Lae alla"
100
+
101
+ #: adminpages/addons.php:190 adminpages/addons.php:202
102
+ #: adminpages/addons.php:206 adminpages/addons.php:218
103
+ msgid "Update License"
104
+ msgstr "Uuenda litsentsi"
105
+
106
+ #: adminpages/addons.php:208 adminpages/addons.php:224
107
+ msgid "Deactivate"
108
+ msgstr "Deaktiveeri"
109
+
110
+ #: adminpages/addons.php:208 adminpages/addons.php:224
111
+ #, php-format
112
+ msgid "Deactivate %s"
113
+ msgstr "Deaktiveeri %s"
114
+
115
+ #: adminpages/addons.php:212 adminpages/addons.php:228
116
+ msgid "Activate"
117
+ msgstr "Aktiveeri"
118
+
119
+ #: adminpages/addons.php:212 adminpages/addons.php:228
120
+ #, php-format
121
+ msgid "Activate %s"
122
+ msgstr "Aktiveeri %s"
123
+
124
+ #: adminpages/addons.php:213 adminpages/addons.php:229
125
+ msgid "Delete"
126
+ msgstr "Kustuta"
127
+
128
+ #: adminpages/addons.php:213 adminpages/addons.php:229
129
+ #, php-format
130
+ msgid "Delete %s"
131
+ msgstr "Kustuta %s"
132
+
133
+ #: adminpages/addons.php:223 adminpages/addons.php:239
134
+ msgid "PMPro Free"
135
+ msgstr "PMPro tasuta"
136
+
137
+ #: adminpages/addons.php:225 adminpages/addons.php:241
138
+ msgid "PMPro Core"
139
+ msgstr "PMPro Core"
140
+
141
+ #: adminpages/addons.php:227 adminpages/addons.php:243
142
+ msgid "PMPro Plus"
143
+ msgstr "PMPro Plus"
144
+
145
+ #: adminpages/addons.php:229 adminpages/addons.php:245
146
+ msgid "WordPress.org"
147
+ msgstr "WordPress.org"
148
+
149
+ #: adminpages/addons.php:231 adminpages/addons.php:247
150
+ msgid "N/A"
151
+ msgstr "Ei ole kättesaadav"
152
+
153
+ #: adminpages/addons.php:240 adminpages/addons.php:256
154
+ #, php-format
155
+ msgid "Version %s"
156
+ msgstr "Versioon %s"
157
+
158
+ #: adminpages/addons.php:245 adminpages/addons.php:261
159
+ #, php-format
160
+ msgid "By %s"
161
+ msgstr "%s poolt"
162
+
163
+ #: adminpages/addons.php:252 adminpages/addons.php:268
164
+ #, php-format
165
+ msgid "More information about %s"
166
+ msgstr "Lisa informatsiooni %s kohta"
167
+
168
+ #: adminpages/addons.php:254 adminpages/addons.php:270
169
+ msgid "View details"
170
+ msgstr "Vaata rohkem"
171
+
172
+ #: adminpages/addons.php:259 adminpages/addons.php:275
173
+ msgid "Visit plugin site"
174
+ msgstr "Külasta plugina kodulehte"
175
+
176
+ #: adminpages/admin_header.php:25
177
+ msgid "Add a membership level to get started."
178
+ msgstr "Lisa liikme tase et alustada."
179
+
180
+ #: adminpages/admin_header.php:27
181
+ msgid "Set up the membership pages"
182
+ msgstr "Sea üles liikmete leheküljed"
183
+
184
+ #: adminpages/admin_header.php:29
185
+ msgid "Set up your SSL certificate and payment gateway"
186
+ msgstr "Sea üles oma SSL sertifikaat ja maksmise meetod"
187
+
188
+ #: adminpages/admin_header.php:38
189
+ msgid ""
190
+ "The billing details for some of your membership levels is not supported by "
191
+ "Stripe."
192
+ msgstr "Arve üksikasjad mõnede sinu liikmete tasemetele ei toeta Stripe-i."
193
+
194
+ #: adminpages/admin_header.php:46
195
+ msgid ""
196
+ "The billing details for this level are not supported by Stripe. Please "
197
+ "review the notes in the Billing Details section below."
198
+ msgstr ""
199
+ "Arve üksikasjad sellel tasemel ei ole toetaud Stripe-is. Palun vaadake "
200
+ "märkmeid allpool asuvas arve üksikasjade seksioonis."
201
+
202
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
203
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
204
+ msgid "The levels with issues are highlighted below."
205
+ msgstr "Tasemed probleemidega on välja toodud all."
206
+
207
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
208
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
209
+ msgid "Please edit your levels"
210
+ msgstr "Palun muutke oma tasemeid."
211
+
212
+ #: adminpages/admin_header.php:58
213
+ msgid ""
214
+ "The billing details for some of your membership levels is not supported by "
215
+ "Payflow."
216
+ msgstr "Mõned sinu liikmete tasemed ei toeta Payflow-is arve üksikasju."
217
+
218
+ #: adminpages/admin_header.php:66
219
+ msgid ""
220
+ "The billing details for this level are not supported by Payflow. Please "
221
+ "review the notes in the Billing Details section below."
222
+ msgstr ""
223
+ "Arve üksikasjad sellel tasemel ei ole toetatud Payflow-is. Palun vaadake "
224
+ "märkmeid allpool asuvas arve üksikasjade seksioonis."
225
+
226
+ #: adminpages/admin_header.php:78
227
+ msgid ""
228
+ "The billing details for some of your membership levels is not supported by "
229
+ "Braintree."
230
+ msgstr "Mõned sinu liikmete tasemed ei toeta Braintree-is arve üksikasju."
231
+
232
+ #: adminpages/admin_header.php:86
233
+ msgid ""
234
+ "The billing details for this level are not supported by Braintree. Please "
235
+ "review the notes in the Billing Details section below."
236
+ msgstr ""
237
+ "Arve üksikasjad sellel tasemel ei ole toetaud Braintree-is. Palun vaadake "
238
+ "märkmeid allpool asuvas arve üksikasjade seksioonis."
239
+
240
+ #: adminpages/admin_header.php:98
241
+ msgid ""
242
+ "The billing details for some of your membership levels is not supported by "
243
+ "TwoCheckout."
244
+ msgstr "Mõned sinu liikmete tasemed ei toeta TwoCheckout-is arve üksikasju."
245
+
246
+ #: adminpages/admin_header.php:107
247
+ msgid ""
248
+ "The billing details for this level are not supported by 2Checkout. Please "
249
+ "review the notes in the Billing Details section below."
250
+ msgstr ""
251
+ "Arve üksikasjad sellell tasemel ei ole toetaud 2Checkout-is. Palun vaadake "
252
+ "märkmeid allpool asuvas arve üksikasjade seksioonis."
253
+
254
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
255
+ msgid "Plugin Support"
256
+ msgstr "Plugina toetus"
257
+
258
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
259
+ msgid "User Forum"
260
+ msgstr "Kasutaja foorum"
261
+
262
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
263
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:64
264
+ #: includes/adminpages.php:65 includes/adminpages.php:111
265
+ #: includes/metaboxes.php:126 adminpages/admin_header.php:128
266
+ #: adminpages/admin_header.php:149 adminpages/membershiplevels.php:490
267
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
268
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
269
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
270
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:44
271
+ #: includes/adminpages.php:100 includes/adminpages.php:107
272
+ msgid "Membership Levels"
273
+ msgstr "Liikmete tasemed"
274
+
275
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
276
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
277
+ #: adminpages/pagesettings.php:120
278
+ msgid "Pages"
279
+ msgstr "Lehed"
280
+
281
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
282
+ #: adminpages/admin_header.php:151
283
+ msgid "Payment Gateway &amp; SSL"
284
+ msgstr "Makse meetod &amp; SSL"
285
+
286
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
287
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
288
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
289
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
290
+ #: pages/account.php:52 pages/account.php:56 pages/account.php:77
291
+ #: shortcodes/pmpro_account.php:106
292
+ msgid "Email"
293
+ msgstr "Email"
294
+
295
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
296
+ #: adminpages/admin_header.php:153
297
+ msgid "Advanced"
298
+ msgstr "Täpsemad"
299
+
300
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
301
+ #: adminpages/advancedsettings.php:42
302
+ msgid "Your advanced settings have been updated."
303
+ msgstr "Teie täpsemad seaded on uuendatud."
304
+
305
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
306
+ #, php-format
307
+ msgid ""
308
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
309
+ "a>."
310
+ msgstr ""
311
+ "See sisu on mõeldud ainult !!levels!! liikmetele. <a href=\"%s\">"
312
+ "\\Registreerige siin</a>."
313
+
314
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
315
+ #, php-format
316
+ msgid ""
317
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
318
+ "\">Register here</a>.)"
319
+ msgstr ""
320
+ "Palun <a href=\"%s\">logige sisse</a> , et näha seda sisu. (<a href=\"%s"
321
+ "\">Registreerige siin</a>.)"
322
+
323
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
324
+ msgid ""
325
+ "This content is for members only. Visit the site and log in/register to read."
326
+ msgstr ""
327
+ "See sisu on ainult liikmetele. Külasta lehte ja logi sisse/registeeri, et "
328
+ "lugeda."
329
+
330
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
331
+ #: includes/adminpages.php:139 adminpages/advancedsettings.php:79
332
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
333
+ #: includes/adminpages.php:64 includes/adminpages.php:128
334
+ #: includes/adminpages.php:135
335
+ msgid "Advanced Settings"
336
+ msgstr "Täpsemad seaded"
337
+
338
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
339
+ #: adminpages/advancedsettings.php:92
340
+ msgid "Message for Logged-in Non-members"
341
+ msgstr "Teade sisse logitud mitte liikmetele"
342
+
343
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
344
+ #: adminpages/advancedsettings.php:96
345
+ msgid ""
346
+ "This message replaces the post content for non-members. Available variables"
347
+ msgstr "See teade asendab postituse sisu mitte liikmetel. Saadaolevad muutujad"
348
+
349
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
350
+ #: adminpages/advancedsettings.php:101
351
+ msgid "Message for Logged-out Users"
352
+ msgstr "Teade välja logitud kasutajatele"
353
+
354
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
355
+ #: adminpages/advancedsettings.php:105
356
+ msgid "This message replaces the post content for logged-out visitors."
357
+ msgstr "See teade asendab postituse sisu välja loginud külastajatele."
358
+
359
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
360
+ #: adminpages/advancedsettings.php:110
361
+ msgid "Message for RSS Feed"
362
+ msgstr "Teade RSS Feed-ile"
363
+
364
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
365
+ #: adminpages/advancedsettings.php:114
366
+ msgid "This message replaces the post content in RSS feeds."
367
+ msgstr "See teade asendab postituse sisu RSS feeds-is"
368
+
369
+ #: adminpages/advancedsettings.php:122
370
+ msgid "Filter searches and archives?"
371
+ msgstr "Filtreer otsib ja arhiveerib?"
372
+
373
+ #: adminpages/advancedsettings.php:126
374
+ msgid ""
375
+ "No - Non-members will see restricted posts/pages in searches and archives."
376
+ msgstr ""
377
+ "Ei - Mitte-liikmed näevad piiratud postitusi/lehti otsingutes ja arhiivides."
378
+
379
+ #: adminpages/advancedsettings.php:127
380
+ msgid ""
381
+ "Yes - Only members will see restricted posts/pages in searches and archives."
382
+ msgstr ""
383
+ "Jah - Ainult liikmed näevad piiratud postitusi/lehti otsingutes ja "
384
+ "arhiivides."
385
+
386
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
387
+ #: adminpages/advancedsettings.php:120
388
+ msgid "Show Excerpts to Non-Members?"
389
+ msgstr "Näita katkendeid mitte liikmetele?"
390
+
391
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
392
+ #: adminpages/advancedsettings.php:124
393
+ msgid "No - Hide excerpts."
394
+ msgstr "Ei - Peida katkendid."
395
+
396
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
397
+ #: adminpages/advancedsettings.php:125
398
+ msgid "Yes - Show excerpts."
399
+ msgstr "Jah - Näita katkendeid."
400
+
401
+ #: adminpages/advancedsettings.php:144
402
+ msgid "Hide Ads From Members?"
403
+ msgstr "Peida reklaame liikmete eest?"
404
+
405
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
406
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
407
+ #: adminpages/paymentsettings.php:210
408
+ #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:110
409
+ #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
410
+ #: adminpages/advancedsettings.php:187 adminpages/advancedsettings.php:194
411
+ #: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:206
412
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
413
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
414
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
415
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:414
416
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
417
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
418
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
419
+ #: classes/gateways/class.pmprogateway_stripe.php:173
420
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:101
421
+ #: includes/profile.php:105 includes/profile.php:121 includes/profile.php:123
422
+ msgid "No"
423
+ msgstr "Ei"
424
+
425
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
426
+ #: adminpages/advancedsettings.php:136
427
+ msgid "Hide Ads From All Members"
428
+ msgstr "Peida reklaame kõikide liikmete eest?"
429
+
430
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
431
+ #: adminpages/advancedsettings.php:137
432
+ msgid "Hide Ads From Certain Members"
433
+ msgstr "Peida reklaame kindlate liikmete eest?"
434
+
435
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
436
+ #: adminpages/advancedsettings.php:144
437
+ msgid "Ads from the following plugins will be automatically turned off"
438
+ msgstr "Järgmiste pluginate reklaamid lülitatakse automaatselt välja"
439
+
440
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
441
+ #: adminpages/advancedsettings.php:145
442
+ msgid "To hide ads in your template code, use code like the following"
443
+ msgstr "Reklaamide peitmiseks teie põhja koodis, kasutage järgnevat koodi"
444
+
445
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
446
+ #: adminpages/advancedsettings.php:156
447
+ msgid "Choose Levels to Hide Ads From"
448
+ msgstr "Vali tasemed kus varjatakse reklaame"
449
+
450
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
451
+ #: adminpages/advancedsettings.php:190
452
+ msgid "Redirect all traffic from registration page to /susbcription/?"
453
+ msgstr "Suuna kogu liiklus registreerimise lehelt /tellimise lehele/?"
454
+
455
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
456
+ #: adminpages/advancedsettings.php:190
457
+ msgid "multisite only"
458
+ msgstr "multilehed ainult"
459
+
460
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
461
+ #: adminpages/paymentsettings.php:211
462
+ #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:111
463
+ #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
464
+ #: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
465
+ #: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
466
+ #: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
467
+ #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:415
468
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
469
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
470
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
471
+ #: adminpages/paymentsettings.php:462
472
+ #: classes/gateways/class.pmprogateway_stripe.php:174
473
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:102
474
+ #: includes/profile.php:106 includes/profile.php:122 includes/profile.php:124
475
+ msgid "Yes"
476
+ msgstr "Jah"
477
+
478
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
479
+ #: adminpages/advancedsettings.php:202
480
+ msgid "Use reCAPTCHA?"
481
+ msgstr "Kasuta reCAPTCHA-t?"
482
+
483
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
484
+ #: adminpages/advancedsettings.php:207
485
+ msgid "Yes - Free memberships only."
486
+ msgstr "Jah - Tasuta liikmelisus ainult."
487
+
488
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
489
+ #: adminpages/advancedsettings.php:208
490
+ msgid "Yes - All memberships."
491
+ msgstr "Jah - kõik liikmed"
492
+
493
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
494
+ #: adminpages/advancedsettings.php:210
495
+ msgid "A free reCAPTCHA key is required."
496
+ msgstr "Tasuta reCAPTCHA võti on vajalik."
497
+
498
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
499
+ #: adminpages/advancedsettings.php:210
500
+ msgid "Click here to signup for reCAPTCHA"
501
+ msgstr "Kliki siia, et saada reCAPTCHA"
502
+
503
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
504
+ #: adminpages/advancedsettings.php:216
505
+ msgid "reCAPTCHA Public Key"
506
+ msgstr "reCAPTCHA Avalik võti"
507
+
508
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
509
+ #: adminpages/advancedsettings.php:219
510
+ msgid "reCAPTCHA Private Key"
511
+ msgstr "reCAPTCHA Privaatne võti"
512
+
513
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
514
+ #: adminpages/advancedsettings.php:225
515
+ msgid "Require Terms of Service on signups?"
516
+ msgstr "Saa lepingu tingimused konto loomisel?"
517
+
518
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
519
+ #: adminpages/advancedsettings.php:232
520
+ msgid ""
521
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
522
+ "using the dropdown above."
523
+ msgstr ""
524
+ "Kui jah, loo WordPress'i leht, mis sisaldab sinu TOS nõusolekut ja määra "
525
+ "see kasutamaks ripploendit ülal."
526
+
527
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
528
+ msgid "selected"
529
+ msgstr "valitud"
530
+
531
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
532
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
533
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
534
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
535
+ #: adminpages/pagesettings.php:254 adminpages/paymentsettings.php:485
536
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
537
+ #: adminpages/paymentsettings.php:534
538
+ msgid "Save Settings"
539
+ msgstr "Salvesta sätted"
540
+
541
+ #: adminpages/discountcodes.php:48
542
+ msgid "Discount code updated successfully."
543
+ msgstr "Allahindluse koodi uuendati edukalt."
544
+
545
+ #: adminpages/discountcodes.php:55
546
+ msgid "Error updating discount code. That code may already be in use."
547
+ msgstr ""
548
+ "Error allahindluse koodi uuendamisel. Võimalik, et kood on juba kasutusel."
549
+
550
+ #: adminpages/discountcodes.php:64
551
+ msgid "Discount code added successfully."
552
+ msgstr "Allahindluse kood lisati edukalt."
553
+
554
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
555
+ msgid "Error adding discount code. That code may already be in use."
556
+ msgstr ""
557
+ "Tekkis error allahindluse koodi lisamisel. Kood võib-olla on juba kasutusel."
558
+
559
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
560
+ #, php-format
561
+ msgid "Error saving values for the %s level."
562
+ msgstr "Tekkis error väärtuste salvestamisel %s tasemel."
563
+
564
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
565
+ msgid "There were errors updating the level values: "
566
+ msgstr "Tekkisid rikked taseme väärtuste uuendamisel:"
567
+
568
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
569
+ #: adminpages/discountcodes.php:237
570
+ #, php-format
571
+ msgid "Code %s deleted successfully."
572
+ msgstr "Kood %s kustutati edukalt."
573
+
574
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
575
+ #: adminpages/discountcodes.php:242
576
+ msgid ""
577
+ "Error deleting discount code. The code was only partially deleted. Please "
578
+ "try again."
579
+ msgstr ""
580
+ "Tekkis tõrge, allahindluse kood kustutati osaliselt. Palun proovige uuesti."
581
+
582
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
583
+ #: adminpages/discountcodes.php:248
584
+ msgid "Error deleting code. Please try again."
585
+ msgstr "Koodi kustutamisel tekkis tõrge. Palun proovige uuesti."
586
+
587
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
588
+ #: adminpages/discountcodes.php:254
589
+ msgid "Code not found."
590
+ msgstr "Koodi ei leitud."
591
+
592
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
593
+ #: adminpages/discountcodes.php:267
594
+ msgid "Edit Discount Code"
595
+ msgstr "Muuda allahindluse koodi"
596
+
597
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
598
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
599
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
600
+ #: adminpages/discountcodes.php:557
601
+ msgid "Add New Discount Code"
602
+ msgstr "Lisa uus allahindluse kood"
603
+
604
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
605
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
606
+ #: adminpages/memberslist.php:164 adminpages/orders.php:966
607
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
608
+ #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
609
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
610
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
611
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
612
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
613
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
614
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
615
+ #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
616
+ #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
617
+ #: adminpages/orders.php:597 adminpages/orders.php:900
618
+ #: adminpages/orders.php:910 adminpages/reports/login.php:140
619
+ #: adminpages/reports/login.php:142
620
+ msgid "ID"
621
+ msgstr "ID"
622
+
623
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:362
624
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
625
+ #: adminpages/orders.php:211 adminpages/orders.php:261
626
+ msgid "This will be generated when you save."
627
+ msgstr "See genereeritakse kui Te salvestate."
628
+
629
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
630
+ #: adminpages/orders.php:366 adminpages/orders.php:967
631
+ #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
632
+ #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
633
+ #: adminpages/discountcodes.php:586 adminpages/orders.php:215
634
+ #: adminpages/orders.php:265 adminpages/orders.php:598
635
+ #: adminpages/orders.php:901 adminpages/orders.php:911
636
+ msgid "Code"
637
+ msgstr "Kood"
638
+
639
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
640
+ #: adminpages/discountcodes.php:352
641
+ msgid "Start Date"
642
+ msgstr "Alguse kuupäev"
643
+
644
+ #: adminpages/discountcodes.php:371
645
+ #: classes/gateways/class.pmprogateway_braintree.php:321
646
+ #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:265
647
+ #: pages/checkout.php:571 adminpages/discountcodes.php:367
648
+ #: adminpages/discountcodes.php:370
649
+ #: classes/gateways/class.pmprogateway_braintree.php:308
650
+ #: classes/gateways/class.pmprogateway_stripe.php:454
651
+ #: classes/gateways/class.pmprogateway_stripe.php:455
652
+ #: classes/gateways/class.pmprogateway_stripe.php:465 pages/billing.php:249
653
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
654
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
655
+ #: pages/checkout.php:553 pages/checkout.php:562
656
+ msgid "Expiration Date"
657
+ msgstr "Aegumise kuupäev"
658
+
659
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
660
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
661
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
662
+ #: adminpages/discountcodes.php:589
663
+ msgid "Uses"
664
+ msgstr "Kasutused"
665
+
666
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
667
+ #: adminpages/discountcodes.php:391
668
+ msgid "Leave blank for unlimited uses."
669
+ msgstr "Jäta tühjaks piiramatu kasutamise jaoks."
670
+
671
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
672
+ msgid "Which Levels Will This Code Apply To?"
673
+ msgstr "Milliste tasemete jaoks see kood kehtib?"
674
+
675
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
676
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
677
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
678
+ #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:507
679
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
680
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
681
+ msgid "Initial Payment"
682
+ msgstr "Esialgne makse"
683
+
684
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
685
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
686
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
687
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
688
+ #: adminpages/membershiplevels.php:353
689
+ msgid "The initial amount collected at registration."
690
+ msgstr "Esialgne summa kogutud registreerimisel."
691
+
692
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
693
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
694
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
695
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
696
+ #: adminpages/membershiplevels.php:357
697
+ msgid "Recurring Subscription"
698
+ msgstr "Korduv tellimus"
699
+
700
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
701
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
702
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
703
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
704
+ #: adminpages/membershiplevels.php:358
705
+ msgid "Check if this level has a recurring subscription payment."
706
+ msgstr "Kontrollige kas sellel tasemel on korduv tellimus makse."
707
+
708
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
709
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
710
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
711
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:362
712
+ msgid "Billing Amount"
713
+ msgstr "Arve summa"
714
+
715
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
716
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
717
+ #: classes/gateways/class.pmprogateway_stripe.php:536
718
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
719
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
720
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
721
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
722
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
723
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
724
+ #: classes/gateways/class.pmprogateway_stripe.php:521
725
+ #: classes/gateways/class.pmprogateway_stripe.php:522
726
+ #: classes/gateways/class.pmprogateway_stripe.php:532
727
+ msgid "Day(s)"
728
+ msgstr "päev(i)"
729
+
730
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
731
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
732
+ #: classes/gateways/class.pmprogateway_stripe.php:536
733
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
734
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
735
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
736
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
737
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
738
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
739
+ #: classes/gateways/class.pmprogateway_stripe.php:521
740
+ #: classes/gateways/class.pmprogateway_stripe.php:522
741
+ #: classes/gateways/class.pmprogateway_stripe.php:532
742
+ msgid "Month(s)"
743
+ msgstr "Kuu(d)"
744
+
745
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
746
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
747
+ #: classes/gateways/class.pmprogateway_stripe.php:536
748
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
749
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
750
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
751
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
752
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
753
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
754
+ #: classes/gateways/class.pmprogateway_stripe.php:521
755
+ #: classes/gateways/class.pmprogateway_stripe.php:522
756
+ #: classes/gateways/class.pmprogateway_stripe.php:532
757
+ msgid "Week(s)"
758
+ msgstr "Nädal(ad)"
759
+
760
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
761
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
762
+ #: classes/gateways/class.pmprogateway_stripe.php:536
763
+ #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
764
+ #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
765
+ #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
766
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:377
767
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
768
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:480
769
+ #: classes/gateways/class.pmprogateway_stripe.php:521
770
+ #: classes/gateways/class.pmprogateway_stripe.php:522
771
+ #: classes/gateways/class.pmprogateway_stripe.php:532
772
+ msgid "Year(s)"
773
+ msgstr "aasta(d)"
774
+
775
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
776
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
777
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
778
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
779
+ #: adminpages/membershiplevels.php:386
780
+ msgid "The amount to be billed one cycle after the initial payment."
781
+ msgstr "Summa saadetakse arve ühe tsükli lõppu pärast esimest makset."
782
+
783
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
784
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
785
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
786
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
787
+ #: adminpages/membershiplevels.php:404
788
+ msgid "Billing Cycle Limit"
789
+ msgstr "Arve ringluse limiit"
790
+
791
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
792
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
793
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
794
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
795
+ #: adminpages/membershiplevels.php:408
796
+ msgid ""
797
+ "The <strong>total</strong> number of recurring billing cycles for this "
798
+ "level, including the trial period (if applicable) but not including the "
799
+ "initial payment. Set to zero if membership is indefinite."
800
+ msgstr ""
801
+ "<strong>Kokku</strong>korduvate arvete arv tsüklis sellele tasemele, "
802
+ "sealhulgas katse aeg (kui määratud) välja arvatud esimene makse. Sea "
803
+ "nulliks, kui liikmeks tase on püsiv."
804
+
805
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
806
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
807
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
808
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
809
+ #: adminpages/membershiplevels.php:417
810
+ msgid "Custom Trial"
811
+ msgstr "Kohandatud prooviaeg"
812
+
813
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
814
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
815
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
816
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
817
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:419
818
+ msgid "Check to add a custom trial period."
819
+ msgstr "Tee linnuke/kontrolli, et lisada kohandatud proovi periood."
820
+
821
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
822
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
823
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
824
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
825
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:428
826
+ msgid "Trial Billing Amount"
827
+ msgstr "Katseaja arve summa"
828
+
829
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
830
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
831
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
832
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
833
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:439
834
+ msgid "for the first"
835
+ msgstr "esimeseks"
836
+
837
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
838
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
839
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
840
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
841
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:441
842
+ msgid "subscription payments"
843
+ msgstr "tellimuse maksed"
844
+
845
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
846
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
847
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
848
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
849
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
850
+ #: adminpages/membershiplevels.php:470
851
+ msgid "Membership Expiration"
852
+ msgstr "Liikme aja kestvus"
853
+
854
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
855
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
856
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
857
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
858
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:471
859
+ msgid "Check this to set when membership access expires."
860
+ msgstr "Tee linnuke/Kontrolli, millal saab liikmelisus pääse läbi."
861
+
862
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
863
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
864
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
865
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
866
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
867
+ #: adminpages/membershiplevels.php:475
868
+ msgid "Expires In"
869
+ msgstr "Aegub"
870
+
871
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
872
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
873
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
874
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
875
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:488
876
+ msgid ""
877
+ "Set the duration of membership access. Note that the any future payments "
878
+ "(recurring subscription, if any) will be cancelled when the membership "
879
+ "expires."
880
+ msgstr ""
881
+ "Sea liikme juurdepääsu kestvus. Pange tähele, et kõik tulevased maksed "
882
+ "(korduv tellimus, kui on üldse) tunnistatakse kehtetuks kui liikmelisus "
883
+ "lõpeb."
884
+
885
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
886
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
887
+ msgid "Memberships Discount Codes"
888
+ msgstr "Liikmelisuse soodus koodid"
889
+
890
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
891
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
892
+ msgid "Search Discount Codes"
893
+ msgstr "Otsi soodus koode"
894
+
895
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:99
896
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
897
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
898
+ #: adminpages/reports/login.php:83
899
+ msgid "Search"
900
+ msgstr "Otsi"
901
+
902
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
903
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
904
+ msgid "Starts"
905
+ msgstr "Algab"
906
+
907
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
908
+ #: adminpages/reports/login.php:163 includes/profile.php:107
909
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
910
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
911
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
912
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
913
+ #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:118
914
+ #: includes/profile.php:120
915
+ msgid "Expires"
916
+ msgstr "Aegub"
917
+
918
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
919
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
920
+ msgid "Levels"
921
+ msgstr "Tasemed"
922
+
923
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
924
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
925
+ msgid "Create your first discount code now"
926
+ msgstr "Loo oma esimene allahindluse kood "
927
+
928
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
929
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
930
+ msgid ""
931
+ "Discount codes allow you to offer your memberships at discounted prices to "
932
+ "select customers."
933
+ msgstr ""
934
+ "Allahindluse koodid lubavad pakkuda liikmetele allahinnatud hindadele valida "
935
+ "ostjad."
936
+
937
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
938
+ #: adminpages/orders.php:1050 adminpages/discountcodes.php:614
939
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
940
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
941
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
942
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
943
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
944
+ #: adminpages/orders.php:658 adminpages/orders.php:961
945
+ #: adminpages/orders.php:979 adminpages/orders.php:989
946
+ #: adminpages/orders.php:992
947
+ msgid "edit"
948
+ msgstr "muuda"
949
+
950
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
951
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
952
+ #: adminpages/discountcodes.php:651
953
+ #, php-format
954
+ msgid ""
955
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
956
+ "existing users will not change, but new users will not be able to use this "
957
+ "code anymore."
958
+ msgstr ""
959
+ "Oled sa kindel, et tahad kustutada %s soodus kupongi? Hetkelistel "
960
+ "kasutajatel ei juhtu midagi, aga uued kasutajad ei saa seda soodus kupongi "
961
+ "kasutada."
962
+
963
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
964
+ #: adminpages/orders.php:1056 adminpages/discountcodes.php:617
965
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
966
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
967
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
968
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
969
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
970
+ #: adminpages/orders.php:664 adminpages/orders.php:967
971
+ #: adminpages/orders.php:985 adminpages/orders.php:995
972
+ #: adminpages/orders.php:998
973
+ msgid "delete"
974
+ msgstr "kustuta"
975
+
976
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:50
977
+ #: includes/adminpages.php:132 adminpages/emailsettings.php:60
978
+ #: includes/adminpages.php:12 includes/adminpages.php:59
979
+ #: includes/adminpages.php:121 includes/adminpages.php:128
980
+ msgid "Email Settings"
981
+ msgstr "Emaili sätted"
982
+
983
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
984
+ msgid ""
985
+ "By default, system generated emails are sent from "
986
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
987
+ "address using the fields below."
988
+ msgstr ""
989
+ "Süsteemi genereeritud kirjad saadetakse vaikimisi aasdressilt "
990
+ "<em><strong>wordpress@yourdomain.com</strong></em>. Saate uuendada seda "
991
+ "aadressilt kasutades all olevaid välju."
992
+
993
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
994
+ msgid ""
995
+ "To modify the appearance of system generated emails, add the files "
996
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
997
+ "directory. This will modify both the WordPress default messages as well as "
998
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
999
+ "- Member Communications\" target=\"_blank\" href=\"http://www."
1000
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
1001
+ "learn more about Paid Memberships Pro emails</a>."
1002
+ msgstr ""
1003
+ "Süsteemi loodud emaili välimuse muutmiseks, lisa failid <em>email_header."
1004
+ "html</em> and <em>email_footer.html</em> oma teema asukohta. See muudab nii "
1005
+ "WordPress vaike sõnumeid ja ka Paid Memberships Pro poolt genereeritud "
1006
+ "sõnumeid.<a title=\"Paid Memberships Pro - Member Communications\" target="
1007
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/documentation/member-"
1008
+ "communications/\">Klikka siia, et saada teada rohkem Paid Memberships Pro "
1009
+ "emailide kohta</a>."
1010
+
1011
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
1012
+ msgid "From Email"
1013
+ msgstr "Kellelt Email"
1014
+
1015
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
1016
+ msgid "From Name"
1017
+ msgstr "Kellelt Nimi"
1018
+
1019
+ #: adminpages/emailsettings.php:94
1020
+ msgid "Only Filter PMPro Emails?"
1021
+ msgstr "Filtreeri ainult PMPro emailid?"
1022
+
1023
+ #: adminpages/emailsettings.php:98
1024
+ msgid "If unchecked, all emails from \"WordPress &lt;"
1025
+ msgstr "Kui märkimata, siis kõik emailid \"WordPress &lt;"
1026
+
1027
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
1028
+ #: adminpages/emailsettings.php:104
1029
+ msgid "Send the site admin emails"
1030
+ msgstr "Saada lehe admistraatorile emailid"
1031
+
1032
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
1033
+ #: adminpages/emailsettings.php:110
1034
+ msgid "Checkout"
1035
+ msgstr "Ostukinnitus"
1036
+
1037
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
1038
+ #: adminpages/emailsettings.php:114
1039
+ msgid "when a member checks out."
1040
+ msgstr "Kui liige logib välja."
1041
+
1042
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
1043
+ #: adminpages/emailsettings.php:119
1044
+ msgid "Admin Changes"
1045
+ msgstr "Admistraatori muutused"
1046
+
1047
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
1048
+ #: adminpages/emailsettings.php:123
1049
+ msgid "when an admin changes a user's membership level through the dashboard."
1050
+ msgstr "kui admin muudab kasutaja liikme taset läbi töölaua."
1051
+
1052
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
1053
+ #: adminpages/emailsettings.php:128
1054
+ msgid "Cancellation"
1055
+ msgstr "Tühistamine"
1056
+
1057
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
1058
+ #: adminpages/emailsettings.php:132
1059
+ msgid "when a user cancels his or her account."
1060
+ msgstr "Kui kasutaja tühistab oma konto."
1061
+
1062
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
1063
+ #: adminpages/emailsettings.php:137
1064
+ msgid "Bill Updates"
1065
+ msgstr "Arve uuendamised"
1066
+
1067
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
1068
+ #: adminpages/emailsettings.php:141
1069
+ msgid "when a user updates his or her billing information."
1070
+ msgstr "kui kasutaja uuendab oma arve andmeid."
1071
+
1072
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
1073
+ #: adminpages/emailsettings.php:147
1074
+ msgid "Send members emails"
1075
+ msgstr "Saatke liikmetele emailid"
1076
+
1077
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
1078
+ #: adminpages/emailsettings.php:153
1079
+ msgid "New Users"
1080
+ msgstr "Uued kasutajad"
1081
+
1082
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
1083
+ #: adminpages/emailsettings.php:157
1084
+ msgid ""
1085
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
1086
+ "still get an email confirmation from PMPro after checkout.)"
1087
+ msgstr ""
1088
+ "Vaikimisi WP teavitussõnum. (Soovitatav: jätta märkimata. Liikmed ikka "
1089
+ "saavad e-posti kinnituse emaili PMPro'lt pärast ostukinnitamist.)"
1090
+
1091
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1092
+ msgid "Membership level updated successfully."
1093
+ msgstr "Liige uuendati edukalt."
1094
+
1095
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1096
+ msgid "Error updating membership level."
1097
+ msgstr "Tekkis tõrge liikme taseme uuendamisel."
1098
+
1099
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1100
+ msgid "Membership level added successfully."
1101
+ msgstr "Liikme tase lisati edukalt."
1102
+
1103
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1104
+ msgid "Error adding membership level."
1105
+ msgstr "Tekkis tõrge liikme taseme lisamisel"
1106
+
1107
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1108
+ #: adminpages/membershiplevels.php:181
1109
+ #, php-format
1110
+ msgid ""
1111
+ "There was an error canceling the subscription for user with ID=%d. You will "
1112
+ "want to check your payment gateway to see if their subscription is still "
1113
+ "active."
1114
+ msgstr ""
1115
+ "Tellimuse tühistamisel kasutajal ID=%d tekkis tõrge. Te võiksite vaadata oma "
1116
+ "maksmise meetodid, et vaadata kas nende tellimus on endiselt aktiivne."
1117
+
1118
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1119
+ #: adminpages/membershiplevels.php:184
1120
+ msgid "Last Invoice"
1121
+ msgstr "Viimane arve"
1122
+
1123
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1124
+ #: adminpages/membershiplevels.php:198
1125
+ msgid "Membership level deleted successfully."
1126
+ msgstr "Liikme tase kustutati edukalt."
1127
+
1128
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1129
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1130
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1131
+ msgid "Error deleting membership level."
1132
+ msgstr "Liikme taseme kustutamisel tekkis tõrge."
1133
+
1134
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1135
+ #: adminpages/membershiplevels.php:224
1136
+ msgid "Edit Membership Level"
1137
+ msgstr "Muuda liikme taset"
1138
+
1139
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1140
+ #: adminpages/membershiplevels.php:226
1141
+ msgid "Add New Membership Level"
1142
+ msgstr "Lisa uus liikme tase"
1143
+
1144
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1145
+ #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1146
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1147
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1148
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1149
+ #: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:638
1150
+ #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1151
+ msgid "Name"
1152
+ msgstr "Nimi"
1153
+
1154
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1155
+ #: adminpages/membershiplevels.php:316
1156
+ msgid "Confirmation Message"
1157
+ msgstr "Kinnituse teadaanne"
1158
+
1159
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1160
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1161
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:543
1162
+ #: adminpages/membershiplevels.php:585 adminpages/membershiplevels.php:639
1163
+ msgid "Billing Details"
1164
+ msgstr "Arve detailid"
1165
+
1166
+ #: adminpages/membershiplevels.php:372
1167
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1168
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1169
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:373
1170
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1171
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1172
+ #: classes/gateways/class.pmprogateway_stripe.php:630
1173
+ msgid "per"
1174
+ msgstr "kohta"
1175
+
1176
+ #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1177
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:388
1178
+ msgid ""
1179
+ "Stripe integration currently only supports billing periods of \"Week\", "
1180
+ "\"Month\" or \"Year\"."
1181
+ msgstr ""
1182
+ "Stripe-i integratsioon toetab hetkel vaid \"Nädala\", \"Kuu\" või \"Aasta\" "
1183
+ "arve perioode."
1184
+
1185
+ #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1186
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1187
+ #: adminpages/membershiplevels.php:390
1188
+ msgid ""
1189
+ "Braintree integration currently only supports billing periods of \"Month\" "
1190
+ "or \"Year\"."
1191
+ msgstr ""
1192
+ "Braintree-i integratsioon toetab hetkel vaid \"Kuu\" või \"Aasta\" arve "
1193
+ "perioode."
1194
+
1195
+ #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1196
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1197
+ #: adminpages/membershiplevels.php:392
1198
+ msgid ""
1199
+ "Payflow integration currently only supports billing frequencies of 1 and "
1200
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1201
+ msgstr ""
1202
+ "Payflow -i integratsioon toetab hetkel vaid \"Nädala\", \"Kuu\" või \"Aasta"
1203
+ "\" arve perioode."
1204
+
1205
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1206
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1207
+ #: adminpages/membershiplevels.php:396
1208
+ msgid ""
1209
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1210
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1211
+ "<em>pmpro_#</em>, where # is the level ID."
1212
+ msgstr ""
1213
+ "Pärast selle taseme salvestamist , märkige üles ID ja looge \"Plaan\" oma "
1214
+ "Braintree \"köögis\" samade seadetega ja \"Plaani ID-ga\" sea<em>pmpro_#</"
1215
+ "em>, kus # on taseme ID."
1216
+
1217
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1218
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1219
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1220
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1221
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1222
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1223
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1224
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1225
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1226
+ #: adminpages/paymentsettings.php:179
1227
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1228
+ msgid "Note"
1229
+ msgstr "Märge"
1230
+
1231
+ #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1232
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1233
+ #: adminpages/membershiplevels.php:398
1234
+ msgid ""
1235
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1236
+ "settings and the \"Plan ID\" set to"
1237
+ msgstr ""
1238
+ "Te peaksite looma \"Plaani\" oma Braintree \"köögis\" samade sätetega ja "
1239
+ "\"Plaani ID\" seadma"
1240
+
1241
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1242
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1243
+ #: adminpages/membershiplevels.php:410
1244
+ msgid ""
1245
+ "Stripe integration currently does not support billing limits. You can still "
1246
+ "set an expiration date below."
1247
+ msgstr ""
1248
+ "Stripe integratsioon hetkel ei toeta arve limiite. Te saate ikkagi määrata "
1249
+ "aegumise kuupäeva all."
1250
+
1251
+ #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1252
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1253
+ #: adminpages/membershiplevels.php:422
1254
+ msgid ""
1255
+ "2Checkout integration does not support custom trials. You can do one period "
1256
+ "trials by setting an initial payment different from the billing amount."
1257
+ msgstr ""
1258
+ "2Checkout integratsioon ei toeta kohandatud proovi aegu. Te saate teha ühe "
1259
+ "perioodi prooviaegu, seades algse makse erinevaks arve summast."
1260
+
1261
+ #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1262
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1263
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:444
1264
+ msgid ""
1265
+ "Stripe integration currently does not support trial amounts greater than $0."
1266
+ msgstr ""
1267
+ "Stripe integratsioon hetkel ei toeta proovi aegu mille summa on suurem kui "
1268
+ "$0."
1269
+
1270
+ #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1271
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1272
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:448
1273
+ msgid ""
1274
+ "Braintree integration currently does not support trial amounts greater than "
1275
+ "$0."
1276
+ msgstr ""
1277
+ "Braintree integratsioon hetkel ei toeta proovi aegu mille summa on suurem "
1278
+ "kui $0."
1279
+
1280
+ #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1281
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1282
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:452
1283
+ msgid ""
1284
+ "Payflow integration currently does not support trial amounts greater than $0."
1285
+ msgstr ""
1286
+ "Payflow integratsioon ei toeta proovi aegu mille summa on suurem kui $0."
1287
+
1288
+ #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1289
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1290
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1291
+ #: adminpages/membershiplevels.php:461
1292
+ msgid "Other Settings"
1293
+ msgstr "Teised seaded"
1294
+
1295
+ #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1296
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1297
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1298
+ #: adminpages/membershiplevels.php:465
1299
+ msgid "Disable New Signups"
1300
+ msgstr "Lülita välja uued registreerimised"
1301
+
1302
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1303
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1304
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1305
+ #: adminpages/membershiplevels.php:466
1306
+ msgid ""
1307
+ "Check to hide this level from the membership levels page and disable "
1308
+ "registration."
1309
+ msgstr ""
1310
+ "Lisa linnuke, et peita seda taset liikme tasemete lehel ja keela "
1311
+ "registreerimine."
1312
+
1313
+ #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1314
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1315
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1316
+ #: adminpages/membershiplevels.php:496
1317
+ msgid "Content Settings"
1318
+ msgstr "Sisu seaded"
1319
+
1320
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1321
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1322
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1323
+ #: adminpages/membershiplevels.php:500
1324
+ msgid "Categories"
1325
+ msgstr "Kategooriad"
1326
+
1327
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:517
1328
+ msgid "Save Level"
1329
+ msgstr "Salvesta tase"
1330
+
1331
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:662
1332
+ #: pages/billing.php:342 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1333
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:511
1334
+ #: adminpages/orders.php:561 pages/account.php:44 pages/billing.php:295
1335
+ #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1336
+ #: shortcodes/pmpro_account.php:70
1337
+ msgid "Cancel"
1338
+ msgstr "Tühista"
1339
+
1340
+ #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:490
1341
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1342
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1343
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
1344
+ msgid "Add New Level"
1345
+ msgstr "Lisa uus tase"
1346
+
1347
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1348
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1349
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1350
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1351
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1352
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1353
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1354
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1355
+ msgid "Search Levels"
1356
+ msgstr "Otsi tasemeid"
1357
+
1358
+ #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:579
1359
+ #: adminpages/membershiplevels.php:631
1360
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1361
+ msgstr "Lohista ja lase lahti, et asetada need tasemete lehele."
1362
+
1363
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53
1364
+ #: pages/confirmation.php:83 pages/invoice.php:70
1365
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1366
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1367
+ #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1368
+ #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:640
1369
+ #: pages/account.php:20 pages/confirmation.php:81 pages/invoice.php:68
1370
+ msgid "Expiration"
1371
+ msgstr "Aegumine"
1372
+
1373
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:511
1374
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1375
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1376
+ #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:641
1377
+ msgid "Allow Signups"
1378
+ msgstr "Luba registreerimised"
1379
+
1380
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:534
1381
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1382
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1383
+ #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:656
1384
+ msgid "FREE"
1385
+ msgstr "TASUTA"
1386
+
1387
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:560
1388
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1389
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1390
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:665
1391
+ msgid "After"
1392
+ msgstr "Pärast"
1393
+
1394
+ #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:566
1395
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1396
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1397
+ #: adminpages/membershiplevels.php:660
1398
+ #, php-format
1399
+ msgid ""
1400
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1401
+ "be cancelled."
1402
+ msgstr ""
1403
+ " Kas te olete kindel, et tahate kustutada liikme taseme %s? Kõik tellimised "
1404
+ "tühistatakse."
1405
+
1406
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1053
1407
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1408
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1409
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1410
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:661
1411
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1412
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1413
+ msgid "copy"
1414
+ msgstr "kopeeri"
1415
+
1416
+ #: adminpages/memberslist.php:25 includes/adminpages.php:53
1417
+ #: includes/adminpages.php:153 includes/adminpages.php:15
1418
+ #: includes/adminpages.php:74 includes/adminpages.php:142
1419
+ #: includes/adminpages.php:149
1420
+ msgid "Members List"
1421
+ msgstr "Liikmete nimekiri"
1422
+
1423
+ #: adminpages/memberslist.php:26 adminpages/orders.php:727
1424
+ #: adminpages/orders.php:522 adminpages/orders.php:591
1425
+ msgid "Export to CSV"
1426
+ msgstr "Ekspordi CSV-ks"
1427
+
1428
+ #: adminpages/memberslist.php:30 adminpages/orders.php:739
1429
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:256
1430
+ #: adminpages/reports/sales.php:202 adminpages/orders.php:603
1431
+ #: adminpages/reports/login.php:65 adminpages/reports/login.php:67
1432
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1433
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1434
+ msgid "Show"
1435
+ msgstr "Näita"
1436
+
1437
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1438
+ #: adminpages/reports/memberships.php:281 adminpages/reports/sales.php:225
1439
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:69
1440
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1441
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1442
+ msgid "All Levels"
1443
+ msgstr "Kõik tasemed"
1444
+
1445
+ #: adminpages/memberslist.php:42
1446
+ msgid "Cancelled Members"
1447
+ msgstr "Tühistatud liikmed"
1448
+
1449
+ #: adminpages/memberslist.php:43
1450
+ msgid "Expired Members"
1451
+ msgstr "Aegunud liikmed"
1452
+
1453
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1454
+ msgid "Old Members"
1455
+ msgstr "Vanad liikmed"
1456
+
1457
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1458
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1459
+ #: adminpages/memberslist.php:50
1460
+ msgid "Search Members"
1461
+ msgstr "Otsi liikmeid"
1462
+
1463
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1464
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1465
+ #, php-format
1466
+ msgid "%d members found."
1467
+ msgstr "%d liikmed leitud."
1468
+
1469
+ #: adminpages/memberslist.php:165 pages/checkout.php:182
1470
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1471
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1472
+ #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1473
+ #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
1474
+ #: pages/checkout.php:180 shortcodes/pmpro_account.php:105
1475
+ msgid "Username"
1476
+ msgstr "Kasutajanimi"
1477
+
1478
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1479
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1480
+ msgid "First&nbsp;Name"
1481
+ msgstr "Ees&nbsp;Nimi"
1482
+
1483
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1484
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1485
+ msgid "Last&nbsp;Name"
1486
+ msgstr "Perekonna&nbsp;Nimi"
1487
+
1488
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:317
1489
+ #: pages/confirmation.php:61 pages/invoice.php:48
1490
+ #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1491
+ #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1492
+ #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1493
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1494
+ #: pages/checkout.php:314 pages/checkout.php:321 pages/confirmation.php:59
1495
+ #: pages/invoice.php:46
1496
+ msgid "Billing Address"
1497
+ msgstr "Arve aadress"
1498
+
1499
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:161
1500
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1501
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1502
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1503
+ #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
1504
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1505
+ msgid "Membership"
1506
+ msgstr "Liikme tasemed"
1507
+
1508
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1509
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1510
+ msgid "Fee"
1511
+ msgstr "Tasu"
1512
+
1513
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:162
1514
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1515
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1516
+ #: adminpages/reports/login.php:146
1517
+ msgid "Joined"
1518
+ msgstr "Liidetud/Ühinenud"
1519
+
1520
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1521
+ #: adminpages/memberslist.php:167
1522
+ msgid "Ended"
1523
+ msgstr "Lõppenud"
1524
+
1525
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1526
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1527
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1528
+ #: adminpages/reports/login.php:212
1529
+ msgid "No members found."
1530
+ msgstr "Ühtegi liiget ei leitud"
1531
+
1532
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1533
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1534
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1535
+ #: adminpages/reports/login.php:212
1536
+ msgid "Search all levels"
1537
+ msgstr "Otsi kõik tasemed"
1538
+
1539
+ #: adminpages/orders.php:155
1540
+ msgid "Invoice emailed successfully."
1541
+ msgstr "Arve detailid emailiti edukalt."
1542
+
1543
+ #: adminpages/orders.php:160
1544
+ msgid "Error emailing invoice."
1545
+ msgstr "Tekkis tõrge arve detailide saatmisel."
1546
+
1547
+ #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1548
+ msgid "Order deleted successfully."
1549
+ msgstr "Tellimus kustutatud edukalt."
1550
+
1551
+ #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1552
+ msgid "Error deleting order."
1553
+ msgstr "Tekkis tõrge tellimuse kustutamisel."
1554
+
1555
+ #: adminpages/orders.php:270 adminpages/orders.php:119
1556
+ #: adminpages/orders.php:169
1557
+ msgid "Order saved successfully."
1558
+ msgstr "Tellimus salvestati edukalt."
1559
+
1560
+ #: adminpages/orders.php:275 adminpages/orders.php:124
1561
+ #: adminpages/orders.php:174
1562
+ msgid "Error updating order timestamp."
1563
+ msgstr "Viga tellimuse timestamp uuendamisel."
1564
+
1565
+ #: adminpages/orders.php:281 adminpages/orders.php:130
1566
+ #: adminpages/orders.php:180
1567
+ msgid "Error saving order."
1568
+ msgstr "Tellimuse salvestamisel tekkis tõrge."
1569
+
1570
+ #: adminpages/orders.php:346 adminpages/orders.php:195
1571
+ #: adminpages/orders.php:245
1572
+ msgid "Order"
1573
+ msgstr "Tellimus"
1574
+
1575
+ #: adminpages/orders.php:348 adminpages/orders.php:197
1576
+ #: adminpages/orders.php:247
1577
+ msgid "New Order"
1578
+ msgstr "Uus tellimus"
1579
+
1580
+ #: adminpages/orders.php:371 adminpages/orders.php:220
1581
+ #: adminpages/orders.php:270
1582
+ msgid "Randomly generated for you."
1583
+ msgstr "Juhuslikult genereeritud teile."
1584
+
1585
+ #: adminpages/orders.php:376 adminpages/orders.php:225
1586
+ #: adminpages/orders.php:275
1587
+ msgid "User ID"
1588
+ msgstr "Kasutaja ID"
1589
+
1590
+ #: adminpages/orders.php:385 adminpages/orders.php:234
1591
+ #: adminpages/orders.php:284
1592
+ msgid "Membership Level ID"
1593
+ msgstr "Liikme taseme ID"
1594
+
1595
+ #: adminpages/orders.php:394 adminpages/orders.php:243
1596
+ #: adminpages/orders.php:293
1597
+ msgid "Billing Name"
1598
+ msgstr "Arvel nimi"
1599
+
1600
+ #: adminpages/orders.php:402 adminpages/orders.php:251
1601
+ #: adminpages/orders.php:301
1602
+ msgid "Billing Street"
1603
+ msgstr "Arvel tänava nimi"
1604
+
1605
+ #: adminpages/orders.php:409 adminpages/orders.php:258
1606
+ #: adminpages/orders.php:308
1607
+ msgid "Billing City"
1608
+ msgstr "Arvel linna nimi"
1609
+
1610
+ #: adminpages/orders.php:416 adminpages/orders.php:265
1611
+ #: adminpages/orders.php:315
1612
+ msgid "Billing State"
1613
+ msgstr "Arveldusaadressi osariik"
1614
+
1615
+ #: adminpages/orders.php:423 adminpages/orders.php:272
1616
+ #: adminpages/orders.php:322
1617
+ msgid "Billing Postal Code"
1618
+ msgstr "Arvel posti index"
1619
+
1620
+ #: adminpages/orders.php:430 adminpages/orders.php:279
1621
+ #: adminpages/orders.php:329
1622
+ msgid "Billing Country"
1623
+ msgstr "Arvel riigi nimi"
1624
+
1625
+ #: adminpages/orders.php:438 adminpages/orders.php:287
1626
+ #: adminpages/orders.php:337
1627
+ msgid "Billing Phone"
1628
+ msgstr "Arveldusaadressi telefoni number"
1629
+
1630
+ #: adminpages/orders.php:447 adminpages/orders.php:296
1631
+ #: adminpages/orders.php:346
1632
+ msgid "Sub Total"
1633
+ msgstr "Kokku liidetud"
1634
+
1635
+ #: adminpages/orders.php:455 adminpages/templates/orders-email.php:60
1636
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1637
+ #: adminpages/orders.php:304 adminpages/orders.php:354 pages/invoice.php:78
1638
+ msgid "Tax"
1639
+ msgstr "Maks"
1640
+
1641
+ #: adminpages/orders.php:463 adminpages/orders.php:312
1642
+ #: adminpages/orders.php:362
1643
+ msgid "Coupon Amount"
1644
+ msgstr "Kuppongi summa"
1645
+
1646
+ #: adminpages/orders.php:471 adminpages/orders.php:971
1647
+ #: adminpages/templates/orders-email.php:64
1648
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1649
+ #: adminpages/orders.php:320 adminpages/orders.php:370
1650
+ #: adminpages/orders.php:602 adminpages/orders.php:905
1651
+ #: adminpages/orders.php:915 pages/invoice.php:82
1652
+ msgid "Total"
1653
+ msgstr "Kokku"
1654
+
1655
+ #: adminpages/orders.php:476 adminpages/orders.php:325
1656
+ #: adminpages/orders.php:375
1657
+ msgid "Should be subtotal + tax - couponamount."
1658
+ msgstr "Tuleks vahesumma + maksud - kupongi summa."
1659
+
1660
+ #: adminpages/orders.php:481 adminpages/orders.php:330
1661
+ #: adminpages/orders.php:380
1662
+ msgid "Payment Type"
1663
+ msgstr "Makse tüüp"
1664
+
1665
+ #: adminpages/orders.php:486 adminpages/orders.php:335
1666
+ #: adminpages/orders.php:385
1667
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1668
+ msgstr "näiteks PayPal Express, PayPal Standard, Credit Card."
1669
+
1670
+ #: adminpages/orders.php:490
1671
+ #: classes/gateways/class.pmprogateway_braintree.php:304
1672
+ #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:250
1673
+ #: pages/checkout.php:525 adminpages/orders.php:339 adminpages/orders.php:389
1674
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1675
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1676
+ #: classes/gateways/class.pmprogateway_stripe.php:409
1677
+ #: classes/gateways/class.pmprogateway_stripe.php:419 pages/billing.php:234
1678
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1679
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1680
+ #: pages/checkout.php:517
1681
+ msgid "Card Type"
1682
+ msgstr "Kaardi tüüp"
1683
+
1684
+ #: adminpages/orders.php:495 adminpages/orders.php:344
1685
+ #: adminpages/orders.php:394
1686
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1687
+ msgstr "näiteks Visa, MasterCard, AMEX, jne."
1688
+
1689
+ #: adminpages/orders.php:499
1690
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1691
+ #: adminpages/orders.php:348 adminpages/orders.php:398
1692
+ #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1693
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1694
+ msgid "Account Number"
1695
+ msgstr "Konto number"
1696
+
1697
+ #: adminpages/orders.php:504 adminpages/orders.php:353
1698
+ #: adminpages/orders.php:403
1699
+ msgid "Obscure all but last 4 digits."
1700
+ msgstr "Varja kõik peale 4 viimase numbri."
1701
+
1702
+ #: adminpages/orders.php:509 adminpages/orders.php:358
1703
+ #: adminpages/orders.php:408
1704
+ msgid "Expiration Month"
1705
+ msgstr "Aegumise kuu"
1706
+
1707
+ #: adminpages/orders.php:516 adminpages/orders.php:365
1708
+ #: adminpages/orders.php:415
1709
+ msgid "Expiration Year"
1710
+ msgstr "Aegumise aasta"
1711
+
1712
+ #: adminpages/orders.php:524 adminpages/orders.php:975
1713
+ #: adminpages/orders.php:373 adminpages/orders.php:423
1714
+ #: adminpages/orders.php:606 adminpages/orders.php:909
1715
+ #: adminpages/orders.php:919
1716
+ msgid "Status"
1717
+ msgstr "Olek"
1718
+
1719
+ #: adminpages/orders.php:545 adminpages/orders.php:973
1720
+ #: adminpages/orders.php:394 adminpages/orders.php:444
1721
+ #: adminpages/orders.php:604 adminpages/orders.php:907
1722
+ #: adminpages/orders.php:917
1723
+ msgid "Gateway"
1724
+ msgstr "Meetod"
1725
+
1726
+ #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1727
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1728
+ #: adminpages/orders.php:462 adminpages/paymentsettings.php:175
1729
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:184
1730
+ msgid "Gateway Environment"
1731
+ msgstr "Meetod keskkond"
1732
+
1733
+ #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1734
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1735
+ #: adminpages/orders.php:466 adminpages/paymentsettings.php:179
1736
+ #: adminpages/paymentsettings.php:183 adminpages/paymentsettings.php:188
1737
+ msgid "Sandbox/Testing"
1738
+ msgstr "Sandbox/Testimine"
1739
+
1740
+ #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1741
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1742
+ #: adminpages/orders.php:467 adminpages/paymentsettings.php:180
1743
+ #: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:189
1744
+ msgid "Live/Production"
1745
+ msgstr "Live/Produtseerimine"
1746
+
1747
+ #: adminpages/orders.php:575 adminpages/orders.php:423
1748
+ #: adminpages/orders.php:473 adminpages/orders.php:474
1749
+ msgid "Payment Transaction ID"
1750
+ msgstr "Tasumise kande ID"
1751
+
1752
+ #: adminpages/orders.php:580 adminpages/orders.php:428
1753
+ #: adminpages/orders.php:478 adminpages/orders.php:479
1754
+ msgid "Generated by the gateway. Useful to cross reference orders."
1755
+ msgstr "Loodud gateway poolt. Kasulik tellimuste risti võrdlemiseks."
1756
+
1757
+ #: adminpages/orders.php:584 adminpages/orders.php:432
1758
+ #: adminpages/orders.php:482 adminpages/orders.php:483
1759
+ msgid "Subscription Transaction ID"
1760
+ msgstr "Tellimus kande ID"
1761
+
1762
+ #: adminpages/orders.php:589 adminpages/orders.php:437
1763
+ #: adminpages/orders.php:487 adminpages/orders.php:488
1764
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1765
+ msgstr "Loodud meetodite poolt. Kasulik tellimuste risti võrdlemiseks."
1766
+
1767
+ #: adminpages/orders.php:594 adminpages/orders.php:976 pages/invoice.php:107
1768
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1769
+ #: adminpages/orders.php:492 adminpages/orders.php:493
1770
+ #: adminpages/orders.php:607 adminpages/orders.php:910
1771
+ #: adminpages/orders.php:920 pages/account.php:91 pages/invoice.php:105
1772
+ #: shortcodes/pmpro_account.php:122
1773
+ msgid "Date"
1774
+ msgstr "Kuupäev"
1775
+
1776
+ #: adminpages/orders.php:628 adminpages/orders.php:477
1777
+ #: adminpages/orders.php:527
1778
+ msgid "Affiliate ID"
1779
+ msgstr "Filiaal ID"
1780
+
1781
+ #: adminpages/orders.php:636 adminpages/orders.php:485
1782
+ #: adminpages/orders.php:535
1783
+ msgid "Affiliate SubID"
1784
+ msgstr "Filiaal SubID"
1785
+
1786
+ #: adminpages/orders.php:646 adminpages/orders.php:495
1787
+ #: adminpages/orders.php:545
1788
+ msgid "Notes"
1789
+ msgstr "Märkmed"
1790
+
1791
+ #: adminpages/orders.php:661 adminpages/orders.php:510
1792
+ #: adminpages/orders.php:560
1793
+ msgid "Save Order"
1794
+ msgstr "Salvesta tellimus"
1795
+
1796
+ #: adminpages/orders.php:696
1797
+ msgid "Email Invoice"
1798
+ msgstr "E-posti arve"
1799
+
1800
+ #: adminpages/orders.php:699
1801
+ msgid "Send an invoice for this order to: "
1802
+ msgstr "Saatke arve selle tellimuse kohta:"
1803
+
1804
+ #: adminpages/orders.php:701
1805
+ msgid "Send Email"
1806
+ msgstr "Saatke Email"
1807
+
1808
+ #: adminpages/orders.php:706 includes/adminpages.php:55
1809
+ #: includes/adminpages.php:167 adminpages/orders.php:520
1810
+ #: adminpages/orders.php:570 includes/adminpages.php:17
1811
+ #: includes/adminpages.php:84 includes/adminpages.php:156
1812
+ #: includes/adminpages.php:163
1813
+ msgid "Orders"
1814
+ msgstr "Tellimused"
1815
+
1816
+ #: adminpages/orders.php:707 adminpages/orders.php:521
1817
+ #: adminpages/orders.php:571
1818
+ msgid "Add New Order"
1819
+ msgstr "Lisa uus tellimus"
1820
+
1821
+ #: adminpages/orders.php:742 adminpages/orders.php:606
1822
+ msgid "Within a Date Range"
1823
+ msgstr "Kuupäeva vahemikus"
1824
+
1825
+ #: adminpages/orders.php:743 adminpages/orders.php:607
1826
+ msgid "Predefined Date Range"
1827
+ msgstr "Eelmääratletud kuupäeva vahemik"
1828
+
1829
+ #: adminpages/orders.php:744 adminpages/orders.php:608
1830
+ msgid "Within a Level"
1831
+ msgstr "Tasemes"
1832
+
1833
+ #: adminpages/orders.php:745 adminpages/orders.php:609
1834
+ msgid "Within a Status"
1835
+ msgstr "Olekus"
1836
+
1837
+ #: adminpages/orders.php:748 adminpages/orders.php:612
1838
+ msgid "From"
1839
+ msgstr "Kellelt"
1840
+
1841
+ #: adminpages/orders.php:760 adminpages/orders.php:624
1842
+ msgid "To"
1843
+ msgstr "Kellele"
1844
+
1845
+ #: adminpages/orders.php:772 adminpages/orders.php:636
1846
+ msgid "filter by "
1847
+ msgstr "Filtreeri millegi järgi/abil"
1848
+
1849
+ #: adminpages/orders.php:809 adminpages/orders.php:674
1850
+ msgid "Filter"
1851
+ msgstr "Filter"
1852
+
1853
+ #: adminpages/orders.php:912 adminpages/orders.php:915
1854
+ #: adminpages/orders.php:535 adminpages/orders.php:538
1855
+ #: adminpages/orders.php:777 adminpages/orders.php:780
1856
+ msgid "Search Orders"
1857
+ msgstr "Otsi tellimusi"
1858
+
1859
+ #: adminpages/orders.php:959 adminpages/orders.php:590
1860
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1861
+ #, php-format
1862
+ msgid "%d orders found."
1863
+ msgstr "%d tellimusi leitud."
1864
+
1865
+ #: adminpages/orders.php:968 adminpages/reports/login.php:159
1866
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1867
+ #: adminpages/orders.php:599 adminpages/orders.php:902
1868
+ #: adminpages/orders.php:912 adminpages/paymentsettings.php:211
1869
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1870
+ #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
1871
+ msgid "User"
1872
+ msgstr "Kasutaja"
1873
+
1874
+ #: adminpages/orders.php:970 includes/init.php:238 includes/profile.php:27
1875
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1876
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1877
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1878
+ #: adminpages/orders.php:914 includes/init.php:214 includes/init.php:217
1879
+ #: includes/init.php:218 includes/init.php:220 includes/init.php:222
1880
+ #: includes/init.php:230 includes/profile.php:25 pages/checkout.php:33
1881
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/confirmation.php:46
1882
+ #: pages/confirmation.php:62 pages/confirmation.php:103 pages/invoice.php:27
1883
+ #: pages/invoice.php:49
1884
+ msgid "Membership Level"
1885
+ msgstr "Liikme tase"
1886
+
1887
+ #: adminpages/orders.php:972 adminpages/orders.php:1040
1888
+ #: adminpages/orders.php:603 adminpages/orders.php:651
1889
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1890
+ #: adminpages/orders.php:954 adminpages/orders.php:982
1891
+ msgid "Payment"
1892
+ msgstr "Makse"
1893
+
1894
+ #: adminpages/orders.php:974 adminpages/orders.php:605
1895
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1896
+ msgid "Transaction IDs"
1897
+ msgstr "Ülekande ID-d"
1898
+
1899
+ #: adminpages/orders.php:1001 adminpages/orders.php:630
1900
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1901
+ msgid "deleted"
1902
+ msgstr "kustutatud"
1903
+
1904
+ #: adminpages/orders.php:1042 adminpages/orders.php:653
1905
+ #: adminpages/orders.php:956 adminpages/orders.php:974
1906
+ #: adminpages/orders.php:984
1907
+ msgid "Subscription"
1908
+ msgstr "Tellimus"
1909
+
1910
+ #: adminpages/orders.php:1056 adminpages/orders.php:664
1911
+ #: adminpages/orders.php:967 adminpages/orders.php:985
1912
+ #: adminpages/orders.php:995 adminpages/orders.php:998
1913
+ #, php-format
1914
+ msgid ""
1915
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1916
+ "want to delete order %s?"
1917
+ msgstr ""
1918
+ "Tellimuste kustutamine on jääv ja võib mõjutada aktiivseid kasutajaid. Kas "
1919
+ "te olete kindel, et tahate kustutada tellimuse %s?"
1920
+
1921
+ #: adminpages/orders.php:1059
1922
+ msgid "print"
1923
+ msgstr "prindi"
1924
+
1925
+ #: adminpages/orders.php:1062
1926
+ msgid "email"
1927
+ msgstr "email"
1928
+
1929
+ #: adminpages/orders.php:1072 adminpages/orders.php:674
1930
+ #: adminpages/orders.php:977 adminpages/orders.php:995
1931
+ #: adminpages/orders.php:1005 adminpages/orders.php:1008
1932
+ msgid "No orders found."
1933
+ msgstr "Ei leitud ühtegi tellimust"
1934
+
1935
+ #: adminpages/pagesettings.php:54
1936
+ msgid "Your page settings have been updated."
1937
+ msgstr "Lehe sätted on värskendatud."
1938
+
1939
+ #: adminpages/pagesettings.php:64 adminpages/pagesettings.php:51
1940
+ msgid "Membership Account"
1941
+ msgstr "Liikme konto"
1942
+
1943
+ #: adminpages/pagesettings.php:65 adminpages/pagesettings.php:54
1944
+ msgid "Membership Billing"
1945
+ msgstr "Liikme makse arve"
1946
+
1947
+ #: adminpages/pagesettings.php:66 adminpages/pagesettings.php:57
1948
+ msgid "Membership Cancel"
1949
+ msgstr "Liikme tühistamine"
1950
+
1951
+ #: adminpages/pagesettings.php:67 adminpages/pagesettings.php:60
1952
+ msgid "Membership Checkout"
1953
+ msgstr "Liikme ostukinnitus"
1954
+
1955
+ #: adminpages/pagesettings.php:68 adminpages/pagesettings.php:63
1956
+ msgid "Membership Confirmation"
1957
+ msgstr "Liikme kinnitamine"
1958
+
1959
+ #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:66
1960
+ msgid "Membership Invoice"
1961
+ msgstr "Liikme arve"
1962
+
1963
+ #: adminpages/pagesettings.php:83 adminpages/pagesettings.php:111
1964
+ msgid "The following pages have been created for you"
1965
+ msgstr "Järgmised lehed on loodud teie jaoks"
1966
+
1967
+ #: adminpages/pagesettings.php:97 adminpages/pagesettings.php:98
1968
+ #: adminpages/pagesettings.php:126
1969
+ msgid ""
1970
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
1971
+ "page."
1972
+ msgstr "Hoolda lehti, mis on määratud igale Paid Memberships Pro lehele."
1973
+
1974
+ #: adminpages/pagesettings.php:101 adminpages/pagesettings.php:104
1975
+ #: adminpages/pagesettings.php:132
1976
+ msgid ""
1977
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
1978
+ msgstr "Määra WordPress lehed, igale nõutud Paid Memberships Pro lehele või"
1979
+
1980
+ #: adminpages/pagesettings.php:102 adminpages/pagesettings.php:104
1981
+ #: adminpages/pagesettings.php:132
1982
+ msgid "click here to let us generate them for you"
1983
+ msgstr "Vajutage siia, et me saaksime genereerida need Teie jaoks"
1984
+
1985
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:112
1986
+ #: adminpages/pagesettings.php:140
1987
+ msgid "Account Page"
1988
+ msgstr "Konto leht"
1989
+
1990
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
1991
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
1992
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
1993
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
1994
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
1995
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
1996
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:177
1997
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:193
1998
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1999
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
2000
+ #: adminpages/pagesettings.php:241
2001
+ msgid "Choose One"
2002
+ msgstr "Vali üks"
2003
+
2004
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
2005
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
2006
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
2007
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
2008
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
2009
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
2010
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
2011
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
2012
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
2013
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
2014
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
2015
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:197
2016
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
2017
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:225
2018
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
2019
+ #: adminpages/pagesettings.php:244
2020
+ msgid "edit page"
2021
+ msgstr "muuda lehte"
2022
+
2023
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
2024
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
2025
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
2026
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
2027
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
2028
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:151
2029
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:164
2030
+ #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
2031
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
2032
+ #: adminpages/pagesettings.php:195 adminpages/pagesettings.php:198
2033
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
2034
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
2035
+ #: adminpages/pagesettings.php:227 adminpages/pagesettings.php:230
2036
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:246
2037
+ msgid "view page"
2038
+ msgstr "vaata lehte"
2039
+
2040
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
2041
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
2042
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
2043
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:121
2044
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2045
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2046
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2047
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:166
2048
+ #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
2049
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:184
2050
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
2051
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:200
2052
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
2053
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:216
2054
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:229
2055
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:245
2056
+ #: adminpages/pagesettings.php:248
2057
+ msgid "Include the shortcode"
2058
+ msgstr "Kaasa lühikood"
2059
+
2060
+ #: adminpages/pagesettings.php:129 adminpages/pagesettings.php:125
2061
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2062
+ #: adminpages/pagesettings.php:158
2063
+ msgid "Billing Information Page"
2064
+ msgstr "Arvete info leht"
2065
+
2066
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:138
2067
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2068
+ #: adminpages/pagesettings.php:173
2069
+ msgid "Cancel Page"
2070
+ msgstr "Tühistamis leht"
2071
+
2072
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:152
2073
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2074
+ #: adminpages/pagesettings.php:189
2075
+ msgid "Checkout Page"
2076
+ msgstr "Ostukinnituse leht"
2077
+
2078
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:166
2079
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2080
+ #: adminpages/pagesettings.php:205
2081
+ msgid "Confirmation Page"
2082
+ msgstr "Kinnitus leht"
2083
+
2084
+ #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:180
2085
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2086
+ #: adminpages/pagesettings.php:221
2087
+ msgid "Invoice Page"
2088
+ msgstr "Täpsema arve leht"
2089
+
2090
+ #: adminpages/pagesettings.php:224 adminpages/pagesettings.php:194
2091
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2092
+ #: adminpages/pagesettings.php:237
2093
+ msgid "Levels Page"
2094
+ msgstr "Tasemete leht"
2095
+
2096
+ #: adminpages/pagesettings.php:245
2097
+ msgid "Additional Page Settings"
2098
+ msgstr "Veel lehe sätteid"
2099
+
2100
+ #: adminpages/pagesettings.php:280
2101
+ msgid "Generate Page"
2102
+ msgstr "Loo leht"
2103
+
2104
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
2105
+ #: adminpages/paymentsettings.php:82
2106
+ msgid "Your payment settings have been updated."
2107
+ msgstr "Teie makse seadeid uuendati."
2108
+
2109
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
2110
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
2111
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
2112
+ msgid "Payment Gateway"
2113
+ msgstr "Makse meetod"
2114
+
2115
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:144
2116
+ #: adminpages/paymentsettings.php:146
2117
+ msgid "SSL Settings"
2118
+ msgstr "SSL sätted"
2119
+
2120
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
2121
+ msgid ""
2122
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
2123
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
2124
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
2125
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
2126
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
2127
+ msgstr ""
2128
+ "Rohkem infot <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank"
2129
+ "\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/"
2130
+ "\">SSL</a> või <a title=\"Paid Memberships Pro - Payment Gateway Settings\" "
2131
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-"
2132
+ "plugin-setup/payment-gateway/\">Makse meetodite seadete kohta</a>."
2133
+
2134
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
2135
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
2136
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
2137
+ msgid "Currency"
2138
+ msgstr "Valuuta"
2139
+
2140
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
2141
+ #: adminpages/paymentsettings.php:402
2142
+ msgid ""
2143
+ "Not all currencies will be supported by every gateway. Please check with "
2144
+ "your gateway."
2145
+ msgstr ""
2146
+ "Kõik valuutad ei ole toetatud iga makse meetodiga-iga. Palun kontrollige oma "
2147
+ "makse meetodit-d."
2148
+
2149
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
2150
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
2151
+ #: adminpages/paymentsettings.php:408
2152
+ msgid "Accepted Credit Card Types"
2153
+ msgstr "Aktsepteeritavad krediitkaardi tüübid"
2154
+
2155
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2156
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2157
+ #: adminpages/paymentsettings.php:445
2158
+ msgid "Sales Tax"
2159
+ msgstr "Müügi maks"
2160
+
2161
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2162
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
2163
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
2164
+ #: pages/billing.php:78 pages/billing.php:82
2165
+ msgid "optional"
2166
+ msgstr "valikuline"
2167
+
2168
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
2169
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
2170
+ #: adminpages/paymentsettings.php:448
2171
+ msgid "Tax State"
2172
+ msgstr "Käibemaks riigile"
2173
+
2174
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
2175
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
2176
+ #: adminpages/paymentsettings.php:449
2177
+ msgid "abbreviation, e.g. \"PA\""
2178
+ msgstr "lühend, näiteks: \"PA\""
2179
+
2180
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
2181
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
2182
+ #: adminpages/paymentsettings.php:451
2183
+ msgid "decimal, e.g. \"0.06\""
2184
+ msgstr "kümnendik, näiteks: \"0.06\""
2185
+
2186
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
2187
+ #: adminpages/paymentsettings.php:452
2188
+ msgid ""
2189
+ "US only. If values are given, tax will be applied for any members ordering "
2190
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
2191
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
2192
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
2193
+ msgstr ""
2194
+ "Ainult US. Kui väärtused on antud, maks lisatakse igale liikmele tellides "
2195
+ "valitud riigist<br />Mitte US või keerulisemate makse reeglite puhul, "
2196
+ "kasutage <a target=\"_blank\" href=\"http://www.paidmembershipspro."
2197
+ "com/2013/10/non-us-taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
2198
+
2199
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
2200
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
2201
+ msgid "Force SSL"
2202
+ msgstr "Sunni SSL"
2203
+
2204
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
2205
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
2206
+ msgid "Yes (with JavaScript redirects)"
2207
+ msgstr "Jah ( JavaScripti-ga suuna ümber)"
2208
+
2209
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
2210
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
2211
+ #: adminpages/paymentsettings.php:470
2212
+ msgid "SSL Seal Code"
2213
+ msgstr "SSL Seal Kood"
2214
+
2215
+ #: adminpages/paymentsettings.php:228
2216
+ msgid "Extra HTTPS URL Filter"
2217
+ msgstr "Ekstra HTTPS URL Filter"
2218
+
2219
+ #: adminpages/paymentsettings.php:231
2220
+ msgid ""
2221
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
2222
+ "secure pages. Check this if you are using SSL and have warnings on your "
2223
+ "checkout pages."
2224
+ msgstr ""
2225
+ "Suuna kõik genereeritud HTML läbi URL-i filtri, et lisada HTTPS URL-idesse "
2226
+ "mida kasutatakse turvalehtedes. Kontrollige seda, kui kasutate SSL ja teil "
2227
+ "on hoiatused oma ostukinnituse lehtedel."
2228
+
2229
+ #: adminpages/reports.php:40 adminpages/reports.php:26
2230
+ #: adminpages/reports.php:37
2231
+ msgid "Details"
2232
+ msgstr "Detailid"
2233
+
2234
+ #: adminpages/reports.php:61
2235
+ msgid "Back to Reports Dashboard"
2236
+ msgstr "Tagasi aruannete Wordpressi Töölauda (Dashboard)"
2237
+
2238
+ #: adminpages/reports/login.php:16
2239
+ msgid "Visits, Views, and Logins"
2240
+ msgstr "Külastatud, Vaadatud ja sisse logimised"
2241
+
2242
+ #: adminpages/reports/login.php:31
2243
+ msgid "Visits"
2244
+ msgstr "Külastatud"
2245
+
2246
+ #: adminpages/reports/login.php:32
2247
+ msgid "Views"
2248
+ msgstr "Vaadatud "
2249
+
2250
+ #: adminpages/reports/login.php:33
2251
+ msgid "Logins"
2252
+ msgstr "sisse logimised"
2253
+
2254
+ #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2255
+ #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2256
+ #: adminpages/reports/memberships.php:81
2257
+ msgid "Today"
2258
+ msgstr "Täna"
2259
+
2260
+ #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2261
+ #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2262
+ #: adminpages/reports/memberships.php:77
2263
+ msgid "This Month"
2264
+ msgstr "See kuu"
2265
+
2266
+ #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2267
+ #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2268
+ #: adminpages/reports/memberships.php:69
2269
+ msgid "All Time"
2270
+ msgstr "Algusest"
2271
+
2272
+ #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2273
+ #: adminpages/reports/login.php:63
2274
+ msgid "Visits, Views, and Logins Report"
2275
+ msgstr "külastatud, vaadatud ja sisse logitud aruanded"
2276
+
2277
+ #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2278
+ #: adminpages/reports/login.php:68
2279
+ msgid "All Users"
2280
+ msgstr "Kõik kasutajad"
2281
+
2282
+ #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2283
+ #: adminpages/reports/login.php:148
2284
+ msgid "Last Visit"
2285
+ msgstr "Viimati külastatud"
2286
+
2287
+ #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2288
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2289
+ #: adminpages/reports/login.php:149
2290
+ msgid "Visits This Month"
2291
+ msgstr "Külastatud käimas oleval kuul"
2292
+
2293
+ #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2294
+ #: adminpages/reports/login.php:150
2295
+ msgid "Total Visits"
2296
+ msgstr "Kõik külastused"
2297
+
2298
+ #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2299
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2300
+ #: adminpages/reports/login.php:151
2301
+ msgid "Views This Month"
2302
+ msgstr "Vaadatud käimas oleval kuul"
2303
+
2304
+ #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2305
+ #: adminpages/reports/login.php:152
2306
+ msgid "Total Views"
2307
+ msgstr "Kõik vaatamised"
2308
+
2309
+ #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2310
+ #: adminpages/reports/login.php:153
2311
+ msgid "Last Login"
2312
+ msgstr "Viimati sisse logitud"
2313
+
2314
+ #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2315
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2316
+ #: adminpages/reports/login.php:154
2317
+ msgid "Logins This Month"
2318
+ msgstr "Sisselogimisi sel kuul"
2319
+
2320
+ #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2321
+ #: adminpages/reports/login.php:155
2322
+ msgid "Total Logins"
2323
+ msgstr "Kokku sisse logimisi"
2324
+
2325
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:252
2326
+ #: adminpages/reports/memberships.php:288
2327
+ msgid "Membership Stats"
2328
+ msgstr "Liikme staatus"
2329
+
2330
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
2331
+ msgid "Signups"
2332
+ msgstr "Registreerimisi"
2333
+
2334
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
2335
+ msgid "Cancellations"
2336
+ msgstr "Tühistamisi"
2337
+
2338
+ #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2339
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2340
+ msgid "This Year"
2341
+ msgstr "See aasta"
2342
+
2343
+ #: adminpages/reports/memberships.php:258 adminpages/reports/sales.php:204
2344
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2345
+ #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2346
+ msgid "Daily"
2347
+ msgstr "Igapäevane"
2348
+
2349
+ #: adminpages/reports/memberships.php:259 adminpages/reports/sales.php:205
2350
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2351
+ #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2352
+ msgid "Monthly"
2353
+ msgstr "Igakuine"
2354
+
2355
+ #: adminpages/reports/memberships.php:260 adminpages/reports/sales.php:206
2356
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2357
+ #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2358
+ msgid "Annual"
2359
+ msgstr "Iga-aastane"
2360
+
2361
+ #: adminpages/reports/memberships.php:263
2362
+ #: adminpages/reports/memberships.php:299
2363
+ msgid "Signups vs. Cancellations"
2364
+ msgstr "Registreerimisi vs. Tühistamisi"
2365
+
2366
+ #: adminpages/reports/memberships.php:268
2367
+ #: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:212
2368
+ #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2369
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2370
+ #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2371
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2372
+ #: adminpages/reports/memberships.php:304
2373
+ #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2374
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2375
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2376
+ #: adminpages/reports/sales.php:215
2377
+ msgid "for"
2378
+ msgstr "kellele"
2379
+
2380
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:239
2381
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2382
+ #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2383
+ msgid "Generate Report"
2384
+ msgstr "Genereeri aruanne"
2385
+
2386
+ #: adminpages/reports/sales.php:18
2387
+ msgid "Sales and Revenue (Testing/Sandbox)"
2388
+ msgstr "Müük ja tulud (testimine/Sandbox)"
2389
+
2390
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2391
+ #: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
2392
+ msgid "Sales and Revenue"
2393
+ msgstr "Müük ja tulud"
2394
+
2395
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2396
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2397
+ #: adminpages/reports/sales.php:202
2398
+ msgid "Sales"
2399
+ msgstr "Müük"
2400
+
2401
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2402
+ #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2403
+ #: adminpages/reports/sales.php:201
2404
+ msgid "Revenue"
2405
+ msgstr "tulud"
2406
+
2407
+ #: adminpages/templates/orders-email.php:14
2408
+ #: adminpages/templates/orders-print.php:50
2409
+ msgid "Invoice #: "
2410
+ msgstr "Täpsem arve #: "
2411
+
2412
+ #: adminpages/templates/orders-email.php:18
2413
+ #: adminpages/templates/orders-print.php:54
2414
+ msgid "Date:"
2415
+ msgstr "Kuupäev:"
2416
+
2417
+ #: adminpages/templates/orders-email.php:24
2418
+ msgid "Bill to:"
2419
+ msgstr "Arve kuhu/kellele:"
2420
+
2421
+ #: adminpages/templates/orders-email.php:47
2422
+ #: adminpages/templates/orders-print.php:76
2423
+ msgid "Item"
2424
+ msgstr "Kaup/Ese"
2425
+
2426
+ #: adminpages/templates/orders-email.php:48
2427
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2428
+ #: pages/levels.php:14
2429
+ msgid "Price"
2430
+ msgstr "Hind"
2431
+
2432
+ #: adminpages/templates/orders-email.php:56
2433
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2434
+ #: pages/invoice.php:77
2435
+ msgid "Subtotal"
2436
+ msgstr "Kokku"
2437
+
2438
+ #: classes/class.memberorder.php:644 classes/class.memberorder.php:553
2439
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2440
+ #: classes/class.memberorder.php:573 includes/cleanup.php:24
2441
+ #, php-format
2442
+ msgid ""
2443
+ "There was an error canceling the subscription for user with ID=%s. You will "
2444
+ "want to check your payment gateway to see if their subscription is still "
2445
+ "active."
2446
+ msgstr ""
2447
+ "Tellimise tühistamisel kasutajal ID=%s tekkis tõrge. Te peaksite üle vaatama "
2448
+ "oma makse gateway, et näha kas nende tellimus on endiselt aktiivne."
2449
+
2450
+ #: classes/class.pmproemail.php:37
2451
+ #, php-format
2452
+ msgid "An Email From %s"
2453
+ msgstr "Email %s-lt"
2454
+
2455
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2456
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2457
+ #, php-format
2458
+ msgid "Your membership at %s has been CANCELLED"
2459
+ msgstr "Teie liikme tase %s tühistati"
2460
+
2461
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2462
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2463
+ #, php-format
2464
+ msgid "Membership for %s at %s has been CANCELLED"
2465
+ msgstr "Liikme %s : %s tühistati"
2466
+
2467
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2468
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2469
+ #: classes/class.pmproemail.php:178
2470
+ #, php-format
2471
+ msgid "Your membership confirmation for %s"
2472
+ msgstr "Teie liikme kinnitus %s tasemele"
2473
+
2474
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2475
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2476
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2477
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2478
+ #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:76
2479
+ #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2480
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2481
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2482
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2483
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2484
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2485
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2486
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2487
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2488
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2489
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2490
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2491
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2492
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2493
+ #: classes/gateways/class.pmprogateway_stripe.php:496
2494
+ #: classes/gateways/class.pmprogateway_stripe.php:506 pages/checkout.php:66
2495
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2496
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:85
2497
+ #: pages/checkout.php:549 pages/checkout.php:565 pages/checkout.php:566
2498
+ #: pages/checkout.php:573 pages/checkout.php:594 pages/checkout.php:603
2499
+ #: pages/confirmation.php:51 pages/invoice.php:32
2500
+ msgid "Discount Code"
2501
+ msgstr "Allahindluse kood"
2502
+
2503
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2504
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2505
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2506
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2507
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2508
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2509
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2510
+ #: classes/class.pmproemail.php:654
2511
+ #, php-format
2512
+ msgid "This membership will expire on %s."
2513
+ msgstr "Liikme tase aegub %s."
2514
+
2515
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2516
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2517
+ #: classes/class.pmproemail.php:278
2518
+ #, php-format
2519
+ msgid "Member Checkout for %s at %s"
2520
+ msgstr "Liikme %s väljaregistreerimine :%s"
2521
+
2522
+ #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2523
+ #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2524
+ #: classes/class.pmproemail.php:366
2525
+ #, php-format
2526
+ msgid "Your billing information has been udpated at %s"
2527
+ msgstr "Teie arve informatsioon uuendati %s"
2528
+
2529
+ #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2530
+ #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2531
+ #: classes/class.pmproemail.php:419
2532
+ #, php-format
2533
+ msgid "Billing information has been udpated for %s at %s"
2534
+ msgstr "Arve informatsioon uuendati %s-ks : %s"
2535
+
2536
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2537
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2538
+ #: classes/class.pmproemail.php:467
2539
+ #, php-format
2540
+ msgid "Membership Payment Failed at %s"
2541
+ msgstr "Liikmemaks ebaõnnestus %s"
2542
+
2543
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2544
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2545
+ #: classes/class.pmproemail.php:513
2546
+ #, php-format
2547
+ msgid "Membership Payment Failed For %s at %s"
2548
+ msgstr "Liikme maks ebaõnnestus %s :%s "
2549
+
2550
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2551
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2552
+ #, php-format
2553
+ msgid "Credit Card on File Expiring Soon at %s"
2554
+ msgstr "Kreditkaart aegub varsti: %s"
2555
+
2556
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2557
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2558
+ #: classes/class.pmproemail.php:608
2559
+ #, php-format
2560
+ msgid "INVOICE for %s membership"
2561
+ msgstr "Täpsem arve %s liikmele"
2562
+
2563
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2564
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2565
+ #: classes/class.pmproemail.php:679
2566
+ #, php-format
2567
+ msgid "Your trial at %s is ending soon"
2568
+ msgstr "Teie prooviaeg %s saab varsti läbi"
2569
+
2570
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2571
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2572
+ #: classes/class.pmproemail.php:713
2573
+ #, php-format
2574
+ msgid "Your membership at %s has ended"
2575
+ msgstr "Teie liikme tase %s on lõppenud "
2576
+
2577
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2578
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2579
+ #: classes/class.pmproemail.php:738
2580
+ #, php-format
2581
+ msgid "Your membership at %s will end soon"
2582
+ msgstr "Teie liikme tase %s lõppeb varsti"
2583
+
2584
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2585
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2586
+ #: classes/class.pmproemail.php:758
2587
+ #, php-format
2588
+ msgid "Your membership at %s has been changed"
2589
+ msgstr "Teie liikme taset %s on muudetud "
2590
+
2591
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2592
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2593
+ #: classes/class.pmproemail.php:800
2594
+ #, php-format
2595
+ msgid "The new level is %s"
2596
+ msgstr "Uus tase on %s"
2597
+
2598
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2599
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2600
+ #: classes/class.pmproemail.php:764
2601
+ msgid "Your membership has been cancelled"
2602
+ msgstr "Teie liikme tase tühistati"
2603
+
2604
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2605
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2606
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2607
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2608
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2609
+ #, php-format
2610
+ msgid "This membership will expire on %s"
2611
+ msgstr "See liikme tase aegub %s"
2612
+
2613
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2614
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2615
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2616
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2617
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2618
+ msgid "This membership does not expire"
2619
+ msgstr "See liikme tase ei aegu"
2620
+
2621
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2622
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2623
+ #: classes/class.pmproemail.php:796
2624
+ #, php-format
2625
+ msgid "Membership for %s at %s has been changed"
2626
+ msgstr "Liikme tase %s : %s on muudetud"
2627
+
2628
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2629
+ #: classes/class.pmproemail.php:802
2630
+ msgid "Membership has been cancelled"
2631
+ msgstr "Liikme tase tühistati"
2632
+
2633
+ #: classes/class.pmproemail.php:848
2634
+ msgid "Invoice for Order #: "
2635
+ msgstr "Tellimuse täpsem arve #:"
2636
+
2637
+ #: classes/gateways/class.pmprogateway.php:55
2638
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2639
+ #: classes/gateways/class.pmprogateway_check.php:193
2640
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2641
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2642
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2643
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2644
+ #: classes/gateways/class.pmprogateway_check.php:60
2645
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2646
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2647
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2648
+ msgid "Unknown error: Authorization failed."
2649
+ msgstr "Tundmatu tõrge: autoriseerimine ebaõnnestus."
2650
+
2651
+ #: classes/gateways/class.pmprogateway.php:106
2652
+ #: classes/gateways/class.pmprogateway.php:111
2653
+ #: classes/gateways/class.pmprogateway.php:129
2654
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2655
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2656
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2657
+ #: classes/gateways/class.pmprogateway_check.php:244
2658
+ #: classes/gateways/class.pmprogateway_check.php:249
2659
+ #: classes/gateways/class.pmprogateway_check.php:267
2660
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2661
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2662
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2663
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2664
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2665
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2666
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2667
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2668
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2669
+ #: classes/gateways/class.pmprogateway_check.php:111
2670
+ #: classes/gateways/class.pmprogateway_check.php:116
2671
+ #: classes/gateways/class.pmprogateway_check.php:134
2672
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2673
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2674
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2675
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2676
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2677
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2678
+ msgid "Unknown error: Payment failed."
2679
+ msgstr "Tundmatu tõrge: Makse ebaõnnestus."
2680
+
2681
+ #: classes/gateways/class.pmprogateway.php:113
2682
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2683
+ #: classes/gateways/class.pmprogateway_check.php:251
2684
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2685
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2686
+ #: classes/gateways/class.pmprogateway_check.php:118
2687
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2688
+ msgid ""
2689
+ "A partial payment was made that we could not void. Please contact the site "
2690
+ "owner immediately to correct this."
2691
+ msgstr ""
2692
+ "Osaline makse sooritati, mida me ei suutnud vältida. Palun võtke koheselt "
2693
+ "lehe omanikuga ühendust, et parandada see viga."
2694
+
2695
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
2696
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:122
2697
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:130
2698
+ msgid "Authorize.net"
2699
+ msgstr "Authorize.net"
2700
+
2701
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2702
+ msgid "Authorize.net Settings"
2703
+ msgstr "Authorize.net seaded"
2704
+
2705
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2706
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2707
+ #: adminpages/paymentsettings.php:269
2708
+ msgid "Login Name"
2709
+ msgstr "Logi sisse nimi"
2710
+
2711
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2712
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2713
+ #: adminpages/paymentsettings.php:277
2714
+ msgid "Transaction Key"
2715
+ msgstr "Ülekande võti"
2716
+
2717
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2718
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2719
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2720
+ msgid "Silent Post URL"
2721
+ msgstr "Silent Post URL"
2722
+
2723
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2724
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2725
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2726
+ msgid ""
2727
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2728
+ msgstr ""
2729
+ "Täielikuks Authorize.net integreerimiseks, tehke kindlaks, et olete "
2730
+ "seadistanud oma Silent Post URL-i"
2731
+
2732
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2733
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
2734
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2735
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2736
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2737
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2738
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2739
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2740
+ msgid "Could not connect to Authorize.net"
2741
+ msgstr "Ei saanud ühendust Authorize.net-iga"
2742
+
2743
+ #: classes/gateways/class.pmprogateway_braintree.php:76
2744
+ #: paid-memberships-pro.php:132
2745
+ #: classes/gateways/class.pmprogateway_braintree.php:63
2746
+ #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2747
+ #: paid-memberships-pro.php:131
2748
+ msgid "Braintree Payments"
2749
+ msgstr "Braintree Maksed"
2750
+
2751
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2752
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2753
+ msgid "Braintree Settings"
2754
+ msgstr "Braintree Seaded"
2755
+
2756
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2757
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2758
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2759
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2760
+ #: adminpages/paymentsettings.php:369
2761
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2762
+ msgid "Merchant ID"
2763
+ msgstr "Kaupmehe ID"
2764
+
2765
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2766
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2767
+ #: adminpages/paymentsettings.php:311
2768
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2769
+ msgid "Public Key"
2770
+ msgstr "Avalik võti"
2771
+
2772
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2773
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2774
+ #: adminpages/paymentsettings.php:319
2775
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2776
+ msgid "Private Key"
2777
+ msgstr "Privaatne võti"
2778
+
2779
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2780
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2781
+ #: adminpages/paymentsettings.php:327
2782
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2783
+ msgid "Client-Side Encryption Key"
2784
+ msgstr "Kliendi poolne krüpterimise võti"
2785
+
2786
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2787
+ #: classes/gateways/class.pmprogateway_stripe.php:192
2788
+ #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2789
+ #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2790
+ #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2791
+ #: adminpages/paymentsettings.php:519
2792
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2794
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2795
+ msgid "Web Hook URL"
2796
+ msgstr "Web Hook URL"
2797
+
2798
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2799
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2800
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2801
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2802
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2803
+ msgstr ""
2804
+ "Täielikuks Braintree-ga integreerimiseks, veenduge, et olete seadistanud oma "
2805
+ "Web Hook URL-i "
2806
+
2807
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2808
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:501
2809
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2810
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2811
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2812
+ #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
2813
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2814
+ #: pages/checkout.php:494 pages/checkout.php:500
2815
+ msgid "Payment Information"
2816
+ msgstr "Makse informatsioon"
2817
+
2818
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2819
+ #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:502
2820
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2821
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2822
+ #: classes/gateways/class.pmprogateway_stripe.php:388
2823
+ #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
2824
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2825
+ #: pages/checkout.php:494 pages/checkout.php:500
2826
+ #, php-format
2827
+ msgid "We Accept %s"
2828
+ msgstr "Me aktsepteerime %s"
2829
+
2830
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2831
+ #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:260
2832
+ #: pages/checkout.php:566 classes/gateways/class.pmprogateway_braintree.php:303
2833
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2834
+ #: classes/gateways/class.pmprogateway_stripe.php:450
2835
+ #: classes/gateways/class.pmprogateway_stripe.php:460 pages/billing.php:244
2836
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2837
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2838
+ #: pages/checkout.php:548 pages/checkout.php:557
2839
+ msgid "Card Number"
2840
+ msgstr "Kaardi number"
2841
+
2842
+ #: classes/gateways/class.pmprogateway_braintree.php:353
2843
+ #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:297
2844
+ #: pages/checkout.php:603 classes/gateways/class.pmprogateway_braintree.php:340
2845
+ #: classes/gateways/class.pmprogateway_stripe.php:486
2846
+ #: classes/gateways/class.pmprogateway_stripe.php:487
2847
+ #: classes/gateways/class.pmprogateway_stripe.php:497 pages/billing.php:281
2848
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
2849
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
2850
+ #: pages/checkout.php:585 pages/checkout.php:594
2851
+ msgid "CVV"
2852
+ msgstr "CVV"
2853
+
2854
+ #: classes/gateways/class.pmprogateway_braintree.php:354
2855
+ #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:298
2856
+ #: pages/checkout.php:604 classes/gateways/class.pmprogateway_braintree.php:341
2857
+ #: classes/gateways/class.pmprogateway_stripe.php:487
2858
+ #: classes/gateways/class.pmprogateway_stripe.php:488
2859
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:282
2860
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
2861
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
2862
+ #: pages/checkout.php:586 pages/checkout.php:595
2863
+ msgid "what's this?"
2864
+ msgstr "mis see on?"
2865
+
2866
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2867
+ #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:88
2868
+ #: pages/checkout.php:614 classes/gateways/class.pmprogateway_braintree.php:351
2869
+ #: classes/gateways/class.pmprogateway_stripe.php:497
2870
+ #: classes/gateways/class.pmprogateway_stripe.php:498
2871
+ #: classes/gateways/class.pmprogateway_stripe.php:508 pages/checkout.php:78
2872
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
2873
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
2874
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
2875
+ msgid "Apply"
2876
+ msgstr "Rakenda"
2877
+
2878
+ #: classes/gateways/class.pmprogateway_braintree.php:419
2879
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
2880
+ #: classes/gateways/class.pmprogateway_braintree.php:61
2881
+ #: classes/gateways/class.pmprogateway_braintree.php:406
2882
+ #: classes/gateways/class.pmprogateway_stripe.php:53
2883
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
2884
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
2885
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2886
+ #: classes/gateways/class.pmprogateway_stripe.php:1036
2887
+ msgid "Unknown error: Initial payment failed."
2888
+ msgstr "Tundmatu tõrge: Algne makse ebaõnnestus."
2889
+
2890
+ #: classes/gateways/class.pmprogateway_braintree.php:478
2891
+ #: classes/gateways/class.pmprogateway_braintree.php:120
2892
+ #: classes/gateways/class.pmprogateway_braintree.php:465
2893
+ msgid "Error during settlement:"
2894
+ msgstr "Tõrge lahendusel:"
2895
+
2896
+ #: classes/gateways/class.pmprogateway_braintree.php:487
2897
+ #: classes/gateways/class.pmprogateway_braintree.php:129
2898
+ #: classes/gateways/class.pmprogateway_braintree.php:474
2899
+ msgid "Error during charge:"
2900
+ msgstr "Tõrge tasumisel:"
2901
+
2902
+ #: classes/gateways/class.pmprogateway_braintree.php:579
2903
+ #: classes/gateways/class.pmprogateway_braintree.php:198
2904
+ #: classes/gateways/class.pmprogateway_braintree.php:221
2905
+ #: classes/gateways/class.pmprogateway_braintree.php:566
2906
+ msgid "Failed to update customer."
2907
+ msgstr "Kliendi uuendamine ebaõnnestus."
2908
+
2909
+ #: classes/gateways/class.pmprogateway_braintree.php:627
2910
+ #: classes/gateways/class.pmprogateway_braintree.php:246
2911
+ #: classes/gateways/class.pmprogateway_braintree.php:269
2912
+ #: classes/gateways/class.pmprogateway_braintree.php:614
2913
+ msgid "Failed to create customer."
2914
+ msgstr "Ei õnnestunud luua klienti."
2915
+
2916
+ #: classes/gateways/class.pmprogateway_braintree.php:634
2917
+ #: classes/gateways/class.pmprogateway_braintree.php:253
2918
+ #: classes/gateways/class.pmprogateway_braintree.php:276
2919
+ #: classes/gateways/class.pmprogateway_braintree.php:621
2920
+ msgid "Error creating customer record with Braintree:"
2921
+ msgstr "Tekkis tõrge Braintree-iga kliendi kirje loomisel:"
2922
+
2923
+ #: classes/gateways/class.pmprogateway_braintree.php:734
2924
+ #: classes/gateways/class.pmprogateway_braintree.php:344
2925
+ #: classes/gateways/class.pmprogateway_braintree.php:345
2926
+ #: classes/gateways/class.pmprogateway_braintree.php:376
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:721
2928
+ msgid "Error subscribing customer to plan with Braintree:"
2929
+ msgstr "Tekkis tõrge lisada klient plaani Braintree-iga:"
2930
+
2931
+ #: classes/gateways/class.pmprogateway_braintree.php:749
2932
+ #: classes/gateways/class.pmprogateway_braintree.php:359
2933
+ #: classes/gateways/class.pmprogateway_braintree.php:360
2934
+ #: classes/gateways/class.pmprogateway_braintree.php:391
2935
+ #: classes/gateways/class.pmprogateway_braintree.php:736
2936
+ msgid "Failed to subscribe with Braintree:"
2937
+ msgstr "Ei õnnestunud tellida Braintree-iga:"
2938
+
2939
+ #: classes/gateways/class.pmprogateway_braintree.php:787
2940
+ #: classes/gateways/class.pmprogateway_braintree.php:800
2941
+ #: classes/gateways/class.pmprogateway_braintree.php:807
2942
+ #: classes/gateways/class.pmprogateway_braintree.php:397
2943
+ #: classes/gateways/class.pmprogateway_braintree.php:398
2944
+ #: classes/gateways/class.pmprogateway_braintree.php:410
2945
+ #: classes/gateways/class.pmprogateway_braintree.php:411
2946
+ #: classes/gateways/class.pmprogateway_braintree.php:417
2947
+ #: classes/gateways/class.pmprogateway_braintree.php:418
2948
+ #: classes/gateways/class.pmprogateway_braintree.php:429
2949
+ #: classes/gateways/class.pmprogateway_braintree.php:442
2950
+ #: classes/gateways/class.pmprogateway_braintree.php:449
2951
+ #: classes/gateways/class.pmprogateway_braintree.php:774
2952
+ #: classes/gateways/class.pmprogateway_braintree.php:794
2953
+ #: classes/gateways/class.pmprogateway_stripe.php:343
2954
+ #: classes/gateways/class.pmprogateway_stripe.php:344
2955
+ #: classes/gateways/class.pmprogateway_stripe.php:351
2956
+ #: classes/gateways/class.pmprogateway_stripe.php:353
2957
+ #: classes/gateways/class.pmprogateway_stripe.php:354
2958
+ #: classes/gateways/class.pmprogateway_stripe.php:361
2959
+ #: classes/gateways/class.pmprogateway_stripe.php:396
2960
+ #: classes/gateways/class.pmprogateway_stripe.php:402
2961
+ #: classes/gateways/class.pmprogateway_stripe.php:423
2962
+ msgid "Could not find the subscription."
2963
+ msgstr "Ei suutnud leida tellimust."
2964
+
2965
+ #: classes/gateways/class.pmprogateway_check.php:48
2966
+ #: paid-memberships-pro.php:125 adminpages/orders.php:399
2967
+ #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
2968
+ #: adminpages/paymentsettings.php:159 paid-memberships-pro.php:116
2969
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:124
2970
+ msgid "Pay by Check"
2971
+ msgstr "Maksa tšeki alusel"
2972
+
2973
+ #: classes/gateways/class.pmprogateway_check.php:100
2974
+ msgid "Pay by Check Settings"
2975
+ msgstr "Maksa tšekiga seaded"
2976
+
2977
+ #: classes/gateways/class.pmprogateway_check.php:105
2978
+ #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
2979
+ #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
2980
+ msgid "Instructions"
2981
+ msgstr "Juhendid"
2982
+
2983
+ #: classes/gateways/class.pmprogateway_check.php:109
2984
+ #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
2985
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
2986
+ msgid ""
2987
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
2988
+ "confirmation, and invoice pages."
2989
+ msgstr ""
2990
+ "Kellele kirjutada tšek välja. Kuhu meilida see. Näita ostukinnituse, "
2991
+ "kinnituse ja täpsema arve lehti. "
2992
+
2993
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
2994
+ msgid "CyberSource"
2995
+ msgstr "CyberSource"
2996
+
2997
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
2998
+ msgid "CyberSource Settings"
2999
+ msgstr "CyberSource Seaded"
3000
+
3001
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
3002
+ #: adminpages/paymentsettings.php:174
3003
+ msgid ""
3004
+ "This gateway option is in beta. Some functionality may not be available. "
3005
+ "Please contact Paid Memberships Pro with any issues you run into. "
3006
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
3007
+ "versions when available.</strong>"
3008
+ msgstr ""
3009
+ "Selle makse meetodi valik on algeline. Kogu funktsionaalsus ei pruugi olla "
3010
+ "kättesaadav. Kõikide probleemidega, millega võite kokku puutuda, võtke palun "
3011
+ "ühendust Paid Memberships Pro-ga . <strong>Veenduge, et uuendate kõige uuema "
3012
+ "versiooni Paid Memberships Pro (kui see on saadaval) .</strong>"
3013
+
3014
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
3015
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
3016
+ msgid "Transaction Security Key"
3017
+ msgstr "Tehingu turva võti"
3018
+
3019
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
3020
+ msgid "Payflow Pro/PayPal Pro"
3021
+ msgstr "Payflow Pro/PayPal Pro"
3022
+
3023
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
3024
+ msgid "Payflow Pro Settings"
3025
+ msgstr "Payflow Pro Seaded"
3026
+
3027
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
3028
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
3029
+ #: adminpages/paymentsettings.php:204
3030
+ msgid "Partner"
3031
+ msgstr "Partner"
3032
+
3033
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
3034
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
3035
+ #: adminpages/paymentsettings.php:212
3036
+ msgid "Vendor"
3037
+ msgstr "Hankija/Vendor"
3038
+
3039
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124
3040
+ #: pages/checkout.php:191 adminpages/paymentsettings.php:219
3041
+ #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3042
+ #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3043
+ #: pages/checkout.php:189
3044
+ msgid "Password"
3045
+ msgstr "Salasõna "
3046
+
3047
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
3048
+ msgid "IPN Handler"
3049
+ msgstr "IPN käsitleja"
3050
+
3051
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
3052
+ #, php-format
3053
+ msgid ""
3054
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a "
3055
+ "target=\"_blank\" href=\"%s\">this addon</a>."
3056
+ msgstr ""
3057
+ "Payflow ei kasuta IPN. Korduvate tellimuste ühildumiseks, palun vaadake <a "
3058
+ "target=\"_blank\" href=\"%s\">seda lisa</a>."
3059
+
3060
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
3061
+ #: classes/gateways/class.pmprogateway_paypal.php:277
3062
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
3063
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3064
+ msgid ""
3065
+ "A partial payment was made that we could not refund. Please contact the site "
3066
+ "owner immediately to correct this."
3067
+ msgstr ""
3068
+ "Osalise makse sooritati, mida me ei saanud tagasi maksta. Palun võtke "
3069
+ "ühendust saidi omanikuga koheselt selle parandamiseks."
3070
+
3071
+ #: classes/gateways/class.pmprogateway_paypal.php:57
3072
+ #: paid-memberships-pro.php:128 paid-memberships-pro.php:119
3073
+ #: paid-memberships-pro.php:120 paid-memberships-pro.php:127
3074
+ msgid "PayPal Website Payments Pro"
3075
+ msgstr "PayPal Website Payments Pro"
3076
+
3077
+ #: classes/gateways/class.pmprogateway_paypal.php:113
3078
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3079
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3080
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3081
+ msgid "PayPal Settings"
3082
+ msgstr "PayPal seaded"
3083
+
3084
+ #: classes/gateways/class.pmprogateway_paypal.php:118
3085
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3086
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3087
+ #: adminpages/paymentsettings.php:179
3088
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3089
+ msgid ""
3090
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3091
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
3092
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
3093
+ "paypal-standard-paid-memberships-pro/\">More information on why can be found "
3094
+ "here.</a>"
3095
+ msgstr ""
3096
+ "Me ei soovita kasutada PayPal Standard'it. Soovitame kasutada PayPal Express-"
3097
+ "i, Website Payments Pro (Legacy), või PayPal Pro (Payflow Pro). <a target="
3098
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
3099
+ "paypal-standard-paid-memberships-pro/\">Rohkem infot miks, saate siit.</a>"
3100
+
3101
+ #: classes/gateways/class.pmprogateway_paypal.php:123
3102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3103
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3104
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3105
+ #: adminpages/paymentsettings.php:236
3106
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3107
+ msgid "Gateway Account Email"
3108
+ msgstr "Makse meetodi konto email"
3109
+
3110
+ #: classes/gateways/class.pmprogateway_paypal.php:131
3111
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3112
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3113
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3114
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3115
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3116
+ #: adminpages/paymentsettings.php:336
3117
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3118
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
3119
+ msgid "API Username"
3120
+ msgstr "API Kasutajanimi"
3121
+
3122
+ #: classes/gateways/class.pmprogateway_paypal.php:139
3123
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3124
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3125
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3126
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3127
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3128
+ #: adminpages/paymentsettings.php:344
3129
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3130
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3131
+ msgid "API Password"
3132
+ msgstr "API Parool"
3133
+
3134
+ #: classes/gateways/class.pmprogateway_paypal.php:147
3135
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3136
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3137
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3138
+ #: adminpages/paymentsettings.php:260
3139
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3140
+ msgid "API Signature"
3141
+ msgstr "API Allkiri"
3142
+
3143
+ #: classes/gateways/class.pmprogateway_paypal.php:155
3144
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3145
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3146
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3147
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3148
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3149
+ msgid "IPN Handler URL"
3150
+ msgstr "IPN Handler URL"
3151
+
3152
+ #: classes/gateways/class.pmprogateway_paypal.php:158
3153
+ msgid ""
3154
+ "This URL is passed to PayPal for all new charges and subscriptions. You "
3155
+ "SHOULD NOT set this in your PayPal account settings."
3156
+ msgstr ""
3157
+ "See URL edastati PayPal'ile kõikide uute hindade ja tellimuste jaoks. Te EI "
3158
+ "TOHIKS sisestada seda PayPal konto seadetesse."
3159
+
3160
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3161
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3162
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3163
+ #: pages/checkout.php:300
3164
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3165
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3166
+ #: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:675
3167
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3168
+ msgid "Check Out with PayPal"
3169
+ msgstr "Välju PayPal-iga"
3170
+
3171
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3172
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3173
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3174
+ #: pages/checkout.php:722
3175
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3176
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3177
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3178
+ msgid "Submit and Check Out"
3179
+ msgstr "Esitada ja välju"
3180
+
3181
+ #: classes/gateways/class.pmprogateway_paypal.php:184
3182
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3183
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3184
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3185
+ #: pages/checkout.php:722
3186
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3187
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3188
+ #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3189
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3190
+ msgid "Submit and Confirm"
3191
+ msgstr "Esita ja kinnita"
3192
+
3193
+ #: classes/gateways/class.pmprogateway_paypal.php:605
3194
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3195
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3196
+ #: classes/gateways/class.pmprogateway_paypal.php:385
3197
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3198
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3199
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3200
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3201
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3202
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3203
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3204
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3205
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
3206
+ msgid ""
3207
+ "Please contact the site owner or cancel your subscription from within PayPal "
3208
+ "to make sure you are not charged going forward."
3209
+ msgstr ""
3210
+ "Palun võtke ühendust saidi omanikuga või tühistage tellimus PayPal-is et "
3211
+ "veenduda, teid ei maksustata edasi minnes."
3212
+
3213
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3214
+ #: paid-memberships-pro.php:127
3215
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3216
+ #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3217
+ #: paid-memberships-pro.php:126
3218
+ msgid "PayPal Express"
3219
+ msgstr "PayPal Express"
3220
+
3221
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3222
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3223
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3224
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3225
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3226
+ msgstr ""
3227
+ "Täielikuks integratsiooniks PayPal-iga, tehke kindlaks, et seate oma IPN "
3228
+ "Handler URL-i "
3229
+
3230
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3231
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3233
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3234
+ #: preheaders/checkout.php:690 preheaders/checkout.php:697
3235
+ #: preheaders/checkout.php:702 preheaders/checkout.php:735
3236
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753
3237
+ #: preheaders/checkout.php:754 preheaders/checkout.php:757
3238
+ #: preheaders/checkout.php:762 preheaders/checkout.php:803
3239
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
3240
+ msgid "The PayPal Token was lost."
3241
+ msgstr "PayPal'i Token läks kaduma."
3242
+
3243
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3244
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:121
3245
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:129
3246
+ msgid "PayPal Standard"
3247
+ msgstr "PayPal Standard"
3248
+
3249
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
3250
+ msgid ""
3251
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
3252
+ "settings."
3253
+ msgstr ""
3254
+ "Siin on sinu IPN URL viiteks. Te EI TOHIKS seda lisada oma PayPal seadetesse."
3255
+
3256
+ #: classes/gateways/class.pmprogateway_stripe.php:104
3257
+ #: paid-memberships-pro.php:126
3258
+ #: classes/gateways/class.pmprogateway_stripe.php:93
3259
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3260
+ #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3261
+ #: paid-memberships-pro.php:125
3262
+ msgid "Stripe"
3263
+ msgstr "Stripe"
3264
+
3265
+ #: classes/gateways/class.pmprogateway_stripe.php:159
3266
+ #: classes/gateways/class.pmprogateway_stripe.php:148
3267
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3268
+ msgid "Stripe Settings"
3269
+ msgstr "Stripe seaded"
3270
+
3271
+ #: classes/gateways/class.pmprogateway_stripe.php:164
3272
+ #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3273
+ #: adminpages/paymentsettings.php:286
3274
+ #: classes/gateways/class.pmprogateway_stripe.php:153
3275
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3276
+ msgid "Secret Key"
3277
+ msgstr "Sala võti"
3278
+
3279
+ #: classes/gateways/class.pmprogateway_stripe.php:172
3280
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3281
+ #: adminpages/paymentsettings.php:294
3282
+ #: classes/gateways/class.pmprogateway_stripe.php:161
3283
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3284
+ msgid "Publishable Key"
3285
+ msgstr "Avalikustatav võti"
3286
+
3287
+ #: classes/gateways/class.pmprogateway_stripe.php:180
3288
+ #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3289
+ #: adminpages/paymentsettings.php:432
3290
+ #: classes/gateways/class.pmprogateway_stripe.php:169
3291
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3292
+ msgid "Show Billing Address Fields"
3293
+ msgstr "Näita arve aadressi välju"
3294
+
3295
+ #: classes/gateways/class.pmprogateway_stripe.php:187
3296
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3297
+ #: classes/gateways/class.pmprogateway_stripe.php:176
3298
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3299
+ msgid ""
3300
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3301
+ "the checkout page.<br /><strong>If No, make sure you disable address "
3302
+ "verification in the Stripe dashboard settings.</strong>"
3303
+ msgstr ""
3304
+ "Stripe ei vaja arve aadressi välju. Valige 'Ei' , et peita neid oma "
3305
+ "väljumise lehel.<br /><strong>Kui EI tehke kindlaks, et olete välja "
3306
+ "lülitanud aadressi kinnituse Stripe \"köögi\" seadetest.</strong>"
3307
+
3308
+ #: classes/gateways/class.pmprogateway_stripe.php:195
3309
+ #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3310
+ #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3311
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3312
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3313
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3314
+ msgstr ""
3315
+ "Täielikuks integratsiooniks Stripe-iga, tehke kindlaks, et seate oma Web "
3316
+ "Hook URL -i "
3317
+
3318
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3319
+ #: classes/gateways/class.pmprogateway_stripe.php:567
3320
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3321
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3322
+ msgid "Subscription Updates"
3323
+ msgstr "Tellimuse uuendused"
3324
+
3325
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3326
+ #: classes/gateways/class.pmprogateway_stripe.php:571
3327
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3328
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3329
+ msgid ""
3330
+ "Subscription updates, allow you to change the member's subscription values "
3331
+ "at predefined times. Be sure to click Update Profile after making changes."
3332
+ msgstr ""
3333
+ "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud "
3334
+ "ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
3335
+
3336
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3337
+ #: classes/gateways/class.pmprogateway_stripe.php:573
3338
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3339
+ #: classes/gateways/class.pmprogateway_stripe.php:584
3340
+ msgid ""
3341
+ "Subscription updates, allow you to change the member's subscription values "
3342
+ "at predefined times. Be sure to click Update User after making changes."
3343
+ msgstr ""
3344
+ "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud "
3345
+ "ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
3346
+
3347
+ #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:341
3348
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3349
+ #: classes/gateways/class.pmprogateway_stripe.php:579
3350
+ #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:294
3351
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3352
+ msgid "Update"
3353
+ msgstr "Uuendage"
3354
+
3355
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3356
+ #: classes/gateways/class.pmprogateway_stripe.php:769
3357
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3358
+ #: classes/gateways/class.pmprogateway_stripe.php:780
3359
+ msgid "Could not cancel the old subscription. Updates have not been processed."
3360
+ msgstr "Ei saanud vana tellimust tühistada. Värskendusi pole töödeldud."
3361
+
3362
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3363
+ #: classes/gateways/class.pmprogateway_stripe.php:190
3364
+ #: classes/gateways/class.pmprogateway_stripe.php:192
3365
+ #: classes/gateways/class.pmprogateway_stripe.php:199
3366
+ #: classes/gateways/class.pmprogateway_stripe.php:201
3367
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
3368
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
3369
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
3370
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
3371
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3372
+ #: classes/gateways/class.pmprogateway_stripe.php:1214
3373
+ msgid "Error creating customer record with Stripe:"
3374
+ msgstr "Ei õnnestu luua kliendikirjet Stripe-iga:"
3375
+
3376
+ #: classes/gateways/class.pmprogateway_stripe.php:1275
3377
+ msgid "Error getting subscription with Stripe:"
3378
+ msgstr "Viga tellimuse saamisel Stripe-iga:"
3379
+
3380
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3381
+ #: classes/gateways/class.pmprogateway_stripe.php:278
3382
+ #: classes/gateways/class.pmprogateway_stripe.php:279
3383
+ #: classes/gateways/class.pmprogateway_stripe.php:286
3384
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3385
+ #: classes/gateways/class.pmprogateway_stripe.php:308
3386
+ #: classes/gateways/class.pmprogateway_stripe.php:311
3387
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
3388
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
3389
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
3390
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
3391
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3392
+ #: classes/gateways/class.pmprogateway_stripe.php:1271
3393
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
3394
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
3395
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
3396
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
3397
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3398
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3399
+ msgid "Error creating plan with Stripe:"
3400
+ msgstr "Ei õnnestu luua plaani Stripe-iga:"
3401
+
3402
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3403
+ #: classes/gateways/class.pmprogateway_stripe.php:294
3404
+ #: classes/gateways/class.pmprogateway_stripe.php:295
3405
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3406
+ #: classes/gateways/class.pmprogateway_stripe.php:318
3407
+ #: classes/gateways/class.pmprogateway_stripe.php:324
3408
+ #: classes/gateways/class.pmprogateway_stripe.php:330
3409
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3410
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3411
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3412
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
3413
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
3414
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3415
+ #: classes/gateways/class.pmprogateway_stripe.php:1452
3416
+ msgid "Error subscribing customer to plan with Stripe:"
3417
+ msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:"
3418
+
3419
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3420
+ #: classes/gateways/class.pmprogateway_stripe.php:383
3421
+ #: classes/gateways/class.pmprogateway_stripe.php:389
3422
+ #: classes/gateways/class.pmprogateway_stripe.php:410
3423
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
3424
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
3425
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
3426
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
3427
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
3428
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3429
+ #: classes/gateways/class.pmprogateway_stripe.php:1548
3430
+ msgid "Could not cancel old subscription."
3431
+ msgstr "Ei saanud tühistada vana tellimust."
3432
+
3433
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3434
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
3435
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
3436
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
3437
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
3438
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
3439
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3440
+ #: classes/gateways/class.pmprogateway_stripe.php:1565
3441
+ msgid "Could not find the customer."
3442
+ msgstr "Ei suutnud leida klienti."
3443
+
3444
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3445
+ #: paid-memberships-pro.php:133
3446
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53
3447
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3448
+ #: paid-memberships-pro.php:132
3449
+ msgid "2Checkout"
3450
+ msgstr "2Checkout"
3451
+
3452
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3453
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
3454
+ msgid "2Checkout Settings"
3455
+ msgstr "2Checkout seaded"
3456
+
3457
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3458
+ msgid ""
3459
+ "Go to Account &raquo; User Management in 2Checkout and create a user with "
3460
+ "API Access and API Updating."
3461
+ msgstr ""
3462
+ "Minge kontole &raquo; kasutaja haldamine 2Checkout-is ja looge kasutaja API "
3463
+ "Access-i ja API uuendamisega."
3464
+
3465
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3466
+ msgid "Password for the API user created."
3467
+ msgstr "Parool API kasutajale loodud."
3468
+
3469
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
3470
+ msgid "API Private Key"
3471
+ msgstr "API Privaat võti"
3472
+
3473
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
3474
+ msgid ""
3475
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3476
+ "here."
3477
+ msgstr ""
3478
+ "Minge API-sse 2Checkout-is ja genereerige uus võtme paar. Kleepige "
3479
+ "privaatne võti siia."
3480
+
3481
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3482
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3483
+ msgstr "Klikkige profiili ikoonile 2Checkout-is, et leida oma konto number."
3484
+
3485
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3486
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3487
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3488
+ msgid "Secret Word"
3489
+ msgstr "Salasõna"
3490
+
3491
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3492
+ msgid ""
3493
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3494
+ "the Secret Word."
3495
+ msgstr ""
3496
+ "Minge kontole &raquo; lehe haldamine. Vaata Checkout valikuid, et leida "
3497
+ "salasõna."
3498
+
3499
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3500
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3501
+ #: adminpages/paymentsettings.php:495
3502
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3503
+ msgid "TwoCheckout INS URL"
3504
+ msgstr "TwoCheckout INS URL"
3505
+
3506
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3507
+ msgid ""
3508
+ "To fully integrate with 2Checkout, be sure to use the following for your INS "
3509
+ "URL and Approved URL"
3510
+ msgstr ""
3511
+ "Et täielikult integreerida 2Checkout-iga, ole kindel, et kasutad järgnevat "
3512
+ "oma INS-i URL-i ja Kinnitatud URL-i"
3513
+
3514
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3515
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3516
+ msgid "Check Out with 2Checkout"
3517
+ msgstr "Välju 2Checkout-iga"
3518
+
3519
+ #: includes/adminpages.php:47 includes/adminpages.php:9
3520
+ #: includes/adminpages.php:39 includes/adminpages.php:93
3521
+ #: includes/adminpages.php:100
3522
+ msgid "Memberships"
3523
+ msgstr "Liikmete tasemed"
3524
+
3525
+ #: includes/adminpages.php:48 includes/adminpages.php:118
3526
+ #: includes/adminpages.php:10 includes/adminpages.php:49
3527
+ #: includes/adminpages.php:107 includes/adminpages.php:114
3528
+ msgid "Page Settings"
3529
+ msgstr "Lehe sätted"
3530
+
3531
+ #: includes/adminpages.php:49 includes/adminpages.php:125
3532
+ #: includes/adminpages.php:11 includes/adminpages.php:54
3533
+ #: includes/adminpages.php:114 includes/adminpages.php:121
3534
+ msgid "Payment Settings"
3535
+ msgstr "Makse sätted"
3536
+
3537
+ #: includes/adminpages.php:54 includes/adminpages.php:160
3538
+ #: includes/adminpages.php:16 includes/adminpages.php:79
3539
+ #: includes/adminpages.php:149 includes/adminpages.php:156
3540
+ msgid "Reports"
3541
+ msgstr "Raportid"
3542
+
3543
+ #: includes/adminpages.php:56 includes/adminpages.php:174
3544
+ #: includes/adminpages.php:18 includes/adminpages.php:89
3545
+ #: includes/adminpages.php:163 includes/adminpages.php:170
3546
+ msgid "Discount Codes"
3547
+ msgstr "allahindluse koodid"
3548
+
3549
+ #: includes/adminpages.php:104 includes/adminpages.php:100
3550
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3551
+ msgstr "<span class=\"ab-icon\"></span>Liikmed"
3552
+
3553
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3554
+ msgid "Docs"
3555
+ msgstr "Dokumendid"
3556
+
3557
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3558
+ msgid "View PMPro Documentation"
3559
+ msgstr "Vaata PMPro Dokumentatsiooni"
3560
+
3561
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3562
+ msgid "Support"
3563
+ msgstr "Tugi/Abi"
3564
+
3565
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3566
+ msgid "Visit Customer Support Forum"
3567
+ msgstr "Külasta kliendi toetus foorumit"
3568
+
3569
+ #: includes/currencies.php:17 includes/currencies.php:85
3570
+ #: includes/currencies.php:7 includes/currencies.php:37
3571
+ #: includes/currencies.php:44 includes/currencies.php:64
3572
+ #: includes/currencies.php:68 includes/currencies.php:75
3573
+ msgid "US Dollars (&#36;)"
3574
+ msgstr "USA dollar (&#36;)"
3575
+
3576
+ #: includes/currencies.php:19 includes/currencies.php:88
3577
+ #: includes/currencies.php:8 includes/currencies.php:9
3578
+ #: includes/currencies.php:40 includes/currencies.php:47
3579
+ #: includes/currencies.php:67 includes/currencies.php:71
3580
+ #: includes/currencies.php:78
3581
+ msgid "Euros (&euro;)"
3582
+ msgstr "Euro (&euro;)"
3583
+
3584
+ #: includes/currencies.php:24 includes/currencies.php:87
3585
+ #: includes/currencies.php:9 includes/currencies.php:14
3586
+ #: includes/currencies.php:39 includes/currencies.php:46
3587
+ #: includes/currencies.php:66 includes/currencies.php:70
3588
+ #: includes/currencies.php:77
3589
+ msgid "Pounds Sterling (&pound;)"
3590
+ msgstr "Suurbritannia naelsterling(&pound;)"
3591
+
3592
+ #: includes/currencies.php:28 includes/currencies.php:10
3593
+ #: includes/currencies.php:18
3594
+ msgid "Australian Dollars (&#36;)"
3595
+ msgstr "Austraalia dollar (&#36;)"
3596
+
3597
+ #: includes/currencies.php:30 includes/currencies.php:20
3598
+ msgid "Brazilian Real (R&#36;)"
3599
+ msgstr "Brasiilia reaal (R&#36;)"
3600
+
3601
+ #: includes/currencies.php:34 includes/currencies.php:86
3602
+ #: includes/currencies.php:12 includes/currencies.php:24
3603
+ #: includes/currencies.php:38 includes/currencies.php:45
3604
+ #: includes/currencies.php:65 includes/currencies.php:69
3605
+ #: includes/currencies.php:76
3606
+ msgid "Canadian Dollars (&#36;)"
3607
+ msgstr "Kanada dollar (&#36;)"
3608
+
3609
+ #: includes/currencies.php:35 includes/currencies.php:13
3610
+ #: includes/currencies.php:25
3611
+ msgid "Chinese Yuan"
3612
+ msgstr "Hiina jüaan"
3613
+
3614
+ #: includes/currencies.php:37 includes/currencies.php:13
3615
+ #: includes/currencies.php:14 includes/currencies.php:26
3616
+ #: includes/currencies.php:27
3617
+ msgid "Czech Koruna"
3618
+ msgstr "Tšehhi kroon"
3619
+
3620
+ #: includes/currencies.php:44 includes/currencies.php:14
3621
+ #: includes/currencies.php:15 includes/currencies.php:27
3622
+ #: includes/currencies.php:34
3623
+ msgid "Danish Krone"
3624
+ msgstr "Austraalia dollar"
3625
+
3626
+ #: includes/currencies.php:45 includes/currencies.php:15
3627
+ #: includes/currencies.php:16 includes/currencies.php:28
3628
+ #: includes/currencies.php:35
3629
+ msgid "Hong Kong Dollar (&#36;)"
3630
+ msgstr "Hongkongi dollar (&#36;)"
3631
+
3632
+ #: includes/currencies.php:46 includes/currencies.php:16
3633
+ #: includes/currencies.php:17 includes/currencies.php:29
3634
+ #: includes/currencies.php:36
3635
+ msgid "Hungarian Forint"
3636
+ msgstr "Ungari forint"
3637
+
3638
+ #: includes/currencies.php:47 includes/currencies.php:18
3639
+ #: includes/currencies.php:30 includes/currencies.php:37
3640
+ msgid "Indian Rupee"
3641
+ msgstr "India ruupia"
3642
+
3643
+ #: includes/currencies.php:48 includes/currencies.php:19
3644
+ #: includes/currencies.php:31 includes/currencies.php:38
3645
+ msgid "Indonesia Rupiah"
3646
+ msgstr "Indoneesia ruupia"
3647
+
3648
+ #: includes/currencies.php:49 includes/currencies.php:17
3649
+ #: includes/currencies.php:20 includes/currencies.php:32
3650
+ #: includes/currencies.php:39
3651
+ msgid "Israeli Shekel"
3652
+ msgstr "Iisraeli seekel"
3653
+
3654
+ #: includes/currencies.php:51 includes/currencies.php:18
3655
+ #: includes/currencies.php:21 includes/currencies.php:34
3656
+ #: includes/currencies.php:41
3657
+ msgid "Japanese Yen (&yen;)"
3658
+ msgstr "Jaapani jeen (&yen;)"
3659
+
3660
+ #: includes/currencies.php:55 includes/currencies.php:19
3661
+ #: includes/currencies.php:22 includes/currencies.php:38
3662
+ #: includes/currencies.php:45
3663
+ msgid "Malaysian Ringgits"
3664
+ msgstr "Malaisia ringgit"
3665
+
3666
+ #: includes/currencies.php:56 includes/currencies.php:20
3667
+ #: includes/currencies.php:23 includes/currencies.php:39
3668
+ #: includes/currencies.php:46
3669
+ msgid "Mexican Peso (&#36;)"
3670
+ msgstr "Mehhiko peeso (&#36;)"
3671
+
3672
+ #: includes/currencies.php:57 includes/currencies.php:21
3673
+ #: includes/currencies.php:24 includes/currencies.php:40
3674
+ #: includes/currencies.php:47
3675
+ msgid "New Zealand Dollar (&#36;)"
3676
+ msgstr "Uus-Meremaa dollar (&#36;)"
3677
+
3678
+ #: includes/currencies.php:58 includes/currencies.php:22
3679
+ #: includes/currencies.php:25 includes/currencies.php:41
3680
+ #: includes/currencies.php:48
3681
+ msgid "Norwegian Krone"
3682
+ msgstr "Norra kroon"
3683
+
3684
+ #: includes/currencies.php:59 includes/currencies.php:23
3685
+ #: includes/currencies.php:26 includes/currencies.php:42
3686
+ #: includes/currencies.php:49
3687
+ msgid "Philippine Pesos"
3688
+ msgstr "Filipiini peeso"
3689
+
3690
+ #: includes/currencies.php:60 includes/currencies.php:24
3691
+ #: includes/currencies.php:27 includes/currencies.php:43
3692
+ #: includes/currencies.php:50
3693
+ msgid "Polish Zloty"
3694
+ msgstr "Poola zlott"
3695
+
3696
+ #: includes/currencies.php:62 includes/currencies.php:25
3697
+ #: includes/currencies.php:28 includes/currencies.php:45
3698
+ #: includes/currencies.php:52
3699
+ msgid "Singapore Dollar (&#36;)"
3700
+ msgstr "Singapuri dollar (&#36;)"
3701
+
3702
+ #: includes/currencies.php:67 includes/currencies.php:50
3703
+ #: includes/currencies.php:57
3704
+ msgid "South African Rand (R)"
3705
+ msgstr "Lõuna-Aafrika rand (R)"
3706
+
3707
+ #: includes/currencies.php:71 includes/currencies.php:30
3708
+ #: includes/currencies.php:50 includes/currencies.php:54
3709
+ #: includes/currencies.php:61
3710
+ msgid "South Korean Won"
3711
+ msgstr "Lõuna Korea vonn"
3712
+
3713
+ #: includes/currencies.php:72 includes/currencies.php:26
3714
+ #: includes/currencies.php:31 includes/currencies.php:51
3715
+ #: includes/currencies.php:55 includes/currencies.php:62
3716
+ msgid "Swedish Krona"
3717
+ msgstr "Rootsi kroon"
3718
+
3719
+ #: includes/currencies.php:73 includes/currencies.php:27
3720
+ #: includes/currencies.php:32 includes/currencies.php:52
3721
+ #: includes/currencies.php:56 includes/currencies.php:63
3722
+ msgid "Swiss Franc"
3723
+ msgstr "Šveitsi frank"
3724
+
3725
+ #: includes/currencies.php:74 includes/currencies.php:28
3726
+ #: includes/currencies.php:33 includes/currencies.php:53
3727
+ #: includes/currencies.php:57 includes/currencies.php:64
3728
+ msgid "Taiwan New Dollars"
3729
+ msgstr "Taiwani uus dollarit"
3730
+
3731
+ #: includes/currencies.php:75 includes/currencies.php:29
3732
+ #: includes/currencies.php:34 includes/currencies.php:54
3733
+ #: includes/currencies.php:58 includes/currencies.php:65
3734
+ msgid "Thai Baht"
3735
+ msgstr "Tai baat"
3736
+
3737
+ #: includes/currencies.php:76 includes/currencies.php:35
3738
+ #: includes/currencies.php:55 includes/currencies.php:59
3739
+ #: includes/currencies.php:66
3740
+ msgid "Turkish Lira"
3741
+ msgstr "Türgi liir"
3742
+
3743
+ #: includes/currencies.php:77 includes/currencies.php:36
3744
+ #: includes/currencies.php:56 includes/currencies.php:60
3745
+ #: includes/currencies.php:67
3746
+ msgid "Vietnamese Dong"
3747
+ msgstr "Vietnami dong"
3748
+
3749
+ #: includes/functions.php:243 includes/functions.php:160
3750
+ #: includes/functions.php:196 includes/functions.php:200
3751
+ #: includes/functions.php:202 includes/functions.php:203
3752
+ #: includes/functions.php:204 includes/functions.php:207
3753
+ #, php-format
3754
+ msgid "The price for membership is <strong>%s</strong> now"
3755
+ msgstr "Liikme taseme hind on nüüd<strong>%s</strong>"
3756
+
3757
+ #: includes/functions.php:245 includes/functions.php:202
3758
+ #: includes/functions.php:204 includes/functions.php:205
3759
+ #: includes/functions.php:206 includes/functions.php:209
3760
+ #, php-format
3761
+ msgid "<strong>%s</strong> now"
3762
+ msgstr "<strong>%s</strong> nüüd"
3763
+
3764
+ #: includes/functions.php:254 includes/functions.php:169
3765
+ #: includes/functions.php:205 includes/functions.php:211
3766
+ #: includes/functions.php:213 includes/functions.php:214
3767
+ #: includes/functions.php:215 includes/functions.php:218
3768
+ #, php-format
3769
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
3770
+ msgstr " ja siis <strong>%s -ks %s -ks %d lisaks %s</strong>."
3771
+
3772
+ #: includes/functions.php:258
3773
+ #, php-format
3774
+ msgid " and then <strong>%s every %d %s for %d more payments</strong>."
3775
+ msgstr "ja siis <strong>%s iga %d %s : %d rohkem makseid</strong>."
3776
+
3777
+ #: includes/functions.php:263 includes/functions.php:178
3778
+ #: includes/functions.php:214 includes/functions.php:220
3779
+ #: includes/functions.php:222 includes/functions.php:223
3780
+ #: includes/functions.php:224 includes/functions.php:227
3781
+ #, php-format
3782
+ msgid " and then <strong>%s after %d %s</strong>."
3783
+ msgstr "ja siis <strong>%s pärast %d %s</strong>."
3784
+
3785
+ #: includes/functions.php:271 includes/functions.php:228
3786
+ #: includes/functions.php:229 includes/functions.php:230
3787
+ #: includes/functions.php:231 includes/functions.php:235
3788
+ #, php-format
3789
+ msgid "The price for membership is <strong>%s per %s</strong>."
3790
+ msgstr "Hind liikme tasemele on <strong>%s : %s</strong>."
3791
+
3792
+ #: includes/functions.php:273 includes/functions.php:230
3793
+ #: includes/functions.php:233 includes/functions.php:237
3794
+ #, php-format
3795
+ msgid "<strong>%s per %s</strong>."
3796
+ msgstr "<strong>%s : %s</strong>."
3797
+
3798
+ #: includes/functions.php:278 includes/functions.php:233
3799
+ #: includes/functions.php:234 includes/functions.php:235
3800
+ #: includes/functions.php:238 includes/functions.php:242
3801
+ #, php-format
3802
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
3803
+ msgstr "Hind liikme tasemele on <strong>%s iga %d %s</strong>."
3804
+
3805
+ #: includes/functions.php:280 includes/functions.php:237
3806
+ #: includes/functions.php:240 includes/functions.php:244
3807
+ #, php-format
3808
+ msgid "<strong>%s every %d %s</strong>."
3809
+ msgstr "<strong %s iga %d : %s</strong>."
3810
+
3811
+ #: includes/functions.php:285 includes/functions.php:184
3812
+ #: includes/functions.php:220 includes/functions.php:228
3813
+ #: includes/functions.php:238 includes/functions.php:239
3814
+ #: includes/functions.php:240 includes/functions.php:242
3815
+ #: includes/functions.php:245 includes/functions.php:249
3816
+ #, php-format
3817
+ msgid " and then <strong>%s per %s</strong>."
3818
+ msgstr "ja siis <strong>%s %s-s</strong>."
3819
+
3820
+ #: includes/functions.php:289 includes/functions.php:188
3821
+ #: includes/functions.php:224 includes/functions.php:232
3822
+ #: includes/functions.php:242 includes/functions.php:243
3823
+ #: includes/functions.php:244 includes/functions.php:246
3824
+ #: includes/functions.php:249 includes/functions.php:253
3825
+ #, php-format
3826
+ msgid " and then <strong>%s every %d %s</strong>."
3827
+ msgstr "ja siis <strong>%s iga %d %s</strong>."
3828
+
3829
+ #: includes/functions.php:307 includes/functions.php:202
3830
+ #: includes/functions.php:238 includes/functions.php:249
3831
+ #: includes/functions.php:260 includes/functions.php:261
3832
+ #: includes/functions.php:262 includes/functions.php:264
3833
+ #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
3834
+ msgid "After your initial payment, your first payment is Free."
3835
+ msgstr "Pärast oma esimest ettemakset, teie esimene makse on tasuta."
3836
+
3837
+ #: includes/functions.php:311 includes/functions.php:206
3838
+ #: includes/functions.php:242 includes/functions.php:253
3839
+ #: includes/functions.php:264 includes/functions.php:265
3840
+ #: includes/functions.php:266 includes/functions.php:268
3841
+ #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
3842
+ #, php-format
3843
+ msgid "After your initial payment, your first %d payments are Free."
3844
+ msgstr "Pärast oma esimese ettemakset teie esimene %d maksed on tasuta."
3845
+
3846
+ #: includes/functions.php:318 includes/functions.php:213
3847
+ #: includes/functions.php:249 includes/functions.php:260
3848
+ #: includes/functions.php:271 includes/functions.php:272
3849
+ #: includes/functions.php:273 includes/functions.php:275
3850
+ #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
3851
+ #, php-format
3852
+ msgid "After your initial payment, your first payment will cost %s."
3853
+ msgstr "Pärast oma esimest ettemakset teie esimene makse on %s."
3854
+
3855
+ #: includes/functions.php:322 includes/functions.php:217
3856
+ #: includes/functions.php:253 includes/functions.php:264
3857
+ #: includes/functions.php:275 includes/functions.php:276
3858
+ #: includes/functions.php:277 includes/functions.php:279
3859
+ #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
3860
+ #, php-format
3861
+ msgid "After your initial payment, your first %d payments will cost %s."
3862
+ msgstr "Pärast oma esimest ettemakset teie esimene %d makse on %s."
3863
+
3864
+ #: includes/functions.php:333 includes/functions.php:228
3865
+ #: includes/functions.php:264 includes/functions.php:275
3866
+ #: includes/functions.php:286 includes/functions.php:287
3867
+ #: includes/functions.php:288 includes/functions.php:290
3868
+ #: includes/functions.php:293 includes/functions.php:297
3869
+ #, php-format
3870
+ msgid "Customers in %s will be charged %s%% tax."
3871
+ msgstr " %s kliente maksustatakse %s%% maksega."
3872
+
3873
+ #: includes/functions.php:347 includes/functions.php:242
3874
+ #: includes/functions.php:278 includes/functions.php:289
3875
+ #: includes/functions.php:300 includes/functions.php:301
3876
+ #: includes/functions.php:302 includes/functions.php:304
3877
+ #: includes/functions.php:307 includes/functions.php:311
3878
+ #, php-format
3879
+ msgid "Membership expires after %d %s."
3880
+ msgstr "Liikme tase aegub peale %d %s."
3881
+
3882
+ #: includes/functions.php:694 includes/functions.php:491
3883
+ #: includes/functions.php:514 includes/functions.php:525
3884
+ #: includes/functions.php:536 includes/functions.php:537
3885
+ #: includes/functions.php:538 includes/functions.php:545
3886
+ #: includes/functions.php:569 includes/functions.php:570
3887
+ #: includes/functions.php:576 includes/functions.php:592
3888
+ #: includes/functions.php:615
3889
+ msgid "User ID not found."
3890
+ msgstr "Kasutaja ID-d ei leitud"
3891
+
3892
+ #: includes/functions.php:714 includes/functions.php:508
3893
+ #: includes/functions.php:531 includes/functions.php:542
3894
+ #: includes/functions.php:553 includes/functions.php:554
3895
+ #: includes/functions.php:555 includes/functions.php:562
3896
+ #: includes/functions.php:586 includes/functions.php:587
3897
+ #: includes/functions.php:589 includes/functions.php:596
3898
+ #: includes/functions.php:612 includes/functions.php:635
3899
+ msgid "Invalid level."
3900
+ msgstr "Sobimatu tase."
3901
+
3902
+ #: includes/functions.php:725 includes/functions.php:520
3903
+ #: includes/functions.php:542 includes/functions.php:553
3904
+ #: includes/functions.php:564 includes/functions.php:565
3905
+ #: includes/functions.php:566 includes/functions.php:573
3906
+ #: includes/functions.php:597 includes/functions.php:598
3907
+ #: includes/functions.php:600 includes/functions.php:607
3908
+ #: includes/functions.php:623 includes/functions.php:646
3909
+ msgid "not changing?"
3910
+ msgstr "ei muutu?"
3911
+
3912
+ #: includes/functions.php:742 includes/functions.php:815
3913
+ #: includes/functions.php:839 includes/functions.php:537
3914
+ #: includes/functions.php:559 includes/functions.php:570
3915
+ #: includes/functions.php:581 includes/functions.php:582
3916
+ #: includes/functions.php:583 includes/functions.php:590
3917
+ #: includes/functions.php:592 includes/functions.php:605
3918
+ #: includes/functions.php:614 includes/functions.php:615
3919
+ #: includes/functions.php:617 includes/functions.php:624
3920
+ #: includes/functions.php:626 includes/functions.php:628
3921
+ #: includes/functions.php:631 includes/functions.php:632
3922
+ #: includes/functions.php:633 includes/functions.php:637
3923
+ #: includes/functions.php:640 includes/functions.php:649
3924
+ #: includes/functions.php:656 includes/functions.php:657
3925
+ #: includes/functions.php:663 includes/functions.php:673
3926
+ #: includes/functions.php:674 includes/functions.php:676
3927
+ #: includes/functions.php:683 includes/functions.php:697
3928
+ #: includes/functions.php:698 includes/functions.php:699
3929
+ #: includes/functions.php:700 includes/functions.php:707
3930
+ #: includes/functions.php:722 includes/functions.php:723
3931
+ #: includes/functions.php:746
3932
+ msgid "Error interacting with database"
3933
+ msgstr "Tekkis rike andmebaasiga suhtlemisel"
3934
+
3935
+ #: includes/functions.php:881 includes/functions.php:920
3936
+ #: includes/functions.php:629 includes/functions.php:651
3937
+ #: includes/functions.php:667 includes/functions.php:668
3938
+ #: includes/functions.php:678 includes/functions.php:681
3939
+ #: includes/functions.php:690 includes/functions.php:697
3940
+ #: includes/functions.php:698 includes/functions.php:706
3941
+ #: includes/functions.php:714 includes/functions.php:717
3942
+ #: includes/functions.php:720 includes/functions.php:736
3943
+ #: includes/functions.php:737 includes/functions.php:738
3944
+ #: includes/functions.php:739 includes/functions.php:741
3945
+ #: includes/functions.php:748 includes/functions.php:753
3946
+ #: includes/functions.php:764 includes/functions.php:777
3947
+ #: includes/functions.php:778 includes/functions.php:780
3948
+ #: includes/functions.php:787 includes/functions.php:803
3949
+ #: includes/functions.php:826
3950
+ msgid "Membership level not found."
3951
+ msgstr "Liikme taset ei leitud."
3952
+
3953
+ #: includes/functions.php:1290 includes/functions.php:1100
3954
+ #: includes/functions.php:1101 includes/functions.php:1118
3955
+ #: includes/functions.php:1142 includes/functions.php:1143
3956
+ #: includes/functions.php:1150 includes/functions.php:1157
3957
+ #: includes/functions.php:1173 includes/functions.php:1196
3958
+ msgid "No code was given to check."
3959
+ msgstr "Tšekile ei antud koodi"
3960
+
3961
+ #: includes/functions.php:1299 includes/functions.php:1050
3962
+ #: includes/functions.php:1072 includes/functions.php:1088
3963
+ #: includes/functions.php:1099 includes/functions.php:1102
3964
+ #: includes/functions.php:1109 includes/functions.php:1110
3965
+ #: includes/functions.php:1112 includes/functions.php:1113
3966
+ #: includes/functions.php:1127 includes/functions.php:1151
3967
+ #: includes/functions.php:1152 includes/functions.php:1159
3968
+ #: includes/functions.php:1166 includes/functions.php:1182
3969
+ #: includes/functions.php:1205
3970
+ msgid "The discount code could not be found."
3971
+ msgstr "Seda allahindluse koodi ei suudetud leida."
3972
+
3973
+ #: includes/functions.php:1314 includes/functions.php:1066
3974
+ #: includes/functions.php:1088 includes/functions.php:1104
3975
+ #: includes/functions.php:1115 includes/functions.php:1118
3976
+ #: includes/functions.php:1124 includes/functions.php:1125
3977
+ #: includes/functions.php:1128 includes/functions.php:1129
3978
+ #: includes/functions.php:1142 includes/functions.php:1166
3979
+ #: includes/functions.php:1167 includes/functions.php:1174
3980
+ #: includes/functions.php:1181 includes/functions.php:1197
3981
+ #: includes/functions.php:1220
3982
+ #, php-format
3983
+ msgid "This discount code goes into effect on %s."
3984
+ msgstr "See allahindluse kood võetakse kasutusse %s."
3985
+
3986
+ #: includes/functions.php:1321 includes/functions.php:1075
3987
+ #: includes/functions.php:1097 includes/functions.php:1113
3988
+ #: includes/functions.php:1124 includes/functions.php:1127
3989
+ #: includes/functions.php:1131 includes/functions.php:1132
3990
+ #: includes/functions.php:1137 includes/functions.php:1138
3991
+ #: includes/functions.php:1149 includes/functions.php:1173
3992
+ #: includes/functions.php:1174 includes/functions.php:1181
3993
+ #: includes/functions.php:1188 includes/functions.php:1204
3994
+ #: includes/functions.php:1227
3995
+ #, php-format
3996
+ msgid "This discount code expired on %s."
3997
+ msgstr "See allahindluse kood aegub %s."
3998
+
3999
+ #: includes/functions.php:1331 includes/functions.php:1087
4000
+ #: includes/functions.php:1109 includes/functions.php:1125
4001
+ #: includes/functions.php:1136 includes/functions.php:1139
4002
+ #: includes/functions.php:1141 includes/functions.php:1142
4003
+ #: includes/functions.php:1149 includes/functions.php:1150
4004
+ #: includes/functions.php:1159 includes/functions.php:1183
4005
+ #: includes/functions.php:1184 includes/functions.php:1191
4006
+ #: includes/functions.php:1198 includes/functions.php:1214
4007
+ #: includes/functions.php:1237
4008
+ msgid "This discount code is no longer valid."
4009
+ msgstr "See allahindluse kood ei ole enam aktiivne."
4010
+
4011
+ #: includes/functions.php:1344 includes/functions.php:1102
4012
+ #: includes/functions.php:1124 includes/functions.php:1140
4013
+ #: includes/functions.php:1151 includes/functions.php:1154
4014
+ #: includes/functions.php:1155 includes/functions.php:1164
4015
+ #: includes/functions.php:1165 includes/functions.php:1172
4016
+ #: includes/functions.php:1196 includes/functions.php:1197
4017
+ #: includes/functions.php:1204 includes/functions.php:1211
4018
+ #: includes/functions.php:1227 includes/functions.php:1250
4019
+ msgid "This discount code does not apply to this membership level."
4020
+ msgstr "See allahindluse kood ei kehti selle liikme tasemega."
4021
+
4022
+ #: includes/functions.php:1370 includes/functions.php:1110
4023
+ #: includes/functions.php:1132 includes/functions.php:1148
4024
+ #: includes/functions.php:1159 includes/functions.php:1162
4025
+ #: includes/functions.php:1172 includes/functions.php:1180
4026
+ #: includes/functions.php:1181 includes/functions.php:1182
4027
+ #: includes/functions.php:1198 includes/functions.php:1222
4028
+ #: includes/functions.php:1223 includes/functions.php:1230
4029
+ #: includes/functions.php:1237 includes/functions.php:1253
4030
+ #: includes/functions.php:1276
4031
+ msgid "This discount code is okay."
4032
+ msgstr "Allahindluse kood on korras."
4033
+
4034
+ #: includes/functions.php:1395 includes/functions.php:1134
4035
+ #: includes/functions.php:1156 includes/functions.php:1172
4036
+ #: includes/functions.php:1183 includes/functions.php:1186
4037
+ #: includes/functions.php:1196 includes/functions.php:1205
4038
+ #: includes/functions.php:1206 includes/functions.php:1223
4039
+ #: includes/functions.php:1247 includes/functions.php:1248
4040
+ #: includes/functions.php:1255 includes/functions.php:1262
4041
+ #: includes/functions.php:1278 includes/functions.php:1301
4042
+ msgid "and"
4043
+ msgstr "ja"
4044
+
4045
+ #: includes/functions.php:1620 includes/functions.php:1319
4046
+ #: includes/functions.php:1341 includes/functions.php:1361
4047
+ #: includes/functions.php:1372 includes/functions.php:1375
4048
+ #: includes/functions.php:1385 includes/functions.php:1394
4049
+ #: includes/functions.p