-
-
Notifications
You must be signed in to change notification settings - Fork 264
started translating library/dis.po #687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
38854a9
ea08961
0b25640
ed95812
f06bddc
2603bc1
2520446
4ad28ef
4860847
46e0e8e
b19597a
ed3dfad
de78228
28c9952
489f8bf
226ed83
f4d32c6
d0e1583
9c48a2e
9e3e3d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -6,7 +6,7 @@ msgstr "" | |||||
"Project-Id-Version: Python 3.6\n" | ||||||
"Report-Msgid-Bugs-To: \n" | ||||||
"POT-Creation-Date: 2018-10-12 18:59+0200\n" | ||||||
"PO-Revision-Date: 2019-04-12 12:37+0200\n" | ||||||
"PO-Revision-Date: 2019-04-12 12:59+0200\n" | ||||||
"Language-Team: FRENCH <traductions@lists.afpy.org>\n" | ||||||
"Language: fr\n" | ||||||
"MIME-Version: 1.0\n" | ||||||
|
@@ -17,7 +17,7 @@ msgstr "" | |||||
|
||||||
#: ../Doc/library/dis.rst:2 | ||||||
msgid ":mod:`dis` --- Disassembler for Python bytecode" | ||||||
msgstr ":mod:`dis` – Désassembleur pour le code octal de Python " | ||||||
msgstr ":mod:`dis` – Désassembleur pour le code octal de Python" | ||||||
|
||||||
#: ../Doc/library/dis.rst:7 | ||||||
msgid "**Source code:** :source:`Lib/dis.py`" | ||||||
|
@@ -32,10 +32,9 @@ msgstr "" | |||||
"La librairie :mod:`dis` supporte l'analyse du :term:`code octal` CPython en le " | ||||||
"désassemblant. Le code octal CPython, que cette librairie prend en paramètre, est " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"défini dans le fichier :file:`Include/opcode.h` et est utilisé par le compilateur et " | ||||||
"l'interpréteur. " | ||||||
"l'interpréteur." | ||||||
|
||||||
#: ../Doc/library/dis.rst:18 | ||||||
#, fuzzy | ||||||
msgid "" | ||||||
"Bytecode is an implementation detail of the CPython interpreter. No guarantees are " | ||||||
"made that bytecode will not be added, removed, or changed between versions of " | ||||||
|
@@ -45,15 +44,15 @@ msgstr "" | |||||
"Le code octal est un détail d'implémentation de l'interpréteur CPython. Il n'y a pas " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"de garantie que le code octal sera ajouté, retiré, ou modifié dans les différentes " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"versions de Python. L'utilisation de cette librairie ne fonctionne pas nécessairement " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"sur les machines virtuelles Python ni les differentes versions de Python. " | ||||||
"sur les machines virtuelles Python ni les différentes versions de Python." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:23 | ||||||
msgid "" | ||||||
"Use 2 bytes for each instruction. Previously the number of bytes varied by " | ||||||
"instruction." | ||||||
msgstr "" | ||||||
"Utilisez 2 bits pour chaque instruction. Avant, le nombre de bits variait par " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"instruction. " | ||||||
"instruction." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:28 | ||||||
msgid "Example: Given the function :func:`myfunc`::" | ||||||
|
@@ -67,7 +66,7 @@ msgstr "" | |||||
|
||||||
#: ../Doc/library/dis.rst:42 | ||||||
msgid "(The \"2\" is a line number)." | ||||||
msgstr "(Le \"2\" est un numéro de ligne). " | ||||||
msgstr "(Le \"2\" est un numéro de ligne)." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
En français, on ne met pas de phrase complète entre parenthèses. |
||||||
|
||||||
#: ../Doc/library/dis.rst:45 | ||||||
msgid "Bytecode analysis" | ||||||
|
@@ -82,15 +81,14 @@ msgstr "" | |||||
"une classe :class:`Bytecode`, qui permet un accès facile aux détails du code compilé." | ||||||
|
||||||
#: ../Doc/library/dis.rst:56 | ||||||
#, fuzzy | ||||||
msgid "" | ||||||
"Analyse the bytecode corresponding to a function, generator, asynchronous generator, " | ||||||
"coroutine, method, string of source code, or a code object (as returned by :func:" | ||||||
"`compile`)." | ||||||
msgstr "" | ||||||
"Analyse le code octal correspondant à une fonction, un générateur, un générateur " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"asynchrone, une coroutine, une méthode, une chaîne de caractères du code source, ou " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
En français, on ne met normalement pas de virgule avant le dernier terme d'une énumération introduit par une conjonction de coordination. |
||||||
"bien une classe (comme retourne la fonction :func:`compile`). " | ||||||
"bien une classe (comme retourne la fonction :func:`compile`)." | ||||||
|
||||||
#: ../Doc/library/dis.rst:60 | ||||||
msgid "" | ||||||
|
@@ -111,7 +109,7 @@ msgstr "" | |||||
"Si *first_line* ne vaut pas ``None``, elle indique le nombre de la ligne qui doit " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"être considérée comme première ligne source dans le code désassemblé. Autrement, les " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"informations sur la ligne source sont prises directement à partir de la classe du " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"code désassemblé. " | ||||||
"code désassemblé." | ||||||
|
||||||
#: ../Doc/library/dis.rst:69 | ||||||
msgid "" | ||||||
|
@@ -121,7 +119,7 @@ msgid "" | |||||
msgstr "" | ||||||
"Si la valeur de *current_offset* est différente de ``None``, c'est une référence à un " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"offset d'une instruction dans le code désassemblé. Cela veut dire que :meth:`.dis` va " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"générer un marqueur de \" l'instruction en cours\" contre l'code d'opération donné." | ||||||
"générer un marqueur de \" l'instruction en cours\" contre le code d'opération donné." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:75 | ||||||
msgid "" | ||||||
|
@@ -133,7 +131,7 @@ msgstr "" | |||||
|
||||||
#: ../Doc/library/dis.rst:80 | ||||||
msgid "The compiled code object." | ||||||
msgstr "Le code compilé objet" | ||||||
msgstr "Le code compilé objet." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:84 | ||||||
msgid "The first source line of the code object (if available)" | ||||||
|
@@ -145,7 +143,7 @@ msgid "" | |||||
"dis`, but returned as a multi-line string)." | ||||||
msgstr "" | ||||||
"Retourne une vue formatée des opérations du code octal (la même que celle envoyée " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"par :func:`dis.dis`, mais comme une chaîne de caractères de plusieurs lignes ). " | ||||||
"par :func:`dis.dis`, mais comme une chaîne de caractères de plusieurs lignes )." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:93 | ||||||
msgid "" | ||||||
|
@@ -176,7 +174,7 @@ msgstr "" | |||||
"La librairie :mod:`dis` comprend également l'analyse des fonctions suivantes, qui " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"envoient l'entrée directement à la sortie souhaitée. Elles peuvent être utiles si il " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"n'y a qu'une seule opération en cours, l'analyse intermédiaire objet n'est donc pas " | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"utile dans ce cas là. " | ||||||
"utile dans ce cas là." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
#: ../Doc/library/dis.rst:120 | ||||||
msgid "" | ||||||
|
@@ -217,7 +215,7 @@ msgstr "" | |||||
#: ../Doc/library/dis.rst:145 ../Doc/library/dis.rst:170 ../Doc/library/dis.rst:189 | ||||||
#: ../Doc/library/dis.rst:213 | ||||||
msgid "Added *file* parameter." | ||||||
msgstr "Ajout du paramètre *file*" | ||||||
msgstr "Ajout du paramètre *file*." | ||||||
|
||||||
#: ../Doc/library/dis.rst:151 | ||||||
msgid "" | ||||||
|
@@ -285,7 +283,7 @@ msgstr "" | |||||
|
||||||
#: ../Doc/library/dis.rst:199 | ||||||
msgid "the line number, for the first instruction of each line" | ||||||
msgstr "le numéro de ligne, pour la première instruction de chaque ligne." | ||||||
msgstr "le numéro de ligne, pour la première instruction de chaque ligne" | ||||||
|
||||||
#: ../Doc/library/dis.rst:200 | ||||||
msgid "the current instruction, indicated as ``-->``," | ||||||
|
@@ -309,7 +307,7 @@ msgstr "paramètres de l'opération, et" | |||||
|
||||||
#: ../Doc/library/dis.rst:205 | ||||||
msgid "interpretation of the parameters in parentheses." | ||||||
msgstr "interprétation des paramètres entre parenthèses" | ||||||
msgstr "interprétation des paramètres entre parenthèses." | ||||||
|
||||||
#: ../Doc/library/dis.rst:207 | ||||||
msgid "" | ||||||
|
@@ -325,7 +323,7 @@ msgid "" | |||||
"code string or code object." | ||||||
msgstr "" | ||||||
"Retourne un itérateur sur les instructions dans la fonction fournie, la méthode, les " | ||||||
"chaînes de caractères du code source ou objet. " | ||||||
"chaînes de caractères du code source ou objet." | ||||||
|
||||||
#: ../Doc/library/dis.rst:222 | ||||||
msgid "" | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.