Version Description
- 2018-11-15 =
- BUG FIX: Fixed issue where Braintree would try to cancel a subscription twice if it was cancelled on the Braintree side.
- BUG FIX: Fixed bug in Braintree webhook when using certain versions of PHP.
- BUG FIX: Correct Braintree plans flagged as faulty.
- BUG FIX/ENHANCEMENT: Added Order Code to the Orders Export CSV
- BUG FIX/ENHANCEMENT: Removed another warning RE billing limits with the Stripe gateway. (Thanks, Jordan Kohl)
- ENHANCEMENT: Added the pmpro_include_pricing_fields filter.
- ENHANCEMENT: Adding IDs to action links in the account shortcode so users can target them with CSS/JS.
- ENHANCEMENT: Updated French Translation. (Thanks, Pascal)
- ENHANCEMENT: Retina logo on dashboard pages.
- ENHANCEMENT: Showing what PMPro page a page is in the Post List table of the WP dashboard.
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 1.9.5.6 |
Comparing to | |
See all releases |
Code changes from version 1.9.5.5 to 1.9.5.6
- CHANGELOG.txt +12 -0
- adminpages/functions.php +1 -34
- adminpages/orders-csv.php +2 -0
- classes/gateways/class.pmprogateway_braintree.php +44 -10
- languages/paid-memberships-pro-fr_FR.mo +0 -0
- languages/paid-memberships-pro-fr_FR.po +3381 -3419
- pages/checkout.php +57 -49
- paid-memberships-pro.php +2 -2
- readme.txt +13 -1
- services/braintree-webhook.php +228 -58
- shortcodes/pmpro_account.php +8 -8
CHANGELOG.txt
CHANGED
@@ -1,5 +1,17 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.9.5.5 - 2018-10-19 =
|
4 |
* BUG FIX: Fixed fatal error in the Braintree webhook that will have caused syncing issues for Braintree users.
|
5 |
* BUG FIX: Stopped sending the cancel subscription request to the PayPal API if we are processing the IPN request for the same subscription.
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.9.5.6 - 2018-11-15 =
|
4 |
+
* BUG FIX: Fixed issue where Braintree would try to cancel a subscription twice if it was cancelled on the Braintree side.
|
5 |
+
* BUG FIX: Fixed bug in Braintree webhook when using certain versions of PHP.
|
6 |
+
* BUG FIX: Correct Braintree plans flagged as faulty.
|
7 |
+
* BUG FIX/ENHANCEMENT: Added Order Code to the Orders Export CSV
|
8 |
+
* BUG FIX/ENHANCEMENT: Removed another warning RE billing limits with the Stripe gateway. (Thanks, Jordan Kohl)
|
9 |
+
* ENHANCEMENT: Added the pmpro_include_pricing_fields filter.
|
10 |
+
* ENHANCEMENT: Adding IDs to action links in the account shortcode so users can target them with CSS/JS.
|
11 |
+
* ENHANCEMENT: Updated French Translation. (Thanks, Pascal)
|
12 |
+
* ENHANCEMENT: Retina logo on dashboard pages.
|
13 |
+
* ENHANCEMENT: Showing what PMPro page a page is in the Post List table of the WP dashboard.
|
14 |
+
|
15 |
= 1.9.5.5 - 2018-10-19 =
|
16 |
* BUG FIX: Fixed fatal error in the Braintree webhook that will have caused syncing issues for Braintree users.
|
17 |
* BUG FIX: Stopped sending the cancel subscription request to the PayPal API if we are processing the IPN request for the same subscription.
|
adminpages/functions.php
CHANGED
@@ -22,43 +22,10 @@
|
|
22 |
Checks if PMPro settings are complete or if there are any errors.
|
23 |
|
24 |
Stripe currently does not support:
|
25 |
-
|
26 |
*/
|
27 |
function pmpro_checkLevelForStripeCompatibility($level = NULL)
|
28 |
{
|
29 |
-
$gateway = pmpro_getOption("gateway");
|
30 |
-
if($gateway == "stripe")
|
31 |
-
{
|
32 |
-
global $wpdb;
|
33 |
-
|
34 |
-
//check ALL the levels
|
35 |
-
if(empty($level))
|
36 |
-
{
|
37 |
-
$sqlQuery = "SELECT * FROM $wpdb->pmpro_membership_levels ORDER BY id ASC";
|
38 |
-
$levels = $wpdb->get_results($sqlQuery, OBJECT);
|
39 |
-
if(!empty($levels))
|
40 |
-
{
|
41 |
-
foreach($levels as $level)
|
42 |
-
{
|
43 |
-
if(!pmpro_checkLevelForStripeCompatibility($level))
|
44 |
-
return false;
|
45 |
-
}
|
46 |
-
}
|
47 |
-
}
|
48 |
-
else
|
49 |
-
{
|
50 |
-
//need to look it up?
|
51 |
-
if(is_numeric($level))
|
52 |
-
$level = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = %d LIMIT 1" , $level ) );
|
53 |
-
|
54 |
-
//check this level
|
55 |
-
if($level->billing_limit > 0)
|
56 |
-
{
|
57 |
-
return false;
|
58 |
-
}
|
59 |
-
}
|
60 |
-
}
|
61 |
-
|
62 |
return true;
|
63 |
}
|
64 |
|
22 |
Checks if PMPro settings are complete or if there are any errors.
|
23 |
|
24 |
Stripe currently does not support:
|
25 |
+
[No current incompatibilities]
|
26 |
*/
|
27 |
function pmpro_checkLevelForStripeCompatibility($level = NULL)
|
28 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
return true;
|
30 |
}
|
31 |
|
adminpages/orders-csv.php
CHANGED
@@ -241,6 +241,7 @@ $headers[] = "Content-Disposition: attachment; filename={$filename};";
|
|
241 |
|
242 |
$csv_file_header_array = array(
|
243 |
"id",
|
|
|
244 |
"user_id",
|
245 |
"user_login",
|
246 |
"first_name",
|
@@ -279,6 +280,7 @@ $csv_file_header_array = array(
|
|
279 |
//these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
|
280 |
$default_columns = array(
|
281 |
array( "order", "id" ),
|
|
|
282 |
array( "user", "ID" ),
|
283 |
array( "user", "user_login" ),
|
284 |
array( "user", "first_name" ),
|
241 |
|
242 |
$csv_file_header_array = array(
|
243 |
"id",
|
244 |
+
"code",
|
245 |
"user_id",
|
246 |
"user_login",
|
247 |
"first_name",
|
280 |
//these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
|
281 |
$default_columns = array(
|
282 |
array( "order", "id" ),
|
283 |
+
array( "order", "code" ),
|
284 |
array( "user", "ID" ),
|
285 |
array( "user", "user_login" ),
|
286 |
array( "user", "first_name" ),
|
classes/gateways/class.pmprogateway_braintree.php
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
2 |
//include pmprogateway
|
3 |
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
4 |
|
@@ -842,6 +845,13 @@
|
|
842 |
return false;
|
843 |
}
|
844 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
845 |
function subscribe(&$order)
|
846 |
{
|
847 |
if ( ! self::$is_loaded ) {
|
@@ -886,9 +896,12 @@
|
|
886 |
//filter the start date
|
887 |
$order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order);
|
888 |
|
|
|
|
|
|
|
889 |
//convert back to days
|
890 |
-
$trial_period_days = ceil(abs(
|
891 |
-
|
892 |
//now add the actual trial set by the site
|
893 |
if(!empty($order->TrialBillingCycles))
|
894 |
{
|
@@ -926,7 +939,7 @@
|
|
926 |
}
|
927 |
catch (Exception $e)
|
928 |
{
|
929 |
-
$order->error = __("Error subscribing customer to plan with Braintree:", 'paid-memberships-pro' )
|
930 |
//return error
|
931 |
$order->shorterror = $order->error;
|
932 |
return false;
|
@@ -941,7 +954,7 @@
|
|
941 |
}
|
942 |
else
|
943 |
{
|
944 |
-
$order->error = __("Failed to subscribe with Braintree:", 'paid-memberships-pro' )
|
945 |
$order->shorterror = $result->message;
|
946 |
return false;
|
947 |
}
|
@@ -967,13 +980,37 @@
|
|
967 |
}
|
968 |
}
|
969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
function cancel(&$order)
|
971 |
{
|
972 |
if ( ! self::$is_loaded ) {
|
973 |
$order->error = __("Payment error: Please contact the webmaster (braintree-load-error)", 'paid-memberships-pro');
|
974 |
return false;
|
975 |
}
|
976 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
//require a subscription id
|
978 |
if(empty($order->subscription_transaction_id))
|
979 |
return false;
|
@@ -988,21 +1025,18 @@
|
|
988 |
}
|
989 |
catch(Exception $e)
|
990 |
{
|
991 |
-
$order->
|
992 |
-
$order->error = __("Could not find the subscription.", 'paid-memberships-pro' ) . " " . $e->getMessage();
|
993 |
$order->shorterror = $order->error;
|
994 |
return false; //no subscription found
|
995 |
}
|
996 |
|
997 |
if($result->success)
|
998 |
{
|
999 |
-
$order->updateStatus("cancelled");
|
1000 |
return true;
|
1001 |
}
|
1002 |
else
|
1003 |
{
|
1004 |
-
$order->
|
1005 |
-
$order->error = __("Could not find the subscription.", 'paid-memberships-pro' ) . " " . $result->message;
|
1006 |
$order->shorterror = $order->error;
|
1007 |
return false; //no subscription found
|
1008 |
}
|
1 |
<?php
|
2 |
+
|
3 |
+
use Braintree\WebhookNotification as Braintree_WebhookNotification;
|
4 |
+
|
5 |
//include pmprogateway
|
6 |
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
7 |
|
845 |
return false;
|
846 |
}
|
847 |
|
848 |
+
/**
|
849 |
+
* Create Braintree Subscription
|
850 |
+
*
|
851 |
+
* @param \MemberOrder $order
|
852 |
+
*
|
853 |
+
* @return bool
|
854 |
+
*/
|
855 |
function subscribe(&$order)
|
856 |
{
|
857 |
if ( ! self::$is_loaded ) {
|
896 |
//filter the start date
|
897 |
$order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order);
|
898 |
|
899 |
+
$start_ts = strtotime($order->ProfileStartDate, current_time("timestamp") );
|
900 |
+
$now = strtotime( date('Y-m-d\T00:00:00', current_time('timestamp' ) ), current_time('timestamp' ) );
|
901 |
+
|
902 |
//convert back to days
|
903 |
+
$trial_period_days = ceil(abs( $now - $start_ts ) / 86400);
|
904 |
+
|
905 |
//now add the actual trial set by the site
|
906 |
if(!empty($order->TrialBillingCycles))
|
907 |
{
|
939 |
}
|
940 |
catch (Exception $e)
|
941 |
{
|
942 |
+
$order->error = sprint( __("Error subscribing customer to plan with Braintree: %s (%s)", 'paid-memberships-pro' ), $e->getMessage(), get_class($e) );
|
943 |
//return error
|
944 |
$order->shorterror = $order->error;
|
945 |
return false;
|
954 |
}
|
955 |
else
|
956 |
{
|
957 |
+
$order->error = sprintf( __("Failed to subscribe with Braintree: %s", 'paid-memberships-pro' ), $result->message );
|
958 |
$order->shorterror = $result->message;
|
959 |
return false;
|
960 |
}
|
980 |
}
|
981 |
}
|
982 |
|
983 |
+
/**
|
984 |
+
* Cancel order and Braintree Subscription if applicable
|
985 |
+
*
|
986 |
+
* @param \MemberOrder $order
|
987 |
+
*
|
988 |
+
* @return bool
|
989 |
+
*/
|
990 |
function cancel(&$order)
|
991 |
{
|
992 |
if ( ! self::$is_loaded ) {
|
993 |
$order->error = __("Payment error: Please contact the webmaster (braintree-load-error)", 'paid-memberships-pro');
|
994 |
return false;
|
995 |
}
|
996 |
+
|
997 |
+
if ( isset( $_POST['bt_payload']) && isset( $_POST['bt_payload']) ) {
|
998 |
+
|
999 |
+
try {
|
1000 |
+
$webhookNotification = Braintree_WebhookNotification::parse( $_POST['bt_signature'], $_POST['bt_payload'] );
|
1001 |
+
} catch ( \Exception $e ) {
|
1002 |
+
// Don't do anything
|
1003 |
+
}
|
1004 |
+
}
|
1005 |
+
|
1006 |
+
// Always cancel, even if Braintree fails
|
1007 |
+
$order->updateStatus("cancelled" );
|
1008 |
+
|
1009 |
+
if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotification->kind ) {
|
1010 |
+
// Return, we're already processing the cancellation
|
1011 |
+
return true;
|
1012 |
+
}
|
1013 |
+
|
1014 |
//require a subscription id
|
1015 |
if(empty($order->subscription_transaction_id))
|
1016 |
return false;
|
1025 |
}
|
1026 |
catch(Exception $e)
|
1027 |
{
|
1028 |
+
$order->error = sprintf( __("Could not find the subscription. %s", 'paid-memberships-pro' ), $e->getMessage() );
|
|
|
1029 |
$order->shorterror = $order->error;
|
1030 |
return false; //no subscription found
|
1031 |
}
|
1032 |
|
1033 |
if($result->success)
|
1034 |
{
|
|
|
1035 |
return true;
|
1036 |
}
|
1037 |
else
|
1038 |
{
|
1039 |
+
$order->error = sprintf( __("Could not find the subscription. %s", 'paid-memberships-pro' ), $result->message );
|
|
|
1040 |
$order->shorterror = $order->error;
|
1041 |
return false; //no subscription found
|
1042 |
}
|
languages/paid-memberships-pro-fr_FR.mo
CHANGED
Binary file
|
languages/paid-memberships-pro-fr_FR.po
CHANGED
@@ -1,3419 +1,3381 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: pmpro\n"
|
4 |
-
"POT-Creation-Date: 2015-04-30 19:35+0100\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
8 |
-
"Language: fr_FR\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit
|
13 |
-
"X-Poedit-KeywordsList: __;_;_e;_ex;_x;_n\n"
|
14 |
-
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SearchPath-0: includes\n"
|
16 |
-
"X-Poedit-SearchPath-1: .\n"
|
17 |
-
"X-Poedit-SearchPath-2: classes\n"
|
18 |
-
"X-Poedit-SearchPath-3: preheaders\n"
|
19 |
-
"X-Poedit-SearchPath-4: pages\n"
|
20 |
-
"X-Poedit-SearchPath-5: adminpages\n"
|
21 |
-
"X-Poedit-SearchPath-6: classes/gateways\n"
|
22 |
-
"X-Poedit-SearchPath-7: services\n"
|
23 |
-
"X-Poedit-SearchPath-8: shortcodes\n"
|
24 |
-
"X-Poedit-SearchPath-9: scheduled\n"
|
25 |
-
|
26 |
-
#: adminpages/addons.php:5 adminpages/advancedsettings.php:5
|
27 |
-
#: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
|
28 |
-
#: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
|
29 |
-
#: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
|
30 |
-
#: adminpages/
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
"
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
"
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
"
|
85 |
-
"Payflow."
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
"
|
93 |
-
"
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
"
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
"
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
"
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
"
|
110 |
-
"
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
"
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
"
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
"
|
127 |
-
"
|
128 |
-
|
129 |
-
|
130 |
-
"
|
131 |
-
"
|
132 |
-
|
133 |
-
#: adminpages/admin_header.php:127
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
-
|
137 |
-
#: adminpages/admin_header.php:
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
#:
|
144 |
-
msgid "
|
145 |
-
msgstr "
|
146 |
-
|
147 |
-
#: adminpages/admin_header.php:
|
148 |
-
msgid "
|
149 |
-
msgstr "
|
150 |
-
|
151 |
-
#: adminpages/admin_header.php:
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
#:
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
-
|
160 |
-
#: adminpages/admin_header.php:
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
-
|
169 |
-
#: adminpages/advancedsettings.php:
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
"
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
"
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
"
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
"
|
196 |
-
|
197 |
-
|
198 |
-
#:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
#: adminpages/advancedsettings.php:
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
"
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: adminpages/advancedsettings.php:
|
218 |
-
msgid "
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
"
|
237 |
-
msgstr ""
|
238 |
-
"
|
239 |
-
"résultats et les archives."
|
240 |
-
|
241 |
-
#: adminpages/advancedsettings.php:
|
242 |
-
msgid ""
|
243 |
-
"
|
244 |
-
|
245 |
-
|
246 |
-
"
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
-
|
264 |
-
#: adminpages/advancedsettings.php:
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
"
|
287 |
-
"
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
#: adminpages/
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
"
|
347 |
-
"
|
348 |
-
|
349 |
-
#: adminpages/
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
-
|
353 |
-
#: adminpages/
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
"utilisé."
|
367 |
-
|
368 |
-
#: adminpages/discountcodes.php:
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
"
|
377 |
-
|
378 |
-
#: adminpages/discountcodes.php:
|
379 |
-
#, php-format
|
380 |
-
msgid "
|
381 |
-
msgstr "
|
382 |
-
|
383 |
-
#: adminpages/discountcodes.php:
|
384 |
-
msgid "
|
385 |
-
|
386 |
-
"
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
#: adminpages/
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
#: adminpages/
|
419 |
-
#: adminpages/
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
#:
|
429 |
-
#:
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
#:
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
#:
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
471 |
-
|
472 |
-
#: adminpages/discountcodes.php:
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
#:
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
#:
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
#:
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
-
|
494 |
-
#: adminpages/discountcodes.php:
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
#: adminpages/discountcodes.php:
|
509 |
-
msgid ""
|
510 |
-
"
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
"
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
msgstr "
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
|
558 |
-
"
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
#: adminpages/discountcodes.php:651
|
603 |
-
|
604 |
-
msgid ""
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
"
|
610 |
-
"
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
"
|
626 |
-
"
|
627 |
-
"
|
628 |
-
|
629 |
-
"
|
630 |
-
"
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
"
|
636 |
-
"
|
637 |
-
"
|
638 |
-
"
|
639 |
-
|
640 |
-
|
641 |
-
"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
|
645 |
-
"
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
"
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
"
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
|
720 |
-
"
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
msgstr "
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
"
|
743 |
-
"
|
744 |
-
|
745 |
-
|
746 |
-
"
|
747 |
-
"
|
748 |
-
|
749 |
-
#: adminpages/membershiplevels.php:
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
-
|
753 |
-
#: adminpages/membershiplevels.php:
|
754 |
-
msgid "
|
755 |
-
msgstr "
|
756 |
-
|
757 |
-
#: adminpages/membershiplevels.php:
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
#: adminpages/
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
-
|
774 |
-
#: adminpages/membershiplevels.php:
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
#:
|
788 |
-
msgid "
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
"
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
"
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
"
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
#:
|
808 |
-
msgid ""
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
"
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
"
|
827 |
-
"
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
"
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
"
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
"
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
"
|
844 |
-
"
|
845 |
-
|
846 |
-
|
847 |
-
"
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
"
|
855 |
-
|
856 |
-
"
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
"
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
"
|
868 |
-
"
|
869 |
-
|
870 |
-
|
871 |
-
"
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
"
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
"
|
891 |
-
"
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
#:
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
-
|
927 |
-
#: adminpages/membershiplevels.php:
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
#: adminpages/
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
#: adminpages/
|
969 |
-
msgid "
|
970 |
-
msgstr "
|
971 |
-
|
972 |
-
#: adminpages/memberslist.php:
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
#:
|
1013 |
-
msgid "
|
1014 |
-
msgstr "
|
1015 |
-
|
1016 |
-
#: adminpages/memberslist.php:
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
-
|
1020 |
-
#: adminpages/
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
-
|
1024 |
-
#: adminpages/
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
-
|
1028 |
-
#: adminpages/
|
1029 |
-
msgid "
|
1030 |
-
msgstr "
|
1031 |
-
|
1032 |
-
#: adminpages/
|
1033 |
-
msgid "
|
1034 |
-
msgstr "
|
1035 |
-
|
1036 |
-
#: adminpages/orders.php:
|
1037 |
-
msgid "
|
1038 |
-
msgstr "
|
1039 |
-
|
1040 |
-
#: adminpages/orders.php:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
-
|
1044 |
-
#: adminpages/orders.php:
|
1045 |
-
msgid "Order
|
1046 |
-
msgstr "
|
1047 |
-
|
1048 |
-
#: adminpages/orders.php:
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
-
|
1052 |
-
#: adminpages/orders.php:
|
1053 |
-
msgid "
|
1054 |
-
msgstr "
|
1055 |
-
|
1056 |
-
#: adminpages/orders.php:
|
1057 |
-
msgid "
|
1058 |
-
msgstr "
|
1059 |
-
|
1060 |
-
#: adminpages/orders.php:
|
1061 |
-
msgid "
|
1062 |
-
msgstr "
|
1063 |
-
|
1064 |
-
#: adminpages/orders.php:
|
1065 |
-
msgid "
|
1066 |
-
msgstr "
|
1067 |
-
|
1068 |
-
#: adminpages/orders.php:
|
1069 |
-
msgid "
|
1070 |
-
msgstr "
|
1071 |
-
|
1072 |
-
#: adminpages/orders.php:
|
1073 |
-
msgid "
|
1074 |
-
msgstr "
|
1075 |
-
|
1076 |
-
#: adminpages/orders.php:
|
1077 |
-
msgid "Billing
|
1078 |
-
msgstr "
|
1079 |
-
|
1080 |
-
#: adminpages/orders.php:
|
1081 |
-
msgid "Billing
|
1082 |
-
msgstr "
|
1083 |
-
|
1084 |
-
#: adminpages/orders.php:
|
1085 |
-
msgid "Billing
|
1086 |
-
msgstr "
|
1087 |
-
|
1088 |
-
#: adminpages/orders.php:
|
1089 |
-
msgid "
|
1090 |
-
msgstr "
|
1091 |
-
|
1092 |
-
#: adminpages/orders.php:
|
1093 |
-
msgid "
|
1094 |
-
msgstr "
|
1095 |
-
|
1096 |
-
#: adminpages/orders.php:
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
-
|
1100 |
-
#: adminpages/orders.php:
|
1101 |
-
msgid "
|
1102 |
-
msgstr "
|
1103 |
-
|
1104 |
-
#: adminpages/orders.php:
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
-
|
1108 |
-
#: adminpages/orders.php:
|
1109 |
-
msgid "
|
1110 |
-
msgstr "
|
1111 |
-
|
1112 |
-
#: adminpages/orders.php:
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
-
|
1116 |
-
#: adminpages/orders.php:
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
#:
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
#:
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
msgid "
|
1269 |
-
msgstr "
|
1270 |
-
|
1271 |
-
#: adminpages/orders.php:
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
msgstr "
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
"
|
1302 |
-
"
|
1303 |
-
|
1304 |
-
|
1305 |
-
"
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
#: adminpages/pagesettings.php:
|
1345 |
-
|
1346 |
-
"
|
1347 |
-
"
|
1348 |
-
|
1349 |
-
|
1350 |
-
#: adminpages/pagesettings.php:
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
#: adminpages/pagesettings.php:
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
-
|
1363 |
-
#: adminpages/pagesettings.php:
|
1364 |
-
#: adminpages/pagesettings.php:
|
1365 |
-
#: adminpages/pagesettings.php:
|
1366 |
-
#: adminpages/pagesettings.php:
|
1367 |
-
msgid "
|
1368 |
-
msgstr "
|
1369 |
-
|
1370 |
-
#: adminpages/pagesettings.php:
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
#: adminpages/pagesettings.php:
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
#: adminpages/pagesettings.php:
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
msgstr "
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
"
|
1430 |
-
"
|
1431 |
-
|
1432 |
-
|
1433 |
-
"
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
-
#: adminpages/paymentsettings.php:
|
1437 |
-
msgid "
|
1438 |
-
msgstr "
|
1439 |
-
|
1440 |
-
#: adminpages/paymentsettings.php:
|
1441 |
-
msgid ""
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
"
|
1446 |
-
"
|
1447 |
-
|
1448 |
-
#: adminpages/paymentsettings.php:
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
-
|
1452 |
-
#: adminpages/paymentsettings.php:
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
-
|
1456 |
-
#: adminpages/paymentsettings.php:
|
1457 |
-
msgid "
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
msgstr "
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
"
|
1475 |
-
"
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
"
|
1480 |
-
|
1481 |
-
|
1482 |
-
"
|
1483 |
-
"
|
1484 |
-
|
1485 |
-
#: adminpages/paymentsettings.php:
|
1486 |
-
msgid "
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
"
|
1504 |
-
"
|
1505 |
-
|
1506 |
-
|
1507 |
-
"
|
1508 |
-
"
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
#: adminpages/reports/
|
1628 |
-
msgid "
|
1629 |
-
msgstr "
|
1630 |
-
|
1631 |
-
#: adminpages/reports/memberships.php:
|
1632 |
-
msgid "
|
1633 |
-
msgstr "
|
1634 |
-
|
1635 |
-
#: adminpages/reports/
|
1636 |
-
msgid "
|
1637 |
-
msgstr "
|
1638 |
-
|
1639 |
-
#: adminpages/reports/
|
1640 |
-
msgid "
|
1641 |
-
msgstr "
|
1642 |
-
|
1643 |
-
#: adminpages/reports/
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
#:
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
"
|
1674 |
-
"
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
"
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
#: classes/class.
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
#: classes/class.pmproemail.php:
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
msgid "Your membership
|
1759 |
-
msgstr "Votre adhésion
|
1760 |
-
|
1761 |
-
#: classes/class.pmproemail.php:
|
1762 |
-
#, php-format
|
1763 |
-
msgid "
|
1764 |
-
msgstr "
|
1765 |
-
|
1766 |
-
#: classes/class.pmproemail.php:
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
#: classes/
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
#: classes/class.
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
#: classes/class.
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
#: classes/gateways/class.
|
1799 |
-
#: classes/gateways/class.
|
1800 |
-
#: classes/gateways/class.
|
1801 |
-
#: classes/gateways/class.
|
1802 |
-
#: classes/gateways/class.
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
#: classes/gateways/class.
|
1808 |
-
#: classes/gateways/class.
|
1809 |
-
#: classes/gateways/class.
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
#: classes/gateways/class.
|
1818 |
-
#:
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
#: classes/gateways/class.pmprogateway_authorizenet.php:
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
#: classes/gateways/class.pmprogateway_authorizenet.php:
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
"
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
#: classes/gateways/class.
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
#:
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
#: classes/gateways/class.
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
#: classes/gateways/class.
|
1943 |
-
msgid "
|
1944 |
-
msgstr "Erreur
|
1945 |
-
|
1946 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1947 |
-
msgid "Error
|
1948 |
-
msgstr "Erreur
|
1949 |
-
|
1950 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1951 |
-
msgid "
|
1952 |
-
msgstr "
|
1953 |
-
|
1954 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
#: classes/gateways/class.
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
"
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
msgstr "
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
"
|
2057 |
-
|
2058 |
-
|
2059 |
-
"
|
2060 |
-
"
|
2061 |
-
|
2062 |
-
|
2063 |
-
#:
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
#: classes/gateways/class.
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
"
|
2081 |
-
"
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
"
|
2087 |
-
|
2088 |
-
|
2089 |
-
#: classes/gateways/class.
|
2090 |
-
#: classes/gateways/class.
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
#: classes/gateways/class.
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
msgstr "
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
#: classes/gateways/class.
|
2104 |
-
#: classes/gateways/class.
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
#: classes/gateways/class.
|
2110 |
-
#: classes/gateways/class.
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
#: classes/gateways/class.
|
2116 |
-
#: classes/gateways/class.
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
"
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
#: classes/gateways/class.
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
2144 |
-
#: classes/gateways/class.
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
"
|
2156 |
-
|
2157 |
-
|
2158 |
-
"
|
2159 |
-
|
2160 |
-
|
2161 |
-
#: paid-memberships-pro.php:
|
2162 |
-
msgid "
|
2163 |
-
msgstr ""
|
2164 |
-
|
2165 |
-
#: classes/gateways/class.
|
2166 |
-
msgid "
|
2167 |
-
msgstr ""
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
#:
|
2178 |
-
msgid "
|
2179 |
-
msgstr ""
|
2180 |
-
|
2181 |
-
#: classes/gateways/class.
|
2182 |
-
msgid ""
|
2183 |
-
"
|
2184 |
-
"
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
"
|
2215 |
-
msgstr ""
|
2216 |
-
|
2217 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2218 |
-
msgid "
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
"
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
#:
|
2240 |
-
msgid "
|
2241 |
-
msgstr "
|
2242 |
-
|
2243 |
-
#: classes/gateways/class.
|
2244 |
-
msgid "
|
2245 |
-
msgstr ""
|
2246 |
-
|
2247 |
-
#: classes/gateways/class.
|
2248 |
-
msgid "
|
2249 |
-
msgstr "
|
2250 |
-
|
2251 |
-
#: classes/gateways/class.
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
msgid "
|
2436 |
-
msgstr ""
|
2437 |
-
|
2438 |
-
#: includes/
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
msgid "
|
2521 |
-
msgstr "
|
2522 |
-
|
2523 |
-
#: includes/functions.php:
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
msgid "
|
2575 |
-
msgstr "
|
2576 |
-
|
2577 |
-
#: includes/
|
2578 |
-
msgid "
|
2579 |
-
msgstr "
|
2580 |
-
|
2581 |
-
#: includes/
|
2582 |
-
msgid "
|
2583 |
-
msgstr "
|
2584 |
-
|
2585 |
-
#: includes/
|
2586 |
-
msgid "
|
2587 |
-
msgstr "
|
2588 |
-
|
2589 |
-
#: includes/
|
2590 |
-
msgid "
|
2591 |
-
msgstr "
|
2592 |
-
|
2593 |
-
#: includes/
|
2594 |
-
msgid "
|
2595 |
-
msgstr "
|
2596 |
-
|
2597 |
-
#: includes/
|
2598 |
-
msgid "
|
2599 |
-
msgstr "
|
2600 |
-
|
2601 |
-
#: includes/
|
2602 |
-
msgid "
|
2603 |
-
msgstr "
|
2604 |
-
|
2605 |
-
#: includes/
|
2606 |
-
msgid "
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
#: includes/
|
2614 |
-
msgid "
|
2615 |
-
msgstr "
|
2616 |
-
|
2617 |
-
#: includes/
|
2618 |
-
msgid "
|
2619 |
-
msgstr "
|
2620 |
-
|
2621 |
-
#: includes/
|
2622 |
-
msgid "
|
2623 |
-
msgstr "
|
2624 |
-
|
2625 |
-
#: includes/
|
2626 |
-
msgid "
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
#: includes/
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
"
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
"
|
2661 |
-
msgstr ""
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
"
|
2672 |
-
|
2673 |
-
#:
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
"
|
2680 |
-
"
|
2681 |
-
|
2682 |
-
#:
|
2683 |
-
|
2684 |
-
"
|
2685 |
-
"
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
msgid "
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
#: pages/
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
"
|
2726 |
-
"
|
2727 |
-
|
2728 |
-
|
2729 |
-
"
|
2730 |
-
"
|
2731 |
-
|
2732 |
-
#: pages/billing.php:
|
2733 |
-
msgid "
|
2734 |
-
msgstr "
|
2735 |
-
|
2736 |
-
#: pages/billing.php:
|
2737 |
-
msgid "
|
2738 |
-
msgstr "
|
2739 |
-
|
2740 |
-
#: pages/billing.php:
|
2741 |
-
msgid "Address
|
2742 |
-
msgstr "Adresse
|
2743 |
-
|
2744 |
-
#: pages/billing.php:
|
2745 |
-
msgid "
|
2746 |
-
msgstr "
|
2747 |
-
|
2748 |
-
#: pages/billing.php:
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
"
|
2792 |
-
"
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
"
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
msgid ""
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
"
|
2852 |
-
|
2853 |
-
#: pages/checkout.php:
|
2854 |
-
msgid "
|
2855 |
-
msgstr "
|
2856 |
-
|
2857 |
-
#: pages/checkout.php:
|
2858 |
-
msgid "
|
2859 |
-
msgstr "
|
2860 |
-
|
2861 |
-
#: pages/checkout.php:
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
"
|
2897 |
-
"
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
"
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
msgid "
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
#: pages/
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
-
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
"
|
2931 |
-
msgstr "
|
2932 |
-
|
2933 |
-
#: pages/confirmation.php:
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
"
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
msgid ""
|
2943 |
-
"
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
"
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
|
2965 |
-
|
2966 |
-
|
2967 |
-
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
|
2983 |
-
"
|
2984 |
-
msgstr ""
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
msgstr ""
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
|
3006 |
-
|
3007 |
-
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
msgid "
|
3062 |
-
msgstr ""
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
"
|
3071 |
-
"
|
3072 |
-
|
3073 |
-
|
3074 |
-
"
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
"
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
msgstr "
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
msgstr "
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
#: preheaders/checkout.php:
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
"
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
"
|
3164 |
-
|
3165 |
-
|
3166 |
-
"
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
"
|
3174 |
-
msgstr ""
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
"
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
"
|
3184 |
-
"
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
"
|
3189 |
-
"
|
3190 |
-
|
3191 |
-
#:
|
3192 |
-
#, php-format
|
3193 |
-
msgid ""
|
3194 |
-
"
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
"
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
"
|
3204 |
-
"
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
msgstr "
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
msgid "
|
3224 |
-
msgstr "
|
3225 |
-
|
3226 |
-
#:
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
"
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
"
|
3240 |
-
"
|
3241 |
-
|
3242 |
-
|
3243 |
-
"
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
msgid ""
|
3248 |
-
"
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
msgid "
|
3269 |
-
msgstr "
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
msgid "
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
msgid "
|
3297 |
-
msgstr "
|
3298 |
-
|
3299 |
-
#~ msgid "
|
3300 |
-
#~
|
3301 |
-
|
3302 |
-
#~
|
3303 |
-
#~
|
3304 |
-
|
3305 |
-
#~
|
3306 |
-
|
3307 |
-
#~ "
|
3308 |
-
#~ "
|
3309 |
-
|
3310 |
-
#~ msgid ""
|
3311 |
-
#~ "
|
3312 |
-
|
3313 |
-
#~
|
3314 |
-
#~ "
|
3315 |
-
|
3316 |
-
|
3317 |
-
#~
|
3318 |
-
#~ "
|
3319 |
-
#~ "
|
3320 |
-
#~
|
3321 |
-
#~ "
|
3322 |
-
#~ "
|
3323 |
-
|
3324 |
-
#~ msgid "
|
3325 |
-
#~ msgstr "
|
3326 |
-
|
3327 |
-
#~ msgid "
|
3328 |
-
#~ msgstr "
|
3329 |
-
|
3330 |
-
#~ msgid "
|
3331 |
-
#~ msgstr "
|
3332 |
-
|
3333 |
-
#~ msgid "
|
3334 |
-
#~ msgstr "
|
3335 |
-
|
3336 |
-
#~ msgid ""
|
3337 |
-
#~ "
|
3338 |
-
|
3339 |
-
#~
|
3340 |
-
#~ "
|
3341 |
-
|
3342 |
-
#~ "
|
3343 |
-
|
3344 |
-
|
3345 |
-
#~
|
3346 |
-
|
3347 |
-
|
3348 |
-
#~
|
3349 |
-
|
3350 |
-
|
3351 |
-
#~
|
3352 |
-
|
3353 |
-
|
3354 |
-
#~
|
3355 |
-
#~ "
|
3356 |
-
#~ "
|
3357 |
-
#~ msgstr ""
|
3358 |
-
#~ "
|
3359 |
-
#~ "
|
3360 |
-
|
3361 |
-
|
3362 |
-
#~
|
3363 |
-
#~
|
3364 |
-
|
3365 |
-
#~
|
3366 |
-
#~
|
3367 |
-
|
3368 |
-
#~ msgid "
|
3369 |
-
#~ msgstr "
|
3370 |
-
|
3371 |
-
#~ msgid "
|
3372 |
-
#~ msgstr "
|
3373 |
-
|
3374 |
-
#~ msgid "
|
3375 |
-
#~ msgstr "
|
3376 |
-
|
3377 |
-
#~ msgid "
|
3378 |
-
#~ msgstr "
|
3379 |
-
|
3380 |
-
#~ msgid "
|
3381 |
-
#~ msgstr "
|
3382 |
-
|
3383 |
-
#~ msgid "Change Membership Level"
|
3384 |
-
#~ msgstr "Modifier le niveau d'adhésion"
|
3385 |
-
|
3386 |
-
#~ msgid "Cancel Membership"
|
3387 |
-
#~ msgstr "annuler l'abonnement"
|
3388 |
-
|
3389 |
-
#~ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
|
3390 |
-
#~ msgstr "<p>le <strong>%s</strong> code à été appliqué à votre commande.</p>"
|
3391 |
-
|
3392 |
-
#~ msgid ""
|
3393 |
-
#~ "Your payment has been submitted to PayPal. Your membership will be "
|
3394 |
-
#~ "activated shortly."
|
3395 |
-
#~ msgstr ""
|
3396 |
-
#~ "Votre paiement a été soumis à PayPal. Votre adhésion sera activée "
|
3397 |
-
#~ "prochainement."
|
3398 |
-
|
3399 |
-
#~ msgid ""
|
3400 |
-
#~ "Below are details about your membership account. A welcome email with has "
|
3401 |
-
#~ "been sent to %s."
|
3402 |
-
#~ msgstr ""
|
3403 |
-
#~ "Voici les détails de votre compte. Un courriel de bienvenue avec a été envoyé "
|
3404 |
-
#~ "à %s."
|
3405 |
-
|
3406 |
-
#~ msgid "View Invoice"
|
3407 |
-
#~ msgstr "Voir facture"
|
3408 |
-
|
3409 |
-
#~ msgid "Subscription Information"
|
3410 |
-
#~ msgstr "Renseignements sur les abonnements"
|
3411 |
-
|
3412 |
-
#~ msgid "%s per %s for %d more %s."
|
3413 |
-
#~ msgstr "%s par %s pour %d plus %s."
|
3414 |
-
|
3415 |
-
#~ msgid "%s every %d %s for %d more %s."
|
3416 |
-
#~ msgstr "%s chaque %d %s pour %d plus %s."
|
3417 |
-
|
3418 |
-
#~ msgid "%s after %d %s."
|
3419 |
-
#~ msgstr "%s après %d %s."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: pmpro\n"
|
4 |
+
"POT-Creation-Date: 2015-04-30 19:35+0100\n"
|
5 |
+
"PO-Revision-Date: 2018-11-06 10:14+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
8 |
+
"Language: fr_FR\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.2\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_;_e;_ex;_x;_n\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SearchPath-0: includes\n"
|
16 |
+
"X-Poedit-SearchPath-1: .\n"
|
17 |
+
"X-Poedit-SearchPath-2: classes\n"
|
18 |
+
"X-Poedit-SearchPath-3: preheaders\n"
|
19 |
+
"X-Poedit-SearchPath-4: pages\n"
|
20 |
+
"X-Poedit-SearchPath-5: adminpages\n"
|
21 |
+
"X-Poedit-SearchPath-6: classes/gateways\n"
|
22 |
+
"X-Poedit-SearchPath-7: services\n"
|
23 |
+
"X-Poedit-SearchPath-8: shortcodes\n"
|
24 |
+
"X-Poedit-SearchPath-9: scheduled\n"
|
25 |
+
|
26 |
+
#: adminpages/addons.php:5 adminpages/advancedsettings.php:5
|
27 |
+
#: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
|
28 |
+
#: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
|
29 |
+
#: adminpages/memberslist.php:5 adminpages/orders-csv.php:5 adminpages/orders.php:5
|
30 |
+
#: adminpages/pagesettings.php:5 adminpages/paymentsettings.php:5
|
31 |
+
msgid "You do not have permissions to perform this action."
|
32 |
+
msgstr "Vous n'avez pas les permissions pour effectuer cette action."
|
33 |
+
|
34 |
+
#: adminpages/addons.php:79
|
35 |
+
msgid "Enabled"
|
36 |
+
msgstr "Activé"
|
37 |
+
|
38 |
+
#: adminpages/addons.php:79
|
39 |
+
msgid "Disabled"
|
40 |
+
msgstr "Désactivé"
|
41 |
+
|
42 |
+
#: adminpages/admin_header.php:25
|
43 |
+
msgid "Add a membership level to get started."
|
44 |
+
msgstr "Ajouter un niveau d'adhésion pour commencer."
|
45 |
+
|
46 |
+
#: adminpages/admin_header.php:27
|
47 |
+
msgid "Set up the membership pages"
|
48 |
+
msgstr "Configurez les pages d'adhésion"
|
49 |
+
|
50 |
+
#: adminpages/admin_header.php:29
|
51 |
+
msgid "Set up your SSL certificate and payment gateway"
|
52 |
+
msgstr "Configurez votre certificat SSL et la passerelle de paiement"
|
53 |
+
|
54 |
+
#: adminpages/admin_header.php:38
|
55 |
+
msgid ""
|
56 |
+
"The billing details for some of your membership levels is not supported by Stripe."
|
57 |
+
msgstr ""
|
58 |
+
"Les détails de facturation pour certains de vos niveaux d'adhésion ne sont pas "
|
59 |
+
"pris en charge par Stripe."
|
60 |
+
|
61 |
+
#: adminpages/admin_header.php:46
|
62 |
+
msgid ""
|
63 |
+
"The billing details for this level are not supported by Stripe. Please review the "
|
64 |
+
"notes in the Billing Details section below."
|
65 |
+
msgstr ""
|
66 |
+
"Les détails de facturation pour ce niveau ne sont pas pris en charge par Stripe. "
|
67 |
+
"Veuillez examiner les notes dans la section Détails de facturation ci-dessous."
|
68 |
+
|
69 |
+
#: adminpages/admin_header.php:50 adminpages/admin_header.php:70
|
70 |
+
#: adminpages/admin_header.php:90 adminpages/admin_header.php:111
|
71 |
+
msgid "The levels with issues are highlighted below."
|
72 |
+
msgstr "Les niveaux posant problème sont soulignés ci-dessous."
|
73 |
+
|
74 |
+
#: adminpages/admin_header.php:52 adminpages/admin_header.php:72
|
75 |
+
#: adminpages/admin_header.php:92 adminpages/admin_header.php:113
|
76 |
+
msgid "Please edit your levels"
|
77 |
+
msgstr "Veuillez modifier vos niveaux"
|
78 |
+
|
79 |
+
#: adminpages/admin_header.php:58
|
80 |
+
msgid ""
|
81 |
+
"The billing details for some of your membership levels is not supported by "
|
82 |
+
"Payflow."
|
83 |
+
msgstr ""
|
84 |
+
"Les détails de facturation pour certains de vos niveaux d'adhésion sont pas pris "
|
85 |
+
"en charge par Payflow."
|
86 |
+
|
87 |
+
#: adminpages/admin_header.php:66
|
88 |
+
msgid ""
|
89 |
+
"The billing details for this level are not supported by Payflow. Please review "
|
90 |
+
"the notes in the Billing Details section below."
|
91 |
+
msgstr ""
|
92 |
+
"Les détails de facturation pour ce niveau ne sont pas pris en charge par Payflow. "
|
93 |
+
"Veuillez examiner les notes dans la section Détails de facturation ci-dessous."
|
94 |
+
|
95 |
+
#: adminpages/admin_header.php:78
|
96 |
+
msgid ""
|
97 |
+
"The billing details for some of your membership levels is not supported by "
|
98 |
+
"Braintree."
|
99 |
+
msgstr ""
|
100 |
+
"Les détails de facturation pour certains de vos niveaux d'adhésion sont pas pris "
|
101 |
+
"en charge par Braintree."
|
102 |
+
|
103 |
+
#: adminpages/admin_header.php:86
|
104 |
+
msgid ""
|
105 |
+
"The billing details for this level are not supported by Braintree. Please review "
|
106 |
+
"the notes in the Billing Details section below."
|
107 |
+
msgstr ""
|
108 |
+
"Les détails de facturation pour ce niveau ne sont pas pris en charge par "
|
109 |
+
"Braintree. Veuillez examiner les notes dans la section Détails de facturation ci-"
|
110 |
+
"dessous."
|
111 |
+
|
112 |
+
#: adminpages/admin_header.php:98
|
113 |
+
msgid ""
|
114 |
+
"The billing details for some of your membership levels is not supported by "
|
115 |
+
"TwoCheckout."
|
116 |
+
msgstr ""
|
117 |
+
"Les détails de facturation pour certains de vos niveaux d'adhésion sont pas pris "
|
118 |
+
"en charge par TwoCheckout."
|
119 |
+
|
120 |
+
#: adminpages/admin_header.php:107
|
121 |
+
msgid ""
|
122 |
+
"The billing details for this level are not supported by 2Checkout. Please review "
|
123 |
+
"the notes in the Billing Details section below."
|
124 |
+
msgstr ""
|
125 |
+
"Les détails de facturation pour ce niveau ne sont pas pris en charge par "
|
126 |
+
"2Checkout. Veuillez examiner les notes dans la section Détails de facturation ci-"
|
127 |
+
"dessous."
|
128 |
+
|
129 |
+
#: adminpages/admin_header.php:127
|
130 |
+
msgid "Plugin Support"
|
131 |
+
msgstr "Support du plugin"
|
132 |
+
|
133 |
+
#: adminpages/admin_header.php:127
|
134 |
+
msgid "User Forum"
|
135 |
+
msgstr "Forum utilisateur"
|
136 |
+
|
137 |
+
#: adminpages/admin_header.php:149 adminpages/membershiplevels.php:526
|
138 |
+
#: adminpages/pagesettings.php:69 includes/adminpages.php:64
|
139 |
+
#: includes/adminpages.php:65 includes/adminpages.php:107
|
140 |
+
msgid "Membership Levels"
|
141 |
+
msgstr "Niveaux d'adhésion"
|
142 |
+
|
143 |
+
#: adminpages/admin_header.php:150 adminpages/pagesettings.php:120
|
144 |
+
msgid "Pages"
|
145 |
+
msgstr "Pages"
|
146 |
+
|
147 |
+
#: adminpages/admin_header.php:151
|
148 |
+
msgid "Payment Gateway & SSL"
|
149 |
+
msgstr "Passerelle de paiement et SSL"
|
150 |
+
|
151 |
+
#: adminpages/admin_header.php:152 adminpages/memberslist.php:158
|
152 |
+
#: shortcodes/pmpro_account.php:106
|
153 |
+
msgid "Email"
|
154 |
+
msgstr "Courriel"
|
155 |
+
|
156 |
+
#: adminpages/admin_header.php:153
|
157 |
+
msgid "Advanced"
|
158 |
+
msgstr "Avancé"
|
159 |
+
|
160 |
+
#: adminpages/admin_header.php:154 includes/adminpages.php:52
|
161 |
+
#: includes/adminpages.php:142
|
162 |
+
msgid "Add Ons"
|
163 |
+
msgstr "Compléments"
|
164 |
+
|
165 |
+
#: adminpages/advancedsettings.php:43
|
166 |
+
msgid "Your advanced settings have been updated."
|
167 |
+
msgstr "Vos réglages avancés ont été mis à jour."
|
168 |
+
|
169 |
+
#: adminpages/advancedsettings.php:68
|
170 |
+
#, php-format
|
171 |
+
msgid ""
|
172 |
+
"This content is for !!levels!! members only. <a href=\"%s\">Register here</a>."
|
173 |
+
msgstr ""
|
174 |
+
"Ce contenu est réservé aux membres de niveau !!levels!!. <a href=\"%s\">Adhérez "
|
175 |
+
"ici</a>."
|
176 |
+
|
177 |
+
#: adminpages/advancedsettings.php:73
|
178 |
+
#, php-format
|
179 |
+
msgid ""
|
180 |
+
"Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s\">Register "
|
181 |
+
"here</a>.)"
|
182 |
+
msgstr ""
|
183 |
+
"Veuillez <a href=\"%s\">vous connecter</a> pour voir ce contenu. (<a href=\"%s"
|
184 |
+
"\">Adhésion</a>.)"
|
185 |
+
|
186 |
+
#: adminpages/advancedsettings.php:78
|
187 |
+
msgid ""
|
188 |
+
"This content is for members only. Visit the site and log in/register to read."
|
189 |
+
msgstr ""
|
190 |
+
"Ce contenu est réservé aux membres. Visitez le site et connectez-vous ou bien "
|
191 |
+
"adhérez pour le lire."
|
192 |
+
|
193 |
+
#: adminpages/advancedsettings.php:88 includes/adminpages.php:51
|
194 |
+
#: includes/adminpages.php:135
|
195 |
+
msgid "Advanced Settings"
|
196 |
+
msgstr "Paramètres avancés"
|
197 |
+
|
198 |
+
#: adminpages/advancedsettings.php:94
|
199 |
+
msgid "Message for Logged-in Non-members"
|
200 |
+
msgstr "Message pour connecté non-membres"
|
201 |
+
|
202 |
+
#: adminpages/advancedsettings.php:98
|
203 |
+
msgid "This message replaces the post content for non-members. Available variables"
|
204 |
+
msgstr ""
|
205 |
+
"Ce message remplace le contenu d'article pour les non-membres. Les variables "
|
206 |
+
"disponibles"
|
207 |
+
|
208 |
+
#: adminpages/advancedsettings.php:103
|
209 |
+
msgid "Message for Logged-out Users"
|
210 |
+
msgstr "Message pour les utilisateurs connectés"
|
211 |
+
|
212 |
+
#: adminpages/advancedsettings.php:107
|
213 |
+
msgid "This message replaces the post content for logged-out visitors."
|
214 |
+
msgstr ""
|
215 |
+
"Ce message remplace le contenu de l'article pour les visiteurs non connectés."
|
216 |
+
|
217 |
+
#: adminpages/advancedsettings.php:112
|
218 |
+
msgid "Message for RSS Feed"
|
219 |
+
msgstr "Message pour Flux RSS"
|
220 |
+
|
221 |
+
#: adminpages/advancedsettings.php:116
|
222 |
+
msgid "This message replaces the post content in RSS feeds."
|
223 |
+
msgstr "Ce message remplace le contenu de l'article dans les flux RSS."
|
224 |
+
|
225 |
+
#: adminpages/advancedsettings.php:122
|
226 |
+
msgid "Filter searches and archives?"
|
227 |
+
msgstr "Filtrer les recherches et les archives ?"
|
228 |
+
|
229 |
+
#: adminpages/advancedsettings.php:126
|
230 |
+
msgid "No - Non-members will see restricted posts/pages in searches and archives."
|
231 |
+
msgstr ""
|
232 |
+
"Non : les non-membres pourront voir les articles et pages réservés dans les "
|
233 |
+
"résultats et les archives."
|
234 |
+
|
235 |
+
#: adminpages/advancedsettings.php:127
|
236 |
+
msgid "Yes - Only members will see restricted posts/pages in searches and archives."
|
237 |
+
msgstr ""
|
238 |
+
"Oui : seuls les membres pourront voir les articles et pages réservés dans les "
|
239 |
+
"résultats et les archives."
|
240 |
+
|
241 |
+
#: adminpages/advancedsettings.php:133
|
242 |
+
msgid "Show Excerpts to Non-Members?"
|
243 |
+
msgstr "Afficher les extraits pour les non-membres?"
|
244 |
+
|
245 |
+
#: adminpages/advancedsettings.php:137
|
246 |
+
msgid "No - Hide excerpts."
|
247 |
+
msgstr "Non : masquer les extraits."
|
248 |
+
|
249 |
+
#: adminpages/advancedsettings.php:138
|
250 |
+
msgid "Yes - Show excerpts."
|
251 |
+
msgstr "Oui : voir les extraits."
|
252 |
+
|
253 |
+
#: adminpages/advancedsettings.php:144
|
254 |
+
msgid "Hide Ads From Members?"
|
255 |
+
msgstr "Masquer les publicités pour les membres?"
|
256 |
+
|
257 |
+
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
258 |
+
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:578
|
259 |
+
#: adminpages/paymentsettings.php:210
|
260 |
+
#: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
|
261 |
+
msgid "No"
|
262 |
+
msgstr "Non"
|
263 |
+
|
264 |
+
#: adminpages/advancedsettings.php:149
|
265 |
+
msgid "Hide Ads From All Members"
|
266 |
+
msgstr "Masquer les publicités pour tous les membres"
|
267 |
+
|
268 |
+
#: adminpages/advancedsettings.php:150
|
269 |
+
msgid "Hide Ads From Certain Members"
|
270 |
+
msgstr "Masquer les publicités pour certains membres"
|
271 |
+
|
272 |
+
#: adminpages/advancedsettings.php:157
|
273 |
+
msgid "Ads from the following plugins will be automatically turned off"
|
274 |
+
msgstr "Les publicités des plugins suivants seront automatiquement désactivées"
|
275 |
+
|
276 |
+
#: adminpages/advancedsettings.php:158
|
277 |
+
msgid "To hide ads in your template code, use code like the following"
|
278 |
+
msgstr ""
|
279 |
+
"Pour masquer des annonces dans le code de votre modèle, utilisez le code suivant"
|
280 |
+
|
281 |
+
#: adminpages/advancedsettings.php:169
|
282 |
+
msgid "Choose Levels to Hide Ads From"
|
283 |
+
msgstr "Choisir les niveaux pour lesquels masquer les annonces"
|
284 |
+
|
285 |
+
#: adminpages/advancedsettings.php:203
|
286 |
+
msgid "Redirect all traffic from registration page to /susbcription/?"
|
287 |
+
msgstr ""
|
288 |
+
"Rediriger tout le trafic à partir de la page d'inscription vers /subscription/ ?"
|
289 |
+
|
290 |
+
#: adminpages/advancedsettings.php:203
|
291 |
+
msgid "multisite only"
|
292 |
+
msgstr "multisite seulement"
|
293 |
+
|
294 |
+
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:578
|
295 |
+
#: adminpages/paymentsettings.php:211
|
296 |
+
#: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
|
297 |
+
msgid "Yes"
|
298 |
+
msgstr "Oui"
|
299 |
+
|
300 |
+
#: adminpages/advancedsettings.php:215
|
301 |
+
msgid "Use reCAPTCHA?"
|
302 |
+
msgstr "Utilisez reCAPTCHA?"
|
303 |
+
|
304 |
+
#: adminpages/advancedsettings.php:220
|
305 |
+
msgid "Yes - Free memberships only."
|
306 |
+
msgstr "Oui : seulement pour les adhésions gratuites."
|
307 |
+
|
308 |
+
#: adminpages/advancedsettings.php:221
|
309 |
+
msgid "Yes - All memberships."
|
310 |
+
msgstr "Oui : pour toutes les adhésions."
|
311 |
+
|
312 |
+
#: adminpages/advancedsettings.php:223
|
313 |
+
msgid "A free reCAPTCHA key is required."
|
314 |
+
msgstr "Une clé reCAPTCHA gratuite est nécessaire."
|
315 |
+
|
316 |
+
#: adminpages/advancedsettings.php:223
|
317 |
+
msgid "Click here to signup for reCAPTCHA"
|
318 |
+
msgstr "Cliquez ici pour vous inscrire à reCAPTCHA"
|
319 |
+
|
320 |
+
#: adminpages/advancedsettings.php:229
|
321 |
+
msgid "reCAPTCHA Public Key"
|
322 |
+
msgstr "reCAPTCHA Clé publique"
|
323 |
+
|
324 |
+
#: adminpages/advancedsettings.php:232
|
325 |
+
msgid "reCAPTCHA Private Key"
|
326 |
+
msgstr "reCAPTCHA Clé privée"
|
327 |
+
|
328 |
+
#: adminpages/advancedsettings.php:238
|
329 |
+
msgid "Require Terms of Service on signups?"
|
330 |
+
msgstr "Exiger la validation des Conditions d'utilisation à l'inscription ?"
|
331 |
+
|
332 |
+
#: adminpages/advancedsettings.php:245
|
333 |
+
msgid ""
|
334 |
+
"If yes, create a WordPress page containing your TOS agreement and assign it using "
|
335 |
+
"the dropdown above."
|
336 |
+
msgstr ""
|
337 |
+
"Si oui, créez une page WordPress contenant votre contrat de conditions "
|
338 |
+
"d'utilisation et assignez-la en utilisant le menu déroulant ci-dessus."
|
339 |
+
|
340 |
+
#: adminpages/advancedsettings.php:285
|
341 |
+
msgid "selected"
|
342 |
+
msgstr "choisi"
|
343 |
+
|
344 |
+
#: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
|
345 |
+
#: adminpages/paymentsettings.php:238
|
346 |
+
msgid "Save Settings"
|
347 |
+
msgstr "Enregistrer les paramètres"
|
348 |
+
|
349 |
+
#: adminpages/discountcodes.php:48
|
350 |
+
msgid "Discount code updated successfully."
|
351 |
+
msgstr "Code promo mis à jour."
|
352 |
+
|
353 |
+
#: adminpages/discountcodes.php:55
|
354 |
+
msgid "Error updating discount code. That code may already be in use."
|
355 |
+
msgstr ""
|
356 |
+
"Erreur dans la mise à jour du code de réduction. Ce code est peut-être déjà "
|
357 |
+
"utilisé."
|
358 |
+
|
359 |
+
#: adminpages/discountcodes.php:64
|
360 |
+
msgid "Discount code added successfully."
|
361 |
+
msgstr "Code promo ajouté."
|
362 |
+
|
363 |
+
#: adminpages/discountcodes.php:72
|
364 |
+
msgid "Error adding discount code. That code may already be in use."
|
365 |
+
msgstr ""
|
366 |
+
"Erreur lors de l'ajout du code de réduction. Ce code est peut-être déjà utilisé."
|
367 |
+
|
368 |
+
#: adminpages/discountcodes.php:197
|
369 |
+
#, php-format
|
370 |
+
msgid "Error saving values for the %s level."
|
371 |
+
msgstr "Erreur lors de la sauvegarde de la valeur pour le niveau %s."
|
372 |
+
|
373 |
+
#: adminpages/discountcodes.php:205
|
374 |
+
msgid "There were errors updating the level values: "
|
375 |
+
msgstr ""
|
376 |
+
"Des erreurs se sont produites lors de la mise à jour des valeurs du niveau :"
|
377 |
+
|
378 |
+
#: adminpages/discountcodes.php:238
|
379 |
+
#, php-format
|
380 |
+
msgid "Code %s deleted successfully."
|
381 |
+
msgstr "Le code %s a été supprimé."
|
382 |
+
|
383 |
+
#: adminpages/discountcodes.php:243
|
384 |
+
msgid ""
|
385 |
+
"Error deleting discount code. The code was only partially deleted. Please try "
|
386 |
+
"again."
|
387 |
+
msgstr ""
|
388 |
+
"Erreur lors de la suppression du code de réduction. Le code n'a été que "
|
389 |
+
"partiellement supprimé. Veuillez essayer de nouveau."
|
390 |
+
|
391 |
+
#: adminpages/discountcodes.php:249
|
392 |
+
msgid "Error deleting code. Please try again."
|
393 |
+
msgstr "Erreur lors de la suppression du code. Veuillez essayer de nouveau."
|
394 |
+
|
395 |
+
#: adminpages/discountcodes.php:255
|
396 |
+
msgid "Code not found."
|
397 |
+
msgstr "Code non trouvé."
|
398 |
+
|
399 |
+
#: adminpages/discountcodes.php:268
|
400 |
+
msgid "Edit Discount Code"
|
401 |
+
msgstr "Modifier le code de réduction"
|
402 |
+
|
403 |
+
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
|
404 |
+
msgid "Add New Discount Code"
|
405 |
+
msgstr "Ajouter un nouveau code de réduction"
|
406 |
+
|
407 |
+
#: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
|
408 |
+
#: adminpages/membershiplevels.php:286 adminpages/membershiplevels.php:541
|
409 |
+
#: adminpages/memberslist.php:154 adminpages/orders.php:900
|
410 |
+
#: adminpages/reports/login.php:142
|
411 |
+
msgid "ID"
|
412 |
+
msgstr "ID"
|
413 |
+
|
414 |
+
#: adminpages/discountcodes.php:311 adminpages/orders.php:261
|
415 |
+
msgid "This will be generated when you save."
|
416 |
+
msgstr "Généré à l'enregistrement."
|
417 |
+
|
418 |
+
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
|
419 |
+
#: adminpages/orders.php:265 adminpages/orders.php:901
|
420 |
+
msgid "Code"
|
421 |
+
msgstr "Code"
|
422 |
+
|
423 |
+
#: adminpages/discountcodes.php:353
|
424 |
+
msgid "Start Date"
|
425 |
+
msgstr "date de début"
|
426 |
+
|
427 |
+
#: adminpages/discountcodes.php:371
|
428 |
+
#: classes/gateways/class.pmprogateway_braintree.php:321
|
429 |
+
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
430 |
+
#: pages/checkout.php:553
|
431 |
+
msgid "Expiration Date"
|
432 |
+
msgstr "date d'expiration"
|
433 |
+
|
434 |
+
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
|
435 |
+
msgid "Uses"
|
436 |
+
msgstr "Utilisations"
|
437 |
+
|
438 |
+
#: adminpages/discountcodes.php:392
|
439 |
+
msgid "Leave blank for unlimited uses."
|
440 |
+
msgstr "Laissez ce champ vide pour des utilisations illimitées."
|
441 |
+
|
442 |
+
#: adminpages/discountcodes.php:401
|
443 |
+
msgid "Which Levels Will This Code Apply To?"
|
444 |
+
msgstr "À quels niveaux s'appliquera ce code ?"
|
445 |
+
|
446 |
+
#: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:339
|
447 |
+
msgid "Initial Payment"
|
448 |
+
msgstr "Paiement initial"
|
449 |
+
|
450 |
+
#: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:350
|
451 |
+
msgid "The initial amount collected at registration."
|
452 |
+
msgstr "Le montant initial recueilli lors de l'inscription."
|
453 |
+
|
454 |
+
#: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:354
|
455 |
+
msgid "Recurring Subscription"
|
456 |
+
msgstr "Abonnement récurrent"
|
457 |
+
|
458 |
+
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:355
|
459 |
+
msgid "Check if this level has a recurring subscription payment."
|
460 |
+
msgstr "Cochez si ce niveau a un paiement d'abonnement récurrent."
|
461 |
+
|
462 |
+
#: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:359
|
463 |
+
msgid "Billing Amount"
|
464 |
+
msgstr "Montant payé"
|
465 |
+
|
466 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
467 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
468 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
469 |
+
msgid "Day(s)"
|
470 |
+
msgstr "Jour(s)"
|
471 |
+
|
472 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
473 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
474 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
475 |
+
msgid "Week(s)"
|
476 |
+
msgstr "Semaine(s)"
|
477 |
+
|
478 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
479 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
480 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
481 |
+
msgid "Month(s)"
|
482 |
+
msgstr "Mois"
|
483 |
+
|
484 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
485 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
486 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
487 |
+
msgid "Year(s)"
|
488 |
+
msgstr "Année(s)"
|
489 |
+
|
490 |
+
#: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:383
|
491 |
+
msgid "The amount to be billed one cycle after the initial payment."
|
492 |
+
msgstr "Le montant à facturer un cycle après le paiement initial."
|
493 |
+
|
494 |
+
#: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:401
|
495 |
+
msgid "Billing Cycle Limit"
|
496 |
+
msgstr "Maximum de cycles de paiement"
|
497 |
+
|
498 |
+
#: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:405
|
499 |
+
msgid ""
|
500 |
+
"The <strong>total</strong> number of recurring billing cycles for this level, "
|
501 |
+
"including the trial period (if applicable) but not including the initial payment. "
|
502 |
+
"Set to zero if membership is indefinite."
|
503 |
+
msgstr ""
|
504 |
+
"Le nombre <strong>total</strong> de cycles de paiement récurrents pour ce niveau, "
|
505 |
+
"y compris la période d'essai (le cas échéant), mais non compris le paiement "
|
506 |
+
"initial. Mettre à zéro si l'adhésion est sans limite de temps."
|
507 |
+
|
508 |
+
#: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:414
|
509 |
+
msgid "Custom Trial"
|
510 |
+
msgstr "Essai personnalisé"
|
511 |
+
|
512 |
+
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
513 |
+
msgid "Check to add a custom trial period."
|
514 |
+
msgstr "Cochez pour ajouter une période d'essai personnalisé."
|
515 |
+
|
516 |
+
#: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:425
|
517 |
+
msgid "Trial Billing Amount"
|
518 |
+
msgstr "Montant pour l'essai personnalisé"
|
519 |
+
|
520 |
+
#: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:436
|
521 |
+
msgid "for the first"
|
522 |
+
msgstr "pour la première"
|
523 |
+
|
524 |
+
#: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:438
|
525 |
+
msgid "subscription payments"
|
526 |
+
msgstr "paiements d'abonnement"
|
527 |
+
|
528 |
+
#: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:467
|
529 |
+
msgid "Membership Expiration"
|
530 |
+
msgstr "Expiration de l'adhésion"
|
531 |
+
|
532 |
+
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:468
|
533 |
+
msgid "Check this to set when membership access expires."
|
534 |
+
msgstr "Cochez cette case pour définir quand le niveau d'adhésion expire."
|
535 |
+
|
536 |
+
#: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:472
|
537 |
+
msgid "Expires In"
|
538 |
+
msgstr "Expire en"
|
539 |
+
|
540 |
+
#: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:485
|
541 |
+
msgid ""
|
542 |
+
"Set the duration of membership access. Note that the any future payments "
|
543 |
+
"(recurring subscription, if any) will be cancelled when the membership expires."
|
544 |
+
msgstr ""
|
545 |
+
"Réglez la durée du niveau d'adhésion. Notez que les tous les paiements futurs "
|
546 |
+
"(abonnement récurrent, le cas échéant) seront annulés lorsque l'abonnement "
|
547 |
+
"expirera."
|
548 |
+
|
549 |
+
#: adminpages/discountcodes.php:557
|
550 |
+
msgid "Memberships Discount Codes"
|
551 |
+
msgstr "Codes de réduction sur les adhésions"
|
552 |
+
|
553 |
+
#: adminpages/discountcodes.php:567
|
554 |
+
msgid "Search Discount Codes"
|
555 |
+
msgstr "Rechercher parmi les codes de réduction"
|
556 |
+
|
557 |
+
#: adminpages/discountcodes.php:570 adminpages/reports/login.php:83
|
558 |
+
msgid "Search"
|
559 |
+
msgstr "Rechercher"
|
560 |
+
|
561 |
+
#: adminpages/discountcodes.php:588
|
562 |
+
msgid "Starts"
|
563 |
+
msgstr "Commence"
|
564 |
+
|
565 |
+
#: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
|
566 |
+
#: adminpages/reports/login.php:147 includes/profile.php:98
|
567 |
+
msgid "Expires"
|
568 |
+
msgstr "Expire"
|
569 |
+
|
570 |
+
#: adminpages/discountcodes.php:591
|
571 |
+
msgid "Levels"
|
572 |
+
msgstr "Niveaux"
|
573 |
+
|
574 |
+
#: adminpages/discountcodes.php:603
|
575 |
+
msgid ""
|
576 |
+
"Discount codes allow you to offer your memberships at discounted prices to select "
|
577 |
+
"customers."
|
578 |
+
msgstr ""
|
579 |
+
"Ces codes de réduction vous permettent d'offrir vos abonnements à prix réduits "
|
580 |
+
"pour certains clients."
|
581 |
+
|
582 |
+
#: adminpages/discountcodes.php:603
|
583 |
+
msgid "Create your first discount code now"
|
584 |
+
msgstr "Créez votre premier code de réduction maintenant"
|
585 |
+
|
586 |
+
#: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:580
|
587 |
+
#: adminpages/orders.php:979
|
588 |
+
msgid "edit"
|
589 |
+
msgstr "éditer"
|
590 |
+
|
591 |
+
#: adminpages/discountcodes.php:651
|
592 |
+
#, php-format
|
593 |
+
msgid ""
|
594 |
+
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
595 |
+
"existing users will not change, but new users will not be able to use this code "
|
596 |
+
"anymore."
|
597 |
+
msgstr ""
|
598 |
+
"Êtes-vous sûr de vouloir effacer le code de réduction %s ? Les abonnements pour "
|
599 |
+
"les utilisateurs existants ne changeront pas, mais les nouveaux utilisateurs ne "
|
600 |
+
"pourront plus utiliser ce code."
|
601 |
+
|
602 |
+
#: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:580
|
603 |
+
#: adminpages/orders.php:985
|
604 |
+
msgid "delete"
|
605 |
+
msgstr "supprimer"
|
606 |
+
|
607 |
+
#: adminpages/emailsettings.php:69 includes/adminpages.php:50
|
608 |
+
#: includes/adminpages.php:128
|
609 |
+
msgid "Email Settings"
|
610 |
+
msgstr "Paramètres de courriel"
|
611 |
+
|
612 |
+
#: adminpages/emailsettings.php:70
|
613 |
+
msgid ""
|
614 |
+
"By default, system generated emails are sent from "
|
615 |
+
"<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
|
616 |
+
"address using the fields below."
|
617 |
+
msgstr ""
|
618 |
+
"Par défaut, les courriels générés par le système sont envoyés par "
|
619 |
+
"<em><strong>wordpress@yourdomain.com</strong></em>. Vous pouvez mettre à jour "
|
620 |
+
"cette adresse en utilisant les champs ci-dessous"
|
621 |
+
|
622 |
+
#: adminpages/emailsettings.php:72
|
623 |
+
msgid ""
|
624 |
+
"To modify the appearance of system generated emails, add the files "
|
625 |
+
"<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
|
626 |
+
"directory. This will modify both the WordPress default messages as well as "
|
627 |
+
"messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro - "
|
628 |
+
"Member Communications\" target=\"_blank\" href=\"http://www.paidmembershipspro."
|
629 |
+
"com/documentation/member-communications/\">Click here to learn more about Paid "
|
630 |
+
"Memberships Pro emails</a>."
|
631 |
+
msgstr ""
|
632 |
+
"Pour modifier l'apparence des courriels générés, ajoutez les fichiers "
|
633 |
+
"<em>email_header.html</em> et <em>email_footer.html</em> dans le répertoire de "
|
634 |
+
"votre thème. Cela modifiera à la fois les messages par défaut de Wordpress et les "
|
635 |
+
"messages générés par Paid Menberships Pro. <a title=\"Paid Memberships Pro - "
|
636 |
+
"Member Communications\" target=\"_blank\" href=\"http://www.paidmembershipspro."
|
637 |
+
"com/documentation/member-communications/\">Cliquez ici pour en apprendre plus sur "
|
638 |
+
"les courriels dans Paid Memberships Pro</a>."
|
639 |
+
|
640 |
+
#: adminpages/emailsettings.php:78
|
641 |
+
msgid "From Email"
|
642 |
+
msgstr "Courriel d'envoi"
|
643 |
+
|
644 |
+
#: adminpages/emailsettings.php:86
|
645 |
+
msgid "From Name"
|
646 |
+
msgstr "Nom d'envoi"
|
647 |
+
|
648 |
+
#: adminpages/emailsettings.php:94
|
649 |
+
msgid "Only Filter PMPro Emails?"
|
650 |
+
msgstr "Filtrer seulement les courriels de PMPro ?"
|
651 |
+
|
652 |
+
#: adminpages/emailsettings.php:98
|
653 |
+
msgid "If unchecked, all emails from \"WordPress <"
|
654 |
+
msgstr "Si décoché, tous les courriels venant de \"WordPress <"
|
655 |
+
|
656 |
+
#: adminpages/emailsettings.php:115
|
657 |
+
msgid "Send the site admin emails"
|
658 |
+
msgstr "Envoyer des courriels aux administrateurs du site"
|
659 |
+
|
660 |
+
#: adminpages/emailsettings.php:121
|
661 |
+
msgid "Checkout"
|
662 |
+
msgstr "Paiement"
|
663 |
+
|
664 |
+
#: adminpages/emailsettings.php:125
|
665 |
+
msgid "when a member checks out."
|
666 |
+
msgstr "quand un membre paye."
|
667 |
+
|
668 |
+
#: adminpages/emailsettings.php:130
|
669 |
+
msgid "Admin Changes"
|
670 |
+
msgstr "Changements par un admin"
|
671 |
+
|
672 |
+
#: adminpages/emailsettings.php:134
|
673 |
+
msgid "when an admin changes a user's membership level through the dashboard."
|
674 |
+
msgstr ""
|
675 |
+
"quand un administrateur change le niveau d'adhésion d'un utilisateur par le "
|
676 |
+
"tableau de bord."
|
677 |
+
|
678 |
+
#: adminpages/emailsettings.php:139
|
679 |
+
msgid "Cancellation"
|
680 |
+
msgstr "Annulation"
|
681 |
+
|
682 |
+
#: adminpages/emailsettings.php:143
|
683 |
+
msgid "when a user cancels his or her account."
|
684 |
+
msgstr "quand un utilisateur annule son compte."
|
685 |
+
|
686 |
+
#: adminpages/emailsettings.php:148
|
687 |
+
msgid "Bill Updates"
|
688 |
+
msgstr "Mise à jour des factures"
|
689 |
+
|
690 |
+
#: adminpages/emailsettings.php:152
|
691 |
+
msgid "when a user updates his or her billing information."
|
692 |
+
msgstr "lorsqu'un utilisateur met à jour ses informations de facturation."
|
693 |
+
|
694 |
+
#: adminpages/emailsettings.php:158
|
695 |
+
msgid "Send members emails"
|
696 |
+
msgstr "Envoyer des courriels aux membres"
|
697 |
+
|
698 |
+
#: adminpages/emailsettings.php:164
|
699 |
+
msgid "New Users"
|
700 |
+
msgstr "Nouveaux utilisateurs"
|
701 |
+
|
702 |
+
#: adminpages/emailsettings.php:168
|
703 |
+
msgid ""
|
704 |
+
"Default WP notification email. (Recommended: Leave unchecked. Members will still "
|
705 |
+
"get an email confirmation from PMPro after checkout.)"
|
706 |
+
msgstr ""
|
707 |
+
"Notification courriel de Wordpress par défaut. (Recommandé : Laissez décochée. "
|
708 |
+
"Les membres continueront de recevoir un courriel de confirmation de PMPpro après "
|
709 |
+
"paiement.)"
|
710 |
+
|
711 |
+
#: adminpages/membershiplevels.php:118
|
712 |
+
msgid "Membership level updated successfully."
|
713 |
+
msgstr "Niveau d'adhésion mis à jour."
|
714 |
+
|
715 |
+
#: adminpages/membershiplevels.php:124
|
716 |
+
msgid "Error updating membership level."
|
717 |
+
msgstr "Erreur de mise à jour du niveau d'adhésion."
|
718 |
+
|
719 |
+
#: adminpages/membershiplevels.php:141
|
720 |
+
msgid "Membership level added successfully."
|
721 |
+
msgstr "Niveau d'adhésion ajouté."
|
722 |
+
|
723 |
+
#: adminpages/membershiplevels.php:146
|
724 |
+
msgid "Error adding membership level."
|
725 |
+
msgstr "Erreur lors de l'ajout d'un niveau d'adhésion."
|
726 |
+
|
727 |
+
#: adminpages/membershiplevels.php:181
|
728 |
+
#, php-format
|
729 |
+
msgid ""
|
730 |
+
"There was an error canceling the subscription for user with ID=%d. You will want "
|
731 |
+
"to check your payment gateway to see if their subscription is still active."
|
732 |
+
msgstr ""
|
733 |
+
"Une erreur est survenue lors de l'annulation de l'abonnement de l'utilisateur "
|
734 |
+
"avec ID=%d. Vous devriez vérifier votre passerelle de paiement pour voir si son "
|
735 |
+
"abonnement est toujours actif."
|
736 |
+
|
737 |
+
#: adminpages/membershiplevels.php:184
|
738 |
+
msgid "Last Invoice"
|
739 |
+
msgstr "Dernière facture"
|
740 |
+
|
741 |
+
#: adminpages/membershiplevels.php:198
|
742 |
+
msgid "Membership level deleted successfully."
|
743 |
+
msgstr "Niveau d'adhésion supprimé."
|
744 |
+
|
745 |
+
#: adminpages/membershiplevels.php:203 adminpages/membershiplevels.php:209
|
746 |
+
msgid "Error deleting membership level."
|
747 |
+
msgstr "Erreur lors de la suppression du niveau d'adhésion."
|
748 |
+
|
749 |
+
#: adminpages/membershiplevels.php:224
|
750 |
+
msgid "Edit Membership Level"
|
751 |
+
msgstr "Éditer le niveau d'adhésion."
|
752 |
+
|
753 |
+
#: adminpages/membershiplevels.php:226
|
754 |
+
msgid "Add New Membership Level"
|
755 |
+
msgstr "Ajouter un nouveau niveau d'adhésion"
|
756 |
+
|
757 |
+
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:542
|
758 |
+
#: adminpages/reports/login.php:144
|
759 |
+
msgid "Name"
|
760 |
+
msgstr "Nom"
|
761 |
+
|
762 |
+
#: adminpages/membershiplevels.php:298
|
763 |
+
msgid "Description"
|
764 |
+
msgstr "Description"
|
765 |
+
|
766 |
+
#: adminpages/membershiplevels.php:316
|
767 |
+
msgid "Confirmation Message"
|
768 |
+
msgstr "Message de confirmation"
|
769 |
+
|
770 |
+
#: adminpages/membershiplevels.php:335 adminpages/membershiplevels.php:543
|
771 |
+
msgid "Billing Details"
|
772 |
+
msgstr "Détails de facturation"
|
773 |
+
|
774 |
+
#: adminpages/membershiplevels.php:370
|
775 |
+
#: classes/gateways/class.pmprogateway_stripe.php:619
|
776 |
+
msgid "per"
|
777 |
+
msgstr "par"
|
778 |
+
|
779 |
+
#: adminpages/membershiplevels.php:385
|
780 |
+
msgid ""
|
781 |
+
"Stripe integration currently only supports billing periods of \"Week\", \"Month\" "
|
782 |
+
"or \"Year\"."
|
783 |
+
msgstr ""
|
784 |
+
"L'intégration Stripe ne supporte actuellement que les périodes de facturation par "
|
785 |
+
"semaine, mois et année."
|
786 |
+
|
787 |
+
#: adminpages/membershiplevels.php:387
|
788 |
+
msgid ""
|
789 |
+
"Braintree integration currently only supports billing periods of \"Month\" or "
|
790 |
+
"\"Year\"."
|
791 |
+
msgstr ""
|
792 |
+
"L'intégration Braintree ne supporte actuellement que les périodes de facturation "
|
793 |
+
"par mois et année."
|
794 |
+
|
795 |
+
#: adminpages/membershiplevels.php:389
|
796 |
+
msgid ""
|
797 |
+
"Payflow integration currently only supports billing frequencies of 1 and billing "
|
798 |
+
"periods of \"Week\", \"Month\" or \"Year\"."
|
799 |
+
msgstr ""
|
800 |
+
"L'intégration Payflox ne supporte actuellement que les fréquences de 1 et les "
|
801 |
+
"périodes de facturation par semaine, mois et année."
|
802 |
+
|
803 |
+
#: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
|
804 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:101
|
805 |
+
#: classes/gateways/class.pmprogateway_paypal.php:118
|
806 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:123
|
807 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:117
|
808 |
+
msgid "Note"
|
809 |
+
msgstr "Remarque"
|
810 |
+
|
811 |
+
#: adminpages/membershiplevels.php:393
|
812 |
+
msgid ""
|
813 |
+
"After saving this level, make note of the ID and create a \"Plan\" in your "
|
814 |
+
"Braintree dashboard with the same settings and the \"Plan ID\" set to "
|
815 |
+
"<em>pmpro_#</em>, where # is the level ID."
|
816 |
+
msgstr ""
|
817 |
+
"Après avoir enregistré ce niveau, prenez note de son ID et créez un \"Plan\" dans "
|
818 |
+
"votre tableau de bord Braintree avec les mêmes réglages et le \"Plan ID\" mis à "
|
819 |
+
"<em>pmpro_#</em>, où # est l'ID du niveau."
|
820 |
+
|
821 |
+
#: adminpages/membershiplevels.php:395
|
822 |
+
msgid ""
|
823 |
+
"You will need to create a \"Plan\" in your Braintree dashboard with the same "
|
824 |
+
"settings and the \"Plan ID\" set to"
|
825 |
+
msgstr ""
|
826 |
+
"Vous devrez créer un \"Plan\" dans votre tableau de bord Braintree avec les mêmes "
|
827 |
+
"réglages et le \"Plan ID\" mis à "
|
828 |
+
|
829 |
+
#: adminpages/membershiplevels.php:407
|
830 |
+
msgid ""
|
831 |
+
"Stripe integration currently does not support billing limits. You can still set "
|
832 |
+
"an expiration date below."
|
833 |
+
msgstr ""
|
834 |
+
"L'intégration de Stripe ne supporte actuellement pas les limites de facturation. "
|
835 |
+
"Vous pouvez toujours définir une date d'expiration ci-dessous."
|
836 |
+
|
837 |
+
#: adminpages/membershiplevels.php:419
|
838 |
+
msgid ""
|
839 |
+
"2Checkout integration does not support custom trials. You can do one period "
|
840 |
+
"trials by setting an initial payment different from the billing amount."
|
841 |
+
msgstr ""
|
842 |
+
"L'intégration 2Checkout ne supporte pas les essais personnalisés. Vous pouvez "
|
843 |
+
"avoir une période d'essai en mettant un paiement initial différent du montant "
|
844 |
+
"récurrent."
|
845 |
+
|
846 |
+
#: adminpages/membershiplevels.php:441
|
847 |
+
msgid "Stripe integration currently does not support trial amounts greater than $0."
|
848 |
+
msgstr ""
|
849 |
+
"L'intégration de Stripe ne supporte actuellement pas des périodes d'essai "
|
850 |
+
"supérieures à 0€"
|
851 |
+
|
852 |
+
#: adminpages/membershiplevels.php:445
|
853 |
+
msgid ""
|
854 |
+
"Braintree integration currently does not support trial amounts greater than $0."
|
855 |
+
msgstr ""
|
856 |
+
"L'intégration de Braintree ne supporte actuellement pas des périodes d'essai "
|
857 |
+
"supérieures à 0€"
|
858 |
+
|
859 |
+
#: adminpages/membershiplevels.php:449
|
860 |
+
msgid ""
|
861 |
+
"Payflow integration currently does not support trial amounts greater than $0."
|
862 |
+
msgstr ""
|
863 |
+
"L'intégration de Payflow ne supporte actuellement pas des périodes d'essai "
|
864 |
+
"supérieures à 0€"
|
865 |
+
|
866 |
+
#: adminpages/membershiplevels.php:458
|
867 |
+
msgid "Other Settings"
|
868 |
+
msgstr "Autres paramètres"
|
869 |
+
|
870 |
+
#: adminpages/membershiplevels.php:462
|
871 |
+
msgid "Disable New Signups"
|
872 |
+
msgstr "Désactiver les nouvelles inscriptions"
|
873 |
+
|
874 |
+
#: adminpages/membershiplevels.php:463
|
875 |
+
msgid ""
|
876 |
+
"Check to hide this level from the membership levels page and disable registration."
|
877 |
+
msgstr ""
|
878 |
+
"Cochez pour cacher ce niveau de la page des niveaux d'adhésion et désactiver "
|
879 |
+
"l'adhésion."
|
880 |
+
|
881 |
+
#: adminpages/membershiplevels.php:493
|
882 |
+
msgid "Content Settings"
|
883 |
+
msgstr "Paramètres de contenu"
|
884 |
+
|
885 |
+
#: adminpages/membershiplevels.php:497
|
886 |
+
msgid "Categories"
|
887 |
+
msgstr "Catégories"
|
888 |
+
|
889 |
+
#: adminpages/membershiplevels.php:514
|
890 |
+
msgid "Save Level"
|
891 |
+
msgstr "Enregistrer le niveau d'adhésion"
|
892 |
+
|
893 |
+
#: adminpages/membershiplevels.php:515 adminpages/orders.php:561
|
894 |
+
#: pages/billing.php:330 pages/cancel.php:71 shortcodes/pmpro_account.php:70
|
895 |
+
msgid "Cancel"
|
896 |
+
msgstr "Annuler"
|
897 |
+
|
898 |
+
#: adminpages/membershiplevels.php:526
|
899 |
+
msgid "Add New Level"
|
900 |
+
msgstr "Ajouter un nouveau niveau"
|
901 |
+
|
902 |
+
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:532
|
903 |
+
msgid "Search Levels"
|
904 |
+
msgstr "Recherche de niveaux"
|
905 |
+
|
906 |
+
#: adminpages/membershiplevels.php:544 pages/cancel.php:53 pages/confirmation.php:83
|
907 |
+
#: pages/invoice.php:70 shortcodes/pmpro_account.php:46
|
908 |
+
msgid "Expiration"
|
909 |
+
msgstr "Expiration"
|
910 |
+
|
911 |
+
#: adminpages/membershiplevels.php:545
|
912 |
+
msgid "Allow Signups"
|
913 |
+
msgstr "Permette les inscriptions"
|
914 |
+
|
915 |
+
#: adminpages/membershiplevels.php:566
|
916 |
+
msgid "FREE"
|
917 |
+
msgstr "GRATUIT"
|
918 |
+
|
919 |
+
#: adminpages/membershiplevels.php:575
|
920 |
+
msgid "After"
|
921 |
+
msgstr "Après"
|
922 |
+
|
923 |
+
#: adminpages/membershiplevels.php:580 adminpages/orders.php:982
|
924 |
+
msgid "copy"
|
925 |
+
msgstr "copier"
|
926 |
+
|
927 |
+
#: adminpages/membershiplevels.php:580
|
928 |
+
#, php-format
|
929 |
+
msgid ""
|
930 |
+
"Are you sure you want to delete membership level %s? All subscriptions will be "
|
931 |
+
"cancelled."
|
932 |
+
msgstr ""
|
933 |
+
"Êtes-vous sûr de vouloir effacer le niveau d'adhésion %s ? Toutes les "
|
934 |
+
"souscriptions seront annulées."
|
935 |
+
|
936 |
+
#: adminpages/memberslist.php:25 includes/adminpages.php:53
|
937 |
+
#: includes/adminpages.php:149
|
938 |
+
msgid "Members List"
|
939 |
+
msgstr "Liste des membres"
|
940 |
+
|
941 |
+
#: adminpages/memberslist.php:26 adminpages/orders.php:591
|
942 |
+
msgid "Export to CSV"
|
943 |
+
msgstr "Exporter au format CSV"
|
944 |
+
|
945 |
+
#: adminpages/memberslist.php:30 adminpages/orders.php:603
|
946 |
+
#: adminpages/reports/login.php:67 adminpages/reports/memberships.php:292
|
947 |
+
#: adminpages/reports/sales.php:193
|
948 |
+
msgid "Show"
|
949 |
+
msgstr "Montrer"
|
950 |
+
|
951 |
+
#: adminpages/memberslist.php:32 adminpages/reports/login.php:69
|
952 |
+
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:216
|
953 |
+
msgid "All Levels"
|
954 |
+
msgstr "Tous les niveaux"
|
955 |
+
|
956 |
+
#: adminpages/memberslist.php:42
|
957 |
+
msgid "Cancelled Members"
|
958 |
+
msgstr "Membre annulé"
|
959 |
+
|
960 |
+
#: adminpages/memberslist.php:43
|
961 |
+
msgid "Expired Members"
|
962 |
+
msgstr "Membre expiré"
|
963 |
+
|
964 |
+
#: adminpages/memberslist.php:44
|
965 |
+
msgid "Old Members"
|
966 |
+
msgstr "Ancien membres"
|
967 |
+
|
968 |
+
#: adminpages/memberslist.php:49 adminpages/memberslist.php:52
|
969 |
+
msgid "Search Members"
|
970 |
+
msgstr "Recherchez les membres"
|
971 |
+
|
972 |
+
#: adminpages/memberslist.php:146
|
973 |
+
#, php-format
|
974 |
+
msgid "%d members found."
|
975 |
+
msgstr "%d membres trouvés"
|
976 |
+
|
977 |
+
#: adminpages/memberslist.php:155 pages/checkout.php:171
|
978 |
+
#: shortcodes/pmpro_account.php:105
|
979 |
+
msgid "Username"
|
980 |
+
msgstr "Nom d'utilisateur"
|
981 |
+
|
982 |
+
#: adminpages/memberslist.php:156
|
983 |
+
msgid "First Name"
|
984 |
+
msgstr "Prénom"
|
985 |
+
|
986 |
+
#: adminpages/memberslist.php:157
|
987 |
+
msgid "Last Name"
|
988 |
+
msgstr "Nom"
|
989 |
+
|
990 |
+
#: adminpages/memberslist.php:160 pages/billing.php:62 pages/checkout.php:302
|
991 |
+
#: pages/confirmation.php:61 pages/invoice.php:48
|
992 |
+
msgid "Billing Address"
|
993 |
+
msgstr "Adresse de facturation"
|
994 |
+
|
995 |
+
#: adminpages/memberslist.php:161 adminpages/reports/login.php:145
|
996 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:303
|
997 |
+
msgid "Membership"
|
998 |
+
msgstr "Adhésion"
|
999 |
+
|
1000 |
+
#: adminpages/memberslist.php:162
|
1001 |
+
msgid "Fee"
|
1002 |
+
msgstr "Frais"
|
1003 |
+
|
1004 |
+
#: adminpages/memberslist.php:163 adminpages/reports/login.php:146
|
1005 |
+
msgid "Joined"
|
1006 |
+
msgstr "Inscrit"
|
1007 |
+
|
1008 |
+
#: adminpages/memberslist.php:167
|
1009 |
+
msgid "Ended"
|
1010 |
+
msgstr "Terminé"
|
1011 |
+
|
1012 |
+
#: adminpages/memberslist.php:251 adminpages/reports/login.php:212
|
1013 |
+
msgid "No members found."
|
1014 |
+
msgstr "Aucun membre trouvé."
|
1015 |
+
|
1016 |
+
#: adminpages/memberslist.php:251 adminpages/reports/login.php:212
|
1017 |
+
msgid "Search all levels"
|
1018 |
+
msgstr "Rechercher parmi tous les niveaux"
|
1019 |
+
|
1020 |
+
#: adminpages/orders.php:67
|
1021 |
+
msgid "Order deleted successfully."
|
1022 |
+
msgstr "Commande supprimée."
|
1023 |
+
|
1024 |
+
#: adminpages/orders.php:72
|
1025 |
+
msgid "Error deleting order."
|
1026 |
+
msgstr "Erreur lors de la suppression de la commande."
|
1027 |
+
|
1028 |
+
#: adminpages/orders.php:169
|
1029 |
+
msgid "Order saved successfully."
|
1030 |
+
msgstr "Commande enregistgrée."
|
1031 |
+
|
1032 |
+
#: adminpages/orders.php:174
|
1033 |
+
msgid "Error updating order timestamp."
|
1034 |
+
msgstr "Erreur lors de la mise à jour de la date de la commande."
|
1035 |
+
|
1036 |
+
#: adminpages/orders.php:180
|
1037 |
+
msgid "Error saving order."
|
1038 |
+
msgstr "Erreur en sauvant la commande."
|
1039 |
+
|
1040 |
+
#: adminpages/orders.php:245
|
1041 |
+
msgid "Order"
|
1042 |
+
msgstr "Commande"
|
1043 |
+
|
1044 |
+
#: adminpages/orders.php:247
|
1045 |
+
msgid "New Order"
|
1046 |
+
msgstr "Nouvelle commande"
|
1047 |
+
|
1048 |
+
#: adminpages/orders.php:270
|
1049 |
+
msgid "Randomly generated for you."
|
1050 |
+
msgstr "Généré de façon aléatoire pour vous."
|
1051 |
+
|
1052 |
+
#: adminpages/orders.php:275
|
1053 |
+
msgid "User ID"
|
1054 |
+
msgstr "ID utilisateur"
|
1055 |
+
|
1056 |
+
#: adminpages/orders.php:284
|
1057 |
+
msgid "Membership Level ID"
|
1058 |
+
msgstr "ID niveau d'adhésion"
|
1059 |
+
|
1060 |
+
#: adminpages/orders.php:293
|
1061 |
+
msgid "Billing Name"
|
1062 |
+
msgstr "Nom de facturation"
|
1063 |
+
|
1064 |
+
#: adminpages/orders.php:301
|
1065 |
+
msgid "Billing Street"
|
1066 |
+
msgstr "Rue de facturation"
|
1067 |
+
|
1068 |
+
#: adminpages/orders.php:308
|
1069 |
+
msgid "Billing City"
|
1070 |
+
msgstr "Ville de facturation"
|
1071 |
+
|
1072 |
+
#: adminpages/orders.php:315
|
1073 |
+
msgid "Billing State"
|
1074 |
+
msgstr "Province de facturation"
|
1075 |
+
|
1076 |
+
#: adminpages/orders.php:322
|
1077 |
+
msgid "Billing Postal Code"
|
1078 |
+
msgstr "Code postal de facturation"
|
1079 |
+
|
1080 |
+
#: adminpages/orders.php:329
|
1081 |
+
msgid "Billing Country"
|
1082 |
+
msgstr "Pays de facturation"
|
1083 |
+
|
1084 |
+
#: adminpages/orders.php:337
|
1085 |
+
msgid "Billing Phone"
|
1086 |
+
msgstr "Téléphone de facturation"
|
1087 |
+
|
1088 |
+
#: adminpages/orders.php:346
|
1089 |
+
msgid "Sub Total"
|
1090 |
+
msgstr "Sous-total"
|
1091 |
+
|
1092 |
+
#: adminpages/orders.php:354 pages/invoice.php:80
|
1093 |
+
msgid "Tax"
|
1094 |
+
msgstr "Taxe"
|
1095 |
+
|
1096 |
+
#: adminpages/orders.php:362
|
1097 |
+
msgid "Coupon Amount"
|
1098 |
+
msgstr "Montant du coupon"
|
1099 |
+
|
1100 |
+
#: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
|
1101 |
+
msgid "Total"
|
1102 |
+
msgstr "Total"
|
1103 |
+
|
1104 |
+
#: adminpages/orders.php:375
|
1105 |
+
msgid "Should be subtotal + tax - couponamount."
|
1106 |
+
msgstr "Devrait être le sous-total + la taxe - le montant du coupon."
|
1107 |
+
|
1108 |
+
#: adminpages/orders.php:380
|
1109 |
+
msgid "Payment Type"
|
1110 |
+
msgstr "Type de paiement"
|
1111 |
+
|
1112 |
+
#: adminpages/orders.php:385
|
1113 |
+
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
1114 |
+
msgstr "c'est-à-dire PayPal Express, PayPal Standard ou carte de crédit."
|
1115 |
+
|
1116 |
+
#: adminpages/orders.php:389 classes/gateways/class.pmprogateway_braintree.php:304
|
1117 |
+
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1118 |
+
#: pages/checkout.php:507
|
1119 |
+
msgid "Card Type"
|
1120 |
+
msgstr "Type de carte"
|
1121 |
+
|
1122 |
+
#: adminpages/orders.php:394
|
1123 |
+
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
1124 |
+
msgstr "c'est-à-dire Visa, MasterCartd, AMEX, etc."
|
1125 |
+
|
1126 |
+
#: adminpages/orders.php:398 classes/gateways/class.pmprogateway_twocheckout.php:129
|
1127 |
+
msgid "Account Number"
|
1128 |
+
msgstr "Numéro de compte"
|
1129 |
+
|
1130 |
+
#: adminpages/orders.php:403
|
1131 |
+
msgid "Obscure all but last 4 digits."
|
1132 |
+
msgstr "Masque tout sauf les 4 derniers chiffres."
|
1133 |
+
|
1134 |
+
#: adminpages/orders.php:408
|
1135 |
+
msgid "Expiration Month"
|
1136 |
+
msgstr "Mois d'expiration"
|
1137 |
+
|
1138 |
+
#: adminpages/orders.php:415
|
1139 |
+
msgid "Expiration Year"
|
1140 |
+
msgstr "Année d'expiration"
|
1141 |
+
|
1142 |
+
#: adminpages/orders.php:423 adminpages/orders.php:909
|
1143 |
+
msgid "Status"
|
1144 |
+
msgstr "Statut"
|
1145 |
+
|
1146 |
+
#: adminpages/orders.php:444 adminpages/orders.php:907
|
1147 |
+
msgid "Gateway"
|
1148 |
+
msgstr "Passerelle"
|
1149 |
+
|
1150 |
+
#: adminpages/orders.php:462 adminpages/paymentsettings.php:124
|
1151 |
+
msgid "Gateway Environment"
|
1152 |
+
msgstr "Environnement de passerelle"
|
1153 |
+
|
1154 |
+
#: adminpages/orders.php:466 adminpages/paymentsettings.php:128
|
1155 |
+
msgid "Sandbox/Testing"
|
1156 |
+
msgstr "Enironnement de test"
|
1157 |
+
|
1158 |
+
#: adminpages/orders.php:467 adminpages/paymentsettings.php:129
|
1159 |
+
msgid "Live/Production"
|
1160 |
+
msgstr "Environnement de production"
|
1161 |
+
|
1162 |
+
#: adminpages/orders.php:474
|
1163 |
+
msgid "Payment Transaction ID"
|
1164 |
+
msgstr "ID de la transaction du paiement"
|
1165 |
+
|
1166 |
+
#: adminpages/orders.php:479
|
1167 |
+
msgid "Generated by the gateway. Useful to cross reference orders."
|
1168 |
+
msgstr "Généré par la passerelle. Utile pour voir les références des commandes."
|
1169 |
+
|
1170 |
+
#: adminpages/orders.php:483
|
1171 |
+
msgid "Subscription Transaction ID"
|
1172 |
+
msgstr "Numéro de la transaction d'abonnement"
|
1173 |
+
|
1174 |
+
#: adminpages/orders.php:488
|
1175 |
+
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
1176 |
+
msgstr "Généré par la passerelle. Utile pour voir la référence des abonnements."
|
1177 |
+
|
1178 |
+
#: adminpages/orders.php:493 adminpages/orders.php:910 pages/invoice.php:107
|
1179 |
+
#: shortcodes/pmpro_account.php:122
|
1180 |
+
msgid "Date"
|
1181 |
+
msgstr "Date"
|
1182 |
+
|
1183 |
+
#: adminpages/orders.php:527
|
1184 |
+
msgid "Affiliate ID"
|
1185 |
+
msgstr "ID d'affiliation"
|
1186 |
+
|
1187 |
+
#: adminpages/orders.php:535
|
1188 |
+
msgid "Affiliate SubID"
|
1189 |
+
msgstr "SubID d'affiliation"
|
1190 |
+
|
1191 |
+
#: adminpages/orders.php:545
|
1192 |
+
msgid "Notes"
|
1193 |
+
msgstr "Remarques"
|
1194 |
+
|
1195 |
+
#: adminpages/orders.php:560
|
1196 |
+
msgid "Save Order"
|
1197 |
+
msgstr "Enregistrer la commande"
|
1198 |
+
|
1199 |
+
#: adminpages/orders.php:570 includes/adminpages.php:55 includes/adminpages.php:163
|
1200 |
+
msgid "Orders"
|
1201 |
+
msgstr "Commandes"
|
1202 |
+
|
1203 |
+
#: adminpages/orders.php:571
|
1204 |
+
msgid "Add New Order"
|
1205 |
+
msgstr "Ajouter une nouvelle commande"
|
1206 |
+
|
1207 |
+
#: adminpages/orders.php:605
|
1208 |
+
msgid "All"
|
1209 |
+
msgstr "Tout"
|
1210 |
+
|
1211 |
+
#: adminpages/orders.php:606
|
1212 |
+
msgid "Within a Date Range"
|
1213 |
+
msgstr "Dans la plage de dates"
|
1214 |
+
|
1215 |
+
#: adminpages/orders.php:607
|
1216 |
+
msgid "Predefined Date Range"
|
1217 |
+
msgstr "Plage de date prédéfinie"
|
1218 |
+
|
1219 |
+
#: adminpages/orders.php:608
|
1220 |
+
msgid "Within a Level"
|
1221 |
+
msgstr "Dans le niveau"
|
1222 |
+
|
1223 |
+
#: adminpages/orders.php:609
|
1224 |
+
msgid "Within a Status"
|
1225 |
+
msgstr "Dans le statut"
|
1226 |
+
|
1227 |
+
#: adminpages/orders.php:612
|
1228 |
+
msgid "From"
|
1229 |
+
msgstr "De"
|
1230 |
+
|
1231 |
+
#: adminpages/orders.php:624
|
1232 |
+
msgid "To"
|
1233 |
+
msgstr "À"
|
1234 |
+
|
1235 |
+
#: adminpages/orders.php:636
|
1236 |
+
msgid "filter by "
|
1237 |
+
msgstr "filtré par"
|
1238 |
+
|
1239 |
+
#: adminpages/orders.php:674
|
1240 |
+
msgid "Filter"
|
1241 |
+
msgstr "Filtrer"
|
1242 |
+
|
1243 |
+
#: adminpages/orders.php:777 adminpages/orders.php:780
|
1244 |
+
msgid "Search Orders"
|
1245 |
+
msgstr "Rechercher parmi les commandes"
|
1246 |
+
|
1247 |
+
#: adminpages/orders.php:893
|
1248 |
+
#, php-format
|
1249 |
+
msgid "%d orders found."
|
1250 |
+
msgstr "%d commandes trouvées."
|
1251 |
+
|
1252 |
+
#: adminpages/orders.php:902 adminpages/reports/login.php:143
|
1253 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1254 |
+
msgid "User"
|
1255 |
+
msgstr "Utilisateur"
|
1256 |
+
|
1257 |
+
#: adminpages/orders.php:904 includes/init.php:218 includes/profile.php:27
|
1258 |
+
#: pages/checkout.php:33 pages/confirmation.php:47 pages/confirmation.php:64
|
1259 |
+
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
1260 |
+
msgid "Membership Level"
|
1261 |
+
msgstr "Niveau d'adhésion"
|
1262 |
+
|
1263 |
+
#: adminpages/orders.php:906 adminpages/orders.php:972
|
1264 |
+
msgid "Payment"
|
1265 |
+
msgstr "Paiement"
|
1266 |
+
|
1267 |
+
#: adminpages/orders.php:908
|
1268 |
+
msgid "Transaction IDs"
|
1269 |
+
msgstr "IDs de transactions"
|
1270 |
+
|
1271 |
+
#: adminpages/orders.php:933
|
1272 |
+
msgid "deleted"
|
1273 |
+
msgstr "supprimé"
|
1274 |
+
|
1275 |
+
#: adminpages/orders.php:974
|
1276 |
+
msgid "Subscription"
|
1277 |
+
msgstr "Abonnement"
|
1278 |
+
|
1279 |
+
#: adminpages/orders.php:985
|
1280 |
+
#, php-format
|
1281 |
+
msgid ""
|
1282 |
+
"Deleting orders is permanent and can affect active users. Are you sure you want "
|
1283 |
+
"to delete order %s?"
|
1284 |
+
msgstr ""
|
1285 |
+
"La suppression des commandes est permanente et peut affecter les utilisateurs "
|
1286 |
+
"actifs. Êtes-vous sûr de vouloir supprimer la commande %s ?"
|
1287 |
+
|
1288 |
+
#: adminpages/orders.php:995
|
1289 |
+
msgid "No orders found."
|
1290 |
+
msgstr "Aucune commande trouvée."
|
1291 |
+
|
1292 |
+
#: adminpages/pagesettings.php:51
|
1293 |
+
msgid "Membership Account"
|
1294 |
+
msgstr "Compte d'adhérent"
|
1295 |
+
|
1296 |
+
#: adminpages/pagesettings.php:54
|
1297 |
+
msgid "Membership Billing"
|
1298 |
+
msgstr "Reçu d'adhésion"
|
1299 |
+
|
1300 |
+
#: adminpages/pagesettings.php:57
|
1301 |
+
msgid "Membership Cancel"
|
1302 |
+
msgstr "Annulation d'adhésion"
|
1303 |
+
|
1304 |
+
#: adminpages/pagesettings.php:60
|
1305 |
+
msgid "Membership Checkout"
|
1306 |
+
msgstr "Paiement d'adhésion"
|
1307 |
+
|
1308 |
+
#: adminpages/pagesettings.php:63
|
1309 |
+
msgid "Membership Confirmation"
|
1310 |
+
msgstr "Confirmation d'adhésion"
|
1311 |
+
|
1312 |
+
#: adminpages/pagesettings.php:66
|
1313 |
+
msgid "Membership Invoice"
|
1314 |
+
msgstr "Facture d'adhésion"
|
1315 |
+
|
1316 |
+
#: adminpages/pagesettings.php:73
|
1317 |
+
#, php-format
|
1318 |
+
msgid "Membership %s"
|
1319 |
+
msgstr "Adhésion %s"
|
1320 |
+
|
1321 |
+
#: adminpages/pagesettings.php:111
|
1322 |
+
msgid "The following pages have been created for you"
|
1323 |
+
msgstr "Les pages qui suivent ont été créés pour vous"
|
1324 |
+
|
1325 |
+
#: adminpages/pagesettings.php:126
|
1326 |
+
msgid ""
|
1327 |
+
"Manage the WordPress pages assigned to each required Paid Memberships Pro page."
|
1328 |
+
msgstr "Gérer les pages Wordpress assignées à chaque page Paid Memberships Pro."
|
1329 |
+
|
1330 |
+
#: adminpages/pagesettings.php:132
|
1331 |
+
msgid "Assign the WordPress pages for each required Paid Memberships Pro page or"
|
1332 |
+
msgstr "Assigner les pages Wordpress à chaque page Paid Memberships Pro."
|
1333 |
+
|
1334 |
+
#: adminpages/pagesettings.php:132
|
1335 |
+
msgid "click here to let us generate them for you"
|
1336 |
+
msgstr "Cliquer ici pour nous laisser générer ceci pour vous."
|
1337 |
+
|
1338 |
+
#: adminpages/pagesettings.php:140
|
1339 |
+
msgid "Account Page"
|
1340 |
+
msgstr "Page de compte"
|
1341 |
+
|
1342 |
+
#: adminpages/pagesettings.php:144 adminpages/pagesettings.php:159
|
1343 |
+
#: adminpages/pagesettings.php:174 adminpages/pagesettings.php:190
|
1344 |
+
#: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
|
1345 |
+
#: adminpages/pagesettings.php:238
|
1346 |
+
msgid "Choose One"
|
1347 |
+
msgstr "Choisir"
|
1348 |
+
|
1349 |
+
#: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
|
1350 |
+
#: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
|
1351 |
+
#: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
|
1352 |
+
#: adminpages/pagesettings.php:241
|
1353 |
+
msgid "edit page"
|
1354 |
+
msgstr "éditer la page"
|
1355 |
+
|
1356 |
+
#: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
|
1357 |
+
#: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
|
1358 |
+
#: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
|
1359 |
+
#: adminpages/pagesettings.php:243
|
1360 |
+
msgid "view page"
|
1361 |
+
msgstr "voir la page"
|
1362 |
+
|
1363 |
+
#: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
|
1364 |
+
#: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
|
1365 |
+
#: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
|
1366 |
+
#: adminpages/pagesettings.php:245
|
1367 |
+
msgid "Include the shortcode"
|
1368 |
+
msgstr "Inclure le shortcode"
|
1369 |
+
|
1370 |
+
#: adminpages/pagesettings.php:155
|
1371 |
+
msgid "Billing Information Page"
|
1372 |
+
msgstr "Page d'information de facturation"
|
1373 |
+
|
1374 |
+
#: adminpages/pagesettings.php:170
|
1375 |
+
msgid "Cancel Page"
|
1376 |
+
msgstr "Page d'annulation"
|
1377 |
+
|
1378 |
+
#: adminpages/pagesettings.php:186
|
1379 |
+
msgid "Checkout Page"
|
1380 |
+
msgstr "Page de paiement"
|
1381 |
+
|
1382 |
+
#: adminpages/pagesettings.php:202
|
1383 |
+
msgid "Confirmation Page"
|
1384 |
+
msgstr "Page de confirmation"
|
1385 |
+
|
1386 |
+
#: adminpages/pagesettings.php:218
|
1387 |
+
msgid "Invoice Page"
|
1388 |
+
msgstr "Page de facture"
|
1389 |
+
|
1390 |
+
#: adminpages/pagesettings.php:234
|
1391 |
+
msgid "Levels Page"
|
1392 |
+
msgstr "Page des niveaux"
|
1393 |
+
|
1394 |
+
#: adminpages/paymentsettings.php:49
|
1395 |
+
msgid "Your payment settings have been updated."
|
1396 |
+
msgstr "Vos paramètres de paiement ont été mis à jour."
|
1397 |
+
|
1398 |
+
#: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
|
1399 |
+
msgid "Payment Gateway"
|
1400 |
+
msgstr "Passerelle de paiement"
|
1401 |
+
|
1402 |
+
#: adminpages/paymentsettings.php:93
|
1403 |
+
msgid "SSL Settings"
|
1404 |
+
msgstr "Paramètres SSL"
|
1405 |
+
|
1406 |
+
#: adminpages/paymentsettings.php:95
|
1407 |
+
msgid ""
|
1408 |
+
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank"
|
1409 |
+
"\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/"
|
1410 |
+
"\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway Settings\" target="
|
1411 |
+
"\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/"
|
1412 |
+
"payment-gateway/\">Payment Gateway Settings</a>."
|
1413 |
+
msgstr ""
|
1414 |
+
"En savoir plus <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank\" "
|
1415 |
+
"href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/\">SSL</"
|
1416 |
+
"a> ou <a title=\"Paid Memberships Pro - Payment Gateway Settings\" target=\"_blank"
|
1417 |
+
"\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/payment-"
|
1418 |
+
"gateway/\">Paramètres de la passerelle de paiement</a>."
|
1419 |
+
|
1420 |
+
#: adminpages/paymentsettings.php:153
|
1421 |
+
msgid "Currency"
|
1422 |
+
msgstr "Devise"
|
1423 |
+
|
1424 |
+
#: adminpages/paymentsettings.php:169
|
1425 |
+
msgid ""
|
1426 |
+
"Not all currencies will be supported by every gateway. Please check with your "
|
1427 |
+
"gateway."
|
1428 |
+
msgstr ""
|
1429 |
+
"Toutes les devises ne sont pas supportées par chaque passerelle de paiement. "
|
1430 |
+
"Veuillez vérifier votre passerelle de paiement."
|
1431 |
+
|
1432 |
+
#: adminpages/paymentsettings.php:174
|
1433 |
+
msgid "Accepted Credit Card Types"
|
1434 |
+
msgstr "Type de cartes de crédit acceptées"
|
1435 |
+
|
1436 |
+
#: adminpages/paymentsettings.php:188
|
1437 |
+
msgid "Sales Tax"
|
1438 |
+
msgstr "Taxes sur les ventes"
|
1439 |
+
|
1440 |
+
#: adminpages/paymentsettings.php:188 pages/billing.php:82
|
1441 |
+
msgid "optional"
|
1442 |
+
msgstr "optionnel"
|
1443 |
+
|
1444 |
+
#: adminpages/paymentsettings.php:191
|
1445 |
+
msgid "Tax State"
|
1446 |
+
msgstr "Taxe d'État"
|
1447 |
+
|
1448 |
+
#: adminpages/paymentsettings.php:192
|
1449 |
+
msgid "abbreviation, e.g. \"PA\""
|
1450 |
+
msgstr "abréviation, par exemple « PA »"
|
1451 |
+
|
1452 |
+
#: adminpages/paymentsettings.php:194
|
1453 |
+
msgid "decimal, e.g. \"0.06\""
|
1454 |
+
msgstr "décimal, par exemple \"0.06\""
|
1455 |
+
|
1456 |
+
#: adminpages/paymentsettings.php:195
|
1457 |
+
msgid ""
|
1458 |
+
"US only. If values are given, tax will be applied for any members ordering from "
|
1459 |
+
"the selected state.<br />For non-US or more complex tax rules, use the <a target="
|
1460 |
+
"\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-"
|
1461 |
+
"memberships-pro/\">pmpro_tax filter</a>."
|
1462 |
+
msgstr ""
|
1463 |
+
"Valable pour les États-Unis seulement. S'il y a des valeurs, elles s'appliqeront "
|
1464 |
+
"à tous les membres commandant d'un État particulier.<br />Hors des États-Unis ou "
|
1465 |
+
"pour des règles de taxe plus complexes, utilisez le <a target=\"_blank\" href="
|
1466 |
+
"\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-pro/"
|
1467 |
+
"\">filtre de taxes pmpro</a>."
|
1468 |
+
|
1469 |
+
#: adminpages/paymentsettings.php:206
|
1470 |
+
msgid "Force SSL"
|
1471 |
+
msgstr "Forcer le SSL"
|
1472 |
+
|
1473 |
+
#: adminpages/paymentsettings.php:212
|
1474 |
+
msgid "Yes (with JavaScript redirects)"
|
1475 |
+
msgstr "Oui (avec redirection Javascript)"
|
1476 |
+
|
1477 |
+
#: adminpages/paymentsettings.php:219
|
1478 |
+
msgid "SSL Seal Code"
|
1479 |
+
msgstr "Code d'approbation SSL"
|
1480 |
+
|
1481 |
+
#: adminpages/paymentsettings.php:228
|
1482 |
+
msgid "Extra HTTPS URL Filter"
|
1483 |
+
msgstr "Filtre d'URL HTTPS supplémentaire"
|
1484 |
+
|
1485 |
+
#: adminpages/paymentsettings.php:231
|
1486 |
+
msgid ""
|
1487 |
+
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure "
|
1488 |
+
"pages. Check this if you are using SSL and have warnings on your checkout pages."
|
1489 |
+
msgstr ""
|
1490 |
+
"Passer tout le HTML généré à traver un filtre d'URL pour ajouter HTTPS aux URL "
|
1491 |
+
"sur les pages sécurisés. Cochez cela si vous utilisez SSL et avez des "
|
1492 |
+
"avertissements sur vos pages de paiement."
|
1493 |
+
|
1494 |
+
#: adminpages/reports.php:40
|
1495 |
+
msgid "Details"
|
1496 |
+
msgstr "Renseignements"
|
1497 |
+
|
1498 |
+
#: adminpages/reports/login.php:16
|
1499 |
+
msgid "Visits, Views, and Logins"
|
1500 |
+
msgstr "Visites, pages vues, et connexions"
|
1501 |
+
|
1502 |
+
#: adminpages/reports/login.php:27
|
1503 |
+
msgid "Visits Today"
|
1504 |
+
msgstr "Visites aujourd'hui"
|
1505 |
+
|
1506 |
+
#: adminpages/reports/login.php:28 adminpages/reports/login.php:149
|
1507 |
+
msgid "Visits This Month"
|
1508 |
+
msgstr "Visites ce mois"
|
1509 |
+
|
1510 |
+
#: adminpages/reports/login.php:29
|
1511 |
+
msgid "Visits All Time"
|
1512 |
+
msgstr "Visites depuis le début"
|
1513 |
+
|
1514 |
+
#: adminpages/reports/login.php:32
|
1515 |
+
msgid "Views Today"
|
1516 |
+
msgstr "Vues aujourd'hui"
|
1517 |
+
|
1518 |
+
#: adminpages/reports/login.php:33 adminpages/reports/login.php:151
|
1519 |
+
msgid "Views This Month"
|
1520 |
+
msgstr "Vues ce mois"
|
1521 |
+
|
1522 |
+
#: adminpages/reports/login.php:34
|
1523 |
+
msgid "Views All Time"
|
1524 |
+
msgstr "Vues depuis le début"
|
1525 |
+
|
1526 |
+
#: adminpages/reports/login.php:37
|
1527 |
+
msgid "Logins Today"
|
1528 |
+
msgstr "Connexions aujourd'hui"
|
1529 |
+
|
1530 |
+
#: adminpages/reports/login.php:38 adminpages/reports/login.php:154
|
1531 |
+
msgid "Logins This Month"
|
1532 |
+
msgstr "Connexions ce mois"
|
1533 |
+
|
1534 |
+
#: adminpages/reports/login.php:39
|
1535 |
+
msgid "Logins All Time"
|
1536 |
+
msgstr "Connexions depuis le début"
|
1537 |
+
|
1538 |
+
#: adminpages/reports/login.php:63
|
1539 |
+
msgid "Visits, Views, and Logins Report"
|
1540 |
+
msgstr "Visites, Vues et Rapport de Connexions"
|
1541 |
+
|
1542 |
+
#: adminpages/reports/login.php:68
|
1543 |
+
msgid "All Users"
|
1544 |
+
msgstr "Tous les utilisateurs"
|
1545 |
+
|
1546 |
+
#: adminpages/reports/login.php:148
|
1547 |
+
msgid "Last Visit"
|
1548 |
+
msgstr "Dernière visite"
|
1549 |
+
|
1550 |
+
#: adminpages/reports/login.php:150
|
1551 |
+
msgid "Total Visits"
|
1552 |
+
msgstr "Totale des visites"
|
1553 |
+
|
1554 |
+
#: adminpages/reports/login.php:152
|
1555 |
+
msgid "Total Views"
|
1556 |
+
msgstr "Totals des vues"
|
1557 |
+
|
1558 |
+
#: adminpages/reports/login.php:153
|
1559 |
+
msgid "Last Login"
|
1560 |
+
msgstr "Dernière connexion"
|
1561 |
+
|
1562 |
+
#: adminpages/reports/login.php:155
|
1563 |
+
msgid "Total Logins"
|
1564 |
+
msgstr "Totals des connexions"
|
1565 |
+
|
1566 |
+
#: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
|
1567 |
+
msgid "Membership Stats"
|
1568 |
+
msgstr "Statistiques d'adhésion"
|
1569 |
+
|
1570 |
+
#: adminpages/reports/memberships.php:48
|
1571 |
+
msgid "Signups"
|
1572 |
+
msgstr "Inscriptions"
|
1573 |
+
|
1574 |
+
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
|
1575 |
+
msgid "All Time"
|
1576 |
+
msgstr "Depuis le début"
|
1577 |
+
|
1578 |
+
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
|
1579 |
+
msgid "This Year"
|
1580 |
+
msgstr "Cette année"
|
1581 |
+
|
1582 |
+
#: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
|
1583 |
+
msgid "This Month"
|
1584 |
+
msgstr "Ce mois"
|
1585 |
+
|
1586 |
+
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
|
1587 |
+
msgid "Today"
|
1588 |
+
msgstr "Aujourd'hui"
|
1589 |
+
|
1590 |
+
#: adminpages/reports/memberships.php:67
|
1591 |
+
msgid "Cancellations"
|
1592 |
+
msgstr "Résiliations"
|
1593 |
+
|
1594 |
+
#: adminpages/reports/memberships.php:86
|
1595 |
+
msgid "Other Stats"
|
1596 |
+
msgstr "Autres statistiques"
|
1597 |
+
|
1598 |
+
#: adminpages/reports/memberships.php:88
|
1599 |
+
msgid "Monthly Recurring Revenue (MRR)"
|
1600 |
+
msgstr "Revenu mensuel récurrent (MRR)"
|
1601 |
+
|
1602 |
+
#: adminpages/reports/memberships.php:92
|
1603 |
+
msgid "Cancellation Rate"
|
1604 |
+
msgstr "Taux de résiliation"
|
1605 |
+
|
1606 |
+
#: adminpages/reports/memberships.php:96
|
1607 |
+
msgid "Lifetime Value (LTV)"
|
1608 |
+
msgstr "Temps de vie (LTV)"
|
1609 |
+
|
1610 |
+
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
|
1611 |
+
msgid "Daily"
|
1612 |
+
msgstr "Quotidiennement"
|
1613 |
+
|
1614 |
+
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
|
1615 |
+
msgid "Monthly"
|
1616 |
+
msgstr "Mensuellement"
|
1617 |
+
|
1618 |
+
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
|
1619 |
+
msgid "Annual"
|
1620 |
+
msgstr "Annuellement"
|
1621 |
+
|
1622 |
+
#: adminpages/reports/memberships.php:299
|
1623 |
+
msgid "Signups vs. Cancellations"
|
1624 |
+
msgstr "Inscriptions / Résiliations"
|
1625 |
+
|
1626 |
+
#: adminpages/reports/memberships.php:304 adminpages/reports/memberships.php:315
|
1627 |
+
#: adminpages/reports/sales.php:203 adminpages/reports/sales.php:214
|
1628 |
+
msgid "for"
|
1629 |
+
msgstr "pour"
|
1630 |
+
|
1631 |
+
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
|
1632 |
+
msgid "Generate Report"
|
1633 |
+
msgstr "Générer le rapport"
|
1634 |
+
|
1635 |
+
#: adminpages/reports/sales.php:18
|
1636 |
+
msgid "Sales and Revenue (Testing/Sandbox)"
|
1637 |
+
msgstr "Ventes et produits (Environnement de test)"
|
1638 |
+
|
1639 |
+
#: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
|
1640 |
+
msgid "Sales and Revenue"
|
1641 |
+
msgstr "Ventes et produits"
|
1642 |
+
|
1643 |
+
#: adminpages/reports/sales.php:200
|
1644 |
+
msgid "Revenue"
|
1645 |
+
msgstr "Produits"
|
1646 |
+
|
1647 |
+
#: adminpages/reports/sales.php:201
|
1648 |
+
msgid "Sales"
|
1649 |
+
msgstr "Ventes"
|
1650 |
+
|
1651 |
+
#: classes/class.memberorder.php:644
|
1652 |
+
#, php-format
|
1653 |
+
msgid ""
|
1654 |
+
"There was an error canceling the subscription for user with ID=%s. You will want "
|
1655 |
+
"to check your payment gateway to see if their subscription is still active."
|
1656 |
+
msgstr ""
|
1657 |
+
"Une erreur est survenue lors de l'annulation d'abonnement pour l'utilisateur avec "
|
1658 |
+
"l'ID=%s. Vous devrez vérifier sur votre passerelle de paiement pour voir si leur "
|
1659 |
+
"abonnement est toujours actif."
|
1660 |
+
|
1661 |
+
#: classes/class.pmproemail.php:37
|
1662 |
+
#, php-format
|
1663 |
+
msgid "An Email From %s"
|
1664 |
+
msgstr "Un courriel de %s"
|
1665 |
+
|
1666 |
+
#: classes/class.pmproemail.php:125
|
1667 |
+
#, php-format
|
1668 |
+
msgid "Your membership at %s has been CANCELLED"
|
1669 |
+
msgstr "Votre adhésion à %s a été RÉSILIÉE"
|
1670 |
+
|
1671 |
+
#: classes/class.pmproemail.php:147
|
1672 |
+
#, php-format
|
1673 |
+
msgid "Membership for %s at %s has been CANCELLED"
|
1674 |
+
msgstr "L'adhésion pour %s à %s a été RÉSILIÉE"
|
1675 |
+
|
1676 |
+
#: classes/class.pmproemail.php:178
|
1677 |
+
#, php-format
|
1678 |
+
msgid "Your membership confirmation for %s"
|
1679 |
+
msgstr "Votre confirmation d'adhésion pour %s"
|
1680 |
+
|
1681 |
+
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
1682 |
+
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
1683 |
+
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
1684 |
+
#: classes/gateways/class.pmprogateway_braintree.php:362
|
1685 |
+
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
1686 |
+
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
1687 |
+
#: pages/invoice.php:33
|
1688 |
+
msgid "Discount Code"
|
1689 |
+
msgstr "Code de remise"
|
1690 |
+
|
1691 |
+
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:349
|
1692 |
+
#: classes/class.pmproemail.php:654
|
1693 |
+
#, php-format
|
1694 |
+
msgid "This membership will expire on %s."
|
1695 |
+
msgstr "Cette adhésion prendra fin le %s."
|
1696 |
+
|
1697 |
+
#: classes/class.pmproemail.php:278
|
1698 |
+
#, php-format
|
1699 |
+
msgid "Member Checkout for %s at %s"
|
1700 |
+
msgstr "Paiement d'adhésion pour %s à %s"
|
1701 |
+
|
1702 |
+
#: classes/class.pmproemail.php:366
|
1703 |
+
#, php-format
|
1704 |
+
msgid "Your billing information has been udpated at %s"
|
1705 |
+
msgstr "Vos informations de facturation ont été mise à jour à %s"
|
1706 |
+
|
1707 |
+
#: classes/class.pmproemail.php:419
|
1708 |
+
#, php-format
|
1709 |
+
msgid "Billing information has been udpated for %s at %s"
|
1710 |
+
msgstr "Les informations de facturation ont été mis à jour pour %s à %s"
|
1711 |
+
|
1712 |
+
#: classes/class.pmproemail.php:467
|
1713 |
+
#, php-format
|
1714 |
+
msgid "Membership Payment Failed at %s"
|
1715 |
+
msgstr "Le paiement de l'adhésion a échoué à %s"
|
1716 |
+
|
1717 |
+
#: classes/class.pmproemail.php:513
|
1718 |
+
#, php-format
|
1719 |
+
msgid "Membership Payment Failed For %s at %s"
|
1720 |
+
msgstr "Le paiement de l'adhésion a échoué pour %s à %s"
|
1721 |
+
|
1722 |
+
#: classes/class.pmproemail.php:560
|
1723 |
+
#, php-format
|
1724 |
+
msgid "Credit Card on File Expiring Soon at %s"
|
1725 |
+
msgstr "La carte de crédit enregistrée expire bientôt, le %s"
|
1726 |
+
|
1727 |
+
#: classes/class.pmproemail.php:608
|
1728 |
+
#, php-format
|
1729 |
+
msgid "INVOICE for %s membership"
|
1730 |
+
msgstr "FACTURE pour adhésion %s"
|
1731 |
+
|
1732 |
+
#: classes/class.pmproemail.php:679
|
1733 |
+
#, php-format
|
1734 |
+
msgid "Your trial at %s is ending soon"
|
1735 |
+
msgstr "Votre période d'essai à %s se termine bientôt"
|
1736 |
+
|
1737 |
+
#: classes/class.pmproemail.php:713
|
1738 |
+
#, php-format
|
1739 |
+
msgid "Your membership at %s has ended"
|
1740 |
+
msgstr "Votre adhésion à %s est terminée"
|
1741 |
+
|
1742 |
+
#: classes/class.pmproemail.php:738
|
1743 |
+
#, php-format
|
1744 |
+
msgid "Your membership at %s will end soon"
|
1745 |
+
msgstr "Votre adhésion à %s va bientôt terminer"
|
1746 |
+
|
1747 |
+
#: classes/class.pmproemail.php:758
|
1748 |
+
#, php-format
|
1749 |
+
msgid "Your membership at %s has been changed"
|
1750 |
+
msgstr "Votre adhésion à %s a été changée"
|
1751 |
+
|
1752 |
+
#: classes/class.pmproemail.php:762 classes/class.pmproemail.php:800
|
1753 |
+
#, php-format
|
1754 |
+
msgid "The new level is %s"
|
1755 |
+
msgstr "Le nouveau niveau est %s"
|
1756 |
+
|
1757 |
+
#: classes/class.pmproemail.php:764
|
1758 |
+
msgid "Your membership has been cancelled"
|
1759 |
+
msgstr "Votre adhésion a été résiliée"
|
1760 |
+
|
1761 |
+
#: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
|
1762 |
+
#, php-format
|
1763 |
+
msgid "This membership will expire on %s"
|
1764 |
+
msgstr "Cette adhésion prendra fin le %s"
|
1765 |
+
|
1766 |
+
#: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
|
1767 |
+
msgid "This membership does not expire"
|
1768 |
+
msgstr "Cette adhésion est sans limite de temps"
|
1769 |
+
|
1770 |
+
#: classes/class.pmproemail.php:796
|
1771 |
+
#, php-format
|
1772 |
+
msgid "Membership for %s at %s has been changed"
|
1773 |
+
msgstr "L'adhésion de %s à %s a été changée"
|
1774 |
+
|
1775 |
+
#: classes/class.pmproemail.php:802
|
1776 |
+
msgid "Membership has been cancelled"
|
1777 |
+
msgstr "L'adhésion a été résiliée"
|
1778 |
+
|
1779 |
+
#: classes/gateways/class.pmprogateway.php:55
|
1780 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:171
|
1781 |
+
#: classes/gateways/class.pmprogateway_check.php:193
|
1782 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:171
|
1783 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:164
|
1784 |
+
#: classes/gateways/class.pmprogateway_paypal.php:247
|
1785 |
+
msgid "Unknown error: Authorization failed."
|
1786 |
+
msgstr "Erreur inconnue: Échec de l'autorisation."
|
1787 |
+
|
1788 |
+
#: classes/gateways/class.pmprogateway.php:106
|
1789 |
+
#: classes/gateways/class.pmprogateway.php:111
|
1790 |
+
#: classes/gateways/class.pmprogateway.php:129
|
1791 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:222
|
1792 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:227
|
1793 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:244
|
1794 |
+
#: classes/gateways/class.pmprogateway_check.php:244
|
1795 |
+
#: classes/gateways/class.pmprogateway_check.php:249
|
1796 |
+
#: classes/gateways/class.pmprogateway_check.php:267
|
1797 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:222
|
1798 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:227
|
1799 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:245
|
1800 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:187
|
1801 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:192
|
1802 |
+
#: classes/gateways/class.pmprogateway_paypal.php:270
|
1803 |
+
msgid "Unknown error: Payment failed."
|
1804 |
+
msgstr "Erreur inconnue: Paiement a échoué."
|
1805 |
+
|
1806 |
+
#: classes/gateways/class.pmprogateway.php:113
|
1807 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:228
|
1808 |
+
#: classes/gateways/class.pmprogateway_check.php:251
|
1809 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:229
|
1810 |
+
msgid ""
|
1811 |
+
"A partial payment was made that we could not void. Please contact the site owner "
|
1812 |
+
"immediately to correct this."
|
1813 |
+
msgstr ""
|
1814 |
+
"Un paiement partiel que nous ne pouvions pas annuler a été fait. Veuillez "
|
1815 |
+
"contacter le propriétaire du site immédiatement pour corriger cela."
|
1816 |
+
|
1817 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
1818 |
+
#: paid-memberships-pro.php:123
|
1819 |
+
msgid "Authorize.net"
|
1820 |
+
msgstr "Authorize.net"
|
1821 |
+
|
1822 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:93
|
1823 |
+
msgid "Authorize.net Settings"
|
1824 |
+
msgstr "Réglages Authorize.net"
|
1825 |
+
|
1826 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:98
|
1827 |
+
msgid "Login Name"
|
1828 |
+
msgstr "Nom de connexion"
|
1829 |
+
|
1830 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:106
|
1831 |
+
msgid "Transaction Key"
|
1832 |
+
msgstr "Clé de transaction"
|
1833 |
+
|
1834 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:114
|
1835 |
+
msgid "Silent Post URL"
|
1836 |
+
msgstr "Silent Post URL"
|
1837 |
+
|
1838 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:117
|
1839 |
+
msgid ""
|
1840 |
+
"To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
|
1841 |
+
msgstr ""
|
1842 |
+
"Afin d'intégrer pleinement avec Authorize.net, n'oubliez pas de régler votre "
|
1843 |
+
"Silent Post URL pour"
|
1844 |
+
|
1845 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:908
|
1846 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:909
|
1847 |
+
msgid "Could not connect to Authorize.net"
|
1848 |
+
msgstr "Impossible de se connecter à Authorize.net"
|
1849 |
+
|
1850 |
+
#: classes/gateways/class.pmprogateway_braintree.php:76 paid-memberships-pro.php:124
|
1851 |
+
msgid "Braintree Payments"
|
1852 |
+
msgstr "Braintree Payments"
|
1853 |
+
|
1854 |
+
#: classes/gateways/class.pmprogateway_braintree.php:132
|
1855 |
+
msgid "Braintree Settings"
|
1856 |
+
msgstr "Réglages Braintree"
|
1857 |
+
|
1858 |
+
#: classes/gateways/class.pmprogateway_braintree.php:137
|
1859 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
1860 |
+
msgid "Merchant ID"
|
1861 |
+
msgstr "ID commercant"
|
1862 |
+
|
1863 |
+
#: classes/gateways/class.pmprogateway_braintree.php:145
|
1864 |
+
msgid "Public Key"
|
1865 |
+
msgstr "Clé publique"
|
1866 |
+
|
1867 |
+
#: classes/gateways/class.pmprogateway_braintree.php:153
|
1868 |
+
msgid "Private Key"
|
1869 |
+
msgstr "Clé privée"
|
1870 |
+
|
1871 |
+
#: classes/gateways/class.pmprogateway_braintree.php:161
|
1872 |
+
msgid "Client-Side Encryption Key"
|
1873 |
+
msgstr "Clé de chiffrage de côté client"
|
1874 |
+
|
1875 |
+
#: classes/gateways/class.pmprogateway_braintree.php:169
|
1876 |
+
#: classes/gateways/class.pmprogateway_stripe.php:181
|
1877 |
+
msgid "Web Hook URL"
|
1878 |
+
msgstr "Web Hook URL"
|
1879 |
+
|
1880 |
+
#: classes/gateways/class.pmprogateway_braintree.php:173
|
1881 |
+
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
1882 |
+
msgstr ""
|
1883 |
+
"Afin d'intégrer pleinement avec Braintree, veillez à régler votre Web Hook URL "
|
1884 |
+
"pour"
|
1885 |
+
|
1886 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
1887 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
1888 |
+
#, php-format
|
1889 |
+
msgid "We Accept %s"
|
1890 |
+
msgstr "Nous acceptons %s"
|
1891 |
+
|
1892 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
1893 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
1894 |
+
msgid "Payment Information"
|
1895 |
+
msgstr "Information de paiement"
|
1896 |
+
|
1897 |
+
#: classes/gateways/class.pmprogateway_braintree.php:316
|
1898 |
+
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
1899 |
+
#: pages/checkout.php:548
|
1900 |
+
msgid "Card Number"
|
1901 |
+
msgstr "Numéro de la carte"
|
1902 |
+
|
1903 |
+
#: classes/gateways/class.pmprogateway_braintree.php:353
|
1904 |
+
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
1905 |
+
#: pages/checkout.php:585
|
1906 |
+
msgid "CVV"
|
1907 |
+
msgstr "Code de sécurité"
|
1908 |
+
|
1909 |
+
#: classes/gateways/class.pmprogateway_braintree.php:354
|
1910 |
+
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
1911 |
+
#: pages/checkout.php:586
|
1912 |
+
msgid "what's this?"
|
1913 |
+
msgstr "qu'est ce que c'est ?"
|
1914 |
+
|
1915 |
+
#: classes/gateways/class.pmprogateway_braintree.php:364
|
1916 |
+
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
1917 |
+
#: pages/checkout.php:596
|
1918 |
+
msgid "Apply"
|
1919 |
+
msgstr "Soumettre"
|
1920 |
+
|
1921 |
+
#: classes/gateways/class.pmprogateway_braintree.php:419
|
1922 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1025
|
1923 |
+
msgid "Unknown error: Initial payment failed."
|
1924 |
+
msgstr "Erreur inconnue : le paiement initial a échoué."
|
1925 |
+
|
1926 |
+
#: classes/gateways/class.pmprogateway_braintree.php:478
|
1927 |
+
msgid "Error during settlement:"
|
1928 |
+
msgstr "Erreur lors du règlement :"
|
1929 |
+
|
1930 |
+
#: classes/gateways/class.pmprogateway_braintree.php:487
|
1931 |
+
msgid "Error during charge:"
|
1932 |
+
msgstr "Erreur lors de la charge :"
|
1933 |
+
|
1934 |
+
#: classes/gateways/class.pmprogateway_braintree.php:579
|
1935 |
+
msgid "Failed to update customer."
|
1936 |
+
msgstr "Impossible de mettre à jour le client."
|
1937 |
+
|
1938 |
+
#: classes/gateways/class.pmprogateway_braintree.php:627
|
1939 |
+
msgid "Failed to create customer."
|
1940 |
+
msgstr "Impossible de créer le client."
|
1941 |
+
|
1942 |
+
#: classes/gateways/class.pmprogateway_braintree.php:634
|
1943 |
+
msgid "Error creating customer record with Braintree:"
|
1944 |
+
msgstr "Erreur de création du dossier client avec Braintree :"
|
1945 |
+
|
1946 |
+
#: classes/gateways/class.pmprogateway_braintree.php:734
|
1947 |
+
msgid "Error subscribing customer to plan with Braintree:"
|
1948 |
+
msgstr "Erreur d'abonnement de l'utilisateur avec Braintree :"
|
1949 |
+
|
1950 |
+
#: classes/gateways/class.pmprogateway_braintree.php:749
|
1951 |
+
msgid "Failed to subscribe with Braintree:"
|
1952 |
+
msgstr "Abonnement échoué à Braintree :"
|
1953 |
+
|
1954 |
+
#: classes/gateways/class.pmprogateway_braintree.php:787
|
1955 |
+
#: classes/gateways/class.pmprogateway_braintree.php:800
|
1956 |
+
#: classes/gateways/class.pmprogateway_braintree.php:807
|
1957 |
+
msgid "Could not find the subscription."
|
1958 |
+
msgstr "Impossible de trouver l'abonnement."
|
1959 |
+
|
1960 |
+
#: classes/gateways/class.pmprogateway_check.php:48 paid-memberships-pro.php:117
|
1961 |
+
msgid "Pay by Check"
|
1962 |
+
msgstr "Payer par chèque"
|
1963 |
+
|
1964 |
+
#: classes/gateways/class.pmprogateway_check.php:100
|
1965 |
+
msgid "Pay by Check Settings"
|
1966 |
+
msgstr "Réglages de paiement par chèque"
|
1967 |
+
|
1968 |
+
#: classes/gateways/class.pmprogateway_check.php:105
|
1969 |
+
msgid "Instructions"
|
1970 |
+
msgstr "Instructions"
|
1971 |
+
|
1972 |
+
#: classes/gateways/class.pmprogateway_check.php:109
|
1973 |
+
msgid ""
|
1974 |
+
"Who to write the check out to. Where to mail it. Shown on checkout, confirmation, "
|
1975 |
+
"and invoice pages."
|
1976 |
+
msgstr ""
|
1977 |
+
"À qui écrire le chèque. Où l'envoyer. Affiché sur les pages de paiement, de "
|
1978 |
+
"confirmation et de facturation."
|
1979 |
+
|
1980 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:42
|
1981 |
+
msgid "CyberSource"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:96
|
1985 |
+
msgid "CyberSource Settings"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:101
|
1989 |
+
msgid ""
|
1990 |
+
"This gateway option is in beta. Some functionality may not be available. Please "
|
1991 |
+
"contact Paid Memberships Pro with any issues you run into. <strong>Please be sure "
|
1992 |
+
"to upgrade Paid Memberships Pro to the latest versions when available.</strong>"
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:114
|
1996 |
+
msgid "Transaction Security Key"
|
1997 |
+
msgstr "Clé de sécurité de transaction"
|
1998 |
+
|
1999 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:39
|
2000 |
+
msgid "Payflow Pro/PayPal Pro"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:95
|
2004 |
+
msgid "Payflow Pro Settings"
|
2005 |
+
msgstr "Réglages Payflow Pro"
|
2006 |
+
|
2007 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:100
|
2008 |
+
msgid "Partner"
|
2009 |
+
msgstr "Partenaire"
|
2010 |
+
|
2011 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:108
|
2012 |
+
msgid "Vendor"
|
2013 |
+
msgstr "Fournisseur"
|
2014 |
+
|
2015 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:124 pages/checkout.php:180
|
2016 |
+
msgid "Password"
|
2017 |
+
msgstr "Mot de passe"
|
2018 |
+
|
2019 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:132
|
2020 |
+
msgid "IPN Handler"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:137
|
2024 |
+
#, php-format
|
2025 |
+
msgid ""
|
2026 |
+
"Payflow does not use IPN. To sync recurring subscriptions, please see <a target="
|
2027 |
+
"\"_blank\" href=\"%s\">this addon</a>."
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:194
|
2031 |
+
#: classes/gateways/class.pmprogateway_paypal.php:277
|
2032 |
+
msgid ""
|
2033 |
+
"A partial payment was made that we could not refund. Please contact the site "
|
2034 |
+
"owner immediately to correct this."
|
2035 |
+
msgstr ""
|
2036 |
+
"Un paiement partiel que nous ne pouvions pas rembourser a été fait. S'il vous "
|
2037 |
+
"plaît contacter le propriétaire du site immédiatement pour corriger cela."
|
2038 |
+
|
2039 |
+
#: classes/gateways/class.pmprogateway_paypal.php:57 paid-memberships-pro.php:120
|
2040 |
+
msgid "PayPal Website Payments Pro"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: classes/gateways/class.pmprogateway_paypal.php:113
|
2044 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:118
|
2045 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:112
|
2046 |
+
msgid "PayPal Settings"
|
2047 |
+
msgstr "Réglages PayPal"
|
2048 |
+
|
2049 |
+
#: classes/gateways/class.pmprogateway_paypal.php:118
|
2050 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:123
|
2051 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:117
|
2052 |
+
msgid ""
|
2053 |
+
"We do not recommend using PayPal Standard. We suggest using PayPal Express, "
|
2054 |
+
"Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" "
|
2055 |
+
"href=\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-"
|
2056 |
+
"memberships-pro/\">More information on why can be found here.</a>"
|
2057 |
+
msgstr ""
|
2058 |
+
"Nous ne recommandons pas l'usage de PayPal Standard. Nous vous suggérons plutôt "
|
2059 |
+
"PayPal Express, Website Payments Pro (ancien), or PayPal Pro (Payflow Pro). <a "
|
2060 |
+
"target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
|
2061 |
+
"paypal-standard-paid-memberships-pro/\">En savoir plus ici.</a>"
|
2062 |
+
|
2063 |
+
#: classes/gateways/class.pmprogateway_paypal.php:123
|
2064 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:128
|
2065 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:122
|
2066 |
+
msgid "Gateway Account Email"
|
2067 |
+
msgstr "Courriel du compte"
|
2068 |
+
|
2069 |
+
#: classes/gateways/class.pmprogateway_paypal.php:131
|
2070 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:136
|
2071 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:130
|
2072 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:113
|
2073 |
+
msgid "API Username"
|
2074 |
+
msgstr "Nom d'utilisateur API"
|
2075 |
+
|
2076 |
+
#: classes/gateways/class.pmprogateway_paypal.php:139
|
2077 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:144
|
2078 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:138
|
2079 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:121
|
2080 |
+
msgid "API Password"
|
2081 |
+
msgstr "Mot de passe API"
|
2082 |
+
|
2083 |
+
#: classes/gateways/class.pmprogateway_paypal.php:147
|
2084 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:152
|
2085 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:146
|
2086 |
+
msgid "API Signature"
|
2087 |
+
msgstr "Signature API"
|
2088 |
+
|
2089 |
+
#: classes/gateways/class.pmprogateway_paypal.php:155
|
2090 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:160
|
2091 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:154
|
2092 |
+
msgid "IPN Handler URL"
|
2093 |
+
msgstr "IPN module URL"
|
2094 |
+
|
2095 |
+
#: classes/gateways/class.pmprogateway_paypal.php:158
|
2096 |
+
msgid ""
|
2097 |
+
"This URL is passed to PayPal for all new charges and subscriptions. You SHOULD "
|
2098 |
+
"NOT set this in your PayPal account settings."
|
2099 |
+
msgstr ""
|
2100 |
+
"Cette URL est transmise à PayPal pour tous les paiements et abonnements. Vous ne "
|
2101 |
+
"DEVRIEZ PAS l'entrer dans votre compte PayPal."
|
2102 |
+
|
2103 |
+
#: classes/gateways/class.pmprogateway_paypal.php:178
|
2104 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:402
|
2105 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:202 pages/checkout.php:286
|
2106 |
+
msgid "Check Out with PayPal"
|
2107 |
+
msgstr "Payer avec Paypal"
|
2108 |
+
|
2109 |
+
#: classes/gateways/class.pmprogateway_paypal.php:184
|
2110 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
2111 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:208 pages/checkout.php:704
|
2112 |
+
msgid "Submit and Check Out"
|
2113 |
+
msgstr "Soumettre et payer"
|
2114 |
+
|
2115 |
+
#: classes/gateways/class.pmprogateway_paypal.php:184
|
2116 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
2117 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
2118 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:192 pages/checkout.php:704
|
2119 |
+
msgid "Submit and Confirm"
|
2120 |
+
msgstr "Soumettre et confirmer"
|
2121 |
+
|
2122 |
+
#: classes/gateways/class.pmprogateway_paypal.php:605
|
2123 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:740
|
2124 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
2125 |
+
msgid ""
|
2126 |
+
"Please contact the site owner or cancel your subscription from within PayPal to "
|
2127 |
+
"make sure you are not charged going forward."
|
2128 |
+
msgstr ""
|
2129 |
+
"Veuillez contacter le propriétaire du site ou bien annuler votre abonnement "
|
2130 |
+
"depuis PayPal pour être sûr de ne pas être débité en continuant."
|
2131 |
+
|
2132 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
2133 |
+
#: paid-memberships-pro.php:119
|
2134 |
+
msgid "PayPal Express"
|
2135 |
+
msgstr "PayPal Express"
|
2136 |
+
|
2137 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
2138 |
+
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
2139 |
+
msgstr ""
|
2140 |
+
"Pour entièrement intégrer avec PayPal, assurez-vous de mettre votre URL module "
|
2141 |
+
"IPN à"
|
2142 |
+
|
2143 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
2144 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:320
|
2145 |
+
msgid "The PayPal Token was lost."
|
2146 |
+
msgstr "Le jeton PayPal a été perdu."
|
2147 |
+
|
2148 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
2149 |
+
#: paid-memberships-pro.php:122
|
2150 |
+
msgid "PayPal Standard"
|
2151 |
+
msgstr "PayPal Standard"
|
2152 |
+
|
2153 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:157
|
2154 |
+
msgid ""
|
2155 |
+
"Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
|
2156 |
+
"settings."
|
2157 |
+
msgstr ""
|
2158 |
+
"Voici pour mémoire votre IPN URL. Vous de DEVRIEZ PAS l'entrer dans votre compte "
|
2159 |
+
"PayPal."
|
2160 |
+
|
2161 |
+
#: classes/gateways/class.pmprogateway_stripe.php:93 paid-memberships-pro.php:118
|
2162 |
+
msgid "Stripe"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: classes/gateways/class.pmprogateway_stripe.php:148
|
2166 |
+
msgid "Stripe Settings"
|
2167 |
+
msgstr "Réglages Stripe"
|
2168 |
+
|
2169 |
+
#: classes/gateways/class.pmprogateway_stripe.php:153
|
2170 |
+
msgid "Secret Key"
|
2171 |
+
msgstr "Clé secrète"
|
2172 |
+
|
2173 |
+
#: classes/gateways/class.pmprogateway_stripe.php:161
|
2174 |
+
msgid "Publishable Key"
|
2175 |
+
msgstr "Clé publique"
|
2176 |
+
|
2177 |
+
#: classes/gateways/class.pmprogateway_stripe.php:169
|
2178 |
+
msgid "Show Billing Address Fields"
|
2179 |
+
msgstr "Afficher les champs d'adresse de facturation"
|
2180 |
+
|
2181 |
+
#: classes/gateways/class.pmprogateway_stripe.php:176
|
2182 |
+
msgid ""
|
2183 |
+
"Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
|
2184 |
+
"checkout page.<br /><strong>If No, make sure you disable address verification in "
|
2185 |
+
"the Stripe dashboard settings.</strong>"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: classes/gateways/class.pmprogateway_stripe.php:184
|
2189 |
+
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
2190 |
+
msgstr ""
|
2191 |
+
"Afin d'intégrer pleinement avec Stripe, veillez à régler votre Web Hook URL pour"
|
2192 |
+
|
2193 |
+
#: classes/gateways/class.pmprogateway_stripe.php:567
|
2194 |
+
msgid "Subscription Updates"
|
2195 |
+
msgstr ""
|
2196 |
+
|
2197 |
+
#: classes/gateways/class.pmprogateway_stripe.php:571
|
2198 |
+
msgid ""
|
2199 |
+
"Subscription updates, allow you to change the member's subscription values at "
|
2200 |
+
"predefined times. Be sure to click Update Profile after making changes."
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2204 |
+
msgid ""
|
2205 |
+
"Subscription updates, allow you to change the member's subscription values at "
|
2206 |
+
"predefined times. Be sure to click Update User after making changes."
|
2207 |
+
msgstr ""
|
2208 |
+
|
2209 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
|
2210 |
+
msgid "Update"
|
2211 |
+
msgstr "Mettre à jour"
|
2212 |
+
|
2213 |
+
#: classes/gateways/class.pmprogateway_stripe.php:769
|
2214 |
+
msgid "Could not cancel the old subscription. Updates have not been processed."
|
2215 |
+
msgstr ""
|
2216 |
+
|
2217 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1203
|
2218 |
+
msgid "Error creating customer record with Stripe:"
|
2219 |
+
msgstr "Erreur de création du dossier client avec Stripe:"
|
2220 |
+
|
2221 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1260
|
2222 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1410
|
2223 |
+
msgid "Error creating plan with Stripe:"
|
2224 |
+
msgstr ""
|
2225 |
+
|
2226 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1441
|
2227 |
+
msgid "Error subscribing customer to plan with Stripe:"
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1537
|
2231 |
+
msgid "Could not cancel old subscription."
|
2232 |
+
msgstr ""
|
2233 |
+
|
2234 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1554
|
2235 |
+
msgid "Could not find the customer."
|
2236 |
+
msgstr ""
|
2237 |
+
|
2238 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
2239 |
+
#: paid-memberships-pro.php:125
|
2240 |
+
msgid "2Checkout"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:108
|
2244 |
+
msgid "2Checkout Settings"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2248 |
+
msgid "Secret Word"
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:145
|
2252 |
+
msgid "TwoCheckout INS URL"
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:148
|
2256 |
+
msgid "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
|
2257 |
+
msgstr ""
|
2258 |
+
|
2259 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:192
|
2260 |
+
msgid "Check Out with 2Checkout"
|
2261 |
+
msgstr ""
|
2262 |
+
|
2263 |
+
#: includes/adminpages.php:47
|
2264 |
+
msgid "Memberships"
|
2265 |
+
msgstr "Adhésions"
|
2266 |
+
|
2267 |
+
#: includes/adminpages.php:48 includes/adminpages.php:114
|
2268 |
+
msgid "Page Settings"
|
2269 |
+
msgstr "Paramètres de la page"
|
2270 |
+
|
2271 |
+
#: includes/adminpages.php:49 includes/adminpages.php:121
|
2272 |
+
msgid "Payment Settings"
|
2273 |
+
msgstr "Paramètres de paiement"
|
2274 |
+
|
2275 |
+
#: includes/adminpages.php:54 includes/adminpages.php:156
|
2276 |
+
msgid "Reports"
|
2277 |
+
msgstr "Rapports"
|
2278 |
+
|
2279 |
+
#: includes/adminpages.php:56 includes/adminpages.php:170
|
2280 |
+
msgid "Discount Codes"
|
2281 |
+
msgstr "Codes de réduction"
|
2282 |
+
|
2283 |
+
#: includes/adminpages.php:100
|
2284 |
+
msgid "<span class=\"ab-icon\"></span>Memberships"
|
2285 |
+
msgstr ""
|
2286 |
+
|
2287 |
+
#: includes/adminpages.php:261
|
2288 |
+
msgid "View PMPro Documentation"
|
2289 |
+
msgstr "Voir la documentation PMPro"
|
2290 |
+
|
2291 |
+
#: includes/adminpages.php:261
|
2292 |
+
msgid "Docs"
|
2293 |
+
msgstr ""
|
2294 |
+
|
2295 |
+
#: includes/adminpages.php:262
|
2296 |
+
msgid "Visit Customer Support Forum"
|
2297 |
+
msgstr "Consultez le forum de support"
|
2298 |
+
|
2299 |
+
#: includes/adminpages.php:262
|
2300 |
+
msgid "Support"
|
2301 |
+
msgstr "Soutien"
|
2302 |
+
|
2303 |
+
#: includes/currencies.php:7 includes/currencies.php:75
|
2304 |
+
msgid "US Dollars ($)"
|
2305 |
+
msgstr "Dollar américain ($)"
|
2306 |
+
|
2307 |
+
#: includes/currencies.php:9 includes/currencies.php:78
|
2308 |
+
msgid "Euros (€)"
|
2309 |
+
msgstr ""
|
2310 |
+
|
2311 |
+
#: includes/currencies.php:14 includes/currencies.php:77
|
2312 |
+
msgid "Pounds Sterling (£)"
|
2313 |
+
msgstr "Livres sterling (£)"
|
2314 |
+
|
2315 |
+
#: includes/currencies.php:18
|
2316 |
+
msgid "Australian Dollars ($)"
|
2317 |
+
msgstr "Dollar australien ($)"
|
2318 |
+
|
2319 |
+
#: includes/currencies.php:20
|
2320 |
+
msgid "Brazilian Real (R$)"
|
2321 |
+
msgstr ""
|
2322 |
+
|
2323 |
+
#: includes/currencies.php:24 includes/currencies.php:76
|
2324 |
+
msgid "Canadian Dollars ($)"
|
2325 |
+
msgstr "Dollar canadien ($)"
|
2326 |
+
|
2327 |
+
#: includes/currencies.php:25
|
2328 |
+
msgid "Chinese Yuan"
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: includes/currencies.php:27
|
2332 |
+
msgid "Czech Koruna"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: includes/currencies.php:34
|
2336 |
+
msgid "Danish Krone"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: includes/currencies.php:35
|
2340 |
+
msgid "Hong Kong Dollar ($)"
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: includes/currencies.php:36
|
2344 |
+
msgid "Hungarian Forint"
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: includes/currencies.php:37
|
2348 |
+
msgid "Indian Rupee"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: includes/currencies.php:38
|
2352 |
+
msgid "Indonesia Rupiah"
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: includes/currencies.php:39
|
2356 |
+
msgid "Israeli Shekel"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: includes/currencies.php:41
|
2360 |
+
msgid "Japanese Yen (¥)"
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: includes/currencies.php:45
|
2364 |
+
msgid "Malaysian Ringgits"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: includes/currencies.php:46
|
2368 |
+
msgid "Mexican Peso ($)"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: includes/currencies.php:47
|
2372 |
+
msgid "New Zealand Dollar ($)"
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: includes/currencies.php:48
|
2376 |
+
msgid "Norwegian Krone"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: includes/currencies.php:49
|
2380 |
+
msgid "Philippine Pesos"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: includes/currencies.php:50
|
2384 |
+
msgid "Polish Zloty"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: includes/currencies.php:52
|
2388 |
+
msgid "Singapore Dollar ($)"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: includes/currencies.php:57
|
2392 |
+
msgid "South African Rand (R)"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: includes/currencies.php:61
|
2396 |
+
msgid "South Korean Won"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/currencies.php:62
|
2400 |
+
msgid "Swedish Krona"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: includes/currencies.php:63
|
2404 |
+
msgid "Swiss Franc"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: includes/currencies.php:64
|
2408 |
+
msgid "Taiwan New Dollars"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: includes/currencies.php:65
|
2412 |
+
msgid "Thai Baht"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: includes/currencies.php:66
|
2416 |
+
msgid "Turkish Lira"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/currencies.php:67
|
2420 |
+
msgid "Vietnamese Dong"
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: includes/functions.php:207
|
2424 |
+
#, php-format
|
2425 |
+
msgid "The price for membership is <strong>%s</strong> now"
|
2426 |
+
msgstr "Le coût de l'adhésion est de <strong>%s</strong>."
|
2427 |
+
|
2428 |
+
#: includes/functions.php:209
|
2429 |
+
#, php-format
|
2430 |
+
msgid "<strong>%s</strong> now"
|
2431 |
+
msgstr "<strong>%s</strong> maintenant"
|
2432 |
+
|
2433 |
+
#: includes/functions.php:218
|
2434 |
+
#, php-format
|
2435 |
+
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
2436 |
+
msgstr "et ensuite <strong>%s par %s pour encore %d %s</strong>."
|
2437 |
+
|
2438 |
+
#: includes/functions.php:222
|
2439 |
+
#, php-format
|
2440 |
+
msgid " and then <strong>%s every %d %s for %d more %s</strong>."
|
2441 |
+
msgstr "et ensuite <strong>%s chaque %d %s pour encore %d %s</strong>."
|
2442 |
+
|
2443 |
+
#: includes/functions.php:227
|
2444 |
+
#, php-format
|
2445 |
+
msgid " and then <strong>%s after %d %s</strong>."
|
2446 |
+
msgstr "et ensuite <strong>%s après %d %s</strong>."
|
2447 |
+
|
2448 |
+
#: includes/functions.php:235
|
2449 |
+
#, php-format
|
2450 |
+
msgid "The price for membership is <strong>%s per %s</strong>."
|
2451 |
+
msgstr "Le prix pour l'adhésion est de <strong>%s par %s</strong>."
|
2452 |
+
|
2453 |
+
#: includes/functions.php:237
|
2454 |
+
#, php-format
|
2455 |
+
msgid "<strong>%s per %s</strong>."
|
2456 |
+
msgstr "<strong>%s par %s</strong>."
|
2457 |
+
|
2458 |
+
#: includes/functions.php:242
|
2459 |
+
#, php-format
|
2460 |
+
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
2461 |
+
msgstr "Le prix pour l'adhésion est de <strong>%s chaque %d %s</strong>."
|
2462 |
+
|
2463 |
+
#: includes/functions.php:244
|
2464 |
+
#, php-format
|
2465 |
+
msgid "<strong>%s every %d %s</strong>."
|
2466 |
+
msgstr "<strong>%s tous les %d %s</strong>."
|
2467 |
+
|
2468 |
+
#: includes/functions.php:249
|
2469 |
+
#, php-format
|
2470 |
+
msgid " and then <strong>%s per %s</strong>."
|
2471 |
+
msgstr "et ensuite <strong>%s par %s</strong>."
|
2472 |
+
|
2473 |
+
#: includes/functions.php:253
|
2474 |
+
#, php-format
|
2475 |
+
msgid " and then <strong>%s every %d %s</strong>."
|
2476 |
+
msgstr "et ensuite <strong>%s chaque %d %s</strong>."
|
2477 |
+
|
2478 |
+
#: includes/functions.php:271
|
2479 |
+
msgid "After your initial payment, your first payment is Free."
|
2480 |
+
msgstr "Après votre paiement initial, votre premier paiement est gratuit."
|
2481 |
+
|
2482 |
+
#: includes/functions.php:275
|
2483 |
+
#, php-format
|
2484 |
+
msgid "After your initial payment, your first %d payments are Free."
|
2485 |
+
msgstr "Après votre paiement initial, vos premiers paiements %d sont gratuits."
|
2486 |
+
|
2487 |
+
#: includes/functions.php:282
|
2488 |
+
#, php-format
|
2489 |
+
msgid "After your initial payment, your first payment will cost %s."
|
2490 |
+
msgstr "Après votre paiement initial, votre premier versement coûtera %s."
|
2491 |
+
|
2492 |
+
#: includes/functions.php:286
|
2493 |
+
#, php-format
|
2494 |
+
msgid "After your initial payment, your first %d payments will cost %s."
|
2495 |
+
msgstr "Après votre paiement initial, vos premiers %d paiements coûtera %s."
|
2496 |
+
|
2497 |
+
#: includes/functions.php:297
|
2498 |
+
#, php-format
|
2499 |
+
msgid "Customers in %s will be charged %s%% tax."
|
2500 |
+
msgstr "Les clients de %s seront taxés à %s%%."
|
2501 |
+
|
2502 |
+
#: includes/functions.php:311
|
2503 |
+
#, php-format
|
2504 |
+
msgid "Membership expires after %d %s."
|
2505 |
+
msgstr "L'adhésion expire après %d %s."
|
2506 |
+
|
2507 |
+
#: includes/functions.php:576
|
2508 |
+
msgid "User ID not found."
|
2509 |
+
msgstr "ID de l'utilisateur non trouvé"
|
2510 |
+
|
2511 |
+
#: includes/functions.php:596
|
2512 |
+
msgid "Invalid level."
|
2513 |
+
msgstr "Niveau invalide"
|
2514 |
+
|
2515 |
+
#: includes/functions.php:607
|
2516 |
+
msgid "not changing?"
|
2517 |
+
msgstr "Pas de changement ?"
|
2518 |
+
|
2519 |
+
#: includes/functions.php:624 includes/functions.php:683 includes/functions.php:707
|
2520 |
+
msgid "Error interacting with database"
|
2521 |
+
msgstr "Erreur interagissant avec la base de données."
|
2522 |
+
|
2523 |
+
#: includes/functions.php:748 includes/functions.php:787
|
2524 |
+
msgid "Membership level not found."
|
2525 |
+
msgstr "Niveau d'adhésion introuvable."
|
2526 |
+
|
2527 |
+
#: includes/functions.php:1157
|
2528 |
+
msgid "No code was given to check."
|
2529 |
+
msgstr "Aucun code à vérifier."
|
2530 |
+
|
2531 |
+
#: includes/functions.php:1166
|
2532 |
+
msgid "The discount code could not be found."
|
2533 |
+
msgstr "Le code de réduction est introuvable."
|
2534 |
+
|
2535 |
+
#: includes/functions.php:1181
|
2536 |
+
#, php-format
|
2537 |
+
msgid "This discount code goes into effect on %s."
|
2538 |
+
msgstr "Ce code de réduction entrera en vigueur le %s."
|
2539 |
+
|
2540 |
+
#: includes/functions.php:1188
|
2541 |
+
#, php-format
|
2542 |
+
msgid "This discount code expired on %s."
|
2543 |
+
msgstr "Ce code de réduction a expiré le %s."
|
2544 |
+
|
2545 |
+
#: includes/functions.php:1198
|
2546 |
+
msgid "This discount code is no longer valid."
|
2547 |
+
msgstr "Ce code de réduction n'est plus valide."
|
2548 |
+
|
2549 |
+
#: includes/functions.php:1211
|
2550 |
+
msgid "This discount code does not apply to this membership level."
|
2551 |
+
msgstr "Ce code de réduction ne s'applique pas à ce niveau d'adhésion."
|
2552 |
+
|
2553 |
+
#: includes/functions.php:1237
|
2554 |
+
msgid "This discount code is okay."
|
2555 |
+
msgstr "Ce code de réduction est valide."
|
2556 |
+
|
2557 |
+
#: includes/functions.php:1262
|
2558 |
+
msgid "and"
|
2559 |
+
msgstr "et"
|
2560 |
+
|
2561 |
+
#: includes/functions.php:1457
|
2562 |
+
msgid "Sign Up for !!name!! Now"
|
2563 |
+
msgstr "!!name!!, inscrivez-vous maintenant !"
|
2564 |
+
|
2565 |
+
#: includes/functions.php:1463
|
2566 |
+
msgid "Please specify a level id."
|
2567 |
+
msgstr "Veuillez spécifier un n° de niveau."
|
2568 |
+
|
2569 |
+
#: includes/init.php:233 includes/profile.php:39
|
2570 |
+
msgid "None"
|
2571 |
+
msgstr "Aucun"
|
2572 |
+
|
2573 |
+
#: includes/localization.php:26
|
2574 |
+
msgid "Day"
|
2575 |
+
msgstr "Jour"
|
2576 |
+
|
2577 |
+
#: includes/localization.php:28
|
2578 |
+
msgid "Week"
|
2579 |
+
msgstr "Semaine"
|
2580 |
+
|
2581 |
+
#: includes/localization.php:30
|
2582 |
+
msgid "Month"
|
2583 |
+
msgstr "Mois"
|
2584 |
+
|
2585 |
+
#: includes/localization.php:32
|
2586 |
+
msgid "Year"
|
2587 |
+
msgstr "Année"
|
2588 |
+
|
2589 |
+
#: includes/localization.php:37
|
2590 |
+
msgid "Days"
|
2591 |
+
msgstr "Jours"
|
2592 |
+
|
2593 |
+
#: includes/localization.php:39
|
2594 |
+
msgid "Weeks"
|
2595 |
+
msgstr "Semaines"
|
2596 |
+
|
2597 |
+
#: includes/localization.php:41
|
2598 |
+
msgid "Months"
|
2599 |
+
msgstr "Mois"
|
2600 |
+
|
2601 |
+
#: includes/localization.php:43
|
2602 |
+
msgid "Years"
|
2603 |
+
msgstr "Années"
|
2604 |
+
|
2605 |
+
#: includes/metaboxes.php:38
|
2606 |
+
msgid ""
|
2607 |
+
"This post is already protected for this level because it is within a category "
|
2608 |
+
"that requires membership."
|
2609 |
+
msgstr ""
|
2610 |
+
"Cet article est déjà protégé à ce niveau, car il est dans une catégorie qui "
|
2611 |
+
"nécessite l'adhésion."
|
2612 |
+
|
2613 |
+
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
2614 |
+
msgid "Require Membership"
|
2615 |
+
msgstr "Exige un adhésion"
|
2616 |
+
|
2617 |
+
#: includes/profile.php:36
|
2618 |
+
msgid "Current Level"
|
2619 |
+
msgstr "Niveau actuel"
|
2620 |
+
|
2621 |
+
#: includes/profile.php:54
|
2622 |
+
msgid "Not paying."
|
2623 |
+
msgstr "Rien à payer."
|
2624 |
+
|
2625 |
+
#: includes/profile.php:64
|
2626 |
+
msgid ""
|
2627 |
+
"This will not change the subscription at the gateway unless the 'Cancel' checkbox "
|
2628 |
+
"is selected below."
|
2629 |
+
msgstr ""
|
2630 |
+
"Cela ne changera pas l'abonnement sur la passerelle à moins que la case Annuler "
|
2631 |
+
"soit cochée ci-dessous."
|
2632 |
+
|
2633 |
+
#: includes/upgradecheck.php:422
|
2634 |
+
#, php-format
|
2635 |
+
msgid ""
|
2636 |
+
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
2637 |
+
msgstr ""
|
2638 |
+
"Ce contenu est réservé aux membres du niveau !!levels!!. <br /><a href=\"%s"
|
2639 |
+
"\">Adhérer</a>"
|
2640 |
+
|
2641 |
+
#: includes/upgradecheck.php:425
|
2642 |
+
#, php-format
|
2643 |
+
msgid ""
|
2644 |
+
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> <a "
|
2645 |
+
"href=\"%s\">Register</a>"
|
2646 |
+
msgstr ""
|
2647 |
+
"Ce contenu est réservé aux membres du niveau !!levels!!. <br /><a href=\"%s\">Se "
|
2648 |
+
"connecter</a> <a href=\"%s\">Adhérer</a>"
|
2649 |
+
|
2650 |
+
#: includes/upgradecheck.php:429
|
2651 |
+
msgid ""
|
2652 |
+
"This content is for !!levels!! members only. Visit the site and log in/register "
|
2653 |
+
"to read."
|
2654 |
+
msgstr ""
|
2655 |
+
"Ce contenu est réservé aux membres du niveau !!levels!!. Visitez le site et "
|
2656 |
+
"connectez-vous ou adhérez pour le lire."
|
2657 |
+
|
2658 |
+
#: pages/billing.php:14
|
2659 |
+
#, php-format
|
2660 |
+
msgid "Logged in as <strong>%s</strong>."
|
2661 |
+
msgstr "Connecté en tant que <strong>%s</strong>."
|
2662 |
+
|
2663 |
+
#: pages/billing.php:14
|
2664 |
+
msgid "logout"
|
2665 |
+
msgstr "déconnexion"
|
2666 |
+
|
2667 |
+
#: pages/billing.php:16 pages/cancel.php:52 pages/invoice.php:109
|
2668 |
+
#: pages/levels.php:13 shortcodes/pmpro_account.php:44
|
2669 |
+
#: shortcodes/pmpro_account.php:123
|
2670 |
+
msgid "Level"
|
2671 |
+
msgstr "Niveau"
|
2672 |
+
|
2673 |
+
#: pages/billing.php:18
|
2674 |
+
msgid "Membership Fee"
|
2675 |
+
msgstr "Coût d'adhésion"
|
2676 |
+
|
2677 |
+
#: pages/billing.php:22
|
2678 |
+
#, php-format
|
2679 |
+
msgid "%s every %d %s."
|
2680 |
+
msgstr "%s chaque %d %s."
|
2681 |
+
|
2682 |
+
#: pages/billing.php:24
|
2683 |
+
#, php-format
|
2684 |
+
msgid "%s per %s."
|
2685 |
+
msgstr "%s par %s."
|
2686 |
+
|
2687 |
+
#: pages/billing.php:33
|
2688 |
+
msgid "Duration"
|
2689 |
+
msgstr "Durée"
|
2690 |
+
|
2691 |
+
#: pages/billing.php:43
|
2692 |
+
msgid ""
|
2693 |
+
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
2694 |
+
"paypal.com\">login to PayPal here</a> to update your billing information."
|
2695 |
+
msgstr ""
|
2696 |
+
"Votre abonnement est géré par PayPal. S'il vous plait <a href=\"http://www.paypal."
|
2697 |
+
"com\">connexion à PayPal ici </a> pour mettre à jour vos informations de "
|
2698 |
+
"facturation."
|
2699 |
+
|
2700 |
+
#: pages/billing.php:69 pages/checkout.php:309
|
2701 |
+
msgid "First Name"
|
2702 |
+
msgstr "Prénom"
|
2703 |
+
|
2704 |
+
#: pages/billing.php:73 pages/checkout.php:313
|
2705 |
+
msgid "Last Name"
|
2706 |
+
msgstr "Nom"
|
2707 |
+
|
2708 |
+
#: pages/billing.php:77 pages/checkout.php:317
|
2709 |
+
msgid "Address 1"
|
2710 |
+
msgstr "Adresse 1"
|
2711 |
+
|
2712 |
+
#: pages/billing.php:81 pages/checkout.php:321
|
2713 |
+
msgid "Address 2"
|
2714 |
+
msgstr "Adresse 2"
|
2715 |
+
|
2716 |
+
#: pages/billing.php:91 pages/checkout.php:331
|
2717 |
+
msgid "City"
|
2718 |
+
msgstr "Ville"
|
2719 |
+
|
2720 |
+
#: pages/billing.php:95 pages/checkout.php:335
|
2721 |
+
msgid "State"
|
2722 |
+
msgstr "Province"
|
2723 |
+
|
2724 |
+
#: pages/billing.php:99 pages/checkout.php:339
|
2725 |
+
msgid "Postal Code"
|
2726 |
+
msgstr "Code postal"
|
2727 |
+
|
2728 |
+
#: pages/billing.php:108 pages/checkout.php:348
|
2729 |
+
msgid "City, State Zip"
|
2730 |
+
msgstr "Ville, code d'État"
|
2731 |
+
|
2732 |
+
#: pages/billing.php:161 pages/checkout.php:401
|
2733 |
+
msgid "Country"
|
2734 |
+
msgstr "Pays"
|
2735 |
+
|
2736 |
+
#: pages/billing.php:186 pages/checkout.php:426
|
2737 |
+
msgid "Phone"
|
2738 |
+
msgstr "Téléphone"
|
2739 |
+
|
2740 |
+
#: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
|
2741 |
+
msgid "E-mail Address"
|
2742 |
+
msgstr "Adresse courriel"
|
2743 |
+
|
2744 |
+
#: pages/billing.php:201 pages/checkout.php:449
|
2745 |
+
msgid "Confirm E-mail"
|
2746 |
+
msgstr "Confirmer courriel"
|
2747 |
+
|
2748 |
+
#: pages/billing.php:221
|
2749 |
+
#, php-format
|
2750 |
+
msgid "We accept %s"
|
2751 |
+
msgstr "Nous acceptons %s"
|
2752 |
+
|
2753 |
+
#: pages/billing.php:221
|
2754 |
+
msgid "Credit Card Information"
|
2755 |
+
msgstr "Information carte de crédit"
|
2756 |
+
|
2757 |
+
#: pages/billing.php:344
|
2758 |
+
msgid ""
|
2759 |
+
"This subscription is not recurring. So you don't need to update your billing "
|
2760 |
+
"information."
|
2761 |
+
msgstr ""
|
2762 |
+
"Cet abonnement n'est pas récurrent. Vous n'avez donc pas besoin de mettre à jour "
|
2763 |
+
"vos informations de facturation."
|
2764 |
+
|
2765 |
+
#: pages/cancel.php:26
|
2766 |
+
msgid "Are you sure you want to cancel your membership?"
|
2767 |
+
msgstr "Êtes-vous sûr de vouloir résilier votre adhésion?"
|
2768 |
+
|
2769 |
+
#: pages/cancel.php:32
|
2770 |
+
#, php-format
|
2771 |
+
msgid "Are you sure you want to cancel your %s membership?"
|
2772 |
+
msgstr "Êtes-vous sûr de vouloir résilier votre adhésion %s ?"
|
2773 |
+
|
2774 |
+
#: pages/cancel.php:37
|
2775 |
+
msgid "Yes, cancel my account"
|
2776 |
+
msgstr "Oui, supprimer mon compte"
|
2777 |
+
|
2778 |
+
#: pages/cancel.php:38
|
2779 |
+
msgid "No, keep my account"
|
2780 |
+
msgstr "Non, garder mon compte"
|
2781 |
+
|
2782 |
+
#: pages/cancel.php:48 shortcodes/pmpro_account.php:40
|
2783 |
+
msgid "My Memberships"
|
2784 |
+
msgstr "Mes adhésions"
|
2785 |
+
|
2786 |
+
#: pages/cancel.php:77
|
2787 |
+
msgid "Cancel All Memberships"
|
2788 |
+
msgstr "Résilier toutes mes adhésions"
|
2789 |
+
|
2790 |
+
#: pages/cancel.php:86
|
2791 |
+
msgid "Click here to go to the home page."
|
2792 |
+
msgstr "Cliquez ici pour accéder à la page d'accueil."
|
2793 |
+
|
2794 |
+
#: pages/checkout.php:26
|
2795 |
+
msgid ""
|
2796 |
+
"Almost done. Review the membership information and pricing below then "
|
2797 |
+
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
2798 |
+
msgstr ""
|
2799 |
+
"Presque fini. Vérifiez les informations d'adhésion et les prix ci-dessous puis "
|
2800 |
+
"<strong>cliquez sur le bouton Terminer le paiement</strong> pour terminer votre "
|
2801 |
+
"commande."
|
2802 |
+
|
2803 |
+
#: pages/checkout.php:33
|
2804 |
+
msgid "change"
|
2805 |
+
msgstr "changer"
|
2806 |
+
|
2807 |
+
#: pages/checkout.php:41
|
2808 |
+
#, php-format
|
2809 |
+
msgid "You have selected the <strong>%s</strong> membership level."
|
2810 |
+
msgstr "Vous avez choisi le niveau d'adhésion <strong>%s</strong>."
|
2811 |
+
|
2812 |
+
#: pages/checkout.php:51
|
2813 |
+
#, php-format
|
2814 |
+
msgid ""
|
2815 |
+
"<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has been "
|
2816 |
+
"applied to your order.</p>"
|
2817 |
+
msgstr ""
|
2818 |
+
"<p class=\"pmpro_level_discount_applied\">Le code de réduction <strong>%s</"
|
2819 |
+
"strong> a été appliqué à votre commande.</p>"
|
2820 |
+
|
2821 |
+
#: pages/checkout.php:62 services/applydiscountcode.php:89
|
2822 |
+
msgid "Click here to change your discount code"
|
2823 |
+
msgstr "Cliquez ici pour modifier votre code de réduction"
|
2824 |
+
|
2825 |
+
#: pages/checkout.php:64
|
2826 |
+
msgid "Do you have a discount code?"
|
2827 |
+
msgstr "Avez-vous un code de réduction ?"
|
2828 |
+
|
2829 |
+
#: pages/checkout.php:64
|
2830 |
+
msgid "Click here to enter your discount code"
|
2831 |
+
msgstr "Cliquez ici pour entrer votre code de réduction"
|
2832 |
+
|
2833 |
+
#: pages/checkout.php:163
|
2834 |
+
msgid "Already have an account?"
|
2835 |
+
msgstr "Vous avez déjà un compte ?"
|
2836 |
+
|
2837 |
+
#: pages/checkout.php:163
|
2838 |
+
msgid "Log in here"
|
2839 |
+
msgstr "Connectez-vous ici"
|
2840 |
+
|
2841 |
+
#: pages/checkout.php:163
|
2842 |
+
msgid "Account Information"
|
2843 |
+
msgstr "Informations du compte"
|
2844 |
+
|
2845 |
+
#: pages/checkout.php:189
|
2846 |
+
msgid "Confirm Password"
|
2847 |
+
msgstr "Confirmez le mot de passe"
|
2848 |
+
|
2849 |
+
#: pages/checkout.php:216
|
2850 |
+
msgid "Confirm E-mail Address"
|
2851 |
+
msgstr "Confirmer l'email"
|
2852 |
+
|
2853 |
+
#: pages/checkout.php:235
|
2854 |
+
msgid "Full Name"
|
2855 |
+
msgstr "Nom et prénom"
|
2856 |
+
|
2857 |
+
#: pages/checkout.php:236
|
2858 |
+
msgid "LEAVE THIS BLANK"
|
2859 |
+
msgstr "Laissez ce champ vide"
|
2860 |
+
|
2861 |
+
#: pages/checkout.php:260
|
2862 |
+
#, php-format
|
2863 |
+
msgid ""
|
2864 |
+
"You are logged in as <strong>%s</strong>. If you would like to use a different "
|
2865 |
+
"account for this membership, <a href=\"%s\">log out now</a>."
|
2866 |
+
msgstr ""
|
2867 |
+
"Vous êtes connecté en tant que <strong>%s </ strong>. Si vous souhaitez utiliser "
|
2868 |
+
"un compte différent pour cette adhésion, <a href=\"%s\">déconnectez-vous</a>."
|
2869 |
+
|
2870 |
+
#: pages/checkout.php:276
|
2871 |
+
msgid "Choose your Payment Method"
|
2872 |
+
msgstr "Choisissez votre mode de paiement"
|
2873 |
+
|
2874 |
+
#: pages/checkout.php:284
|
2875 |
+
msgid "Check Out with a Credit Card Here"
|
2876 |
+
msgstr "Payer avec une carte de crédit ici"
|
2877 |
+
|
2878 |
+
#: pages/checkout.php:672
|
2879 |
+
#, php-format
|
2880 |
+
msgid "I agree to the %s"
|
2881 |
+
msgstr "Je suis d'accord avec le %s"
|
2882 |
+
|
2883 |
+
#: pages/checkout.php:692
|
2884 |
+
msgid "Complete Payment"
|
2885 |
+
msgstr "Terminer le paiement"
|
2886 |
+
|
2887 |
+
#: pages/checkout.php:714
|
2888 |
+
msgid "Processing..."
|
2889 |
+
msgstr "Traitement en cours ..."
|
2890 |
+
|
2891 |
+
#: pages/checkout.php:751
|
2892 |
+
msgid "Required field"
|
2893 |
+
msgstr "Champs obligatoire"
|
2894 |
+
|
2895 |
+
#: pages/confirmation.php:12
|
2896 |
+
msgid "Your payment has been submitted. Your membership will be activated shortly."
|
2897 |
+
msgstr "Votre paiement a été envoyé. Votre adhésion sera activée très bientôt."
|
2898 |
+
|
2899 |
+
#: pages/confirmation.php:14
|
2900 |
+
#, php-format
|
2901 |
+
msgid "Thank you for your membership to %s. Your %s membership is now active."
|
2902 |
+
msgstr ""
|
2903 |
+
"Nous vous remercions de votre adhésion à %s. Votre adhésion <b>%s</b> est "
|
2904 |
+
"maintenant active."
|
2905 |
+
|
2906 |
+
#: pages/confirmation.php:28
|
2907 |
+
#, php-format
|
2908 |
+
msgid ""
|
2909 |
+
"Below are details about your membership account and a receipt for your initial "
|
2910 |
+
"membership invoice. A welcome email with a copy of your initial membership "
|
2911 |
+
"invoice has been sent to %s."
|
2912 |
+
msgstr ""
|
2913 |
+
"Voici les détails de votre compte et un reçu pour votre adhésion initiale. Un "
|
2914 |
+
"courriel de bienvenue avec une copie de votre reçu vous a été envoyé à %s."
|
2915 |
+
|
2916 |
+
#: pages/confirmation.php:41 pages/invoice.php:22
|
2917 |
+
#, php-format
|
2918 |
+
msgid "Invoice #%s on %s"
|
2919 |
+
msgstr "Reçu #%s on %s"
|
2920 |
+
|
2921 |
+
#: pages/confirmation.php:43 pages/invoice.php:24
|
2922 |
+
msgid "Print"
|
2923 |
+
msgstr "Imprimer"
|
2924 |
+
|
2925 |
+
#: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
|
2926 |
+
msgid "Account"
|
2927 |
+
msgstr "Compte"
|
2928 |
+
|
2929 |
+
#: pages/confirmation.php:49 pages/invoice.php:30
|
2930 |
+
msgid "Membership Expires"
|
2931 |
+
msgstr "Expiration de l'adhésion"
|
2932 |
+
|
2933 |
+
#: pages/confirmation.php:63 pages/invoice.php:50
|
2934 |
+
msgid "Payment Method"
|
2935 |
+
msgstr "Méthode de paiement"
|
2936 |
+
|
2937 |
+
#: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
|
2938 |
+
msgid "Total Billed"
|
2939 |
+
msgstr "Montant total"
|
2940 |
+
|
2941 |
+
#: pages/confirmation.php:82 pages/invoice.php:69
|
2942 |
+
msgid "ending in"
|
2943 |
+
msgstr "se terminant en"
|
2944 |
+
|
2945 |
+
#: pages/confirmation.php:97
|
2946 |
+
#, php-format
|
2947 |
+
msgid ""
|
2948 |
+
"Below are details about your membership account. A welcome email has been sent to "
|
2949 |
+
"%s."
|
2950 |
+
msgstr ""
|
2951 |
+
"Ci-dessous les détails de votre compte d'adhérent. Un courriel de bienvenue a été "
|
2952 |
+
"envoyé à %s."
|
2953 |
+
|
2954 |
+
#: pages/confirmation.php:105
|
2955 |
+
msgid "Pending"
|
2956 |
+
msgstr "En attente"
|
2957 |
+
|
2958 |
+
#: pages/confirmation.php:113 pages/invoice.php:141
|
2959 |
+
msgid "View Your Membership Account →"
|
2960 |
+
msgstr "Voir votre Compte →"
|
2961 |
+
|
2962 |
+
#: pages/confirmation.php:115
|
2963 |
+
msgid ""
|
2964 |
+
"If your account is not activated within a few minutes, please contact the site "
|
2965 |
+
"owner."
|
2966 |
+
msgstr ""
|
2967 |
+
"Si votre compte n'est pas activé d'ici quelques minutes, veuillez contacter le "
|
2968 |
+
"propriétaire du site."
|
2969 |
+
|
2970 |
+
#: pages/invoice.php:79
|
2971 |
+
msgid "Subtotal"
|
2972 |
+
msgstr "Sous-total"
|
2973 |
+
|
2974 |
+
#: pages/invoice.php:82
|
2975 |
+
msgid "Coupon"
|
2976 |
+
msgstr "Promo"
|
2977 |
+
|
2978 |
+
#: pages/invoice.php:108
|
2979 |
+
msgid "Invoice #"
|
2980 |
+
msgstr "Reçu n°"
|
2981 |
+
|
2982 |
+
#: pages/invoice.php:134
|
2983 |
+
msgid "No invoices found."
|
2984 |
+
msgstr "Aucun reçu trouvé."
|
2985 |
+
|
2986 |
+
#: pages/invoice.php:145
|
2987 |
+
msgid "← View All Invoices"
|
2988 |
+
msgstr "← Voir tous les reçus"
|
2989 |
+
|
2990 |
+
#: pages/levels.php:14
|
2991 |
+
msgid "Price"
|
2992 |
+
msgstr "Montant"
|
2993 |
+
|
2994 |
+
#: pages/levels.php:33
|
2995 |
+
msgid "Free"
|
2996 |
+
msgstr "Gratuit"
|
2997 |
+
|
2998 |
+
#: pages/levels.php:47 pages/levels.php:49
|
2999 |
+
msgid "Select"
|
3000 |
+
msgstr "Choisir"
|
3001 |
+
|
3002 |
+
#: pages/levels.php:57 shortcodes/pmpro_account.php:59
|
3003 |
+
msgid "Renew"
|
3004 |
+
msgstr "Renouveller"
|
3005 |
+
|
3006 |
+
#: pages/levels.php:63
|
3007 |
+
msgid "Your Level"
|
3008 |
+
msgstr "Votre niveau"
|
3009 |
+
|
3010 |
+
#: pages/levels.php:79
|
3011 |
+
msgid "← Return to Your Account"
|
3012 |
+
msgstr "← Retourner à votre compte"
|
3013 |
+
|
3014 |
+
#: pages/levels.php:81
|
3015 |
+
msgid "← Return to Home"
|
3016 |
+
msgstr "← Retourner à la page d'accueil"
|
3017 |
+
|
3018 |
+
#: paid-memberships-pro.php:116
|
3019 |
+
msgid "Testing Only"
|
3020 |
+
msgstr "Test seulement"
|
3021 |
+
|
3022 |
+
#: paid-memberships-pro.php:121
|
3023 |
+
msgid "PayPal Payflow Pro/PayPal Pro"
|
3024 |
+
msgstr ""
|
3025 |
+
|
3026 |
+
#: paid-memberships-pro.php:126
|
3027 |
+
msgid "Cybersource"
|
3028 |
+
msgstr ""
|
3029 |
+
|
3030 |
+
#: preheaders/account.php:10 preheaders/levels.php:22
|
3031 |
+
msgid "Your membership status has been updated - Thank you!"
|
3032 |
+
msgstr "Votre statut de membre a été mis à jour - Merci!"
|
3033 |
+
|
3034 |
+
#: preheaders/account.php:12 preheaders/levels.php:24
|
3035 |
+
msgid ""
|
3036 |
+
"Sorry, your request could not be completed - please try again in a few moments."
|
3037 |
+
msgstr ""
|
3038 |
+
"Désolé, votre demande n'a pas pu être terminée - Veuillez réessayer dans quelques "
|
3039 |
+
"instants."
|
3040 |
+
|
3041 |
+
#: preheaders/billing.php:270 preheaders/checkout.php:332
|
3042 |
+
msgid "Please complete all required fields."
|
3043 |
+
msgstr "Veuillez remplir tous les champs obligatoires."
|
3044 |
+
|
3045 |
+
#: preheaders/billing.php:273 preheaders/checkout.php:340
|
3046 |
+
msgid "Your email addresses do not match. Please try again."
|
3047 |
+
msgstr "Vos adresses courriels ne correspondent pas. Veuillez essayer de nouveau."
|
3048 |
+
|
3049 |
+
#: preheaders/billing.php:276 preheaders/checkout.php:345
|
3050 |
+
msgid "The email address entered is in an invalid format. Please try again."
|
3051 |
+
msgstr ""
|
3052 |
+
"L'adresse courriel saisie est dans un format non valide. Veuillez essayer de "
|
3053 |
+
"nouveau."
|
3054 |
+
|
3055 |
+
#: preheaders/billing.php:280
|
3056 |
+
msgid "All good!"
|
3057 |
+
msgstr "Tout est bon !"
|
3058 |
+
|
3059 |
+
#: preheaders/billing.php:350
|
3060 |
+
#, php-format
|
3061 |
+
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
3062 |
+
msgstr ""
|
3063 |
+
"Information mise à jour. <a href=\"%s\">« Retourner dans mon compte</a>"
|
3064 |
+
|
3065 |
+
#: preheaders/billing.php:356
|
3066 |
+
msgid "Error updating billing information."
|
3067 |
+
msgstr "Erreur lors de la mise à jour des informations de facturation."
|
3068 |
+
|
3069 |
+
#: preheaders/cancel.php:25
|
3070 |
+
msgid "Your membership has been cancelled."
|
3071 |
+
msgstr "Votre adhésion a été résiliée."
|
3072 |
+
|
3073 |
+
#: preheaders/checkout.php:32 preheaders/checkout.php:354
|
3074 |
+
msgid "Invalid gateway."
|
3075 |
+
msgstr "Passerelle invalide."
|
3076 |
+
|
3077 |
+
#: preheaders/checkout.php:95
|
3078 |
+
msgid "Checkout: Payment Information"
|
3079 |
+
msgstr "Paiement : informations de facturation"
|
3080 |
+
|
3081 |
+
#: preheaders/checkout.php:100
|
3082 |
+
msgid "Set up Your Account"
|
3083 |
+
msgstr "Configurer votre compte"
|
3084 |
+
|
3085 |
+
#: preheaders/checkout.php:300
|
3086 |
+
msgid "There are JavaScript errors on the page. Please contact the webmaster."
|
3087 |
+
msgstr "Il y a des erreurs Javascript sur la page. Contactez le webmestre."
|
3088 |
+
|
3089 |
+
#: preheaders/checkout.php:335
|
3090 |
+
msgid "Your passwords do not match. Please try again."
|
3091 |
+
msgstr "Vos mots de passe ne correspondent pas. Veuillez essayer de nouveau."
|
3092 |
+
|
3093 |
+
#: preheaders/checkout.php:350
|
3094 |
+
#, php-format
|
3095 |
+
msgid "Please check the box to agree to the %s."
|
3096 |
+
msgstr "Veuillez cocher la case pour accepter le %s."
|
3097 |
+
|
3098 |
+
#: preheaders/checkout.php:357
|
3099 |
+
msgid "Are you a spammer?"
|
3100 |
+
msgstr "Êtes-vous un polluposteur?"
|
3101 |
+
|
3102 |
+
#: preheaders/checkout.php:377
|
3103 |
+
msgid "That username is already taken. Please try another."
|
3104 |
+
msgstr "Ce nom d'utilisateur est déjà utilisé. Veuillez en essayer un autre."
|
3105 |
+
|
3106 |
+
#: preheaders/checkout.php:382
|
3107 |
+
msgid "That email address is already taken. Please try another."
|
3108 |
+
msgstr "Cette adresse courriel est déjà utilisée. Veuillez en essayer une autre."
|
3109 |
+
|
3110 |
+
#: preheaders/checkout.php:416
|
3111 |
+
#, php-format
|
3112 |
+
msgid "reCAPTCHA failed. (%s) Please try again."
|
3113 |
+
msgstr "reCAPTCHA a échoué. (%s) Veuillez essayer de nouveau."
|
3114 |
+
|
3115 |
+
#: preheaders/checkout.php:501
|
3116 |
+
msgid "Payment accepted."
|
3117 |
+
msgstr "Paiement accepté."
|
3118 |
+
|
3119 |
+
#: preheaders/checkout.php:509
|
3120 |
+
msgid ""
|
3121 |
+
"Unknown error generating account. Please contact us to set up your membership."
|
3122 |
+
msgstr ""
|
3123 |
+
"Erreur inconnue lors de la génération du compte. Veuillez nous contacter pour "
|
3124 |
+
"compléter votre adhésion."
|
3125 |
+
|
3126 |
+
#: preheaders/checkout.php:569
|
3127 |
+
msgid ""
|
3128 |
+
"Your payment was accepted, but there was an error setting up your account. Please "
|
3129 |
+
"contact us."
|
3130 |
+
msgstr ""
|
3131 |
+
"Votre paiement a été accepté, mais une erreur est survenue lors de la "
|
3132 |
+
"configuration de votre compte. Veuillez nous contacter."
|
3133 |
+
|
3134 |
+
#: preheaders/checkout.php:710
|
3135 |
+
msgid ""
|
3136 |
+
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
3137 |
+
"authorized, but we cancelled the order immediately. You should not try to submit "
|
3138 |
+
"this form again. Please contact the site owner to fix this issue."
|
3139 |
+
msgstr ""
|
3140 |
+
"IMPORTANT : Quelque chose a mal tourné lors de la création de l'adhésion. Votre "
|
3141 |
+
"carte de crédit a été autorisée, mais nous avons annulé la commande. Ne renvoyez "
|
3142 |
+
"pas ce formulaire. Veuillez contacter le propriétaire du site pour résoudre ce "
|
3143 |
+
"problème."
|
3144 |
+
|
3145 |
+
#: preheaders/checkout.php:713
|
3146 |
+
msgid ""
|
3147 |
+
"IMPORTANT: Something went wrong during membership creation. Your credit card was "
|
3148 |
+
"charged, but we couldn't assign your membership. You should not submit this form "
|
3149 |
+
"again. Please contact the site owner to fix this issue."
|
3150 |
+
msgstr ""
|
3151 |
+
"IMPORTANT: Quelque chose a mal tourné lors de la création de l'adhésion. Votre "
|
3152 |
+
"carte de crédit a été débitée, mais nous n'avons pas pu valider votre adhésion. "
|
3153 |
+
"Ne renvoyez pas ce formulaire. Veuillez contacter le propriétaire du site pour "
|
3154 |
+
"résoudre ce problème."
|
3155 |
+
|
3156 |
+
#: preheaders/checkout.php:724
|
3157 |
+
#, php-format
|
3158 |
+
msgid ""
|
3159 |
+
"You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will be "
|
3160 |
+
"processed."
|
3161 |
+
msgstr ""
|
3162 |
+
"Vous devez <a href=\"%s\">configurer la passerelle de paiement</a> avant que les "
|
3163 |
+
"paiements soient traités."
|
3164 |
+
|
3165 |
+
#: preheaders/checkout.php:726
|
3166 |
+
msgid "A Payment Gateway must be set up before any payments will be processed."
|
3167 |
+
msgstr ""
|
3168 |
+
"Une passerelle de paiement doit être configurée avant que les paiements puissent "
|
3169 |
+
"être traités."
|
3170 |
+
|
3171 |
+
#: scheduled/crons.php:38
|
3172 |
+
#, php-format
|
3173 |
+
msgid "Membership expired email sent to %s. "
|
3174 |
+
msgstr "Courriel d'adhésion expirée envoyé à %s. "
|
3175 |
+
|
3176 |
+
#: scheduled/crons.php:84
|
3177 |
+
#, php-format
|
3178 |
+
msgid "Membership expiring email sent to %s. "
|
3179 |
+
msgstr "Courriel d'avis d'expiration d'adhésion envoyé à %s. "
|
3180 |
+
|
3181 |
+
#: scheduled/crons.php:157
|
3182 |
+
#, php-format
|
3183 |
+
msgid "Credit card expiring email sent to %s. "
|
3184 |
+
msgstr "Courriel d'expiration de la carte de crédit envoyé à %s. "
|
3185 |
+
|
3186 |
+
#: scheduled/crons.php:210
|
3187 |
+
#, php-format
|
3188 |
+
msgid "Trial ending email sent to %s. "
|
3189 |
+
msgstr "Courriel de fin de période d'essai envoyé à %s. "
|
3190 |
+
|
3191 |
+
#: services/applydiscountcode.php:67
|
3192 |
+
#, php-format
|
3193 |
+
msgid "The %s code has been applied to your order. "
|
3194 |
+
msgstr "Le code de réduction %s a été appliqué à votre commande. "
|
3195 |
+
|
3196 |
+
#: services/applydiscountcode.php:97
|
3197 |
+
#, php-format
|
3198 |
+
msgid "The <strong>%s</strong> code has been applied to your order."
|
3199 |
+
msgstr "Le code de réduction <strong>%s</strong> a été appliqué à votre commande."
|
3200 |
+
|
3201 |
+
#: services/authnet-silent-post.php:141
|
3202 |
+
msgid ""
|
3203 |
+
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
3204 |
+
"Information From Authorize.net"
|
3205 |
+
msgstr ""
|
3206 |
+
"<p>Un paiement est retenu pour examen par Authorize.net.</p><p>Conditions de "
|
3207 |
+
"vente de Authorize.net"
|
3208 |
+
|
3209 |
+
#: services/stripe-webhook.php:270
|
3210 |
+
#, php-format
|
3211 |
+
msgid ""
|
3212 |
+
"%s has had their payment subscription cancelled by Stripe. Please check that this "
|
3213 |
+
"user's membership is cancelled on your site if it should be."
|
3214 |
+
msgstr ""
|
3215 |
+
"%s a eu son abonnement de paiement annulé par Stripe. Veuillez vérifier que "
|
3216 |
+
"l'adhésion de cet utilisateur est annulée sur votre site si ça doit être le cas."
|
3217 |
+
|
3218 |
+
#: shortcodes/pmpro_account.php:45
|
3219 |
+
msgid "Billing"
|
3220 |
+
msgstr "Facturation"
|
3221 |
+
|
3222 |
+
#: shortcodes/pmpro_account.php:62
|
3223 |
+
msgid "Update Billing Info"
|
3224 |
+
msgstr "Mettre à jour les informations de facturation"
|
3225 |
+
|
3226 |
+
#: shortcodes/pmpro_account.php:68
|
3227 |
+
msgid "Change"
|
3228 |
+
msgstr "Modifier"
|
3229 |
+
|
3230 |
+
#: shortcodes/pmpro_account.php:90
|
3231 |
+
msgid "View all Membership Options"
|
3232 |
+
msgstr "Voir toutes les options d'adhésion"
|
3233 |
+
|
3234 |
+
#: shortcodes/pmpro_account.php:99
|
3235 |
+
msgid "My Account"
|
3236 |
+
msgstr "Mon compte"
|
3237 |
+
|
3238 |
+
#: shortcodes/pmpro_account.php:110
|
3239 |
+
msgid "Edit Profile"
|
3240 |
+
msgstr "Éditer le profil"
|
3241 |
+
|
3242 |
+
#: shortcodes/pmpro_account.php:111
|
3243 |
+
msgid "Change Password"
|
3244 |
+
msgstr "Changer le mot de passe"
|
3245 |
+
|
3246 |
+
#: shortcodes/pmpro_account.php:118
|
3247 |
+
msgid "Past Invoices"
|
3248 |
+
msgstr "Reçus antérieurs"
|
3249 |
+
|
3250 |
+
#: shortcodes/pmpro_account.php:124
|
3251 |
+
msgid "Amount"
|
3252 |
+
msgstr "Montant"
|
3253 |
+
|
3254 |
+
#: shortcodes/pmpro_account.php:152
|
3255 |
+
msgid "View All Invoices"
|
3256 |
+
msgstr "Voir tous les reçus"
|
3257 |
+
|
3258 |
+
#: shortcodes/pmpro_account.php:159
|
3259 |
+
msgid "Member Links"
|
3260 |
+
msgstr "Liens pour les membres"
|
3261 |
+
|
3262 |
+
#~ msgid "User is not paying."
|
3263 |
+
#~ msgstr "L'utilisateur ne paie pas."
|
3264 |
+
|
3265 |
+
#~ msgid "Billing Ammount"
|
3266 |
+
#~ msgstr "Montant de facturation"
|
3267 |
+
|
3268 |
+
#~ msgid "Check this to set an expiration date for new sign ups."
|
3269 |
+
#~ msgstr ""
|
3270 |
+
#~ "Cochez cette case pour définir une date d'expiration pour les nouvelles "
|
3271 |
+
#~ "inscriptions."
|
3272 |
+
|
3273 |
+
#~ msgid ""
|
3274 |
+
#~ "How long before the expiration expires. Note that any future payments will be "
|
3275 |
+
#~ "cancelled when the membership expires."
|
3276 |
+
#~ msgstr ""
|
3277 |
+
#~ "Combien de temps avant la fin de l'expiration. Notez que tous les paiements "
|
3278 |
+
#~ "futurs seront annulés lorsque l'abonnement expire."
|
3279 |
+
|
3280 |
+
#~ msgid ""
|
3281 |
+
#~ "Stripe integration currently only supports billing periods of \"Month\" or "
|
3282 |
+
#~ "\"Year\"."
|
3283 |
+
#~ msgstr ""
|
3284 |
+
#~ "Intégration de Stripe supporte actuellement que les périodes de facturation de "
|
3285 |
+
#~ "\"Month\" ou \"Year\"."
|
3286 |
+
|
3287 |
+
#~ msgid "Billing Cycle"
|
3288 |
+
#~ msgstr "Cycle de facturation"
|
3289 |
+
|
3290 |
+
#~ msgid "Trial Cycle"
|
3291 |
+
#~ msgstr "Cycle d'essai"
|
3292 |
+
|
3293 |
+
#~ msgid "every"
|
3294 |
+
#~ msgstr "tous"
|
3295 |
+
|
3296 |
+
#~ msgid "Never"
|
3297 |
+
#~ msgstr "Jamais"
|
3298 |
+
|
3299 |
+
#~ msgid ""
|
3300 |
+
#~ "Payflow Pro currently only supports one-time payments. Users will not be able "
|
3301 |
+
#~ "to checkout for levels with recurring payments."
|
3302 |
+
#~ msgstr ""
|
3303 |
+
#~ "Payflow Pro ne supporte actuellement que les paiements ponctuels. Les "
|
3304 |
+
#~ "utilisateurs ne seront pas en mesure de payer pour les niveaux des paiements "
|
3305 |
+
#~ "récurrents."
|
3306 |
+
|
3307 |
+
#~ msgid "Use SSL"
|
3308 |
+
#~ msgstr "Utiliser SSL"
|
3309 |
+
|
3310 |
+
#~ msgid "Required by this Gateway Option"
|
3311 |
+
#~ msgstr "Requis pour cette option de passerelle"
|
3312 |
+
|
3313 |
+
#~ msgid "HTTPS Nuclear Option"
|
3314 |
+
#~ msgstr "HTTPS Option nucléaire"
|
3315 |
+
|
3316 |
+
#~ msgid ""
|
3317 |
+
#~ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
|
3318 |
+
#~ "Check this if you are using SSL and have warnings on your checkout pages."
|
3319 |
+
#~ msgstr ""
|
3320 |
+
#~ "Utilisez \"Nuclear Option\" pour utiliser des URL(HTTPS) sécurisée sur vos "
|
3321 |
+
#~ "pages sécurisées. Cochez cette case si vous utilisez SSL et si vous avez des "
|
3322 |
+
#~ "avertissements sur vos pages de paiement."
|
3323 |
+
|
3324 |
+
#~ msgid "The new level is %s. This membership is free"
|
3325 |
+
#~ msgstr "Le nouveau niveau est %s. Cette adhésion est gratuite"
|
3326 |
+
|
3327 |
+
#~ msgid "membership has been cancelled"
|
3328 |
+
#~ msgstr "adhésion a été annulée"
|
3329 |
+
|
3330 |
+
#~ msgid "Your membership is <strong>active</strong>."
|
3331 |
+
#~ msgstr "Votre adhésion est <strong>active</strong>."
|
3332 |
+
|
3333 |
+
#~ msgid "Your first payment will cost %s."
|
3334 |
+
#~ msgstr "Votre premier paiement coûtera %s."
|
3335 |
+
|
3336 |
+
#~ msgid "Your first %d payments will cost %s."
|
3337 |
+
#~ msgstr "Vos premiers paiements %d coûteront %s."
|
3338 |
+
|
3339 |
+
#~ msgid "Edit Billing Information"
|
3340 |
+
#~ msgstr "Modifier l'information de facturation."
|
3341 |
+
|
3342 |
+
#~ msgid "Update Billing Information"
|
3343 |
+
#~ msgstr "Mise à jour des informations de facturation"
|
3344 |
+
|
3345 |
+
#~ msgid "Change Membership Level"
|
3346 |
+
#~ msgstr "Modifier le niveau d'adhésion"
|
3347 |
+
|
3348 |
+
#~ msgid "Cancel Membership"
|
3349 |
+
#~ msgstr "annuler l'abonnement"
|
3350 |
+
|
3351 |
+
#~ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
|
3352 |
+
#~ msgstr "<p>le <strong>%s</strong> code à été appliqué à votre commande.</p>"
|
3353 |
+
|
3354 |
+
#~ msgid ""
|
3355 |
+
#~ "Your payment has been submitted to PayPal. Your membership will be activated "
|
3356 |
+
#~ "shortly."
|
3357 |
+
#~ msgstr ""
|
3358 |
+
#~ "Votre paiement a été soumis à PayPal. Votre adhésion sera activée "
|
3359 |
+
#~ "prochainement."
|
3360 |
+
|
3361 |
+
#~ msgid ""
|
3362 |
+
#~ "Below are details about your membership account. A welcome email with has been "
|
3363 |
+
#~ "sent to %s."
|
3364 |
+
#~ msgstr ""
|
3365 |
+
#~ "Voici les détails de votre compte. Un courriel de bienvenue avec a été envoyé "
|
3366 |
+
#~ "à %s."
|
3367 |
+
|
3368 |
+
#~ msgid "View Invoice"
|
3369 |
+
#~ msgstr "Voir facture"
|
3370 |
+
|
3371 |
+
#~ msgid "Subscription Information"
|
3372 |
+
#~ msgstr "Renseignements sur les abonnements"
|
3373 |
+
|
3374 |
+
#~ msgid "%s per %s for %d more %s."
|
3375 |
+
#~ msgstr "%s par %s pour %d plus %s."
|
3376 |
+
|
3377 |
+
#~ msgid "%s every %d %s for %d more %s."
|
3378 |
+
#~ msgstr "%s chaque %d %s pour %d plus %s."
|
3379 |
+
|
3380 |
+
#~ msgid "%s after %d %s."
|
3381 |
+
#~ msgstr "%s après %d %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/checkout.php
CHANGED
@@ -29,57 +29,65 @@
|
|
29 |
<?php if($pmpro_review) { ?>
|
30 |
<p><?php _e('Almost done. Review the membership information and pricing below then <strong>click the "Complete Payment" button</strong> to finish your order.', 'paid-memberships-pro' );?></p>
|
31 |
<?php } ?>
|
32 |
-
<div id="pmpro_pricing_fields" class="pmpro_checkout">
|
33 |
-
<h3>
|
34 |
-
<span class="pmpro_checkout-h3-name"><?php _e('Membership Level', 'paid-memberships-pro' );?></span>
|
35 |
-
<?php if(count($pmpro_levels) > 1) { ?><span class="pmpro_checkout-h3-msg"><a href="<?php echo pmpro_url("levels"); ?>"><?php _e('change', 'paid-memberships-pro' );?></a></span><?php } ?>
|
36 |
-
</h3>
|
37 |
-
<div class="pmpro_checkout-fields">
|
38 |
-
<p>
|
39 |
-
<?php printf(__('You have selected the <strong>%s</strong> membership level.', 'paid-memberships-pro' ), $pmpro_level->name);?>
|
40 |
-
</p>
|
41 |
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
$
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
<?php } ?>
|
72 |
-
<?php } ?>
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
83 |
|
84 |
<?php if($pmpro_show_discount_code) { ?>
|
85 |
<script>
|
@@ -186,7 +194,7 @@
|
|
186 |
</div> <!-- end pmpro_checkout-field-password2 -->
|
187 |
<?php } else { ?>
|
188 |
<input type="hidden" name="password2_copy" value="1" />
|
189 |
-
<?php }
|
190 |
?>
|
191 |
|
192 |
<?php
|
@@ -270,7 +278,7 @@
|
|
270 |
$pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
|
271 |
if($pmpro_include_billing_address_fields) { ?>
|
272 |
<div id="pmpro_billing_address_fields" class="pmpro_checkout" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_billing_address_fields", false) ){ ?>style="display: none;"<?php } ?>>
|
273 |
-
<hr />
|
274 |
<h3>
|
275 |
<span class="pmpro_checkout-h3-name"><?php _e('Billing Address', 'paid-memberships-pro' );?></span>
|
276 |
</h3>
|
29 |
<?php if($pmpro_review) { ?>
|
30 |
<p><?php _e('Almost done. Review the membership information and pricing below then <strong>click the "Complete Payment" button</strong> to finish your order.', 'paid-memberships-pro' );?></p>
|
31 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
<?php
|
34 |
+
$include_pricing_fields = apply_filters( 'pmpro_include_pricing_fields', true );
|
35 |
+
if ( $include_pricing_fields ) {
|
36 |
+
?>
|
37 |
+
<div id="pmpro_pricing_fields" class="pmpro_checkout">
|
38 |
+
<h3>
|
39 |
+
<span class="pmpro_checkout-h3-name"><?php _e('Membership Level', 'paid-memberships-pro' );?></span>
|
40 |
+
<?php if(count($pmpro_levels) > 1) { ?><span class="pmpro_checkout-h3-msg"><a href="<?php echo pmpro_url("levels"); ?>"><?php _e('change', 'paid-memberships-pro' );?></a></span><?php } ?>
|
41 |
+
</h3>
|
42 |
+
<div class="pmpro_checkout-fields">
|
43 |
+
<p>
|
44 |
+
<?php printf(__('You have selected the <strong>%s</strong> membership level.', 'paid-memberships-pro' ), $pmpro_level->name);?>
|
45 |
+
</p>
|
46 |
|
47 |
+
<?php
|
48 |
+
/**
|
49 |
+
* All devs to filter the level description at checkout.
|
50 |
+
* We also have a function in includes/filters.php that applies the the_content filters to this description.
|
51 |
+
* @param string $description The level description.
|
52 |
+
* @param object $pmpro_level The PMPro Level object.
|
53 |
+
*/
|
54 |
+
$level_description = apply_filters('pmpro_level_description', $pmpro_level->description, $pmpro_level);
|
55 |
+
if(!empty($level_description))
|
56 |
+
echo $level_description;
|
57 |
+
?>
|
58 |
+
|
59 |
+
<div id="pmpro_level_cost">
|
60 |
+
<?php if($discount_code && pmpro_checkDiscountCode($discount_code)) { ?>
|
61 |
+
<?php printf(__('<p class="pmpro_level_discount_applied">The <strong>%s</strong> code has been applied to your order.</p>', 'paid-memberships-pro' ), $discount_code);?>
|
62 |
+
<?php } ?>
|
63 |
+
<?php echo wpautop(pmpro_getLevelCost($pmpro_level)); ?>
|
64 |
+
<?php echo wpautop(pmpro_getLevelExpiration($pmpro_level)); ?>
|
65 |
+
</div>
|
66 |
+
|
67 |
+
<?php do_action("pmpro_checkout_after_level_cost"); ?>
|
68 |
+
|
69 |
+
<?php if($pmpro_show_discount_code) { ?>
|
70 |
+
<?php if($discount_code && !$pmpro_review) { ?>
|
71 |
+
<p id="other_discount_code_p" class="pmpro_small"><a id="other_discount_code_a" href="#discount_code"><?php _e('Click here to change your discount code.', 'paid-memberships-pro' );?></a></p>
|
72 |
+
<?php } elseif(!$pmpro_review) { ?>
|
73 |
+
<p id="other_discount_code_p" class="pmpro_small"><?php _e('Do you have a discount code?', 'paid-memberships-pro' );?> <a id="other_discount_code_a" href="#discount_code"><?php _e('Click here to enter your discount code', 'paid-memberships-pro' );?></a>.</p>
|
74 |
+
<?php } elseif($pmpro_review && $discount_code) { ?>
|
75 |
+
<p><strong><?php _e('Discount Code', 'paid-memberships-pro' );?>:</strong> <?php echo $discount_code?></p>
|
76 |
+
<?php } ?>
|
77 |
<?php } ?>
|
|
|
78 |
|
79 |
+
<?php if($pmpro_show_discount_code) { ?>
|
80 |
+
<div id="other_discount_code_tr" style="display: none;">
|
81 |
+
<label for="other_discount_code"><?php _e('Discount Code', 'paid-memberships-pro' );?></label>
|
82 |
+
<input id="other_discount_code" name="other_discount_code" type="text" class="input <?php echo pmpro_getClassForField("other_discount_code");?>" size="20" value="<?php echo esc_attr($discount_code); ?>" />
|
83 |
+
<input type="button" name="other_discount_code_button" id="other_discount_code_button" value="<?php _e('Apply', 'paid-memberships-pro' );?>" />
|
84 |
+
</div>
|
85 |
+
<?php } ?>
|
86 |
+
</div> <!-- end pmpro_checkout-fields -->
|
87 |
+
</div> <!-- end pmpro_pricing_fields -->
|
88 |
+
<?php
|
89 |
+
} // if ( $include_pricing_fields )
|
90 |
+
?>
|
91 |
|
92 |
<?php if($pmpro_show_discount_code) { ?>
|
93 |
<script>
|
194 |
</div> <!-- end pmpro_checkout-field-password2 -->
|
195 |
<?php } else { ?>
|
196 |
<input type="hidden" name="password2_copy" value="1" />
|
197 |
+
<?php }
|
198 |
?>
|
199 |
|
200 |
<?php
|
278 |
$pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
|
279 |
if($pmpro_include_billing_address_fields) { ?>
|
280 |
<div id="pmpro_billing_address_fields" class="pmpro_checkout" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_billing_address_fields", false) ){ ?>style="display: none;"<?php } ?>>
|
281 |
+
<hr />
|
282 |
<h3>
|
283 |
<span class="pmpro_checkout-h3-name"><?php _e('Billing Address', 'paid-memberships-pro' );?></span>
|
284 |
</h3>
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Paid Memberships Pro
|
4 |
* Plugin URI: https://www.paidmembershipspro.com
|
5 |
* Description: The most complete member management and membership subscriptions plugin for WordPress.
|
6 |
-
* Version: 1.9.5.
|
7 |
* Author: Stranger Studios
|
8 |
* Author URI: https://www.strangerstudios.com
|
9 |
* Text Domain: paid-memberships-pro
|
@@ -16,7 +16,7 @@
|
|
16 |
*/
|
17 |
|
18 |
// version constant
|
19 |
-
define( 'PMPRO_VERSION', '1.9.5.
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
3 |
* Plugin Name: Paid Memberships Pro
|
4 |
* Plugin URI: https://www.paidmembershipspro.com
|
5 |
* Description: The most complete member management and membership subscriptions plugin for WordPress.
|
6 |
+
* Version: 1.9.5.6
|
7 |
* Author: Stranger Studios
|
8 |
* Author URI: https://www.strangerstudios.com
|
9 |
* Text Domain: paid-memberships-pro
|
16 |
*/
|
17 |
|
18 |
// version constant
|
19 |
+
define( 'PMPRO_VERSION', '1.9.5.6' );
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: strangerstudios
|
|
3 |
Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
Requires at least: 4
|
5 |
Tested up to: 4.9.8
|
6 |
-
Stable tag: 1.9.5.
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
@@ -129,6 +129,18 @@ Not sure? You can find out by doing a bit a research.
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
= 1.9.5.5 - 2018-10-19 =
|
133 |
* BUG FIX: Fixed fatal error in the Braintree webhook that will have caused syncing issues for Braintree users.
|
134 |
* BUG FIX: Stopped sending the cancel subscription request to the PayPal API if we are processing the IPN request for the same subscription.
|
3 |
Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
Requires at least: 4
|
5 |
Tested up to: 4.9.8
|
6 |
+
Stable tag: 1.9.5.6
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 1.9.5.6 - 2018-11-15 =
|
133 |
+
* BUG FIX: Fixed issue where Braintree would try to cancel a subscription twice if it was cancelled on the Braintree side.
|
134 |
+
* BUG FIX: Fixed bug in Braintree webhook when using certain versions of PHP.
|
135 |
+
* BUG FIX: Correct Braintree plans flagged as faulty.
|
136 |
+
* BUG FIX/ENHANCEMENT: Added Order Code to the Orders Export CSV
|
137 |
+
* BUG FIX/ENHANCEMENT: Removed another warning RE billing limits with the Stripe gateway. (Thanks, Jordan Kohl)
|
138 |
+
* ENHANCEMENT: Added the pmpro_include_pricing_fields filter.
|
139 |
+
* ENHANCEMENT: Adding IDs to action links in the account shortcode so users can target them with CSS/JS.
|
140 |
+
* ENHANCEMENT: Updated French Translation. (Thanks, Pascal)
|
141 |
+
* ENHANCEMENT: Retina logo on dashboard pages.
|
142 |
+
* ENHANCEMENT: Showing what PMPro page a page is in the Post List table of the WP dashboard.
|
143 |
+
|
144 |
= 1.9.5.5 - 2018-10-19 =
|
145 |
* BUG FIX: Fixed fatal error in the Braintree webhook that will have caused syncing issues for Braintree users.
|
146 |
* BUG FIX: Stopped sending the cancel subscription request to the PayPal API if we are processing the IPN request for the same subscription.
|
services/braintree-webhook.php
CHANGED
@@ -78,7 +78,7 @@ if ( ! isset( $webhookNotification->kind ) ) {
|
|
78 |
*/
|
79 |
if ( $webhookNotification->kind === Braintree_WebhookNotification::CHECK ) {
|
80 |
|
81 |
-
$when = $webhookNotification->timestamp->format('Y-m-d H:i:s.u');
|
82 |
|
83 |
$logstr[] = "Since you are just testing the URL, check that the timestamp updates on refresh to make sure this isn't being cached.";
|
84 |
$logstr[] = "Braintree gateway timestamp: {$when}";
|
@@ -96,7 +96,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
96 |
}
|
97 |
|
98 |
//figure out which order to attach to
|
99 |
-
$old_order = new MemberOrder();
|
100 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
101 |
|
102 |
//no order?
|
@@ -119,7 +119,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
119 |
$transaction = $webhookNotification->subscription->transactions[0];
|
120 |
|
121 |
//alright. create a new order/invoice
|
122 |
-
$morder = new MemberOrder();
|
123 |
$morder->user_id = $old_order->user_id;
|
124 |
$morder->membership_id = $old_order->membership_id;
|
125 |
$morder->InitialPayment = $transaction->amount; //not the initial payment, but the order class is expecting this
|
@@ -162,7 +162,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
162 |
$morder->getMemberOrderByID( $morder->id );
|
163 |
|
164 |
//email the user their invoice
|
165 |
-
$pmproemail = new PMProEmail();
|
166 |
$pmproemail->sendInvoiceEmail( $user, $morder );
|
167 |
|
168 |
do_action( 'pmpro_subscription_payment_completed', $morder );
|
@@ -190,7 +190,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
190 |
}
|
191 |
|
192 |
//figure out which order to attach to
|
193 |
-
$old_order = new MemberOrder();
|
194 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
195 |
|
196 |
if ( empty( $old_order ) ) {
|
@@ -205,18 +205,44 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
205 |
//generate billing failure email
|
206 |
do_action( "pmpro_subscription_payment_failed", $old_order );
|
207 |
|
208 |
-
$transaction = $webhookNotification->transactions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
|
210 |
//prep this order for the failure emails
|
211 |
-
$morder
|
212 |
-
$morder->user_id
|
213 |
-
|
214 |
-
$morder->billing->
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
$morder->billing->
|
219 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
|
221 |
//get CC info that is on file
|
222 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
@@ -225,11 +251,11 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
225 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
226 |
|
227 |
// Email the user and ask them to update their credit card information
|
228 |
-
$pmproemail = new PMProEmail();
|
229 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
230 |
|
231 |
// Email admin so they are aware of the failure
|
232 |
-
$pmproemail = new PMProEmail();
|
233 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
234 |
|
235 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
@@ -248,7 +274,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
248 |
}
|
249 |
|
250 |
//figure out which order to attach to
|
251 |
-
$old_order = new MemberOrder();
|
252 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
253 |
|
254 |
if ( empty( $old_order ) ) {
|
@@ -264,18 +290,44 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
264 |
do_action( "pmpro_subscription_payment_failed", $old_order );
|
265 |
do_action( "pmpro_subscription_payment_went_past_due", $old_order );
|
266 |
|
267 |
-
$transaction = $webhookNotification->transactions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
|
269 |
//prep this order for the failure emails
|
270 |
-
$morder
|
271 |
-
$morder->user_id
|
272 |
-
|
273 |
-
$morder->billing->
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
$morder->billing->
|
278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
|
280 |
//get CC info that is on file
|
281 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
@@ -284,11 +336,11 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
284 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
285 |
|
286 |
// Email the user and ask them to update their credit card information
|
287 |
-
$pmproemail = new PMProEmail();
|
288 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
289 |
|
290 |
// Email admin so they are aware of the failure
|
291 |
-
$pmproemail = new PMProEmail();
|
292 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
293 |
|
294 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
@@ -306,7 +358,7 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
306 |
}
|
307 |
|
308 |
//figure out which order to attach to
|
309 |
-
$old_order = new MemberOrder();
|
310 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
311 |
|
312 |
if ( empty( $old_order ) ) {
|
@@ -321,18 +373,44 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
321 |
//generate billing failure email
|
322 |
do_action( "pmpro_subscription_expired", $old_order );
|
323 |
|
324 |
-
$transaction = $webhookNotification->transactions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
//prep this order for the failure emails
|
327 |
-
$morder
|
328 |
-
$morder->user_id
|
329 |
-
|
330 |
-
$morder->billing->
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
$morder->billing->
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
//get CC info that is on file
|
338 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
@@ -341,11 +419,11 @@ if ( $webhookNotification->kind === Braintree_WebhookNotification::SUBSCRIPTION_
|
|
341 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
342 |
|
343 |
// Email the user and ask them to update their credit card information
|
344 |
-
$pmproemail = new PMProEmail();
|
345 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
346 |
|
347 |
// Email admin so they are aware of the failure
|
348 |
-
$pmproemail = new PMProEmail();
|
349 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
350 |
|
351 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
@@ -364,7 +442,7 @@ if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotificati
|
|
364 |
}
|
365 |
|
366 |
//figure out which order to attach to
|
367 |
-
$old_order = new MemberOrder();
|
368 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
369 |
|
370 |
if ( empty( $old_order ) ) {
|
@@ -372,9 +450,17 @@ if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotificati
|
|
372 |
pmpro_braintreeWebhookExit();
|
373 |
}
|
374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
$user_id = $old_order->user_id;
|
376 |
$user = get_userdata( $user_id );
|
377 |
-
$user->membership_level = pmpro_getMembershipLevelForUser( $user_id );
|
378 |
|
379 |
/**
|
380 |
* @since 1.9.5 - BUG FIX: Erroneously triggering warning email
|
@@ -390,18 +476,44 @@ if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotificati
|
|
390 |
// Trigger subscription cancelled action
|
391 |
do_action( "pmpro_subscription_cancelled", $old_order );
|
392 |
|
393 |
-
$transaction = $webhookNotification->transactions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
//prep this order for the failure emails
|
396 |
-
$morder
|
397 |
-
$morder->user_id
|
398 |
-
|
399 |
-
$morder->billing->
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
$morder->billing->
|
404 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
|
406 |
//get CC info that is on file
|
407 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
@@ -410,12 +522,12 @@ if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotificati
|
|
410 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
411 |
|
412 |
// Email the user and let them know the membership was cancelled
|
413 |
-
$pmproemail = new PMProEmail();
|
414 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
415 |
|
416 |
// Email admin so they are aware of the failure
|
417 |
-
$pmproemail = new PMProEmail();
|
418 |
-
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo("admin_email"), $morder );
|
419 |
|
420 |
// Send email
|
421 |
$logstr[] = "Sent billing failure email to the member and site admin. Thanks.";
|
@@ -427,6 +539,64 @@ if ( Braintree_WebhookNotification::SUBSCRIPTION_CANCELED === $webhookNotificati
|
|
427 |
*/
|
428 |
pmpro_braintreeWebhookExit();
|
429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
/**
|
431 |
* Exit the Webhook handler, and save the debug log (if needed)
|
432 |
*/
|
78 |
*/
|
79 |
if ( $webhookNotification->kind === Braintree_WebhookNotification::CHECK ) {
|
80 |
|
81 |
+
$when = $webhookNotification->timestamp->format( 'Y-m-d H:i:s.u' );
|
82 |
|
83 |
$logstr[] = "Since you are just testing the URL, check that the timestamp updates on refresh to make sure this isn't being cached.";
|
84 |
$logstr[] = "Braintree gateway timestamp: {$when}";
|
96 |
}
|
97 |
|
98 |
//figure out which order to attach to
|
99 |
+
$old_order = new \MemberOrder();
|
100 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
101 |
|
102 |
//no order?
|
119 |
$transaction = $webhookNotification->subscription->transactions[0];
|
120 |
|
121 |
//alright. create a new order/invoice
|
122 |
+
$morder = new \MemberOrder();
|
123 |
$morder->user_id = $old_order->user_id;
|
124 |
$morder->membership_id = $old_order->membership_id;
|
125 |
$morder->InitialPayment = $transaction->amount; //not the initial payment, but the order class is expecting this
|
162 |
$morder->getMemberOrderByID( $morder->id );
|
163 |
|
164 |
//email the user their invoice
|
165 |
+
$pmproemail = new \PMProEmail();
|
166 |
$pmproemail->sendInvoiceEmail( $user, $morder );
|
167 |
|
168 |
do_action( 'pmpro_subscription_payment_completed', $morder );
|
190 |
}
|
191 |
|
192 |
//figure out which order to attach to
|
193 |
+
$old_order = new \MemberOrder();
|
194 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
195 |
|
196 |
if ( empty( $old_order ) ) {
|
205 |
//generate billing failure email
|
206 |
do_action( "pmpro_subscription_payment_failed", $old_order );
|
207 |
|
208 |
+
$transaction = isset( $webhookNotification->transactions ) && is_array( $webhookNotification->transactions ) ?
|
209 |
+
$webhookNotification->transactions[0] :
|
210 |
+
null;
|
211 |
+
|
212 |
+
if ( empty( $transaction ) || ! isset( $transaction->billing_details ) ) {
|
213 |
+
// Get billing address info from either old order or billing meta
|
214 |
+
$old_order->billing = pmpro_braintreeAddressInfo( $user_id, $old_order );
|
215 |
+
}
|
216 |
|
217 |
//prep this order for the failure emails
|
218 |
+
$morder = new \MemberOrder();
|
219 |
+
$morder->user_id = $user_id;
|
220 |
+
|
221 |
+
$morder->billing->name = isset( $transaction->billing_details->first_name ) && isset( $transaction->billing_details->last_name ) ?
|
222 |
+
trim( $transaction->billing_details->first_name . " " . $transaction->billing_details->first_name ) :
|
223 |
+
$old_order->billing->name;
|
224 |
+
|
225 |
+
$morder->billing->street = isset( $transaction->billing_details->street_address ) ?
|
226 |
+
$transaction->billing_details->street_address :
|
227 |
+
$old_order->billing->street;
|
228 |
+
|
229 |
+
$morder->billing->city = isset( $transaction->billing_details->locality ) ?
|
230 |
+
$transaction->billing_details->locality :
|
231 |
+
$old_order->billing->city;
|
232 |
+
|
233 |
+
$morder->billing->state = isset( $transaction->billing_details->region ) ?
|
234 |
+
$transaction->billing_details->region :
|
235 |
+
$old_order->billing->state;
|
236 |
+
|
237 |
+
$morder->billing->zip = isset( $transaction->billing_details->postal_code ) ?
|
238 |
+
$transaction->billing_details->postal_code :
|
239 |
+
$old_order->billing->zip;
|
240 |
+
|
241 |
+
$morder->billing->country = isset( $transaction->billing_details->country_code_alpha2 ) ?
|
242 |
+
$transaction->billing_details->country_code_alpha2 :
|
243 |
+
$old_order->billing->country;
|
244 |
+
|
245 |
+
$morder->billing->phone = $old_order->billing->phone;
|
246 |
|
247 |
//get CC info that is on file
|
248 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
251 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
252 |
|
253 |
// Email the user and ask them to update their credit card information
|
254 |
+
$pmproemail = new \PMProEmail();
|
255 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
256 |
|
257 |
// Email admin so they are aware of the failure
|
258 |
+
$pmproemail = new \PMProEmail();
|
259 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
260 |
|
261 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
274 |
}
|
275 |
|
276 |
//figure out which order to attach to
|
277 |
+
$old_order = new \MemberOrder();
|
278 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
279 |
|
280 |
if ( empty( $old_order ) ) {
|
290 |
do_action( "pmpro_subscription_payment_failed", $old_order );
|
291 |
do_action( "pmpro_subscription_payment_went_past_due", $old_order );
|
292 |
|
293 |
+
$transaction = isset( $webhookNotification->transactions ) && is_array( $webhookNotification->transactions ) ?
|
294 |
+
$webhookNotification->transactions[0] :
|
295 |
+
null;
|
296 |
+
|
297 |
+
if ( empty( $transaction ) || ! isset( $transaction->billing_details ) ) {
|
298 |
+
// Get billing address info from either old order or billing meta
|
299 |
+
$old_order->billing = pmpro_braintreeAddressInfo( $user_id, $old_order );
|
300 |
+
}
|
301 |
|
302 |
//prep this order for the failure emails
|
303 |
+
$morder = new \MemberOrder();
|
304 |
+
$morder->user_id = $user_id;
|
305 |
+
|
306 |
+
$morder->billing->name = isset( $transaction->billing_details->first_name ) && isset( $transaction->billing_details->last_name ) ?
|
307 |
+
trim( $transaction->billing_details->first_name . " " . $transaction->billing_details->first_name ) :
|
308 |
+
$old_order->billing->name;
|
309 |
+
|
310 |
+
$morder->billing->street = isset( $transaction->billing_details->street_address ) ?
|
311 |
+
$transaction->billing_details->street_address :
|
312 |
+
$old_order->billing->street;
|
313 |
+
|
314 |
+
$morder->billing->city = isset( $transaction->billing_details->locality ) ?
|
315 |
+
$transaction->billing_details->locality :
|
316 |
+
$old_order->billing->city;
|
317 |
+
|
318 |
+
$morder->billing->state = isset( $transaction->billing_details->region ) ?
|
319 |
+
$transaction->billing_details->region :
|
320 |
+
$old_order->billing->state;
|
321 |
+
|
322 |
+
$morder->billing->zip = isset( $transaction->billing_details->postal_code ) ?
|
323 |
+
$transaction->billing_details->postal_code :
|
324 |
+
$old_order->billing->zip;
|
325 |
+
|
326 |
+
$morder->billing->country = isset( $transaction->billing_details->country_code_alpha2 ) ?
|
327 |
+
$transaction->billing_details->country_code_alpha2 :
|
328 |
+
$old_order->billing->country;
|
329 |
+
|
330 |
+
$morder->billing->phone = $old_order->billing->phone;
|
331 |
|
332 |
//get CC info that is on file
|
333 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
336 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
337 |
|
338 |
// Email the user and ask them to update their credit card information
|
339 |
+
$pmproemail = new \PMProEmail();
|
340 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
341 |
|
342 |
// Email admin so they are aware of the failure
|
343 |
+
$pmproemail = new \PMProEmail();
|
344 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
345 |
|
346 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
358 |
}
|
359 |
|
360 |
//figure out which order to attach to
|
361 |
+
$old_order = new \MemberOrder();
|
362 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
363 |
|
364 |
if ( empty( $old_order ) ) {
|
373 |
//generate billing failure email
|
374 |
do_action( "pmpro_subscription_expired", $old_order );
|
375 |
|
376 |
+
$transaction = isset( $webhookNotification->transactions ) && is_array( $webhookNotification->transactions ) ?
|
377 |
+
$webhookNotification->transactions[0] :
|
378 |
+
null;
|
379 |
+
|
380 |
+
if ( empty( $transaction ) || ! isset( $transaction->billing_details ) ) {
|
381 |
+
// Get billing address info from either old order or billing meta
|
382 |
+
$old_order->billing = pmpro_braintreeAddressInfo( $user_id, $old_order );
|
383 |
+
}
|
384 |
|
385 |
//prep this order for the failure emails
|
386 |
+
$morder = new \MemberOrder();
|
387 |
+
$morder->user_id = $user_id;
|
388 |
+
|
389 |
+
$morder->billing->name = isset( $transaction->billing_details->first_name ) && isset( $transaction->billing_details->last_name ) ?
|
390 |
+
trim( $transaction->billing_details->first_name . " " . $transaction->billing_details->first_name ) :
|
391 |
+
$old_order->billing->name;
|
392 |
+
|
393 |
+
$morder->billing->street = isset( $transaction->billing_details->street_address ) ?
|
394 |
+
$transaction->billing_details->street_address :
|
395 |
+
$old_order->billing->street;
|
396 |
+
|
397 |
+
$morder->billing->city = isset( $transaction->billing_details->locality ) ?
|
398 |
+
$transaction->billing_details->locality :
|
399 |
+
$old_order->billing->city;
|
400 |
+
|
401 |
+
$morder->billing->state = isset( $transaction->billing_details->region ) ?
|
402 |
+
$transaction->billing_details->region :
|
403 |
+
$old_order->billing->state;
|
404 |
+
|
405 |
+
$morder->billing->zip = isset( $transaction->billing_details->postal_code ) ?
|
406 |
+
$transaction->billing_details->postal_code :
|
407 |
+
$old_order->billing->zip;
|
408 |
+
|
409 |
+
$morder->billing->country = isset( $transaction->billing_details->country_code_alpha2 ) ?
|
410 |
+
$transaction->billing_details->country_code_alpha2 :
|
411 |
+
$old_order->billing->country;
|
412 |
+
|
413 |
+
$morder->billing->phone = $old_order->billing->phone;
|
414 |
|
415 |
//get CC info that is on file
|
416 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
419 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
420 |
|
421 |
// Email the user and ask them to update their credit card information
|
422 |
+
$pmproemail = new \PMProEmail();
|
423 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
424 |
|
425 |
// Email admin so they are aware of the failure
|
426 |
+
$pmproemail = new \PMProEmail();
|
427 |
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
428 |
|
429 |
$logstr[] = "Sent email to the member and site admin. Thanks.";
|
442 |
}
|
443 |
|
444 |
//figure out which order to attach to
|
445 |
+
$old_order = new \MemberOrder();
|
446 |
$old_order->getLastMemberOrderBySubscriptionTransactionID( $webhookNotification->subscription->id );
|
447 |
|
448 |
if ( empty( $old_order ) ) {
|
450 |
pmpro_braintreeWebhookExit();
|
451 |
}
|
452 |
|
453 |
+
/**
|
454 |
+
* @since v1.9.5+ - BUG FIX: Don't process previously handled subscription cancellation
|
455 |
+
*/
|
456 |
+
if ( isset( $old_order->status ) && 'cancelled' == $old_order->status ) {
|
457 |
+
$logstr[] = "Order for subscription id {$webhookNotification->subscription->id} is cancelled already";
|
458 |
+
pmpro_braintreeWebhookExit();
|
459 |
+
}
|
460 |
+
|
461 |
$user_id = $old_order->user_id;
|
462 |
$user = get_userdata( $user_id );
|
463 |
+
$user->membership_level = pmpro_getMembershipLevelForUser( $user_id,true );
|
464 |
|
465 |
/**
|
466 |
* @since 1.9.5 - BUG FIX: Erroneously triggering warning email
|
476 |
// Trigger subscription cancelled action
|
477 |
do_action( "pmpro_subscription_cancelled", $old_order );
|
478 |
|
479 |
+
$transaction = isset( $webhookNotification->transactions ) && is_array( $webhookNotification->transactions ) ?
|
480 |
+
$webhookNotification->transactions[0] :
|
481 |
+
null;
|
482 |
+
|
483 |
+
if ( empty( $transaction ) || ! isset( $transaction->billing_details ) ) {
|
484 |
+
// Get billing address info from either old order or billing meta
|
485 |
+
$old_order->billing = pmpro_braintreeAddressInfo( $user_id, $old_order );
|
486 |
+
}
|
487 |
|
488 |
//prep this order for the failure emails
|
489 |
+
$morder = new \MemberOrder();
|
490 |
+
$morder->user_id = $user_id;
|
491 |
+
|
492 |
+
$morder->billing->name = isset( $transaction->billing_details->first_name ) && isset( $transaction->billing_details->last_name ) ?
|
493 |
+
trim( $transaction->billing_details->first_name . " " . $transaction->billing_details->first_name ) :
|
494 |
+
$old_order->billing->name;
|
495 |
+
|
496 |
+
$morder->billing->street = isset( $transaction->billing_details->street_address ) ?
|
497 |
+
$transaction->billing_details->street_address :
|
498 |
+
$old_order->billing->street;
|
499 |
+
|
500 |
+
$morder->billing->city = isset( $transaction->billing_details->locality ) ?
|
501 |
+
$transaction->billing_details->locality :
|
502 |
+
$old_order->billing->city;
|
503 |
+
|
504 |
+
$morder->billing->state = isset( $transaction->billing_details->region ) ?
|
505 |
+
$transaction->billing_details->region :
|
506 |
+
$old_order->billing->state;
|
507 |
+
|
508 |
+
$morder->billing->zip = isset( $transaction->billing_details->postal_code ) ?
|
509 |
+
$transaction->billing_details->postal_code :
|
510 |
+
$old_order->billing->zip;
|
511 |
+
|
512 |
+
$morder->billing->country = isset( $transaction->billing_details->country_code_alpha2 ) ?
|
513 |
+
$transaction->billing_details->country_code_alpha2 :
|
514 |
+
$old_order->billing->country;
|
515 |
+
|
516 |
+
$morder->billing->phone = $old_order->billing->phone;
|
517 |
|
518 |
//get CC info that is on file
|
519 |
$morder->cardtype = get_user_meta( $user_id, "pmpro_CardType", true );
|
522 |
$morder->expirationyear = get_user_meta( $user_id, "pmpro_ExpirationYear", true );
|
523 |
|
524 |
// Email the user and let them know the membership was cancelled
|
525 |
+
$pmproemail = new \PMProEmail();
|
526 |
$pmproemail->sendBillingFailureEmail( $user, $morder );
|
527 |
|
528 |
// Email admin so they are aware of the failure
|
529 |
+
$pmproemail = new \PMProEmail();
|
530 |
+
$pmproemail->sendBillingFailureAdminEmail( get_bloginfo( "admin_email" ), $morder );
|
531 |
|
532 |
// Send email
|
533 |
$logstr[] = "Sent billing failure email to the member and site admin. Thanks.";
|
539 |
*/
|
540 |
pmpro_braintreeWebhookExit();
|
541 |
|
542 |
+
/**
|
543 |
+
* Fix address info for order/transaction
|
544 |
+
*
|
545 |
+
* @param int $user_id
|
546 |
+
* @param \MemberOrder $old_order
|
547 |
+
*
|
548 |
+
* @return \stdClass
|
549 |
+
*/
|
550 |
+
function pmpro_braintreeAddressInfo( $user_id, $old_order ) {
|
551 |
+
|
552 |
+
|
553 |
+
// Grab billing info from the saved metadata as needed
|
554 |
+
|
555 |
+
if ( ! isset( $old_order->billing ) ) {
|
556 |
+
$old_order->billing = new \stdClass();
|
557 |
+
}
|
558 |
+
|
559 |
+
if ( empty ( $old_order->billing->name ) ) {
|
560 |
+
$first_name = get_user_meta( $user_id, 'pmpro_bfirstname', true );
|
561 |
+
$last_name = get_user_meta( $user_id, 'pmpro_blastname', true );
|
562 |
+
|
563 |
+
if ( ! empty( $first_name ) && ! empty( $last_name ) ) {
|
564 |
+
$old_order->billing->name = trim( "{$first_name} {$last_name}" );
|
565 |
+
}
|
566 |
+
}
|
567 |
+
|
568 |
+
if ( empty( $old_order->billing->street ) ) {
|
569 |
+
$address1 = get_user_meta( $user_id, 'pmpro_baddress', true );
|
570 |
+
$address2 = get_user_meta( $user_id, 'pmpro_baddress2', true );
|
571 |
+
$old_order->billing->street = ! empty( $address1 ) ? trim( $address1 ) : '';
|
572 |
+
$old_order->billing->street .= ! empty( $address2 ) ? "\n" . trim( $address2 ) : '';
|
573 |
+
}
|
574 |
+
|
575 |
+
if ( empty( $old_order->billing->city ) ) {
|
576 |
+
$city = get_user_meta( $user_id, 'pmpro_bcity', true );
|
577 |
+
$old_order->billing->city = ! empty( $city ) ? trim( $city ) : '';
|
578 |
+
}
|
579 |
+
|
580 |
+
if ( empty( $old_order->billing->state ) ) {
|
581 |
+
$state = get_user_meta( $user_id, 'pmpro_bstate', true );
|
582 |
+
$old_order->billing->state = ! empty( $state ) ? trim( $state ) : '';
|
583 |
+
}
|
584 |
+
|
585 |
+
if ( empty( $old_order->billing->zip ) ) {
|
586 |
+
$zip = get_user_meta( $user_id, 'pmpro_bzipcode', true );
|
587 |
+
$old_order->billing->zip = ! empty( $zip ) ? trim( $zip ) : '';
|
588 |
+
}
|
589 |
+
|
590 |
+
if ( empty( $old_order->billing->country ) ) {
|
591 |
+
$country = get_user_meta( $user_id, 'pmpro_bcountry', true );
|
592 |
+
$old_order->billing->country = ! empty( $country ) ? trim( $country ) : '';
|
593 |
+
}
|
594 |
+
|
595 |
+
$old_order->updateBilling();
|
596 |
+
|
597 |
+
return $old_order->billing;
|
598 |
+
}
|
599 |
+
|
600 |
/**
|
601 |
* Exit the Webhook handler, and save the debug log (if needed)
|
602 |
*/
|
shortcodes/pmpro_account.php
CHANGED
@@ -57,19 +57,19 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
57 |
<?php do_action("pmpro_member_action_links_before"); ?>
|
58 |
|
59 |
<?php if( array_key_exists($level->id, $pmpro_levels) && pmpro_isLevelExpiringSoon( $level ) ) { ?>
|
60 |
-
<a href="<?php echo pmpro_url("checkout", "?level=" . $level->id, "https")?>"><?php _e("Renew", 'paid-memberships-pro' );?></a>
|
61 |
<?php } ?>
|
62 |
|
63 |
<?php if((isset($ssorder->status) && $ssorder->status == "success") && (isset($ssorder->gateway) && in_array($ssorder->gateway, array("authorizenet", "paypal", "stripe", "braintree", "payflow", "cybersource"))) && pmpro_isLevelRecurring($level)) { ?>
|
64 |
-
<a href="<?php echo pmpro_url("billing", "", "https")?>"><?php _e("Update Billing Info", 'paid-memberships-pro' ); ?></a>
|
65 |
<?php } ?>
|
66 |
|
67 |
<?php
|
68 |
//To do: Only show CHANGE link if this level is in a group that has upgrade/downgrade rules
|
69 |
if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
|
70 |
-
<a href="<?php echo pmpro_url("levels")?>" id="pmpro_account-change"><?php _e("Change", 'paid-memberships-pro' );?></a>
|
71 |
<?php } ?>
|
72 |
-
<a href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>" id="pmpro_account-cancel"><?php _e("Cancel", 'paid-memberships-pro' );?></a>
|
73 |
<?php do_action("pmpro_member_action_links_after"); ?>
|
74 |
</div> <!-- end pmpro_actionlinks -->
|
75 |
</td>
|
@@ -92,7 +92,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
92 |
</table>
|
93 |
<?php //Todo: If there are multiple levels defined that aren't all in the same group defined as upgrades/downgrades ?>
|
94 |
<div class="pmpro_actionlinks">
|
95 |
-
<a href="<?php echo pmpro_url("levels")?>"><?php _e("View all Membership Options", 'paid-memberships-pro' );?></a>
|
96 |
</div>
|
97 |
|
98 |
</div> <!-- end pmpro_account-membership -->
|
@@ -112,8 +112,8 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
112 |
<?php do_action('pmpro_account_bullets_bottom');?>
|
113 |
</ul>
|
114 |
<div class="pmpro_actionlinks">
|
115 |
-
<a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-edit-profile"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
|
116 |
-
<a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-change-password"><?php _e('Change Password', 'paid-memberships-pro' );?></a>
|
117 |
</div>
|
118 |
</div> <!-- end pmpro_account-profile -->
|
119 |
<?php } ?>
|
@@ -154,7 +154,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
154 |
</tbody>
|
155 |
</table>
|
156 |
<?php if($count == 6) { ?>
|
157 |
-
<div class="pmpro_actionlinks"><a href="<?php echo pmpro_url("invoice"); ?>"><?php _e("View All Invoices", 'paid-memberships-pro' );?></a></div>
|
158 |
<?php } ?>
|
159 |
</div> <!-- end pmpro_account-invoices -->
|
160 |
<?php } ?>
|
57 |
<?php do_action("pmpro_member_action_links_before"); ?>
|
58 |
|
59 |
<?php if( array_key_exists($level->id, $pmpro_levels) && pmpro_isLevelExpiringSoon( $level ) ) { ?>
|
60 |
+
<a id="pmpro_actionlink-renew" href="<?php echo pmpro_url("checkout", "?level=" . $level->id, "https")?>"><?php _e("Renew", 'paid-memberships-pro' );?></a>
|
61 |
<?php } ?>
|
62 |
|
63 |
<?php if((isset($ssorder->status) && $ssorder->status == "success") && (isset($ssorder->gateway) && in_array($ssorder->gateway, array("authorizenet", "paypal", "stripe", "braintree", "payflow", "cybersource"))) && pmpro_isLevelRecurring($level)) { ?>
|
64 |
+
<a id="pmpro_actionlink-update-billing" href="<?php echo pmpro_url("billing", "", "https")?>"><?php _e("Update Billing Info", 'paid-memberships-pro' ); ?></a>
|
65 |
<?php } ?>
|
66 |
|
67 |
<?php
|
68 |
//To do: Only show CHANGE link if this level is in a group that has upgrade/downgrade rules
|
69 |
if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
|
70 |
+
<a id="pmpro_actionlink-change" href="<?php echo pmpro_url("levels")?>" id="pmpro_account-change"><?php _e("Change", 'paid-memberships-pro' );?></a>
|
71 |
<?php } ?>
|
72 |
+
<a id="pmpro_actionlink-cancel" href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>" id="pmpro_account-cancel"><?php _e("Cancel", 'paid-memberships-pro' );?></a>
|
73 |
<?php do_action("pmpro_member_action_links_after"); ?>
|
74 |
</div> <!-- end pmpro_actionlinks -->
|
75 |
</td>
|
92 |
</table>
|
93 |
<?php //Todo: If there are multiple levels defined that aren't all in the same group defined as upgrades/downgrades ?>
|
94 |
<div class="pmpro_actionlinks">
|
95 |
+
<a id="pmpro_actionlink-levels" href="<?php echo pmpro_url("levels")?>"><?php _e("View all Membership Options", 'paid-memberships-pro' );?></a>
|
96 |
</div>
|
97 |
|
98 |
</div> <!-- end pmpro_account-membership -->
|
112 |
<?php do_action('pmpro_account_bullets_bottom');?>
|
113 |
</ul>
|
114 |
<div class="pmpro_actionlinks">
|
115 |
+
<a id="pmpro_actionlink-profile" href="<?php echo admin_url('profile.php')?>" id="pmpro_account-edit-profile"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
|
116 |
+
<a id="pmpro_actionlink-password" href="<?php echo admin_url('profile.php')?>" id="pmpro_account-change-password"><?php _e('Change Password', 'paid-memberships-pro' );?></a>
|
117 |
</div>
|
118 |
</div> <!-- end pmpro_account-profile -->
|
119 |
<?php } ?>
|
154 |
</tbody>
|
155 |
</table>
|
156 |
<?php if($count == 6) { ?>
|
157 |
+
<div class="pmpro_actionlinks"><a id="pmpro_actionlink-invoices" href="<?php echo pmpro_url("invoice"); ?>"><?php _e("View All Invoices", 'paid-memberships-pro' );?></a></div>
|
158 |
<?php } ?>
|
159 |
</div> <!-- end pmpro_account-invoices -->
|
160 |
<?php } ?>
|