-
Notifications
You must be signed in to change notification settings - Fork 266
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
Fixed fuzzy and punctuation in reference/datamodel.po #628
Conversation
Update from upstream
Merge from upstream
Update fork
@@ -52,7 +52,7 @@ msgstr "" | |||
|
|||
#: ../Doc/reference/datamodel.rst:42 | |||
msgid "For CPython, ``id(x)`` is the memory address where ``x`` is stored." | |||
msgstr "en CPython, ``id(x)`` est l'adresse mémoire où est stocké ``x``." | |||
msgstr "En CPython, ``id(x)`` est l'adresse mémoire où est stocké ``x``." |
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.
Non, après deux-points, on ne met pas de majuscule en français.
@@ -66,7 +66,7 @@ msgstr "" | |||
"l'objet (par exemple, \"a-t-il une longueur ?\") et définit aussi les " | |||
"valeurs possibles pour les objets de ce type. La fonction :func:`type` " | |||
"renvoie le type de l'objet (qui est lui-même un objet). Comme l'identifiant, " | |||
"le :dfn:`type` d'un objet ne peut pas être modifié [#]_." | |||
"le :dfn:`type` d'un objet ne peut pas être modifié. [#]_" |
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.
Non, la référence doit être placée avant le point qui termine la phrase.
@@ -1337,7 +1337,7 @@ msgid "" | |||
"still has live references. To avoid this, copy the dictionary or keep the " | |||
"module around while using its dictionary directly." | |||
msgstr "" | |||
"en raison de la manière dont CPython nettoie les dictionnaires de modules, " | |||
"En raison de la manière dont CPython nettoie les dictionnaires de modules, " |
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.
Non, pas de majuscule après deux-points.
@@ -1961,7 +1961,7 @@ msgstr "" | |||
"correspondante n'est pas disponible. Par exemple, si une classe assigne " | |||
"``None`` à :meth:`__iter__`, vous ne pouvez pas itérer sur la classe et " | |||
"appeler :func:`iter` sur une instance lève :exc:`TypeError` (sans se replier " | |||
"sur :meth:`__getitem__`) [#]_." | |||
"sur :meth:`__getitem__`). [#]_" |
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.
Non, la référence fait partie de la phrase.
@@ -3363,7 +3363,7 @@ msgstr ":pep:`3115` -- Méta-classes dans Python 3000" | |||
#: ../Doc/reference/datamodel.rst:1924 | |||
msgid "Introduced the ``__prepare__`` namespace hook" | |||
msgstr "" | |||
"introduction de la fonction automatique ``__prepare__`` de l'espace de noms" | |||
"Introduction de la fonction automatique ``__prepare__`` de l'espace de noms" |
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.
Ok.
Il faudrait modifier aussi la ligne du dessus en remplaçant '--' par '—'.
Remplacement de '--' par '—'.
Pris en compte par #641. |
Linked to python/cpython#12581
This will close #627