Paid Memberships Pro - Version 1.9.5.6

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