-
Notifications
You must be signed in to change notification settings - Fork 265
Traduction de library/typing.po #1020
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
ed8855d
Traduction de library/typing.po
Kydlaw 3679e78
Update library/typing.po
Kydlaw 2e94a3c
Update library/typing.po
Kydlaw d51d0e6
Update library/typing.po
Kydlaw e332437
Update library/typing.po
Kydlaw 5a804b8
Update library/typing.po
Kydlaw a94f191
Update library/typing.po
Kydlaw 6c64e9e
Update library/typing.po
Kydlaw 683fa85
Update library/typing.po
Kydlaw c52bee2
Update library/typing.po
Kydlaw 1fbddb1
Update library/typing.po
Kydlaw c47728c
Update library/typing.po
Kydlaw d65eca8
Update library/typing.po
Kydlaw 79e6a68
Update library/typing.po
Kydlaw 72f801b
Update library/typing.po
Kydlaw 0f501e8
Update library/typing.po
Kydlaw 4207fb5
Update library/typing.po
Kydlaw 759fd64
Update library/typing.po
Kydlaw f043901
Update library/typing.po
Kydlaw f8aa0c0
Update library/typing.po
Kydlaw c336481
Update library/typing.po
Kydlaw 2d1a223
Update library/typing.po
Kydlaw 269c126
Update library/typing.po
Kydlaw f7615ec
Update library/typing.po
Kydlaw ecd8aae
Apply suggestions from code review
Kydlaw 665a349
Apply suggestions from code review
Kydlaw 07ad2e5
Corrections #1
Kydlaw dbac27d
Merge branch 'library-typing' of github.com:Kydlaw/python-docs-fr int…
Kydlaw 34027c6
Apply suggestions from code review
Kydlaw 9ae4336
Apply suggestions from code review
deronnax 22e3634
Merge branch '3.8' into library-typing
christopheNan 7f615cc
Apply suggestions from code review
deronnax b19ea65
suggestions manquantes + réparation balisage + wrapping
deronnax 53ea1cf
encore des corrections
deronnax c29cff4
retourne -> renvoie
deronnax 2d76f2c
pospell + corrections
deronnax a7f3523
contrevariant(e) -> contravariant(e)
deronnax 1c631f9
ajoute "contravariante(s)" au dictionnaire
deronnax d72b0aa
Apply suggestions from code review
deronnax 74cc934
wrapping
deronnax 6b14b0e
ne pas traduire les :term:
deronnax File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
pospell + corrections
- Loading branch information
commit 2d76f2cd0052a6abce2355cff7443d024804e6d6
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -963,7 +963,7 @@ msgid "" | |||||
"manner that is compatible with both Python 2 and Python 3::" | ||||||
msgstr "" | ||||||
"Utilisez ``Text`` pour indiquer qu'une valeur doit contenir une chaîne " | ||||||
"unicode d'une manière compatible avec Python 2 et Python 3 ::" | ||||||
"Unicode d'une manière compatible avec Python 2 et Python 3 ::" | ||||||
|
||||||
#: ../Doc/library/typing.rst:896 | ||||||
msgid "" | ||||||
|
@@ -1017,9 +1017,9 @@ msgid "" | |||||
"attribute both of which are part of the namedtuple API.)" | ||||||
msgstr "" | ||||||
"La classe résultante a un attribut supplémentaire ``__annotations__`` " | ||||||
"donnant un dict qui associe les noms des champs aux types de champs. (Les " | ||||||
"noms des champs sont dans l'attribut ``_fields`` et les valeurs par défaut " | ||||||
"sont dans l'attribut ``_field_defaults`` qui font partie de l'API " | ||||||
"donnant un dictionnaire qui associe les noms des champs aux types de champs. " | ||||||
"(Les noms des champs sont dans l'attribut ``_fields`` et les valeurs par " | ||||||
"défaut sont dans l'attribut ``_field_defaults`` qui font partie de l'API " | ||||||
"*namedtuple*.)" | ||||||
|
||||||
#: ../Doc/library/typing.rst:942 | ||||||
|
@@ -1179,8 +1179,8 @@ msgid "" | |||||
msgstr "" | ||||||
"Pour un objet de typage de la forme ``X[Y, Z, ....]``, ces fonctions " | ||||||
"renvoient ``X`` et ``(Y, Z,...)``. Si ``X`` est un alias pour une classe " | ||||||
"builtin ou :mod:`collections`, il est normalisé à la classe originale. Pour " | ||||||
"les objets non supportés, renvoie ``None`` et ``()`` en conséquence. " | ||||||
"native ou de :mod:`collections`, il est normalisé en la classe originale. " | ||||||
"Pour les objets non supportés, renvoie ``None`` et ``()`` en conséquence. " | ||||||
"Exemples ::" | ||||||
|
||||||
#: ../Doc/library/typing.rst:1065 | ||||||
|
@@ -1281,8 +1281,8 @@ msgid "" | |||||
msgstr "" | ||||||
"Ce décorateur n'est pas disponible à l'exécution. Il est principalement " | ||||||
"destiné à marquer les classes qui sont définies dans des fichiers séparés " | ||||||
"spécifiqueselli de type si une implémentation renvoie une instance d'une " | ||||||
"classe privée :: 8000 " | ||||||
"d'annotations de type (*type stub file*, en anglais) si une implémentation " | ||||||
"renvoie une instance d'une classe privée ::" | ||||||
|
||||||
#: ../Doc/library/typing.rst:1148 | ||||||
msgid "" | ||||||
|
@@ -1306,8 +1306,8 @@ msgstr "" | |||||
"Un tel protocole peut être utilisé avec :func:`isinstance` et :func:" | ||||||
"`issubclass`. Cela lève :exc:`TypeError` lorsqu'il est appliqué à une classe " | ||||||
"non protocole. Cela permet un contrôle structurel compréhensible, très " | ||||||
"similaire à \"one trick poneys\" dans :mod:`collections.abc` tel que :class:" | ||||||
"`Iterable`. Par exemple ::" | ||||||
"similaire aux « classes qui ne savent faire qu'une chose » présentes dans :" | ||||||
"mod:`collections.abc` tel que :class:`Iterable`. Par exemple ::" | ||||||
|
||||||
#: ../Doc/library/typing.rst:1166 | ||||||
msgid "" | ||||||
|
@@ -1331,7 +1331,7 @@ msgstr ":data:`Any` est compatible avec tous les types." | |||||
|
||||||
#: ../Doc/library/typing.rst:1180 | ||||||
msgid "Special type indicating that a function never returns. For example::" | ||||||
msgstr "Type spécial indiquant qu'une fonction ne renvoit rien. Par exemple ::" | ||||||
msgstr "Type spécial indiquant qu'une fonction ne renvoie rien. Par exemple ::" | ||||||
|
||||||
#: ../Doc/library/typing.rst:1193 | ||||||
msgid "Union type; ``Union[X, Y]`` means either X or Y." | ||||||
|
@@ -1431,8 +1431,8 @@ msgid "" | |||||
"float and a string." | ||||||
msgstr "" | ||||||
"Exemple : ``Tuple[T1, T2]`` est un tuple de deux éléments correspondant aux " | ||||||
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
|
||||||
"variables de type T1 et T2. ``Tuple[int, float, str]`` est un tuple d'un " | ||||||
"int, d'un float et d'une chaîne." | ||||||
"variables de type ``T1`` et ``T2``. ``Tuple[int, float, str]`` est un tuple " | ||||||
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'un entier, d'un flottant et d'une chaîne de caractères." | ||||||
|
||||||
#: ../Doc/library/typing.rst:1255 | ||||||
msgid "" | ||||||
|
@@ -1447,7 +1447,8 @@ msgstr "" | |||||
#: ../Doc/library/typing.rst:1261 | ||||||
msgid "Callable type; ``Callable[[int], str]`` is a function of (int) -> str." | ||||||
msgstr "" | ||||||
"Type Appelable ; ``Callable[[int], str]`` est une fonction de (int) -> str." | ||||||
"Type Appelable. ``Callable[[int], str]`` est une fonction de type ``(int) -> " | ||||||
"str``." | ||||||
|
||||||
#: ../Doc/library/typing.rst:1263 | ||||||
msgid "" | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.