forked from AFPy/python_doc_fr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdistutils.po
More file actions
5634 lines (4717 loc) · 196 KB
/
distutils.po
File metadata and controls
5634 lines (4717 loc) · 196 KB
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2010, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-05 09:33\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.7.0\n"
#: ../src/Doc/distutils/apiref.rst:5
msgid "API Reference"
msgstr "Référence de l'API"
#: ../src/Doc/distutils/apiref.rst:9
msgid ":mod:`distutils.core` --- Core Distutils functionality"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:15
msgid ""
"The :mod:`distutils.core` module is the only module that needs to be "
"installed to use the Distutils. It provides the :func:`setup` (which is "
"called from the setup script). Indirectly provides the :class:`distutils."
"dist.Distribution` and :class:`distutils.cmd.Command` class."
msgstr ""
"Le module :mod:`distutils.core` est le seul module qui a besoin d'être "
"installé pour utiliser Distutils. Il fournit le :func:`setup` (qui est "
"appelé par le script de setup). Il fournit indirectement les classes :class:"
"`distutils.dist.Distribution` et :class:`distutils.cmd.Command`."
#: ../src/Doc/distutils/apiref.rst:23
#, fuzzy
msgid ""
"The basic do-everything function that does most everything you could ever "
"ask for from a Distutils method."
msgstr ""
"La fonction de base à tout faire qui fait presque tout ce dont vous pourriez "
"attendre d'une méthode Distutils. Voir XXXXX"
#: ../src/Doc/distutils/apiref.rst:26
msgid ""
"The setup function takes a large number of arguments. These are laid out in "
"the following table."
msgstr ""
"La fonction setup prend un grand nombre d'arguments. Ils sont présentés dans "
"le tableau suivant."
#: ../src/Doc/distutils/apiref.rst:30 ../src/Doc/distutils/apiref.rst:166
msgid "argument name"
msgstr "nom de l'argument"
#: ../src/Doc/distutils/apiref.rst:30 ../src/Doc/distutils/apiref.rst:126
#: ../src/Doc/distutils/apiref.rst:166
msgid "value"
msgstr "valeur"
#: ../src/Doc/distutils/apiref.rst:30 ../src/Doc/distutils/apiref.rst:166
msgid "type"
msgstr "type"
#: ../src/Doc/distutils/apiref.rst:32 ../src/Doc/distutils/apiref.rst:168
msgid "*name*"
msgstr "*name*"
# aconrad: package ? paquet ?
#: ../src/Doc/distutils/apiref.rst:32
msgid "The name of the package"
msgstr "Le nom du paquet"
#: ../src/Doc/distutils/apiref.rst:32 ../src/Doc/distutils/apiref.rst:34
#: ../src/Doc/distutils/apiref.rst:38 ../src/Doc/distutils/apiref.rst:41
#: ../src/Doc/distutils/apiref.rst:44 ../src/Doc/distutils/apiref.rst:46
#: ../src/Doc/distutils/apiref.rst:49 ../src/Doc/distutils/apiref.rst:53
#: ../src/Doc/distutils/apiref.rst:57 ../src/Doc/distutils/apiref.rst:60
#: ../src/Doc/distutils/apiref.rst:81 ../src/Doc/distutils/apiref.rst:91
#: ../src/Doc/distutils/apiref.rst:168 ../src/Doc/distutils/apiref.rst:258
msgid "a string"
msgstr "une chaîne de caractères"
#: ../src/Doc/distutils/apiref.rst:34
msgid "*version*"
msgstr "*version*"
#: ../src/Doc/distutils/apiref.rst:34
#, fuzzy
msgid "The version number of the package; see :mod:`distutils.version`"
msgstr "Le numéro de version du paquet"
#: ../src/Doc/distutils/apiref.rst:38
msgid "*description*"
msgstr "*description*"
#: ../src/Doc/distutils/apiref.rst:38
msgid "A single line describing the package"
msgstr "Une ligne unique décrivant le paquet"
#: ../src/Doc/distutils/apiref.rst:41
msgid "*long_description*"
msgstr "*long_description*"
#: ../src/Doc/distutils/apiref.rst:41
msgid "Longer description of the package"
msgstr "Une description plus longue du paquet"
#: ../src/Doc/distutils/apiref.rst:44
msgid "*author*"
msgstr "*author*"
#: ../src/Doc/distutils/apiref.rst:44
msgid "The name of the package author"
msgstr "Le nom de l'auteur du paquet"
#: ../src/Doc/distutils/apiref.rst:46
msgid "*author_email*"
msgstr "*author_email*"
#: ../src/Doc/distutils/apiref.rst:46
msgid "The email address of the package author"
msgstr "L'adresse e-mail de l'auteur du paquet"
#: ../src/Doc/distutils/apiref.rst:49
msgid "*maintainer*"
msgstr "*maintainer*"
#: ../src/Doc/distutils/apiref.rst:49
msgid "The name of the current maintainer, if different from the author"
msgstr "Le nom du mainteneur actuel, si différent de l'auteur"
#: ../src/Doc/distutils/apiref.rst:53
msgid "*maintainer_email*"
msgstr "*maintainer_email*"
#: ../src/Doc/distutils/apiref.rst:53
msgid ""
"The email address of the current maintainer, if different from the author"
msgstr "L'adresse email de l'actuel mainteneur, si différent de l'auteur"
#: ../src/Doc/distutils/apiref.rst:57
msgid "*url*"
msgstr "*url*"
#: ../src/Doc/distutils/apiref.rst:57
msgid "A URL for the package (homepage)"
msgstr "Une URL pour le paquet (page d'accueil)"
#: ../src/Doc/distutils/apiref.rst:60
msgid "*download_url*"
msgstr "*download_url*"
#: ../src/Doc/distutils/apiref.rst:60
msgid "A URL to download the package"
msgstr "Une URL pour télécharger le paquet"
#: ../src/Doc/distutils/apiref.rst:62
msgid "*packages*"
msgstr "*packages*"
#: ../src/Doc/distutils/apiref.rst:62
msgid "A list of Python packages that distutils will manipulate"
msgstr "Une liste des paquets Python que distutils va manipuler"
#: ../src/Doc/distutils/apiref.rst:62 ../src/Doc/distutils/apiref.rst:65
#: ../src/Doc/distutils/apiref.rst:68 ../src/Doc/distutils/apiref.rst:85
#: ../src/Doc/distutils/apiref.rst:174 ../src/Doc/distutils/apiref.rst:187
#: ../src/Doc/distutils/apiref.rst:203 ../src/Doc/distutils/apiref.rst:206
#: ../src/Doc/distutils/apiref.rst:210 ../src/Doc/distutils/apiref.rst:214
#: ../src/Doc/distutils/apiref.rst:220 ../src/Doc/distutils/apiref.rst:227
#: ../src/Doc/distutils/apiref.rst:238 ../src/Doc/distutils/apiref.rst:247
#: ../src/Doc/distutils/apiref.rst:255
msgid "a list of strings"
msgstr "une liste de chaînes"
#: ../src/Doc/distutils/apiref.rst:65
msgid "*py_modules*"
msgstr "*py_modules*"
#: ../src/Doc/distutils/apiref.rst:65
msgid "A list of Python modules that distutils will manipulate"
msgstr "Une liste de modules Python que distutils va manipuler"
#: ../src/Doc/distutils/apiref.rst:68
msgid "*scripts*"
msgstr "*scripts*"
#: ../src/Doc/distutils/apiref.rst:68
msgid "A list of standalone script files to be built and installed"
msgstr "Une liste de scripts autonomes à construire et à installer"
#: ../src/Doc/distutils/apiref.rst:72
msgid "*ext_modules*"
msgstr "*ext_modules*"
#: ../src/Doc/distutils/apiref.rst:72
msgid "A list of Python extensions to be built"
msgstr "Une liste des extensions Python à construire"
#: ../src/Doc/distutils/apiref.rst:72
#, fuzzy
msgid "a list of instances of :class:`distutils.core.Extension`"
msgstr "Une liste d'instances de :class:`distutils.core.Extension'"
#: ../src/Doc/distutils/apiref.rst:75
msgid "*classifiers*"
msgstr "*classifiers*"
#: ../src/Doc/distutils/apiref.rst:75
msgid "A list of categories for the package"
msgstr "Une liste de catégories pour le paquet"
#: ../src/Doc/distutils/apiref.rst:75
#, fuzzy
msgid ""
"a list of strings; valid classifiers are listed on `PyPI <http://pypi.python."
"org/pypi?:action=list_classifiers>`_."
msgstr ""
"La liste des catégorisations est disponibles sur http://pypi.python.org/"
"pypi?:action=list_classifiers."
#: ../src/Doc/distutils/apiref.rst:78
msgid "*distclass*"
msgstr "*distclass*"
#: ../src/Doc/distutils/apiref.rst:78
msgid "the :class:`Distribution` class to use"
msgstr "la classe :class:`Distribution` à utiliser"
#: ../src/Doc/distutils/apiref.rst:78
#, fuzzy
msgid "a subclass of :class:`distutils.core.Distribution`"
msgstr "Une sous classe de :class:`distutils.core.Distribution`"
#: ../src/Doc/distutils/apiref.rst:81
msgid "*script_name*"
msgstr "*script_name*"
#: ../src/Doc/distutils/apiref.rst:81
msgid "The name of the setup.py script - defaults to ``sys.argv[0]``"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:85
msgid "*script_args*"
msgstr "*script_args*"
#: ../src/Doc/distutils/apiref.rst:85
msgid "Arguments to supply to the setup script"
msgstr "Arguments à fournir au script d'installation"
#: ../src/Doc/distutils/apiref.rst:88
msgid "*options*"
msgstr "*options*"
#: ../src/Doc/distutils/apiref.rst:88
msgid "default options for the setup script"
msgstr "options par défaut pour le script d'installation"
#: ../src/Doc/distutils/apiref.rst:88 ../src/Doc/distutils/apiref.rst:98
#: ../src/Doc/distutils/apiref.rst:104
msgid "a dictionary"
msgstr "un dictionnaire"
#: ../src/Doc/distutils/apiref.rst:91
msgid "*license*"
msgstr "*license*"
#: ../src/Doc/distutils/apiref.rst:91
msgid "The license for the package"
msgstr "La licence pour le paquet"
#: ../src/Doc/distutils/apiref.rst:93
msgid "*keywords*"
msgstr "*keywords*"
#: ../src/Doc/distutils/apiref.rst:93
msgid "Descriptive meta-data, see :pep:`314`"
msgstr "Méta-données descriptives, voir :pep:`314`"
# 8f23dc2f9ac4479bb2900fcf5d35e4cf
# 3fb5af30cc284b4fad9420d3be662b07
#: ../src/Doc/distutils/apiref.rst:93 ../src/Doc/distutils/apiref.rst:96
msgid "a list of strings or a comma-separated string"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:96
msgid "*platforms*"
msgstr "*platforms*"
#: ../src/Doc/distutils/apiref.rst:98
msgid "*cmdclass*"
msgstr "*cmdclass*"
#: ../src/Doc/distutils/apiref.rst:98
msgid "A mapping of command names to :class:`Command` subclasses"
msgstr "Un mapping des noms de commandes et des sous-classes :class:`Command`"
#: ../src/Doc/distutils/apiref.rst:101
msgid "*data_files*"
msgstr "*data_files*"
#: ../src/Doc/distutils/apiref.rst:101
msgid "A list of data files to install"
msgstr "Une liste de fichiers de données à installer"
#: ../src/Doc/distutils/apiref.rst:101
msgid "a list"
msgstr "une liste"
#: ../src/Doc/distutils/apiref.rst:104
msgid "*package_dir*"
msgstr "*package_dir*"
#: ../src/Doc/distutils/apiref.rst:104
msgid "A mapping of package to directory names"
msgstr "Un mapping des paquets et des noms de dossiers"
#: ../src/Doc/distutils/apiref.rst:112
msgid ""
"Run a setup script in a somewhat controlled environment, and return the :"
"class:`distutils.dist.Distribution` instance that drives things. This is "
"useful if you need to find out the distribution meta-data (passed as "
"keyword args from *script* to :func:`setup`), or the contents of the config "
"files or command-line."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:118
#, fuzzy
msgid ""
"*script_name* is a file that will be run with :func:`execfile` ``sys.argv[0]"
"`` will be replaced with *script* for the duration of the call. "
"*script_args* is a list of strings; if supplied, ``sys.argv[1:]`` will be "
"replaced by *script_args* for the duration of the call."
msgstr ""
"*script_name* est un fichier qui sera lu et exécuté avec :func:`exec`. ``sys."
"argv[0]`` sera remplacé par *script* par la durée de l'appel. *script_args* "
"est une liste de chaînes; si fourni, ``sys.argv[1:]`` sera remplacé par "
"*script_args* pour la durée de l'appel."
#: ../src/Doc/distutils/apiref.rst:123
msgid ""
"*stop_after* tells :func:`setup` when to stop processing; possible values:"
msgstr "*stop_after* dit à :func:`setup` quand s'arrêter; valeurs possibles:"
#: ../src/Doc/distutils/apiref.rst:126 ../src/Doc/distutils/apiref.rst:528
#: ../src/Doc/distutils/apiref.rst:1554
msgid "description"
msgstr "description"
#: ../src/Doc/distutils/apiref.rst:128
msgid "*init*"
msgstr "*init*"
#: ../src/Doc/distutils/apiref.rst:128
msgid ""
"Stop after the :class:`Distribution` instance has been created and "
"populated with the keyword arguments to :func:`setup`"
msgstr ""
"S'arrête une fois que l'instance :class:`Distribution` a été créée et "
"renseignée avec les arguments-clés de :func:`setup`"
#: ../src/Doc/distutils/apiref.rst:132
msgid "*config*"
msgstr "*config*"
#: ../src/Doc/distutils/apiref.rst:132
msgid ""
"Stop after config files have been parsed (and their data stored in the :"
"class:`Distribution` instance)"
msgstr ""
"S'arrête une fois que les fichiers de configuration ont été parcouru (et que "
"leurs données ont été stockées dans l'instance :class:`Distribution`)"
#: ../src/Doc/distutils/apiref.rst:136
msgid "*commandline*"
msgstr "*commandline*"
#: ../src/Doc/distutils/apiref.rst:136
msgid ""
"Stop after the command-line (``sys.argv[1:]`` or *script_args*) have been "
"parsed (and the data stored in the :class:`Distribution` instance.)"
msgstr ""
"S'arrête une fois que la ligne de commande (``sys.argv[1:]`` ou "
"*script_args*) a été parcouru (et les données stockées dans l'instance :"
"class:`Distribution`)"
#: ../src/Doc/distutils/apiref.rst:141
msgid "*run*"
msgstr "*run*"
#: ../src/Doc/distutils/apiref.rst:141
msgid ""
"Stop after all commands have been run (the same as if :func:`setup` had "
"been called in the usual way). This is the default value."
msgstr ""
"S'arrête une fois que toutes les commandes ont été exécutées (comme si :func:"
"`setup` fût appelé de la manière habituelle). Ceci est la valeur par défaut."
#: ../src/Doc/distutils/apiref.rst:147
msgid ""
"In addition, the :mod:`distutils.core` module exposed a number of classes "
"that live elsewhere."
msgstr ""
"De plus, le module :mod:`distutils.core` a exposé un nombre de classe qui "
"existent ailleurs."
#: ../src/Doc/distutils/apiref.rst:150
#, fuzzy
msgid ":class:`~distutils.extension.Extension` from :mod:`distutils.extension`"
msgstr ":class:`Extension` de :mod:`distutils.extension`"
#: ../src/Doc/distutils/apiref.rst:152
#, fuzzy
msgid ":class:`~distutils.cmd.Command` from :mod:`distutils.cmd`"
msgstr ":class:`Command` de :mod:`distutils.cmd`"
#: ../src/Doc/distutils/apiref.rst:154
#, fuzzy
msgid ":class:`~distutils.dist.Distribution` from :mod:`distutils.dist`"
msgstr ":class:`Distribution` de :mod:`distutils.dist`"
#: ../src/Doc/distutils/apiref.rst:156
msgid ""
"A short description of each of these follows, but see the relevant module "
"for the full reference."
msgstr ""
"Une courte description de chacune d'elle suit, mais consultez le module "
"concerné pour une référence complète."
#: ../src/Doc/distutils/apiref.rst:162
msgid ""
"The Extension class describes a single C or C++extension module in a setup "
"script. It accepts the following keyword arguments in its constructor"
msgstr ""
"La class Extension décrit un seul module d'extension C ou C++ dans un script "
"d'installation. Elle accepte dans son constructeur les arguments-clés "
"suivants"
#: ../src/Doc/distutils/apiref.rst:168
msgid ""
"the full name of the extension, including any packages --- ie. *not* a "
"filename or pathname, but Python dotted name"
msgstr ""
"le nom complet de l'extension, incluant n'importe quel paquet --- c-à-d "
"*pas* un nom de fichier ou de chemin mais un nom Python séparé par des points"
#: ../src/Doc/distutils/apiref.rst:174
msgid "*sources*"
msgstr "*sources*"
#: ../src/Doc/distutils/apiref.rst:174
msgid ""
"list of source filenames, relative to the distribution root (where the setup "
"script lives), in Unix form (slash- separated) for portability. Source files "
"may be C, C++, SWIG (.i), platform-specific resource files, or whatever else "
"is recognized by the :command:`build_ext` command as source for a Python "
"extension."
msgstr ""
"listes des noms de fichier des sources, relatifs à la racine de la "
"distribution (où est placé le script setup), dans un format Unix (séparé par "
"des slashs) dans un souci de portabilité. Les fichiers de code source "
"peuvent être du C, C++, SWIG (.i), des fichiers de ressources spécifiques à "
"la plateforme ou tout autre reconnu par la commande :command:`build_ext` "
"comme source d'une extension Python"
#: ../src/Doc/distutils/apiref.rst:187
msgid "*include_dirs*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:187
msgid ""
"list of directories to search for C/C++ header files (in Unix form for "
"portability)"
msgstr ""
"liste des répertoires où chercher les fichiers d'entêtes C/C++ (en format "
"Unix dans un souci de portabilité)"
#: ../src/Doc/distutils/apiref.rst:191
msgid "*define_macros*"
msgstr "*define_macros*"
#: ../src/Doc/distutils/apiref.rst:191
msgid ""
"list of macros to define; each macro is defined using a 2-tuple ``(name, "
"value)``, where *value* is either the string to define it to or ``None`` to "
"define it without a particular value (equivalent of ``#define FOO`` in "
"source or :option:`-DFOO` on Unix C compiler command line)"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:191
#, fuzzy
msgid "a list of tuples"
msgstr "une liste de chaînes"
#: ../src/Doc/distutils/apiref.rst:203
msgid "*undef_macros*"
msgstr "*undef_macros*"
#: ../src/Doc/distutils/apiref.rst:203
msgid "list of macros to undefine explicitly"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:206
msgid "*library_dirs*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:206
msgid "list of directories to search for C/C++ libraries at link time"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:210
msgid "*libraries*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:210
msgid "list of library names (not filenames or paths) to link against"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:214
msgid "*runtime_library_dirs*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:214
msgid ""
"list of directories to search for C/C++ libraries at run time (for shared "
"extensions, this is when the extension is loaded)"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:220
msgid "*extra_objects*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:220
msgid ""
"list of extra files to link with (eg. object files not implied by 'sources', "
"static library that must be explicitly specified, binary resource files, "
"etc.)"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:227
msgid "*extra_compile_args*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:227
msgid ""
"any extra platform- and compiler-specific information to use when compiling "
"the source files in 'sources'. For platforms and compilers where a command "
"line makes sense, this is typically a list of command-line arguments, but "
"for other platforms it could be anything."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:238
msgid "*extra_link_args*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:238
msgid ""
"any extra platform- and compiler-specific information to use when linking "
"object files together to create the extension (or to create a new static "
"Python interpreter). Similar interpretation as for 'extra_compile_args'."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:247
msgid "*export_symbols*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:247
msgid ""
"list of symbols to be exported from a shared extension. Not used on all "
"platforms, and not generally necessary for Python extensions, which "
"typically export exactly one symbol: ``init`` + extension_name."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:255
msgid "*depends*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:255
msgid "list of files that the extension depends on"
msgstr "liste des fichiers dont dépend l'extension"
#: ../src/Doc/distutils/apiref.rst:258
msgid "*language*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:258
msgid ""
"extension language (i.e. ``'c'``, ``'c++'``, ``'objc'``). Will be detected "
"from the source extensions if not provided."
msgstr ""
"langage de l'extension (par exemple ``'c'``, ``'c++'``, ``'objc'``). Il sera "
"détecté selon l'extension de la source s'il n'est pas précisé."
#: ../src/Doc/distutils/apiref.rst:268
msgid ""
"A :class:`Distribution` describes how to build, install and package up a "
"Python software package."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:271
msgid ""
"See the :func:`setup` function for a list of keyword arguments accepted by "
"the Distribution constructor. :func:`setup` creates a Distribution instance."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:277
msgid ""
"A :class:`Command` class (or rather, an instance of one of its subclasses) "
"implement a single distutils command."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:282
msgid ":mod:`distutils.ccompiler` --- CCompiler base class"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:288
msgid ""
"This module provides the abstract base class for the :class:`CCompiler` "
"classes. A :class:`CCompiler` instance can be used for all the compile and "
"link steps needed to build a single project. Methods are provided to set "
"options for the compiler --- macro definitions, include directories, link "
"path, libraries and the like."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:294
msgid "This module provides the following functions."
msgstr "Ce module fournit les fonctions suivantes."
#: ../src/Doc/distutils/apiref.rst:299
msgid ""
"Generate linker options for searching library directories and linking with "
"specific libraries. *libraries* and *library_dirs* are, respectively, lists "
"of library names (not filenames!) and search directories. Returns a list of "
"command-line options suitable for use with some compiler (depending on the "
"two format strings passed in)."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:308
msgid ""
"Generate C pre-processor options (:option:`-D`, :option:`-U`, :option:`-I`) "
"as used by at least two types of compilers: the typical Unix compiler and "
"Visual C++. *macros* is the usual thing, a list of 1- or 2-tuples, where ``"
"(name,)`` means undefine (:option:`-U`) macro *name*, and ``(name, value)`` "
"means define (:option:`-D`) macro *name* to *value*. *include_dirs* is just "
"a list of directory names to be added to the header file search path (:"
"option:`-I`). Returns a list of command-line options suitable for either "
"Unix compilers or Visual C++."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:320
msgid "Determine the default compiler to use for the given platform."
msgstr ""
"Détermine le compilateur par défaut a utiliser par une plateforme donnée"
#: ../src/Doc/distutils/apiref.rst:322
msgid ""
"*osname* should be one of the standard Python OS names (i.e. the ones "
"returned by ``os.name``) and *platform* the common value returned by ``sys."
"platform`` for the platform in question."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:326
msgid ""
"The default values are ``os.name`` and ``sys.platform`` in case the "
"parameters are not given."
msgstr ""
"Les valeurs par défaut sont ``os.name`` et ``sys.platform`` si les "
"paramètres ne sont pas fournis."
#: ../src/Doc/distutils/apiref.rst:332
msgid ""
"Factory function to generate an instance of some CCompiler subclass for the "
"supplied platform/compiler combination. *plat* defaults to ``os.name`` (eg. "
"``'posix'``, ``'nt'``), and *compiler* defaults to the default compiler for "
"that platform. Currently only ``'posix'`` and ``'nt'`` are supported, and "
"the default compilers are \"traditional Unix interface\" (:class:"
"`UnixCCompiler` class) and Visual C++ (:class:`MSVCCompiler` class). Note "
"that it's perfectly possible to ask for a Unix compiler object under "
"Windows, and a Microsoft compiler object under Unix---if you supply a value "
"for *compiler*, *plat* is ignored."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:348
msgid ""
"Print list of available compilers (used by the :option:`--help-compiler` "
"options to :command:`build`, :command:`build_ext`, :command:`build_clib`)."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:354
msgid ""
"The abstract base class :class:`CCompiler` defines the interface that must "
"be implemented by real compiler classes. The class also has some utility "
"methods used by several compiler classes."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:358
msgid ""
"The basic idea behind a compiler abstraction class is that each instance can "
"be used for all the compile/link steps in building a single project. Thus, "
"attributes common to all of those compile and link steps --- include "
"directories, macros to define, libraries to link against, etc. --- are "
"attributes of the compiler instance. To allow for variability in how "
"individual files are treated, most of those attributes may be varied on a "
"per-compilation or per-link basis."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:366
msgid ""
"The constructor for each subclass creates an instance of the Compiler "
"object. Flags are *verbose* (show verbose output), *dry_run* (don't actually "
"execute the steps) and *force* (rebuild everything, regardless of "
"dependencies). All of these flags default to ``0`` (off). Note that you "
"probably don't want to instantiate :class:`CCompiler` or one of its "
"subclasses directly - use the :func:`distutils.CCompiler.new_compiler` "
"factory function instead."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:373
msgid ""
"The following methods allow you to manually alter compiler options for the "
"instance of the Compiler class."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:379
msgid ""
"Add *dir* to the list of directories that will be searched for header files. "
"The compiler is instructed to search directories in the order in which they "
"are supplied by successive calls to :meth:`add_include_dir`."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:386
msgid ""
"Set the list of directories that will be searched to *dirs* (a list of "
"strings). Overrides any preceding calls to :meth:`add_include_dir`; "
"subsequent calls to :meth:`add_include_dir` add to the list passed to :meth:"
"`set_include_dirs`. This does not affect any list of standard include "
"directories that the compiler may search by default."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:395
msgid ""
"Add *libname* to the list of libraries that will be included in all links "
"driven by this compiler object. Note that *libname* should \\*not\\* be the "
"name of a file containing a library, but the name of the library itself: the "
"actual filename will be inferred by the linker, the compiler, or the "
"compiler class (depending on the platform)."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:401
msgid ""
"The linker will be instructed to link against libraries in the order they "
"were supplied to :meth:`add_library` and/or :meth:`set_libraries`. It is "
"perfectly valid to duplicate library names; the linker will be instructed to "
"link against libraries as many times as they are mentioned."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:409
msgid ""
"Set the list of libraries to be included in all links driven by this "
"compiler object to *libnames* (a list of strings). This does not affect any "
"standard system libraries that the linker may include by default."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:416
msgid ""
"Add *dir* to the list of directories that will be searched for libraries "
"specified to :meth:`add_library` and :meth:`set_libraries`. The linker will "
"be instructed to search for libraries in the order they are supplied to :"
"meth:`add_library_dir` and/or :meth:`set_library_dirs`."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:424
msgid ""
"Set the list of library search directories to *dirs* (a list of strings). "
"This does not affect any standard library search path that the linker may "
"search by default."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:431
msgid ""
"Add *dir* to the list of directories that will be searched for shared "
"libraries at runtime."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:437
msgid ""
"Set the list of directories to search for shared libraries at runtime to "
"*dirs* (a list of strings). This does not affect any standard search path "
"that the runtime linker may search by default."
msgstr ""
# 8698178ee7ce4d0089fe209de0084da7
#: ../src/Doc/distutils/apiref.rst:444
msgid ""
"Define a preprocessor macro for all compilations driven by this compiler "
"object. The optional parameter *value* should be a string; if it is not "
"supplied, then the macro will be defined without an explicit value and the "
"exact outcome depends on the compiler used."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:454
msgid ""
"Undefine a preprocessor macro for all compilations driven by this compiler "
"object. If the same macro is defined by :meth:`define_macro` and undefined "
"by :meth:`undefine_macro` the last call takes precedence (including multiple "
"redefinitions or undefinitions). If the macro is redefined/undefined on a "
"per-compilation basis (ie. in the call to :meth:`compile`), then that takes "
"precedence."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:464
msgid ""
"Add *object* to the list of object files (or analogues, such as explicitly "
"named library files or the output of \"resource compilers\") to be included "
"in every link driven by this compiler object."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:471
msgid ""
"Set the list of object files (or analogues) to be included in every link to "
"*objects*. This does not affect any standard object files that the linker "
"may include by default (such as system libraries)."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:475
msgid ""
"The following methods implement methods for autodetection of compiler "
"options, providing some functionality similar to GNU :program:`autoconf`."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:481
msgid ""
"Detect the language of a given file, or list of files. Uses the instance "
"attributes :attr:`language_map` (a dictionary), and :attr:`language_order` "
"(a list) to do the job."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:488
msgid ""
"Search the specified list of directories for a static or shared library file "
"*lib* and return the full path to that file. If *debug* is true, look for a "
"debugging version (if that makes sense on the current platform). Return "
"``None`` if *lib* wasn't found in any of the specified directories."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:496
msgid ""
"Return a boolean indicating whether *funcname* is supported on the current "
"platform. The optional arguments can be used to augment the compilation "
"environment by providing additional include files and paths and libraries "
"and paths."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:504
msgid ""
"Return the compiler option to add *dir* to the list of directories searched "
"for libraries."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:510
msgid ""
"Return the compiler option to add *dir* to the list of libraries linked into "
"the shared library or executable."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:516
msgid ""
"Return the compiler option to add *dir* to the list of directories searched "
"for runtime libraries."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:522
msgid ""
"Define the executables (and options for them) that will be run to perform "
"the various stages of compilation. The exact set of executables that may be "
"specified here depends on the compiler class (via the 'executables' class "
"attribute), but most will have:"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:528
msgid "attribute"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:530
msgid "*compiler*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:530
msgid "the C/C++ compiler"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:532
msgid "*linker_so*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:532
msgid "linker used to create shared objects and libraries"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:535
msgid "*linker_exe*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:535
msgid "linker used to create binary executables"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:537
msgid "*archiver*"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:537
msgid "static library creator"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:540
msgid ""
"On platforms with a command-line (Unix, DOS/Windows), each of these is a "
"string that will be split into executable name and (optional) list of "
"arguments. (Splitting the string is done similarly to how Unix shells "
"operate: words are delimited by spaces, but quotes and backslashes can "
"override this. See :func:`distutils.util.split_quoted`.)"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:546
msgid "The following methods invoke stages in the build process."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:551
msgid ""
"Compile one or more source files. Generates object files (e.g. transforms "
"a :file:`.c` file to a :file:`.o` file.)"
msgstr ""
#: ../src/Doc/distutils/apiref.rst:554
msgid ""
"*sources* must be a list of filenames, most likely C/C++ files, but in "
"reality anything that can be handled by a particular compiler and compiler "
"class (eg. :class:`MSVCCompiler` can handle resource files in *sources*). "
"Return a list of object filenames, one per source filename in *sources*. "
"Depending on the implementation, not all source files will necessarily be "
"compiled, but all corresponding object filenames will be returned."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:561
msgid ""
"If *output_dir* is given, object files will be put under it, while retaining "
"their original path component. That is, :file:`foo/bar.c` normally compiles "
"to :file:`foo/bar.o` (for a Unix implementation); if *output_dir* is "
"*build*, then it would compile to :file:`build/foo/bar.o`."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:566
msgid ""
"*macros*, if given, must be a list of macro definitions. A macro definition "
"is either a ``(name, value)`` 2-tuple or a ``(name,)`` 1-tuple. The former "
"defines a macro; if the value is ``None``, the macro is defined without an "
"explicit value. The 1-tuple case undefines a macro. Later definitions/"
"redefinitions/undefinitions take precedence."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:572
msgid ""
"*include_dirs*, if given, must be a list of strings, the directories to add "
"to the default include file search path for this compilation only."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:575
msgid ""
"*debug* is a boolean; if true, the compiler will be instructed to output "
"debug symbols in (or alongside) the object file(s)."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:578
msgid ""
"*extra_preargs* and *extra_postargs* are implementation-dependent. On "
"platforms that have the notion of a command-line (e.g. Unix, DOS/Windows), "
"they are most likely lists of strings: extra command-line arguments to "
"prepend/append to the compiler command line. On other platforms, consult "
"the implementation class documentation. In any event, they are intended as "
"an escape hatch for those occasions when the abstract compiler framework "
"doesn't cut the mustard."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:585
msgid ""
"*depends*, if given, is a list of filenames that all targets depend on. If "
"a source file is older than any file in depends, then the source file will "
"be recompiled. This supports dependency tracking, but only at a coarse "
"granularity."
msgstr ""
#: ../src/Doc/distutils/apiref.rst:590
msgid "Raises :exc:`CompileError` on failure."