forked from lewisvoncken/language_fr_fr
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfr_FR.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 5156.
executable file
·6064 lines (6064 loc) · 492 KB
/
fr_FR.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Read Details","Lire les détails",module,Magento_AdminNotification
"Mark as Read","Marquer comme lu",module,Magento_AdminNotification
"Are you sure?","Êtes-vous sûr(e) ?",module,Magento_AdminNotification
"Remove","Supprimer",module,Magento_AdminNotification
"Messages Inbox","Messages reçus",module,Magento_AdminNotification
"You have %1 new system messages","Vous %1 nouveaux messages système",module,Magento_AdminNotification
"You have %1 new system message","Vous %1 nouveaux messages système",module,Magento_AdminNotification
"Incoming Message","Message entrant",module,Magento_AdminNotification
"close","Fermer",module,Magento_AdminNotification
"The message has been marked as Read.","Le message a bien été marqué comme lu.",module,Magento_AdminNotification
"We couldn't mark the notification as Read because of an error.","Nous ne pouvons pas marquer la notification comme lue à cause d'une erreur.",module,Magento_AdminNotification
"Please select messages.","Veuillez sélectionner des messages.",module,Magento_AdminNotification
"A total of %1 record(s) have been marked as Read.","Un total de %1 enregistrement(s) a(ont) été(s) marqué(s) comme lus.",module,Magento_AdminNotification
"Total of %1 record(s) have been removed.","%1 enregistrement(s) a (ont) bien été supprimé(s).",module,Magento_AdminNotification
"We couldn't remove the messages because of an error.","Nous n'avons pas pu supprimer le(s) message(s) en raison d'une erreur.",module,Magento_AdminNotification
"The message has been removed.","Le message a bien été supprimé.",module,Magento_AdminNotification
"1 Hour","1 Heure",module,Magento_AdminNotification
"2 Hours","2 Heures",module,Magento_AdminNotification
"6 Hours","6 Heures",module,Magento_AdminNotification
"12 Hours","12 Heures",module,Magento_AdminNotification
"24 Hours","24 Heures",module,Magento_AdminNotification
"critical","critique",module,Magento_AdminNotification
"major","majeur",module,Magento_AdminNotification
"minor","mineur",module,Magento_AdminNotification
"notice","annonce",module,Magento_AdminNotification
"Wrong message type","Mauvais type de message.",module,Magento_AdminNotification
"Wrong notification ID specified.","ID de notification incorrecte.",module,Magento_AdminNotification
"{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. We highly recommend changing this value in your Magento <a href=""%1"">configuration</a>.","L'utilisation de {{base_url}} n'est pas recommandée dans un environnement de production. Nous vous recommandons de modifier cette valeur dans votre <a href=""%1"">configuration</a> Magento.",module,Magento_AdminNotification
"One or more of the Cache Types are invalidated: %1. ","Un ou plusieurs types de cache sont invalides : %1. ",module,Magento_AdminNotification
"Please go to <a href=""%1"">Cache Management</a> and refresh cache types.","Rendez-vous dans la <a href=""%1"">gestion du cache</a> pour actualiser les types de cache nécessaires.",module,Magento_AdminNotification
"We were unable to synchronize one or more media files. Please refer to the log file for details.","Un ou plusieurs fichiers médias n'ont pas pu être synchronisés. Veuillez consulter le fichier journal pour plus de détails.",module,Magento_AdminNotification
"Synchronization of media storages has been completed.","La synchronisation du stockage des médias est terminée.",module,Magento_AdminNotification
"Your web server is set up incorrectly and allows unauthorized access to sensitive files. Please contact your hosting provider.","Votre serveur web est mal configuré et permet l'accès non autorisé à des fichiers sensibles. ' 'Veuillez contacter votre hébergeur.",module,Magento_AdminNotification
"System Messages:","Message système:",module,Magento_AdminNotification
"Critical System Messages","Messages système critique",module,Magento_AdminNotification
"Major System Messages","Messages système majeur",module,Magento_AdminNotification
"System messages","Message système",module,Magento_AdminNotification
"Close","Fermer",module,Magento_AdminNotification
"See All (","Voir Tous (",module,Magento_AdminNotification
"Please correct the data sent.","Merci de corriger les données envoyées.",module,Magento_AdvancedPricingImportExport
"Entity type model '%1' is not found","Le modèle du type d'entité '%1' est introuvable.",module,Magento_AdvancedPricingImportExport
"Entity type model must be an instance of \Magento\CatalogImportExport\Model\Export\Product\Type\AbstractType","Le Modèle de type entité doit être une instance de \Magento\CatalogImportExport\Model\Export\Product\Type\AbstractType",module,Magento_AdvancedPricingImportExport
"There are no product types available for export","Aucun type de produit disponible pour l'export",module,Magento_AdvancedPricingImportExport
"We can't find the role for the user you wanted.","Impossible de trouver le rôle de l'utilisateur désiré.",module,Magento_Authorization
"Something went wrong while compiling a list of allowed resources. You can find out more in the exceptions log.","Une erreur s'est produite lors de la compilation d'une liste de ressources autorisées. Vous pouvez trouver plus d'informations dans le journal des exceptions.",module,Magento_Authorization
"You created the order.","La commande a bien été créée.",module,Magento_Authorizenet
"Order saving error: %1","Erreur lors de la sauvegarde de la commande : %1",module,Magento_Authorizenet
"Please choose a payment method.","Choisissez une condition à ajouter...",module,Magento_Authorizenet
"We can't process your order right now. Please try again later.","Vérification de carte de paiement",module,Magento_Authorizenet
"An error occurred on the server. Please try to place the order again.","Une erreur serveur s'est produite. Veuillez recommencer plus tard.",module,Magento_Authorizenet
"Credit Card: xxxx-%1","Numéro de carte bancaire : xxxx-%1",module,Magento_Authorizenet
"amount %1","montant %1",module,Magento_Authorizenet
"failed.","échoué.",module,Magento_Authorizenet
"successful.","réussi.",module,Magento_Authorizenet
"Authorize.Net Transaction ID %1.","Id de transaction Authorize.Net %1.",module,Magento_Authorizenet
"authorize","autoriser",module,Magento_Authorizenet
"authorize and capture","autoriser et capturer",module,Magento_Authorizenet
"capture","capturer",module,Magento_Authorizenet
"refund","rembourser",module,Magento_Authorizenet
"void","invalider",module,Magento_Authorizenet
"Gateway error: %1","Erreur de la passerelle : %1",module,Magento_Authorizenet
"Something went wrong in the payment gateway.","Une erreur s'est produite avec la passerelle de paiement.",module,Magento_Authorizenet
"Invalid amount for capture.","Montant de capture invalide",module,Magento_Authorizenet
"Payment capturing error.","Erreur de capture de paiement.",module,Magento_Authorizenet
"Invalid transaction ID.","ID de transaction non valide.",module,Magento_Authorizenet
"Payment voiding error.","Erreur lors de l'annulation de paiement.",module,Magento_Authorizenet
"Invalid amount for refund.","Montant invalide pour le remboursement.",module,Magento_Authorizenet
"Payment refunding error.","Erreur de remboursement de paiement.",module,Magento_Authorizenet
"The transaction was declined because the response hash validation failed.","La transaction a été refusée parce que la validation du hash de la réponse a échoué.",module,Magento_Authorizenet
"This payment didn't work out because we can't find this order.","Ce paiement n'a pas fonctionné parce que nous ne pouvons pas trouver cette commande.",module,Magento_Authorizenet
"There was a payment authorization error.","Il y avait une erreur d'autorisation de paiement.",module,Magento_Authorizenet
"Please enter a transaction ID to authorize this payment.","Merci d'entrez un ID de transaction pour autoriser ce paiement.",module,Magento_Authorizenet
"Something went wrong: the paid amount doesn't match the order amount. Please correct this and try again.","Une erreur est survenue : le montant payé ne correspond pas au montant de la commande. Veuillez le corriger et essayer à nouveau.",module,Magento_Authorizenet
"Transaction %1 has been approved. Amount %2. Transaction status is ""%3""","La transaction %1 a été approuvée. Montant %2. Le statut de la transaction est ""%3""",module,Magento_Authorizenet
"Transaction %1 has been voided/declined. Transaction status is ""%2"". Amount %3.","La transaction %1 a été annulée ou refusée. Le statut de la transaction est ""%2"". Montant %3.",module,Magento_Authorizenet
"Authorize Only","Autorisation seulement",module,Magento_Authorizenet
"Authorize and Capture","Autorisation et collecte",module,Magento_Authorizenet
"Unable to get transaction details. Try again later.","Impossible d'obtenir les détails de la transaction. Réessayez plus tard.",module,Magento_Authorizenet
"Electronic payments save the trees.","Les paiements électroniques permettent de sauver des arbres.",module,Magento_Authorizenet
"Credit Card Type","Type de carte de crédit",module,Magento_Authorizenet
"Please Select","Faire un choix",module,Magento_Authorizenet
"Credit Card Number","Numéro de carte bancaire",module,Magento_Authorizenet
"Expiration Date","Date d'expiration",module,Magento_Authorizenet
"Card Verification Number","Numéro de vérification",module,Magento_Authorizenet
"FDS Filter Action","Action de filtrage FDS",module,Magento_Authorizenet
"AVS Response","Réponse de l'AVS",module,Magento_Authorizenet
"Card Code Response","Réponse du code de la carte",module,Magento_Authorizenet
"CAVV Response","Réponse CAVV",module,Magento_Authorizenet
"Fraud Filters","Filtres de fraude",module,Magento_Authorizenet
"Invalid Form Key. Please refresh the page.","Clé de formulaire invalide. Veuillez actualiser la page.",module,Magento_Backend
"You entered an invalid Secret Key. Please refresh the page.","Vous avez entré une clé secrète non valide. Merci d'actualiser la page.",module,Magento_Backend
"Cache Storage Management","Gestion du cache",module,Magento_Backend
"Flush Magento Cache","Purger le cache Magento",module,Magento_Backend
"The cache storage may contain additional data. Are you sure that you want to flush it?","Le stockage de cache peut contenir d\'autres données. Êtes-vous sûr de vouloir le vider ?",module,Magento_Backend
"Flush Cache Storage","Purger le stockage du cache",module,Magento_Backend
"Invalidated","Invalidé",module,Magento_Backend
"Orders","Commandes",module,Magento_Backend
"Amounts","Montants",module,Magento_Backend
"Bestsellers","Meilleures ventes",module,Magento_Backend
"Most Viewed Products","Produits les plus consultés",module,Magento_Backend
"New Customers","Nouveaux clients",module,Magento_Backend
"Customers","Clients",module,Magento_Backend
"Customer","Client",module,Magento_Backend
"Guest","Invité",module,Magento_Backend
"Items","Articles",module,Magento_Backend
"Lifetime Sales","Ventes depuis le début",module,Magento_Backend
"Average Order","Panier moyen",module,Magento_Backend
"Average","Moyen",module,Magento_Backend
"Product","Produit",module,Magento_Backend
"Price","Prix",module,Magento_Backend
"Quantity","Quantité",module,Magento_Backend
"Views","Vues",module,Magento_Backend
"Revenue","Revenu",module,Magento_Backend
"Tax","TVA & autres taxes",module,Magento_Backend
"Shipping","Livraison",module,Magento_Backend
"Media (.avi, .flv, .swf)","Média (.avi, .flv, .swf)",module,Magento_Backend
"All Files","Tous les fichiers",module,Magento_Backend
"Reset to Default","Rétablir les valeurs par défaut",module,Magento_Backend
"All Store Views","Toutes les vues magasin",module,Magento_Backend
"What is this?","Aide ?",module,Magento_Backend
"Save Account","Sauvegarder le compte",module,Magento_Backend
"My Account","Mon compte",module,Magento_Backend
"Account Information","Informations du compte",module,Magento_Backend
"User Name","Nom d'utilisateur",module,Magento_Backend
"First Name",Prénom,module,Magento_Backend
"Last Name",Nom,module,Magento_Backend
"User Email","Email de l'utilisateur",module,Magento_Backend
"New Password","Nouveau mot de passe",module,Magento_Backend
"Password Confirmation","Confirmation du mot de passe",module,Magento_Backend
"Current User Identity Verification","Vérification de l'identité utilisateur actuel",module,Magento_Backend
"Your Password","Votre mot de passe",module,Magento_Backend
"Save Cache Settings","Sauvegarder les paramètres de cache",module,Magento_Backend
"Catalog Rewrites","Réécriture du catalogue",module,Magento_Backend
"Refresh","Rafraîchir",module,Magento_Backend
"Images Cache","Cache d'images",module,Magento_Backend
"Clear","Vider",module,Magento_Backend
"Search Index","Index de recherche",module,Magento_Backend
"Rebuild","Reconstruire",module,Magento_Backend
"Inventory Stock Status","Statut du stock de l'inventaire",module,Magento_Backend
"Rebuild Catalog Index","Reconstruire l'index du catalogue",module,Magento_Backend
"Rebuild Flat Catalog Category","Reconstruire le catalogue à plat des catégories",module,Magento_Backend
"Rebuild Flat Catalog Product","Reconstruire le catalogue à plat des produits",module,Magento_Backend
"Cache Control","Contrôle du cache",module,Magento_Backend
"All Cache","Tout le cache",module,Magento_Backend
"No change","Aucun changement",module,Magento_Backend
"Disable","Désactiver",module,Magento_Backend
"Enable","Activer",module,Magento_Backend
"Add Design Change","Ajouter un changement de design",module,Magento_Backend
"Back","Retour",module,Magento_Backend
"Delete","Supprimer",module,Magento_Backend
"Are you sure?","Êtes-vous sûr(e) ?",module,Magento_Backend
"Save","Sauvegarder",module,Magento_Backend
"Edit Design Change","Éditer le changement de design",module,Magento_Backend
"New Store Design Change","Nouveau changement de design",module,Magento_Backend
"General Settings","Paramètres généraux",module,Magento_Backend
"Store","Magasin",module,Magento_Backend
"-- Please Select --","-- Faites un choix --",module,Magento_Backend
"Custom Design","Design personnalisé",module,Magento_Backend
"Date From","Entre le",module,Magento_Backend
"Date To","et le",module,Magento_Backend
"Design Change","Changement de design",module,Magento_Backend
"General","Général",module,Magento_Backend
"Cancel","Annuler",module,Magento_Backend
"Delete %1 '%2'","Supprimer %1 '%2'",module,Magento_Backend
"Delete %1","Supprimer %1",module,Magento_Backend
"Block Information",Information,module,Magento_Backend
"Backup Options","Options de sauvegarde",module,Magento_Backend
"Create DB Backup","Créer une sauvegarde de la BDD",module,Magento_Backend
"Yes","Oui",module,Magento_Backend
"No","Non",module,Magento_Backend
"Delete Store","Supprimer le magasin",module,Magento_Backend
"Delete Web Site","Supprimer le Site Web",module,Magento_Backend
"Save Web Site","Sauvegarder le Site Web",module,Magento_Backend
"Save Store","Sauvegarder le magasin",module,Magento_Backend
"Save Store View","Sauvegarder la vue magasin",module,Magento_Backend
"Delete Store View","Effacer la vue magasin",module,Magento_Backend
"Edit Web Site","Modifier le Site Web",module,Magento_Backend
"New Web Site","Nouveau Site Web",module,Magento_Backend
"Edit Store","Modifier le magasin",module,Magento_Backend
"New Store","Nouveau magasin",module,Magento_Backend
"Edit Store View","Éditer la vue magasin",module,Magento_Backend
"New Store View","Nouvelle vue magasin",module,Magento_Backend
"Store Information","Informations magasin",module,Magento_Backend
"Web Site","Site Web",module,Magento_Backend
"Name","Nom",module,Magento_Backend
"Root Category","Catégorie racine",module,Magento_Backend
"Default Store View","Vue magasin par défaut",module,Magento_Backend
"Store View Information","Information de vue magasin",module,Magento_Backend
"Status","Statut",module,Magento_Backend
"Disabled","Désactivé",module,Magento_Backend
"Enabled","Activé",module,Magento_Backend
"Sort Order","Ordre de tri",module,Magento_Backend
"Abandoned Carts","Paniers abandonnés",module,Magento_Backend
"Web Site Information","Informations du site web",module,Magento_Backend
"Default Store","Magasin par défaut",module,Magento_Backend
"Set as Default","Définir par défaut",module,Magento_Backend
"Stores","Magasins",module,Magento_Backend
"Create Website","Créer un site web",module,Magento_Backend
"Create Store","Créer un magasin",module,Magento_Backend
"Create Store View","Créer une vue magasin",module,Magento_Backend
"Home","Accueil",module,Magento_Backend
"Reset","Réinitialiser",module,Magento_Backend
"Are you sure you want to do this?","Êtes-vous sûr(e) de vouloir effectuer cette opération ?",module,Magento_Backend
"Add New Image","Nouvelle image",module,Magento_Backend
"Export block for grid %1 is not defined","Bloc d'exportation pour grille %1 n'est pas défini",module,Magento_Backend
"Reset Filter","Réinitialiser le filtre",module,Magento_Backend
"Search","Chercher",module,Magento_Backend
"Any","Tous",module,Magento_Backend
"All Countries","Tous les pays",module,Magento_Backend
"From","Depuis",module,Magento_Backend
"from","depuis",module,Magento_Backend
"To","À",module,Magento_Backend
"Date selector","Sélecteur de date",module,Magento_Backend
"[ deleted ]","[ effacé ]",module,Magento_Backend
"Select All","Sélectionner tout",module,Magento_Backend
"We couldn't find any records.","Nous n'avons trouvé aucun enregistrement.",module,Magento_Backend
"Add New",Ajouter,module,Magento_Backend
"Invalid export type supplied for grid export block","Type d'exportation fourni invalide pour la grille du bloc d'exportation",module,Magento_Backend
"Export","Exporter",module,Magento_Backend
"Please correct the column format and try again.","Merci de corriger le format de la colonne puis réessayez.",module,Magento_Backend
"Please select items.","Sélectionnez des éléments.",module,Magento_Backend
"Submit","Valider",module,Magento_Backend
"Unknown block type","Type de bloc inconnu",module,Magento_Backend
"Please correct the tab configuration and try again. Tab Id should be not empty","S’il vous plaît corriger la configuration de l’onglet, puis réessayez. L'Id de l'onglet ne doit pas être vide",module,Magento_Backend
"Please correct the tab configuration and try again.","Merci de corriger la configuration de l'onglet puis réessayez.",module,Magento_Backend
"You have logged out.","Vous vous êtes déconnecté(e).",module,Magento_Backend
"Specified cache type(s) don't exist: %1","Le(s) type(s) de cache spécifié(s) n'existe(nt) pas : %1",module,Magento_Backend
"The image cache was cleaned.","Le cache des images a été nettoyé.",module,Magento_Backend
"An error occurred while clearing the image cache.","Erreur lors de la purge du cache des images.",module,Magento_Backend
"The JavaScript/CSS cache has been cleaned.","Le cache javascript/CSS a été nettoyé.",module,Magento_Backend
"An error occurred while clearing the JavaScript/CSS cache.","Erreur lors de la purge du cache javascript/CSS.",module,Magento_Backend
"The static files cache has been cleaned.","Le cache des fichiers statiques a été nettoyé.",module,Magento_Backend
"You flushed the cache storage.","Le stockage du cache a été nettoyé.",module,Magento_Backend
"The Magento cache storage has been flushed.","Le cache Magento a été nettoyé.",module,Magento_Backend
"Cache Management","Gestion du cache",module,Magento_Backend
"You can't change status of cache type(s) in production mode","Vous ne pouvez pas modifier le(s) statut(s) du cache en mode production",module,Magento_Backend
"%1 cache type(s) disabled.","%1 type(s) de cache désactivé(s).",module,Magento_Backend
"An error occurred while disabling cache.","Une erreur s'est produite lors de la désactivation de cache.",module,Magento_Backend
"%1 cache type(s) enabled.","%s type(s) de cache activé(s).",module,Magento_Backend
"An error occurred while enabling cache.","Une erreur s'est produite lors de l'activation de cache.",module,Magento_Backend
"%1 cache type(s) refreshed.","%s type(s) de cache actualisé(s).",module,Magento_Backend
"An error occurred while refreshing cache.","Une erreur s'est produite lors de l'actualisation du cache.",module,Magento_Backend
"Dashboard","Tableau de bord",module,Magento_Backend
"We updated lifetime statistic.","Les statistiques depuis l'ouverture de la boutique ont été mise à jour.",module,Magento_Backend
"We can't refresh lifetime statistics.","Impossible de mettre à jour les statistiques depuis l'ouverture de la boutique.",module,Magento_Backend
"invalid request","requête invalide",module,Magento_Backend
"see error log for details","consultez le journal des erreurs pour plus d'informations",module,Magento_Backend
"Service unavailable: %1","Service non disponible : %1",module,Magento_Backend
"Error","Erreur",module,Magento_Backend
"Access Denied.","Accès refusé.",module,Magento_Backend
"You need more permissions to do this.","Vous n'avez pas l'autorisation d'effectuer cette opération.",module,Magento_Backend
"No search modules were registered","Aucun module de recherche n'a été enregistré",module,Magento_Backend
"Please make sure that all global admin search modules are installed and activated.","Vérifiez que tous les modules admin de recherche sont installés et activés",module,Magento_Backend
"You saved the account.","Le compte a bien été sauvegardé.",module,Magento_Backend
"An error occurred while saving account.","Erreur lors de la sauvegarde du compte.",module,Magento_Backend
"You deleted the design change.","Le changement de design a bien été supprimé.",module,Magento_Backend
"You can't delete the design change.","Vous ne pouvez pas supprimer le changement de design.",module,Magento_Backend
"Store Design","Design du magasin",module,Magento_Backend
"Edit Store Design Change","Modifier le changement de design du magasin",module,Magento_Backend
"You saved the design change.","Le changement de design a bien été sauvegardé.",module,Magento_Backend
"System","Système",module,Magento_Backend
"Manage Stores","Gestion des magasins",module,Magento_Backend
"The database was backed up.","La base de données a été sauvegardée.",module,Magento_Backend
"We can't create a backup right now. Please try again later.","Nous ne pouvons pas créer une sauvegarde immédiatement. Veuillez réessayer ultérieurement.",module,Magento_Backend
"Deleting a %1 will not delete the information associated with the %1 (e.g. categories, products, etc.), but the %1 will not be able to be restored. It is suggested that you create a database backup before deleting the %1.","Supprimer un %1 ne supprimera pas les informations associées avec le %1 (e.g. catégories, produits, etc.), mais le %1 ne pourra pas être restauré. Il est recommandé de créer une sauvegarde de la base de données avant de supprimer le %1.",module,Magento_Backend
"Something went wrong. Please try again.","Une erreur s'est produite. Merci d'essayer ultérieurement.",module,Magento_Backend
"This store cannot be deleted.","Ce magasin ne peut pas être effacé.",module,Magento_Backend
"You deleted the store.","Le magasin a bien été sauvegardé.",module,Magento_Backend
"Unable to delete the store. Please try again later.","Impossible de supprimer la vue magasin. Veuillez réessayer ultérieurement.",module,Magento_Backend
"This store view cannot be deleted.","Cette vue magasin ne peut pas être effacée.",module,Magento_Backend
"Store View","Vue magasin",module,Magento_Backend
"You deleted the store view.","La vue magasin a bien été supprimée.",module,Magento_Backend
"Unable to delete the store view. Please try again later.","Impossible de supprimer la vue magasin. Veuillez réessayer ultérieurement.",module,Magento_Backend
"This website cannot be deleted.","Ce site web ne peut pas être effacé.",module,Magento_Backend
"You deleted the website.","Le site web a bien été supprimé.",module,Magento_Backend
"Unable to delete the website. Please try again later.","Impossible de supprimer le site web. Veuillez réessayer ultérieurement.",module,Magento_Backend
"The website does not exist.","Le site web n'existe pas.",module,Magento_Backend
"Before modifying the website code please make sure it is not used in index.php.","Avant de modifier le code du site web assurez-vous qu'il n'est pas utilisé dans index.php.",module,Magento_Backend
"The store does not exist","Le magasin n'existe pas.",module,Magento_Backend
"Store view doesn't exist","La vue magasin n'existe pas",module,Magento_Backend
"Before modifying the store view code please make sure it is not used in index.php.","Avant de modifier le code de la vue magasin, assurez-vous qu'il n'est pas utilisé dans le fichier index.php.",module,Magento_Backend
"All Stores","Tous les magasins",module,Magento_Backend
"You saved the website.","Le site web a bien été sauvegardé.",module,Magento_Backend
"The default store cannot be disabled","Le magasin par défaut ne peut pas être désactivé",module,Magento_Backend
"You saved the store view.","La vue magasin a bien été sauvegardée.",module,Magento_Backend
"An inactive store view cannot be saved as default store view","Une vue de magasin inactive ne peut pas être sauvegardée comme vue de magasin par défaut.",module,Magento_Backend
"You saved the store.","Le magasin a bien été sauvegardé.",module,Magento_Backend
"Something went wrong while saving. Please review the error log.","Une erreur s'est produite durant l'enregistrement. Veuillez consulter le journal d'erreurs.",module,Magento_Backend
"Last 24 Hours","Dernières 24 heures",module,Magento_Backend
"Last 7 Days","7 derniers jours",module,Magento_Backend
"Current Month","Mois en cours",module,Magento_Backend
"YTD","Depuis le début de l'année",module,Magento_Backend
"2YTD","Depuis le début de l'année dernière",module,Magento_Backend
"Authentication storage is incorrect.","Le stockage d'authentification est incorrect.",module,Magento_Backend
"You did not sign in correctly or your account is temporarily disabled.","Erreur dans les paramètres de connexion ou votre compte est temporairement désactivé.",module,Magento_Backend
"Authentication error occurred.","Une erreur d'authentification s'est produite.",module,Magento_Backend
"Admin session lifetime must be less than or equal to 31536000 seconds (one year)","La durée de vie de la session Admin doit être inférieure ou égale à 31536000 secondes (un an)",module,Magento_Backend
"Admin session lifetime must be greater than or equal to 60 seconds","La durée de vie de la session Admin doit être supérieure ou égale à 60 secondes",module,Magento_Backend
"Order","Commande",module,Magento_Backend
"Order #%1","Commande n°%1",module,Magento_Backend
"You need more permissions to access this.","Nom d'utilisateur",module,Magento_Backend
"Welcome, please sign in","Bienvenue, veuillez vous connecter",module,Magento_Backend
"Username","Nom d'utilisateur",module,Magento_Backend
"user name","nom d'utilisateur",module,Magento_Backend
"Password","Mot de passe",module,Magento_Backend
"password","mot de passe",module,Magento_Backend
"Sign in","Connexion",module,Magento_Backend
"Select Range:","Sélectionnez une tranche:",module,Magento_Backend
"No Data Found","Aucune donnée trouvée",module,Magento_Backend
"Chart is disabled. To enable the chart, click <a href=""%1"">here</a>.","Les graphiques sont désactivés. Pour activer les graphiques, <a href=""%1"">cliquez ici</a>.",module,Magento_Backend
"Last Orders","Dernières commandes",module,Magento_Backend
"Last Search Terms","Derniers Termes Recherchés",module,Magento_Backend
"Top Search Terms","Termes Les Plus Recherchés",module,Magento_Backend
"There are no search keywords.","Il n'y a aucun mots-clés de recherche.",module,Magento_Backend
"View Statistics For:","Voir les statistiques pour :",module,Magento_Backend
"All Websites","Tous les sites web",module,Magento_Backend
"Reload Data","Recharger les données",module,Magento_Backend
"Browse Files...","Parcourir les fichiers...",module,Magento_Backend
"Copyright © %1 Magento Commerce Inc. All rights reserved.","Copyright Magento Commerce Inc. Tous droits réservés.",module,Magento_Backend
"Magento Admin Panel","Panneau d'Administration Magento",module,Magento_Backend
"Account Setting","Paramètres du compte",module,Magento_Backend
"Customer View","Vue client",module,Magento_Backend
"Sign Out",Déconnexion,module,Magento_Backend
"About the calendar","À propos du calendrier",module,Magento_Backend
"Close","Fermer",module,Magento_Backend
"Go Today","Aller à aujourd'hui",module,Magento_Backend
"Previous","Précédent",module,Magento_Backend
"Next","Suivant",module,Magento_Backend
"Time","Heure",module,Magento_Backend
"Hour","Heure",module,Magento_Backend
"JavaScript may be disabled in your browser.","JavaScript peut être désactivé dans votre navigateur.",module,Magento_Backend
"To use this website you must first enable JavaScript in your browser.","Pour utiliser ce site web vous devez d'abord activer JavaScript dans votre navigateur.",module,Magento_Backend
"This is only a demo store. You can browse and place orders, but nothing will be processed.","Il s'agit seulement d'un magasin de démo. Vous pouvez naviguer et passer des commandes, mais rien ne sera traité.",module,Magento_Backend
"Report an Issue","Signaler une anomalie",module,Magento_Backend
"Store View:","Vue magasin:",module,Magento_Backend
"Stores Configuration","Configuration des magasins",module,Magento_Backend
"Please confirm scope switching. All data that hasn't been saved will be lost.","Veuillez confirmer le changement de portée. Toutes les données non sauvegardées seront perdues.",module,Magento_Backend
"Additional Cache Management","Gestion étendue du cache",module,Magento_Backend
"Flush Catalog Images Cache","Purger le cache des images catalogue",module,Magento_Backend
"Pregenerated product images files","Fichiers image de produits pré-générés",module,Magento_Backend
"Flush JavaScript/CSS Cache","Purger le cache JavaScript/CSS",module,Magento_Backend
"Themes JavaScript and CSS files combined to one file","Fichiers de thèmes JavaScript et CSS combinés en un seul fichier",module,Magento_Backend
"Flush Static Files Cache","Purger le cache des fichiers statiques",module,Magento_Backend
"Preprocessed view files and static files","Fichiers aperçu et fichiers statiques pré-traités",module,Magento_Backend
"Catalog","Catalogue",module,Magento_Backend
"JavaScript/CSS Cache","Cache JavaScript/CSS",module,Magento_Backend
"No records found.","Aucun élément trouvé.",module,Magento_Backend
"Big Image","Grande image",module,Magento_Backend
"Thumbnail","Miniature",module,Magento_Backend
"Additional Settings","Autres paramètres",module,Magento_Backend
"records found","enregistrements trouvés",module,Magento_Backend
"selected","élément(s) sélectionné(s)",module,Magento_Backend
"per page","par page",module,Magento_Backend
"Previous page","Page précédente",module,Magento_Backend
"of %1","sur %1",module,Magento_Backend
"Next page","Page suivante",module,Magento_Backend
"Export to:","Exporter vers :",module,Magento_Backend
"Mass Actions","Actions en masse",module,Magento_Backend
"Unselect All","Désélectionner tout",module,Magento_Backend
"Select Visible","Sélectionner les éléments visibles",module,Magento_Backend
"Unselect Visible","Désélectionner les éléments visibles",module,Magento_Backend
"Changes have been made to this section that have not been saved.","Des modifications ont été apportées à cette section qui n'ont pas été enregistrées.",module,Magento_Backend
"This tab contains invalid data. Please resolve this before saving.","Cet onglet contient des données non valides. Merci de les corriger avant d'enregistrer.",module,Magento_Backend
"The information in this tab has been changed.","Les informations contenues dans cet onglet ont été changées.",module,Magento_Backend
"Loading...","En cours de chargement...",module,Magento_Backend
"System Backup","Sauvegarde système",module,Magento_Backup
"Database and Media Backup","Sauvegarde de base de données et media",module,Magento_Backup
"Database Backup","Sauvegarde de base de données",module,Magento_Backup
"The archive can be uncompressed with <a href=""%1"">%2</a> on Windows systems.","L' archive peut être décompressée avec <a href=""%1"">%2</a> sur les systèmes Windows.",module,Magento_Backup
"You need more permissions to activate maintenance mode right now.","Vous n'êtes pas autorisé à activer le mode maintenance.",module,Magento_Backup
"To create the backup, please deselect ""Put store into maintenance mode"" or update your permissions.","Pour créer la sauvegarde, veuillez désélectionner ""Passer le magasin en mode maintenance"" ou mettez à jour vos autorisations.",module,Magento_Backup
"Something went wrong while putting your store into maintenance mode.","Une erreur s'est produite lors du passage du magasin en mode maintenance.",module,Magento_Backup
"You need more free space to create a backup.","Vous avez besoin de plus d'espace libre pour créer une sauvegarde.",module,Magento_Backup
"You need more permissions to create a backup.","Vous n'êtes pas autorisé à créer une sauvegarde.",module,Magento_Backup
"We can't create the backup right now.","Nous ne pouvons pas créer la sauvegarde dès maintenant.",module,Magento_Backup
"Backups","Sauvegardes",module,Magento_Backup
"System","Système",module,Magento_Backup
"Tools","Outils",module,Magento_Backup
"Backup","Sauvegarde",module,Magento_Backup
"We can't delete one or more backups.","Nous ne pouvons pas supprimer une ou plusieurs sauvegardes.",module,Magento_Backup
"failed","échoué",module,Magento_Backup
"successful","réussi",module,Magento_Backup
"You deleted the selected backup(s).","Vous avez supprimé les sauvegardes sélectionnées.",module,Magento_Backup
"Can't load snapshot archive","Impossible de charger l'archive de l'aperçu",module,Magento_Backup
"Please correct the password.","Merci de corriger le mot de passe.",module,Magento_Backup
"To complete the rollback, please deselect ""Put store into maintenance mode"" or update your permissions.","Pour terminer le retour arrière (rollback), veuillez désélectionner ""Passer le magasin en mode maintenance"" ou mettez à jour vos autorisations.",module,Magento_Backup
"We can't find the backup file.","Aucun fichier de sauvegarde trouvé.",module,Magento_Backup
"We can't connect to the FTP right now.","Nous ne pouvons pas vous connecter au serveur FTP immédiatement.",module,Magento_Backup
"Failed to validate FTP.","Impossible de valider le serveur FTP.",module,Magento_Backup
"You need more permissions to perform a rollback.","Vous n'êtes pas autorisé à effectuer une restauration.",module,Magento_Backup
"Failed to rollback.","Échec de la restauration.",module,Magento_Backup
"Database","Base de données",module,Magento_Backup
"Database and Media","Base de données et media",module,Magento_Backup
"System (excluding Media)","Système (hors media)",module,Magento_Backup
"You created the system backup.","Vous avez créé la sauvegarde du système.",module,Magento_Backup
"You created the system backup (excluding media).","Vous avez créé la sauvegarde du système (hors médias).",module,Magento_Backup
"You created the database and media backup.","Vous avez créé la sauvegarde de la base de données et des médias.",module,Magento_Backup
"You created the database backup.","Vous avez créé la sauvegarde de la base de données.",module,Magento_Backup
"Please correct the order of creation for a new backup.","Merci de corriger l'ordre de création pour une nouvelle sauvegarde.",module,Magento_Backup
"The backup file does not exist.","Le fichier de sauvegarde n'existe pas.",module,Magento_Backup
"The backup file path was not specified.","Le chemin d'accès du fichier de sauvegarde n'est pas spécifié.",module,Magento_Backup
"The backup file ""%1"" does not exist.","Le fichier de sauvegarde ""%1"" n'existe pas.",module,Magento_Backup
"Sorry, but we cannot read from or write to backup file ""%1"".","Désolé, mais nous ne pouvons pas lire ou écrire dans le fichier de sauvegarde ""%1"".",module,Magento_Backup
"The backup file handler was unspecified.","Le gestionnaire de fichier de sauvegarde n'a pas été spécifié.",module,Magento_Backup
"Something went wrong while writing to the backup file ""%1"".","Une erreur s'est produite lors de l'écriture dans le fichier de sauvegarde ""%1"".",module,Magento_Backup
"We can't save the Cron expression.","Impossible de sauvegarder l'expression de la tâche programmée",module,Magento_Backup
"You will lose any data created since the backup was made, including admin users, customers and orders.","Toutes les données créées depuis que la sauvegarde a été réalisée seront perdues (dont les comptes administrateurs, les clients et les commandes).",module,Magento_Backup
"Are you sure you want to continue?","Êtes-vous sûr de vouloir continuer?",module,Magento_Backup
"This may take a few moments.","Cela peut prendre quelques instants.",module,Magento_Backup
"Be sure your store is in maintenance mode during backup.","N’oubliez pas que votre magasin passe en mode maintenance pendant la sauvegarde.",module,Magento_Backup
"Backup Name","Nom de la sauvegarde",module,Magento_Backup
"Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field.","Veuillez utiliser uniquement des lettres (a-z), des chiffres (0-9) ou des espaces dans ce champ.",module,Magento_Backup
"Maintenance mode","Mode maintenance",module,Magento_Backup
"Please put your store into maintenance mode during backup.","Merci de mettre votre boutique en mode de maintenance durant la sauvegarde.",module,Magento_Backup
"Exclude","Exclure",module,Magento_Backup
"Exclude media folder from backup","Exclure le dossier media de la sauvegarde",module,Magento_Backup
"Please enter the password to confirm rollback.","Saisissez le mot de passe pour confirmer le retour arrière (rollback).",module,Magento_Backup
"This action cannot be undone.","Cette action ne peut pas être annulée.",module,Magento_Backup
"User Password","Mot de passe utilisateur",module,Magento_Backup
"Please put your store into maintenance mode during rollback processing.","Merci de mettre votre boutique en mode de maintenance durant le processus de restauration.",module,Magento_Backup
"Use FTP Connection","Utiliser une connexion FTP",module,Magento_Backup
"FTP credentials","Informations de connexion FTP",module,Magento_Backup
"FTP Host","Hôte FTP",module,Magento_Backup
"FTP Login","Login FTP",module,Magento_Backup
"FTP Password","Mot de passe FTP",module,Magento_Backup
"Magento root directory","Répertoire racine de Magento",module,Magento_Backup
"Create Backup","Créer une sauvegarde",module,Magento_Backup
"Country","Pays",module,Magento_Braintree
"Allowed Credit Card Types","Types de cartes de crédit autorisées",module,Magento_Braintree
"Add Rule","Ajouter une règle",module,Magento_Braintree
"Braintree Settlement Report","Rapport de règlement Braintree",module,Magento_Braintree
"Sorry, but something went wrong","Désolé, une erreur s'est produite !",module,Magento_Braintree
"We can't initialize checkout.","Initialisation de la commande impossible.",module,Magento_Braintree
"No authorization transaction to proceed capture.","Aucune autorisation de transaction pour procéder à la capture.",module,Magento_Braintree
"Braintree error response.","Réponse d’erreur Braintree.",module,Magento_Braintree
"Payment method nonce can't be retrieved.","L'authentification de la méthode de paiement ne peut pas être retrouvé.",module,Magento_Braintree
"Wrong transaction status","Statut de la transaction erronée",module,Magento_Braintree
"Authorize","Autoriser",module,Magento_Braintree
"Authorize and Capture","Autorisation et collecte",module,Magento_Braintree
"--Please Select--","--Votre choix--",module,Magento_Braintree
"Please agree to all the terms and conditions before placing the order.","Veuillez accepter les conditions générales de ventes avant de valider la commande.",module,Magento_Braintree
"Credit Card Type","Type de carte de crédit",module,Magento_Braintree
"Credit Card Number","Numéro de carte bancaire",module,Magento_Braintree
"Please, enter valid Credit Card Number","Veuillez saisir un numéro de carte bancaire valide",module,Magento_Braintree
"Expiration Date","Date d'expiration",module,Magento_Braintree
"Please, enter valid Expiration Date","Veuillez entrer les dates d’Expiration valides",module,Magento_Braintree
"Card Verification Number","Numéro de vérification",module,Magento_Braintree
"Please, enter valid Card Verification Number","Veuillez saisir un numéro de vérification de carte bancaire valide",module,Magento_Braintree
"ending","fin",module,Magento_Braintree
"expires","expire le",module,Magento_Braintree
"Are you sure you want to delete this PayPal account","Êtes-vous sûr de vouloir supprimer ce compte PayPal ?",module,Magento_Braintree
"PayPal Account","Compte PayPal",module,Magento_Braintree
"PayPal Logo","Logo PayPal",module,Magento_Braintree
"Delete","Supprimer",module,Magento_Braintree
"Percent Discount","Remise en pourcentage",module,Magento_Bundle
"-- Select --","-- Votre choix --",module,Magento_Bundle
"Dynamic","Dynamique",module,Magento_Bundle
"Fixed","Fixé",module,Magento_Bundle
"Create New Option","Créer nouvelle option",module,Magento_Bundle
"Bundle Items","Articles packagés",module,Magento_Bundle
"Add Products to Option","Ajouter des produits à l'option",module,Magento_Bundle
"Close","Fermer",module,Magento_Bundle
"Delete Option","Supprimer cette option",module,Magento_Bundle
"What are you looking for?","Que recherchez-vous ?",module,Magento_Bundle
"Product","Produit",module,Magento_Bundle
"SKU","Réf.",module,Magento_Bundle
"Price","Prix",module,Magento_Bundle
"Delete","Supprimer",module,Magento_Bundle
"Use Default Value","Utiliser la valeur par défaut",module,Magento_Bundle
"There is no defined renderer for ""%1"" option type.","Il n'y a pas de générateur d'affichage pour le type d'option ""%1"".",module,Magento_Bundle
"Only implemented for bundle product","Implémenté uniquement pour les produits packagés",module,Magento_Bundle
"Product with specified sku: ""%1"" is not a bundle product","Le produit ayant le SKU: ""%1"" n'est pas un produit packagé",module,Magento_Bundle
"Bundle product could not contain another composite product","Un produit packagé ne peut pas contenir un autre produit composite",module,Magento_Bundle
"Id field of product link is required","Le champ ID du lien produit est obligatoire",module,Magento_Bundle
"Can not find product link with id ""%1""","Impossible de trouvé le produit lié possédant l'ID ""%1""",module,Magento_Bundle
"Could not save child: ""%1""","Impossible de sauvegarder l'enfant ""%1""",module,Magento_Bundle
"Product with specified sku: ""%1"" does not contain option: ""%2""","Le produit SKU: ""%1"" ne contient pas l'option: ""%2""",module,Magento_Bundle
"Child with specified sku: ""%1"" already assigned to product: ""%2""","L'enfant dont le SKU est: ""%1"" est déjà attribué au produit: ""%2""",module,Magento_Bundle
"Product with specified sku: %1 is not a bundle product","Le produit ayant le SKU: %1 n'est pas un produit packagé",module,Magento_Bundle
"%fieldName is a required field.","Le champ « Nom » est obligatoire.",module,Magento_Bundle
"Requested option doesn't exist","Le lien demandé n'existe pas.",module,Magento_Bundle
"Cannot delete option with id %1","Impossible de supprimer l'option avec id %1",module,Magento_Bundle
"Could not save option","Impossible d'enregistrer l'option",module,Magento_Bundle
"Price Range","Tranche de prix",module,Magento_Bundle
"As Low as","À partir de",module,Magento_Bundle
"Together","Ensemble",module,Magento_Bundle
"Separately","Séparément",module,Magento_Bundle
"Please specify product option(s).","Veuillez préciser la ou les options de produits.",module,Magento_Bundle
"The options you selected are not available.","Les options que vous avez sélectionnées ne sont pas disponibles.",module,Magento_Bundle
"The required options you selected are not available.","Les options obligatoires que vous avez sélectionnées ne sont pas disponibles.",module,Magento_Bundle
"Please select all required options.","Veuillez sélectionner toutes les options requises.",module,Magento_Bundle
"We can't add this item to your shopping cart right now.","Le produit ne peut être ajouté à votre panier pour le moment.",module,Magento_Bundle
"Percent","Pourcent",module,Magento_Bundle
"We can't save custom-defined options for bundles with dynamic pricing.","L'enregistrement des options personnalisées pour les forfaits avec tarification dynamique n'est pas possible.",module,Magento_Bundle
"Cancel","Annuler",module,Magento_Bundle
"Add Selected Products","Ajouter les produits sélectionnés",module,Magento_Bundle
"Add Option","Ajouter une option",module,Magento_Bundle
"New Option","Nouvelle option",module,Magento_Bundle
"Option Title","Titre de l'option",module,Magento_Bundle
"Default Title","Titre par défaut",module,Magento_Bundle
"Store View Title","Titre de la vue magasin",module,Magento_Bundle
"Input Type","Type de saisie",module,Magento_Bundle
"Drop-down","Liste déroulante",module,Magento_Bundle
"Radio Buttons","Boutons radio",module,Magento_Bundle
"Checkbox","Case à cocher",module,Magento_Bundle
"Multiple Select","Sélection multiple",module,Magento_Bundle
"Required","Obligatoire",module,Magento_Bundle
"Is Default","Est défini par défaut",module,Magento_Bundle
"Name","Nom",module,Magento_Bundle
"Default Quantity","Quantité par défaut",module,Magento_Bundle
"User Defined","Défini par l'utilisateur",module,Magento_Bundle
"Price Type","Type de prix",module,Magento_Bundle
"None",Aucun,module,Magento_Bundle
"Quantity:","Quantité :",module,Magento_Bundle
"Choose a selection...","Choisissez une sélection",module,Magento_Bundle
"Ship Bundle Items","Livrer les articles packagés",module,Magento_Bundle
"There are no products in this option.","Il n'y a pas de produits dans cette option.",module,Magento_Bundle
"Default","Par défaut",module,Magento_Bundle
"Ordered","Commandé",module,Magento_Bundle
"Invoiced","Facturé",module,Magento_Bundle
"Shipped","Livré",module,Magento_Bundle
"Refunded","Remboursé",module,Magento_Bundle
"Canceled","Annulée",module,Magento_Bundle
"As low as","À partir de",module,Magento_Bundle
"Regular Price","Prix normal",module,Magento_Bundle
"From","Depuis",module,Magento_Bundle
"To","À",module,Magento_Bundle
"Buy %1 with %2 discount each","Achetez-en %1 et profitez d'une remise de %2 par produit",module,Magento_Bundle
"Go back to product details","Revenir aux détails du produit",module,Magento_Bundle
"Customize and Add to Cart","Personnaliser et ajouter au panier",module,Magento_Bundle
"* Required Fields","* Champs obligatoires",module,Magento_Bundle
"Your Customization","Votre personnalisation",module,Magento_Bundle
"Availability","Disponibilité",module,Magento_Bundle
"In stock","En stock",module,Magento_Bundle
"Out of stock",Épuisé,module,Magento_Bundle
Summary,Récapitulatif,module,Magento_Bundle
Availability:,"Disponibilité :",module,Magento_Bundle
Quantity,Quantité,module,Magento_Bundle
"Customize %1","Personnaliser %1",module,Magento_Bundle
"No options of this product are available.","Aucune option n'est disponible pour ce produit.",module,Magento_Bundle
"Gift Message","Message du cadeau",module,Magento_Bundle
From:,"De :",module,Magento_Bundle
To:,"À :",module,Magento_Bundle
Message:,"Message :",module,Magento_Bundle
"Product Name","Nom de produit",module,Magento_Bundle
Subtotal,Sous-total,module,Magento_Bundle
"Discount Amount",Remise,module,Magento_Bundle
"Row Total","Total ligne",module,Magento_Bundle
"Qty Invoiced","Qté facturée",module,Magento_Bundle
"Qty Shipped","Qté livrée",module,Magento_Bundle
Always,Toujours,module,Magento_Captcha
"After number of attempts to login","Après un nombre de tentatives de connexion",module,Magento_Captcha
"Provided form does not exist","Le formulaire fourni n'existe pas",module,Magento_Captcha
"Incorrect CAPTCHA","CAPTCHA incorrect",module,Magento_Captcha
"Incorrect CAPTCHA.","CAPTCHA incorrect.",module,Magento_Captcha
"The account is locked. Please wait and try again or contact %1.","Le compte est verrouillé. S’il vous plaît attendez et réessayez ou contactez %1.",module,Magento_Captcha
"Please enter the letters from the image","Veuillez saisir les lettres de l'image",module,Magento_Captcha
"<strong>Attention</strong>: Captcha is case sensitive.","<strong>Attention</strong> : le captcha est sensible à la casse.",module,Magento_Captcha
"Reload captcha","Recharger le captcha",module,Magento_Captcha
"Please type the letters below","Veuillez saisir les lettres ci-dessous",module,Magento_Captcha
"Entity type model '%1' is not found","Le modèle du type d'entité '%1' est introuvable.",module,Magento_CatalogImportExport
"Entity type model must be an instance of \Magento\CatalogImportExport\Model\Export\Product\Type\AbstractType","Le Modèle de type entité doit être une instance de \Magento\CatalogImportExport\Model\Export\Product\Type\AbstractType",module,Magento_CatalogImportExport
"There are no product types available for export.","Il n’existe aucun type de produit pour l’exportation.",module,Magento_CatalogImportExport
"'Entity type model must be an instance of ' .","'Le Modèle de type entité doit être une instance de' .",module,Magento_CatalogImportExport
"Wrong attribute set code ""%1"", please correct it and try again.","Mauvais code d'ensemble d'Attributs ""%1"", merci de le corriger et de réessayer.",module,Magento_CatalogImportExport
"Category ""%1"" has not been created.","Catégorie « %1 » n’a pas été créé.",module,Magento_CatalogImportExport
"File directory '%1' is not readable.","Le répertoire '%1' n'est pas autorisé en écriture.",module,Magento_CatalogImportExport
"Please enter a value for title.","Veuillez entrer une valeur pour le titre.",module,Magento_CatalogImportExport
"This name is already being used for custom option. Please enter a different name.","Ce nom est déjà utilisé pour l’option personnalisée. Veuillez saisir un nom différent.",module,Magento_CatalogImportExport
"Custom options have different types.","Options personnalisées ont différents types.",module,Magento_CatalogImportExport
"Every option entity must have a parent product entity.","Chaque entité de l’option doit avoir une entité de produit parent.",module,Magento_CatalogImportExport
"Please correct the parameters.","S’il vous plaît corriger les paramètres.",module,Magento_CatalogImportExport
"ALL GROUPS","TOUS LES GROUPES",module,Magento_CatalogInventory
"Customer Group","Groupe de clients",module,Magento_CatalogInventory
"Minimum Qty","Quantité mini",module,Magento_CatalogInventory
"Add Minimum Qty","Ajouter une quantité mini",module,Magento_CatalogInventory
"We can't rebuild the index for an undefined product.","Le produit ne peut être ajouté à votre panier pour le moment.",module,Magento_CatalogInventory
"Could not rebuild index for empty products array","Impossible de charger le fichier : ""%s"".",module,Magento_CatalogInventory
"The stock item for Product is not valid.","L'article en stock pour ce produit n'est pas valide.",module,Magento_CatalogInventory
"This product is out of stock.","Ce produit est en rupture de stock.",module,Magento_CatalogInventory
"Some of the products are out of stock.","Certains produits sont actuellement en rupture de stock.",module,Magento_CatalogInventory
"The stock item for Product in option is not valid.","L'article en stock pour cette option du produit n'est pas valide.",module,Magento_CatalogInventory
"Undefined product type","Type de produit indéfini",module,Magento_CatalogInventory
"%1 is not a correct comparison method.","%1 n'est pas une méthode de comparaison correcte.",module,Magento_CatalogInventory
"No Backorders","Pas de commandes au delà des stocks",module,Magento_CatalogInventory
"Allow Qty Below 0","Autoriser les quantités négatives",module,Magento_CatalogInventory
"Allow Qty Below 0 and Notify Customer","Autoriser les quantités négatives et prévenir le client",module,Magento_CatalogInventory
"In Stock","En stock",module,Magento_CatalogInventory
"Out of Stock",Épuisé,module,Magento_CatalogInventory
"Unable to save Stock Item","Impossible d'enregistrer l'article en Stock",module,Magento_CatalogInventory
"Stock Item with id ""%1"" does not exist.","L'article en Stock avec l'id ""%1"" n'existe pas.",module,Magento_CatalogInventory
"Unable to remove Stock Item with id ""%1""","Impossible d'enlever l'article en Stock avec l'ID ""%1""",module,Magento_CatalogInventory
"Unable to save Stock","Impossible d'enregistrer le Stock",module,Magento_CatalogInventory
"Stock with id ""%1"" does not exist.","Le Stock avec l'id ""%1"" n'existe pas.",module,Magento_CatalogInventory
"Unable to remove Stock with id ""%1""","Impossible d'enlever le Stock avec l'ID ""%1""",module,Magento_CatalogInventory
"Unable to save Stock Status","Impossible d'enregistrer le Statut du Stock",module,Magento_CatalogInventory
"Unable to remove Stock Status for product %1","Impossible d'enlever le Statut de Stock pour le Produit %1",module,Magento_CatalogInventory
"Invalid stock id: %1. Only default stock with id %2 allowed","ID de Stock invalide : %1. Seul le stock par défaut avec l'ID %2 est autorisé",module,Magento_CatalogInventory
"Invalid stock item id: %1. Should be null or numeric value greater than 0","ID l'article en Stock invalide : %1. Il doit s'agir d'une valeur nulle ou supérieure à 0",module,Magento_CatalogInventory
"Invalid stock item id: %1. Assigned stock item id is %2","ID de l'article en Stock invalide : %1. L'ID de l'article en Stock assigné est %2",module,Magento_CatalogInventory
"Not all of your products are available in the requested quantity.","Pas tous vos produits sont disponibles dans la quantité demandée.",module,Magento_CatalogInventory
"Product with SKU ""%1"" does not exist","Le produit ayant pour SKU ""%1"" n'existe pas",module,Magento_CatalogInventory
"The fewest you may purchase is %1.","Le moins que vous puissiez acheter est %1.",module,Magento_CatalogInventory
"Please correct the quantity for some products.","Merci de corriger la quantité de certains produits.",module,Magento_CatalogInventory
"The most you may purchase is %1.","Le plus que vous puissiez acheter est %1.",module,Magento_CatalogInventory
"You can buy %1 only in quantities of %2 at a time.","Vous pouvez acheter %1 seulement en quantité de %2 à la fois.",module,Magento_CatalogInventory
"You can buy this product only in quantities of %1 at a time.","Vous pouvez acheter ce produit seulement en quantité de %1 à la fois.",module,Magento_CatalogInventory
"Decimal qty increments is not allowed.","Les quantités avec virgule ne sont pas autorisées.",module,Magento_CatalogInventory
"Stock Status","État du stock",module,Magento_CatalogInventory
Quantity,Quantité,module,Magento_CatalogInventory
"Advanced Inventory","Inventaire avancé",module,Magento_CatalogInventory
"%1 is available to buy in increments of %2","%1 est disponible à la vente par incréments de %2",module,Magento_CatalogInventory
"Only %1 left","Plus que %1 en stock",module,Magento_CatalogInventory
"Product availability","Disponibilité du produit",module,Magento_CatalogInventory
"Product Name","Nom de produit",module,Magento_CatalogInventory
Qty,Qté,module,Magento_CatalogInventory
"Delete Rule","Supprimer la règle",module,Magento_CatalogRule
"Are you sure you want to do this?","Êtes-vous sûr(e) de vouloir effectuer cette opération ?",module,Magento_CatalogRule
Reset,Réinitialiser,module,Magento_CatalogRule
"Save and Apply","Sauvegarder et appliquer",module,Magento_CatalogRule
"Save and Continue Edit","Sauvegarder et continuer à éditer",module,Magento_CatalogRule
Save,Sauvegarder,module,Magento_CatalogRule
"Catalog Price Rule","Règles de prix catalogue",module,Magento_CatalogRule
"Add New Rule","Ajouter une nouvelle règle",module,Magento_CatalogRule
"Apply Rules","Appliquer les règles",module,Magento_CatalogRule
"Attribute Set","Jeu d'attributs",module,Magento_CatalogRule
SKU,Réf.,module,Magento_CatalogRule
Product,Produit,module,Magento_CatalogRule
"We found updated rules that are not applied. Please click ""Apply Rules"" to update your catalog.","Nous avons mis à jour les règles qui ne sont pas appliquées. Veuillez cliquez sur ""Appliquer les Règles"" pour mettre à jour votre catalogue.",module,Magento_CatalogRule
"This rule no longer exists.","Cette règle n'existe plus.",module,Magento_CatalogRule
"Edit Rule","Éditer la règle",module,Magento_CatalogRule
"New Rule","Nouvelle règle",module,Magento_CatalogRule
Catalog,Catalogue,module,Magento_CatalogRule
"Something went wrong while saving the rule data. Please review the error log.","Quelque chose s'est mal passé, tout en économisant de la règle de données. Veuillez consulter le journal des erreurs.",module,Magento_CatalogRule
"Could not rebuild index for empty products array","Impossible de charger le fichier : ""%s"".",module,Magento_CatalogRule
"We can't rebuild the index for an undefined product.","Le produit ne peut être ajouté à votre panier pour le moment.",module,Magento_CatalogRule
"Catalog rule indexing failed. See details in exception log.","Catalogue de la règle d'indexation a échoué. Voir les détails dans le journal des exceptions.",module,Magento_CatalogRule
"Update the Product","Mettre à jour le produit",module,Magento_CatalogRule
"Rule price",prix,module,Magento_CatalogRule
"To Fixed Value","Nouveau prix",module,Magento_CatalogRule
"To Percentage","nouveau prix en %%",module,Magento_CatalogRule
"By Fixed value","remise d'une valeur de",module,Magento_CatalogRule
"By Percentage","remise en %%",module,Magento_CatalogRule
"Conditions Combination","Combinaison de conditions",module,Magento_CatalogRule
"Product Attribute","Attribut du produit",module,Magento_CatalogRule
Home,Accueil,module,Magento_CatalogSearch
"Go to Home Page","Aller à la page d'accueil",module,Magento_CatalogSearch
"Catalog Advanced Search","Recherche avancée dans le catalogue",module,Magento_CatalogSearch
All,Tous,module,Magento_CatalogSearch
Yes,"Oui",module,Magento_CatalogSearch
No,Non,module,Magento_CatalogSearch
Results,Résultats,module,Magento_CatalogSearch
"Advanced Search Results","Résultat de recherche avancée",module,Magento_CatalogSearch
Grid,Grille,module,Magento_CatalogSearch
List,Liste,module,Magento_CatalogSearch
"Search Weight","Poids dans la recherche",module,Magento_CatalogSearch
Relevance,Pertinence,module,Magento_CatalogSearch
"Search results for: '%1'","Résultats de recherche pour : '%1'",module,Magento_CatalogSearch
"Minimum Search query length is %1","Longueur minimale de requête recherche %1",module,Magento_CatalogSearch
"Please specify at least one search term.","Spécifiez au moins un terme de recherche.",module,Magento_CatalogSearch
"%1 and greater","%1 et supérieur",module,Magento_CatalogSearch
"up to %1","jusqu'à %1",module,Magento_CatalogSearch
Category,Catégorie,module,Magento_CatalogSearch
"%1 and above","%1 et plus",module,Magento_CatalogSearch
"Sorry, something went wrong. You can find out more in the error log.","Désolé, quelque chose s'est mal passé. Vous en saurez plus dans le journal des erreurs.",module,Magento_CatalogSearch
"Bucket does not exist","Le répertoire n'existe pas",module,Magento_CatalogSearch
Product,Produit,module,Magento_CatalogSearch
"Search Settings","Paramètres de recherche",module,Magento_CatalogSearch
Search,Chercher,module,Magento_CatalogSearch
"Advanced Search","Recherche avancée",module,Magento_CatalogSearch
"<strong>%1 item</strong> were found using the following search criteria","<strong>%1 élément(s)</strong> ont été trouvés avec ces critères de recherche",module,Magento_CatalogSearch
"<strong>%1 items</strong> were found using the following search criteria","<strong>%1 éléments</strong> ont été trouvés avec ces critères de recherche",module,Magento_CatalogSearch
"Modify your search.","Modifier votre recherche.",module,Magento_CatalogSearch
name,Nom,module,Magento_CatalogSearch
"Don't see what you're looking for?","Vous ne trouvez pas ce que vous cherchez ?",module,Magento_CatalogSearch
"Your search returned no results.","Votre recherche n'a donné aucun résultat.",module,Magento_CatalogSearch
"Create Permanent Redirect for old URL","Créer des redirections permanentes pour les anciennes URLs.",module,Magento_CatalogUrlRewrite
"Invalid URL key","Clé d’URL invalide",module,Magento_CatalogUrlRewrite
"Conditions Combination","Combinaison de conditions",module,Magento_CatalogWidget
"Product Attribute","Attribut du produit",module,Magento_CatalogWidget
SKU,Réf.,module,Magento_CatalogWidget
"Please choose a condition to add.","Merci de choisir une condition à ajouter.",module,Magento_CatalogWidget
"Add to Cart","Ajouter au panier",module,Magento_CatalogWidget
"In stock","En stock",module,Magento_CatalogWidget
"Out of stock",Épuisé,module,Magento_CatalogWidget
"Add to Wish List","Ajouter à la liste d'envie",module,Magento_CatalogWidget
"Add to Compare","Ajouter au comparateur",module,Magento_CatalogWidget
Root,Racine,module,Magento_Catalog
Delete,Supprimer,module,Magento_Catalog
Save,Sauvegarder,module,Magento_Catalog
"Use Config Settings","Utiliser les paramètres de la configuration",module,Magento_Catalog
"Use All Available Attributes","Utiliser tous les attributs disponibles",module,Magento_Catalog
Name,Nom,module,Magento_Catalog
SKU,Réf.,module,Magento_Catalog
Price,Prix,module,Magento_Catalog
"Add Subcategory","Ajouter une sous-catégorie",module,Magento_Catalog
"Add Root Category","Ajouter une catégorie racine",module,Magento_Catalog
Day,Jour,module,Magento_Catalog
Month,Mois,module,Magento_Catalog
Year,Année,module,Magento_Catalog
"<label class=""label""><span>from</span></label>","<label class=""label""> <span>de</span></label>",module,Magento_Catalog
"<label class=""label""><span>to</span></label>","<label class=""label""> <span>à</span></label>",module,Magento_Catalog
[WEBSITE],"[SITE WEB]",module,Magento_Catalog
"[STORE VIEW]","[VUE MAGASIN]",module,Magento_Catalog
"WYSIWYG Editor","Éditeur WYSIWYG",module,Magento_Catalog
"Add Product","Ajouter un produit",module,Magento_Catalog
label,Libellé,module,Magento_Catalog
"Product Attributes","Attributs de produit",module,Magento_Catalog
"Add New Attribute","Ajouter un attribut",module,Magento_Catalog
Cancel,Annuler,module,Magento_Catalog
"Save Attribute","Sauvegarder l'attribut",module,Magento_Catalog
"Save in New Attribute Set","Enregistrer dans le nouveau jeu d'attributs",module,Magento_Catalog
"Enter Name for New Attribute Set","Entrez le nom pour le nouveau jeu d’attributs",module,Magento_Catalog
"Save and Continue Edit","Sauvegarder et continuer à éditer",module,Magento_Catalog
"Delete Attribute","Supprimer l'attribut",module,Magento_Catalog
"Edit Product Attribute ""%1""","Éditer l'attribut produit ""%1""",module,Magento_Catalog
"New Product Attribute","Nouvel attribut produit",module,Magento_Catalog
"Advanced Attribute Properties","Propriétés avancées des attributs",module,Magento_Catalog
"Attribute Code","Code d'attribut",module,Magento_Catalog
"This is used internally. Make sure you don't use spaces or more than %1 symbols.","Nom qui apparaîtra sous votre application lorsque les utilisateurs l'installeront sur leur terminal. Nous vous recommandons d'utiliser un nom de 10 à 12 caractères reconnaissable par vos clients.",module,Magento_Catalog
"Default Value","Valeur par défaut",module,Magento_Catalog
"Unique Value","Valeur unique",module,Magento_Catalog
"Unique Value (not shared with other products)","Valeur unique (non partagée avec les autres produits)",module,Magento_Catalog
"Not shared with other products.","Non partagé avec les autres produits.",module,Magento_Catalog
"Input Validation for Store Owner","Validation requise",module,Magento_Catalog
"Add to Column Options","Ajoutez aux Options de colonne",module,Magento_Catalog
"Select ""Yes"" to add this attribute to the list of column options in the product grid.","Sélectionnez « Oui » pour ajouter cet attribut à la liste des options de la colonne dans la grille de produit.",module,Magento_Catalog
"Use in Filter Options","Utiliser dans les Options de Filtre",module,Magento_Catalog
"Select ""Yes"" to add this attribute to the list of filter options in the product grid.","Sélectionnez « Oui » pour ajouter cet attribut à la liste des options de filtrage dans la grille de produit.",module,Magento_Catalog
"Store View","Vue magasin",module,Magento_Catalog
"Website","Site web",module,Magento_Catalog
"%1 and greater","%1 et plus",module,Magento_Catalog
Scope,Portée,module,Magento_Catalog
"Declare attribute value saving scope.","Déclarer la portée d'économie de valeurs d'attributs.",module,Magento_Catalog
"Storefront Properties","Propriétés du front office",module,Magento_Catalog
"Use in Search","Utiliser dans la recherche",module,Magento_Catalog
"Visible in Advanced Search","Visible dans la recherche avancée",module,Magento_Catalog
"Comparable on Storefront","Comparable",module,Magento_Catalog
"Use for Promo Rule Conditions","Utiliser pour les conditions de règles de promotions",module,Magento_Catalog
"Enable WYSIWYG","Activer l'éditeur WYSIWYG",module,Magento_Catalog
"Allow HTML Tags on Storefront","Permettre les balises HTML sur la vitrine",module,Magento_Catalog
"Visible on Catalog Pages on Storefront","Visible sur les pages du magasin",module,Magento_Catalog
"Used in Product Listing","Utiliser dans les listes de produits",module,Magento_Catalog
"Depends on design theme.","Dépendant du thème de design.",module,Magento_Catalog
"Used for Sorting in Product Listing","Utiliser pour le tri des listes de produits",module,Magento_Catalog
"Media Image",Image,module,Magento_Catalog
Gallery,Galerie,module,Magento_Catalog
"System Properties","Propriétés système",module,Magento_Catalog
No,Non,module,Magento_Catalog
Yes,Oui,module,Magento_Catalog
"Data Type for Saving in Database","Type de données à sauvegarder dans la base de données",module,Magento_Catalog
Text,Texte,module,Magento_Catalog
Static,Statique,module,Magento_Catalog
Datetime,"Date et heure",module,Magento_Catalog
Decimal,Décimal,module,Magento_Catalog
Integer,Entier,module,Magento_Catalog
"Globally Editable","Éditable globalement",module,Magento_Catalog
"Attribute Information","Informations attributs",module,Magento_Catalog
Properties,Propriétés,module,Magento_Catalog
"Manage Labels","Gérer les libellés",module,Magento_Catalog
"Web Site","Site Web",module,Magento_Catalog
Searchable,"Utilisable dans la recherche",module,Magento_Catalog
"Delete Selected Group","Supprimer le groupe sélectionné",module,Magento_Catalog
"Add New",Ajouter,module,Magento_Catalog
Back,Retour,module,Magento_Catalog
Reset,Réinitialiser,module,Magento_Catalog
"You are about to delete all products in this attribute set. Are you sure you want to do that?","Vous êtes sur le point de supprimer tous les produits dans ce jeu d’attributs. Êtes-vous sûr de vouloir faire cela ?",module,Magento_Catalog
"New Set Name","Nouveau nom",module,Magento_Catalog
"Edit Attribute Set '%1'","Editer le jeu d'attributs '%1'",module,Magento_Catalog
Empty,Vide,module,Magento_Catalog
"Add Attribute","Ajouter un attribut",module,Magento_Catalog
"Add New Group","Ajouter un nouveau groupe",module,Magento_Catalog
"Add Group","Ajouter un groupe",module,Magento_Catalog
"Edit Attribute Set Name","Modifier le nom du jeu d'attributs",module,Magento_Catalog
"For internal use","Pour usage interne",module,Magento_Catalog
"Based On","Basé sur",module,Magento_Catalog
"Add New Attribute Set","Ajouter un nouveau jeu d'attributs",module,Magento_Catalog
"Add Attribute Set","Ajouter le jeu d’attributs",module,Magento_Catalog
"Attribute Sets","Jeux d'attributs",module,Magento_Catalog
"Close Window","Fermer la fenêtre",module,Magento_Catalog
"New Product","Nouveau produit",module,Magento_Catalog
"Save & Edit","Enregistrer & Modifier",module,Magento_Catalog
"Save & New","Enregistrer & Nouveau",module,Magento_Catalog
"Save & Duplicate","Enregistrer & Dupliquer",module,Magento_Catalog
"Save & Close","Sauvegarder & Fermer",module,Magento_Catalog
Attributes,Attributs,module,Magento_Catalog
Change,Modifier,module,Magento_Catalog
"Advanced Inventory","Inventaire avancé",module,Magento_Catalog
Websites,"Sites web",module,Magento_Catalog
"Products Information","Informations produits",module,Magento_Catalog
"Create Category","Créer une catégorie",module,Magento_Catalog
"Category Name","Nom de la catégorie",module,Magento_Catalog
"Parent Category","Catégorie parente",module,Magento_Catalog
"If there are no custom parent categories, please use the default parent category. You can reassign the category at any time in <a href=""%1"" target=""_blank"">Products > Categories</a>.","S’il n’y a pas de catégories parent personnalisées, merci d'utiliser la catégorie parent par défaut. Vous pouvez réaffecter la catégorie à tous moments dans <a href=""%1"" target=""_blank""> produits > catégories</a>.",module,Magento_Catalog
"Price Alert Subscriptions","Abonnement aux alertes de prix",module,Magento_Catalog
"Stock Alert Subscriptions","Abonnements alerte de stocks",module,Magento_Catalog
"There are no customers for this alert.","Aucun client pour cette alerte.",module,Magento_Catalog
"First Name",Prénom,module,Magento_Catalog
"Last Name",Nom,module,Magento_Catalog
"Subscribe Date","Date de souscription",module,Magento_Catalog
"Last Notified","Dernière notification",module,Magento_Catalog
"Send Count","Nombre d'envois",module,Magento_Catalog
"New Attribute","Nouvel attribut",module,Magento_Catalog
"Attribute Set","Jeu d'attributs",module,Magento_Catalog
Status,Statut,module,Magento_Catalog
Visibility,Visibilité,module,Magento_Catalog
"Add New Option","Ajouter une option",module,Magento_Catalog
"Import Options","Importer les Options",module,Magento_Catalog
"Use Default","Utiliser la valeur par défaut",module,Magento_Catalog
Import,Importer,module,Magento_Catalog
"Add New Row","Ajouter une ligne",module,Magento_Catalog
"Delete Row","Supprimer la ligne",module,Magento_Catalog
"Tier Pricing","Tarification par palier",module,Magento_Catalog
"Default Price","Prix par défaut",module,Magento_Catalog
"All Websites","Tous les sites web",module,Magento_Catalog
"ALL GROUPS","TOUS LES GROUPES",module,Magento_Catalog
"Add Price","Ajouter le prix",module,Magento_Catalog
"Default Values","Valeurs par défaut",module,Magento_Catalog
"Related Products","Produits apparentés",module,Magento_Catalog
Up-sells,"Ventes incitatives",module,Magento_Catalog
Cross-sells,"Ventes croisées",module,Magento_Catalog
"Size for %1","Taille pour %1",module,Magento_Catalog
"Watermark File for %1","Fichier de filigrane pour %1",module,Magento_Catalog
"Position of Watermark for %1","Position du filigrane pour %1",module,Magento_Catalog
"Name in %1","Nom dans %1",module,Magento_Catalog
Quantity,Quantité,module,Magento_Catalog
Edit,Éditer,module,Magento_Catalog
"Are you sure?","Êtes-vous sûr(e) ?",module,Magento_Catalog
"Change Status","Changer le statut",module,Magento_Catalog
"Update Attributes","Mettre à jour les attributs",module,Magento_Catalog
"start typing to search category","commencez à taper pour rechercher une catégorie",module,Magento_Catalog
"New Category","Nouvelle catégorie",module,Magento_Catalog
"Add New Images","Ajouter de nouvelles images",module,Magento_Catalog
"Inc. Tax",TTC,module,Magento_Catalog
"Does this have a weight?","Cela a-t-il un poids ?",module,Magento_Catalog
Product,Produit,module,Magento_Catalog
"Notify Low Stock RSS","Flux RSS de notification de stock bas",module,Magento_Catalog
"Low Stock Products","Produits ayant un faible niveau de stock",module,Magento_Catalog
"%1 has reached a quantity of %2.","%1 a atteint la quantité de %2.",module,Magento_Catalog
Home,Accueil,module,Magento_Catalog
"Go to Home Page","Aller à la page d'accueil",module,Magento_Catalog
"Subscribe to RSS Feed","S'abonner au flux RSS",module,Magento_Catalog
"Products Comparison List","Liste de comparaison de produits",module,Magento_Catalog
"-- Please Select --","-- Faites un choix --",module,Magento_Catalog
None,Aucun,module,Magento_Catalog
"New Products from %1","Nouveaux produits de %1",module,Magento_Catalog
"New Products","Nouveaux produits",module,Magento_Catalog
"%1 - Special Products","%1 - Produits spéciaux",module,Magento_Catalog
"Click for price","Cliquez pour afficher le prix",module,Magento_Catalog
"Special Expires On: %1","Special expire le : %1",module,Magento_Catalog
"Price: %1","Prix : %1",module,Magento_Catalog
"Special Price: %1","Prix spécial : %1",module,Magento_Catalog
"Special Products","Produits spéciaux",module,Magento_Catalog
"Manage Catalog Categories","Gérer les catégories du catalogue",module,Magento_Catalog
"Manage Categories","Gérer les catégories",module,Magento_Catalog
"You deleted the category.","La catégorie a bien été supprimée.",module,Magento_Catalog
"Something went wrong while trying to delete the category.","Une erreur est survenue en essayant de supprimer la catégorie.",module,Magento_Catalog
Categories,Catégories,module,Magento_Catalog
"Category is not available for requested store.","La catégorie n'est pas disponible pour le magasin demandé.",module,Magento_Catalog
"There was a category move error.","Une erreur est survenue lors de déplacement de la catégorie.",module,Magento_Catalog
"You moved the category.","La catégorie a bien été déplacée.",module,Magento_Catalog
"Attribute ""%1"" is required.","L'attribut ""%1"" est obligatoire.",module,Magento_Catalog
"You saved the category.","La catégorie a bien été sauvegardée.",module,Magento_Catalog
"Something went wrong while saving the category.","Une erreur s'est produite lors de l'enregistrement de la catégorie.",module,Magento_Catalog
"Please select products for attributes update.","Merci de sélectionner des produits pour la mise à jour des attributs.",module,Magento_Catalog
"Please make sure to define SKU values for all processed products.","S’il vous plaît, assurez-vous de définir des valeurs de SKU pour tous les produits.",module,Magento_Catalog
"A total of %1 record(s) were updated.","%1 enregistrement(s) ont été mis à jour.",module,Magento_Catalog
"Something went wrong while updating the product(s) attributes.","Une erreur s'est produite lors de la mise à jour des attributs produits",module,Magento_Catalog
"Unable to add attribute","Impossible d’ajouter l’attribut",module,Magento_Catalog
"Please, specify attributes","Veuillez préciser les attributs",module,Magento_Catalog
Catalog,Catalogue,module,Magento_Catalog
"Manage Product Attributes","Gérer les attributs produit",module,Magento_Catalog
"We can't delete the attribute.","Impossible de supprimer l'attribut.",module,Magento_Catalog
"You deleted the product attribute.","L'attribut produit a bien été supprimé.",module,Magento_Catalog
"We can't find an attribute to delete.","Aucun attribut à supprimer.",module,Magento_Catalog
"This attribute no longer exists.","Cet attribut n'existe plus.",module,Magento_Catalog
"This attribute cannot be edited.","Cet attribut ne peut pas être édité.",module,Magento_Catalog
"Edit Product Attribute","Éditer l'attribut produit",module,Magento_Catalog
"An attribute set named '%1' already exists.","Un jeu d’attributs nommé '%1' existe déjà.",module,Magento_Catalog
"Something went wrong while saving the attribute.","Une erreur s'est produite lors de l'enregistrement de l'attribut",module,Magento_Catalog
"Attribute code ""%1"" is invalid. Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.","Le code de l'attribut ""%1"" est invalide. Merci d'utiliser uniquement des lettres (a-z), des chiffres (0-9) ou des underscores (_) dans ce champ. Le premier caractère doit être une lettre.",module,Magento_Catalog
"We can't update the attribute.","Mise à jour de l’attribut impossible.",module,Magento_Catalog
"You saved the product attribute.","L'attribut produit a bien été sauvegardé.",module,Magento_Catalog
"An attribute with this code already exists.","Un attribut avec le même code existe déjà.",module,Magento_Catalog
"An attribute with the same code (%1) already exists.","Un attribut avec le même code (%1) existe déjà.",module,Magento_Catalog
"The value of Admin must be unique.","La valeur de l’Admin doit être unique.",module,Magento_Catalog
"The value of Admin scope can't be empty.","La valeur du champ d'action de l’Admin ne peut pas être vide.",module,Magento_Catalog
"You duplicated the product.","Le produit a bien été dupliqué.",module,Magento_Catalog
"This product doesn't exist.","Ce produit n’existe pas.",module,Magento_Catalog
"Invalid product id. Should be numeric value greater than 0","N° de produit non valide. Il doit s'agir d'un valeur numérique supérieure à 0",module,Magento_Catalog
Products,Produits,module,Magento_Catalog
"A group with the same name already exists.","Il existe déjà un groupe portant ce nom.",module,Magento_Catalog
"Something went wrong while saving this group.","Quelque chose s'est mal passé lors de l'enregistrement de ce groupe.",module,Magento_Catalog
"A total of %1 record(s) have been deleted.","%1 enregistrement(s) a (ont) été effacé(s).",module,Magento_Catalog
"A total of %1 record(s) have been updated.","%1 enregistrement(s) a (ont) été mis à jour.",module,Magento_Catalog
"Something went wrong while updating the product(s) status.","Une erreur s'est produite lors de la mise à jour des statuts des produits.",module,Magento_Catalog
"Unable to save product","Impossible d'enregistrer le produit",module,Magento_Catalog
"You saved the product.","Le produit a bien été sauvegardé.",module,Magento_Catalog
"SKU for product %1 has been changed to %2.","La référence du produit %1 a été changée pour %2.",module,Magento_Catalog
"The image cannot be removed as it has been assigned to the other image role","L’image ne peut être supprimée car elle a été affecté à l’autre rôle de l’image",module,Magento_Catalog
"New Attribute Set","Nouveau jeu d'attributs",module,Magento_Catalog
"The attribute set has been removed.","Le jeu d'attributs a été supprimé.",module,Magento_Catalog
"We can't delete this set right now.","Nous ne pouvons pas supprimer ce jeu d'attributs maintenant.",module,Magento_Catalog
"New Set","Nouveau groupe",module,Magento_Catalog
"Manage Product Sets","Gérer les groupes de produits",module,Magento_Catalog
"Manage Attribute Sets","Gérer les jeux d'attributs",module,Magento_Catalog
"This attribute set no longer exists.","Ce jeu d'attributs n'existe plus.",module,Magento_Catalog
"You saved the attribute set.","Le jeu d’attributs a bien été sauvegardé.",module,Magento_Catalog
"Something went wrong while saving the attribute set.","Une erreur s'est produite lors de l'enregistrement de l'attribut set.",module,Magento_Catalog
"You added product %1 to the comparison list.","Le produit %1 a bien été ajouté à la liste de comparaison.",module,Magento_Catalog
"You added product %s to the comparison list.","Le produit %s a bien été ajouté à la liste de comparaison.",module,Magento_Catalog
"You cleared the comparison list.","Vous avez supprimé la liste de comparaison.",module,Magento_Catalog
"Something went wrong clearing the comparison list.","La liste de comparaison n'a pas pu être effacée.",module,Magento_Catalog
"You removed product %1 from the comparison list.","Vous avez retiré le produit %1 de la liste de comparaison.",module,Magento_Catalog
"1 item","1 élément",module,Magento_Catalog
"%1 items","%1 articles",module,Magento_Catalog
"Are you sure you want to remove this item from your Compare Products list?","Êtes-vous sûr de vouloir enlever cet article de la liste de comparaison ?",module,Magento_Catalog
"Are you sure you want to remove all items from your Compare Products list?","Êtes-vous sûr de vouloir enlever ces articles de la liste de comparaison ?",module,Magento_Catalog
"Invalid attribute %1","Attribut invalide : %1",module,Magento_Catalog
Grid,Grille,module,Magento_Catalog
List,Liste,module,Magento_Catalog
All,Tous,module,Magento_Catalog
"Bad controller interface for showing product","Mauvaise interface de controleur pour afficher les produits",module,Magento_Catalog
"Product is not loaded","Le produit n'est pas chargé",module,Magento_Catalog
"Make sure the To Date is later than or the same as the From Date.","Assurez-vous que la date de fin est après ou la même que la date de début.",module,Magento_Catalog
"Sorry, but we can't find the new parent category you selected.","Désolé, mais nous ne pouvons pas trouver la nouvelle catégorie parent que vous avez sélectionné.",module,Magento_Catalog
"Sorry, but we can't find the new category you selected.","Désolé, mais nous ne pouvons pas trouver la nouvelle catégorie que vous avez sélectionné.",module,Magento_Catalog
"We can't move the category because the parent category name matches the child category name.","Nous ne pouvons pas déplacer la catégorie parce que le nom de catégorie parent correspond au nom de la catégorie enfant.",module,Magento_Catalog
"Something went wrong while getting the image url.","Quelque chose s'est mal passé pour obtenir l'url de l'image.",module,Magento_Catalog
"Can't delete root category.","Impossible de supprimer la catégorie racine.",module,Magento_Catalog
"The value of attribute ""%1"" must be unique.","La valeur de l'attribut ""%1"" doit être unique.",module,Magento_Catalog
"Default Product Listing Sort by does not exist in Available Product Listing Sort By.","Le tri par défaut dans les listes de produits ne fait pas partie des options de tri disponibles.",module,Magento_Catalog
"No layout updates","Pas de modification de l'agencement",module,Magento_Catalog
"Products only","Produits seulement",module,Magento_Catalog
"Static block only","Bloc statique uniquement",module,Magento_Catalog
"Static block and products","Bloc statique et produits",module,Magento_Catalog
"Please select a static block.","Sélectionnez un bloc statique.",module,Magento_Catalog
"Could not save product ""%1"" with position %2 to category %3","Ne peut pas enregistrer produit ""%1"" avec la position %2 dans la catégorie %3",module,Magento_Catalog
"Category does not contain specified product","La catégorie ne contient pas de produit",module,Magento_Catalog
"Could not save product ""%product"" with position %position to category %category","Enregistrement impossible du produit ""%product"" avec la position %position à la catégorie %category",module,Magento_Catalog
"Operation do not allow to move a parent category to any of children category","Opération ne permettant pas de déplacer une catégorie parente vers une catégorie enfant",module,Magento_Catalog
"Could not move category","Impossible de déplacer la catégorie",module,Magento_Catalog
"Could not save category: %1","Impossible de sauvegarder la catégorie : %1",module,Magento_Catalog
"Cannot delete category with id %1","Impossible de supprimer la catégorie avec id %1",module,Magento_Catalog
"-- Please Select a Category --","-- Choisissez une catégorie --",module,Magento_Catalog
"Grid Only","Grille uniquement",module,Magento_Catalog
"List Only","Liste uniquement",module,Magento_Catalog
"Grid (default) / List","Grille (par défaut) / Liste",module,Magento_Catalog
"List (default) / Grid","Liste (par défaut) / grille",module,Magento_Catalog
"Automatic (equalize price ranges)","Automatique (égalise les tranches de prix)",module,Magento_Catalog
"Automatic (equalize product counts)","Automatique (égalise le nombre de produits)",module,Magento_Catalog
Manual,Manuel,module,Magento_Catalog
Fixed,Fixe,module,Magento_Catalog
Percent,Pourcent,module,Magento_Catalog
Discount,Remise,module,Magento_Catalog
"-- Please select --","-- Votre choix --",module,Magento_Catalog
"Product Thumbnail Itself","Vignette du produit lui-même",module,Magento_Catalog
"Parent Product Thumbnail","Vignette du produit parent",module,Magento_Catalog
Stretch,Étirer,module,Magento_Catalog
Tile,Mosaïque,module,Magento_Catalog
Top/Left,"En haut à gauche",module,Magento_Catalog
Top/Right,"En haut à droite",module,Magento_Catalog
Bottom/Left,"En bas à gauche",module,Magento_Catalog
Bottom/Right,"En bas à droite",module,Magento_Catalog
Center,Centrer,module,Magento_Catalog
"%1 doesn't extends \Magento\Framework\Model\AbstractModel","%1 n'étend pas \Magento\Framework\Model\AbstractModel",module,Magento_Catalog
"Something went wrong while saving the file(s).","Une erreur s'est produite lors de l'enregistrement du ou des fichiers.",module,Magento_Catalog
"File can not be saved to the destination folder.","Fichier ne peut pas être enregistré dans le dossier de destination.",module,Magento_Catalog
"Unknown EAV indexer type ""%1"".","Type d'indexer EAV inconnu : ""%1"".",module,Magento_Catalog
"We can't rebuild the index for an undefined product.","Le produit ne peut être ajouté à votre panier pour le moment.",module,Magento_Catalog
"Bad value was supplied.","Valeur incorrecte fournie.",module,Magento_Catalog
"The Flat Catalog module has a limit of %2$d filterable and/or sortable attributes.Currently there are %1$d of them.Please reduce the number of filterable/sortable attributes in order to use this module","Le module Catalogue plat a une limite de %2$d des attributs filtrables et/ou sortable. Il y a actuellement %1$d d'entre eux. Veuillez réduire le nombre d’attributs filtrables/sortable pour pouvoir utiliser ce module",module,Magento_Catalog
"Unsupported product type ""%1"".","Type de produit non supporté ""%1"".",module,Magento_Catalog
"Please correct the category.","S’il vous plaît, corrigez la catégorie.",module,Magento_Catalog
"Must be category model instance or its id.","Doit être instance de modèle de catégorie ou son identifiant.",module,Magento_Catalog
"The attribute model is not defined.","Le modèle d'attributs n'est pas défini.",module,Magento_Catalog
Category,Catégorie,module,Magento_Catalog
"%1 was not found in algorithms","%1 n’a pas été trouvé dans les algorithmes",module,Magento_Catalog
"%1 doesn't extend \Magento\Catalog\Model\Layer\Filter\Dynamic\AlgorithmInterface","%1 n’étend pas \Magento\Catalog\Model\Layer\Filter\Dynamic\AlgorithmInterface",module,Magento_Catalog
"%1 doesn't extends \Magento\Catalog\Model\Layer\Filter\AbstractFilter","%1 n’étend pas \Magento\Catalog\Model\Layer\Filter\AbstractFilter",module,Magento_Catalog
"The filter must be an object. Please set the correct filter.","Le filtre doit être un objet. Veuillez renseigner le filtre correctement.",module,Magento_Catalog
"Clear Price","Effacer le prix",module,Magento_Catalog
"%1 and above","%1 et plus",module,Magento_Catalog
"The filters must be an array.","Les filtres doivent être sous forme de tableau.",module,Magento_Catalog
"Product was not registered","Le produit n’a pas été enregistré",module,Magento_Catalog
"Store was not registered","Le magasin n’a pas été enregistré",module,Magento_Catalog
"Group price must be a number greater than 0.","Prix de groupe doit être un nombre supérieur à 0.",module,Magento_Catalog
"Media Gallery converter should be an instance of EntryConverterInterface.","Convertisseur de Media Gallery devrait être une instance de EntryConverterInterface.",module,Magento_Catalog
"There is no MediaGalleryEntryConverter for given type","Il n’y a aucune MediaGalleryEntryConverter pour ce type",module,Magento_Catalog
"Please enter a number 0 or greater in this field.","Veuillez saisir un nombre supérieur ou égal à 0 dans ce champ.",module,Magento_Catalog
"The value of attribute ""%1"" must be set","La valeur de l’attribut ""%1"" doit avoir une valeur",module,Magento_Catalog
"SKU length should be %1 characters maximum.","La longueur du SKU doit être de %1 caractères au maximum.",module,Magento_Catalog
"Please enter a valid number in this field.","Veuillez saisir un nombre valide.",module,Magento_Catalog
"We found a duplicate website, tier price, customer group and quantity.","Nous avons trouvé en double un site, un prix par palier, un groupe de clients et la quantité.",module,Magento_Catalog
"Percentage value must be a number between 0 and 100.","Valeur de pourcentage doit être un nombre compris entre 0 et 100.",module,Magento_Catalog
"Invalid option id %1","Option non valide id %1",module,Magento_Catalog
"Can not create attribute set based on non product attribute set.","Il ne peut pas créer d'ensemble d’attributs basé sur un ensemble d’attributs pas pour des produits.",module,Magento_Catalog
"Can not create attribute set based on not existing attribute set","On ne peut pas créer d'ensemble d’attributs basé sur un ensemble d’attributs non existant",module,Magento_Catalog
"Provided Attribute set non product Attribute set.","Jeu d'attributs fourni comme jeu d'attributs pour un non produit.",module,Magento_Catalog
"Use config","Utiliser la config",module,Magento_Catalog