-
- Notifications
You must be signed in to change notification settings - Fork 264
Translate library/gzip.po #368
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
Conversation
| Quelques petits soucis selon le correcteur d'orthographe: |
library/gzip.po Outdated
| "just like the GNU programs :program:`gzip` and :program:`gunzip` would." | ||
| msgstr "" | ||
| "Ce module fournit une interface simple pour compresser et décompresser des " | ||
| "fichiers tout comme les programmes GNU :program:`gzip` et :program:`gunzip` " |
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.
tout comme le font les programmes ....
Il y a un 'a' en trop juste avant le point final du paragraphe.
library/gzip.po Outdated
| "Notez que les formats de fichier supplémentaires qui peuvent être " | ||
| "décompressés par les programmes :program:`gzip` et :program:`gunzip`, comme " | ||
| "ceux produits par le programmes :program:`compress` et :program:`pack`, ne " | ||
| "sont pas supportés par ce module." |
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.
s/supportés/gérés/
library/gzip.po Outdated
| "`bytes` object), or an existing file object to read from or write to." | ||
| msgstr "" | ||
| "L'argument *filename* peut être un nom de fichier (un objet :class:`str` ou :" | ||
| "class:`bytes`) ou un objet fichier existant à lire ou écrire dedans." |
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.
s/à lire ou écrire dedans/que l'on peut lire, ou où l'on peut écrire/
library/gzip.po Outdated
| msgstr "" | ||
| "L'argument *mode* peut-être ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, ``'w'``, " | ||
| "``'wb'``, ``'x'``, ou ``'xb'``, selon que le fichier va être lu ou écrit. " | ||
| "Par défaut prend la valeur du mode de *fileobj* si discernable; sinon, la " |
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.
il manque une espace insécable avant le point-virgule.
library/gzip.po Outdated
| "be provided in compression mode. If omitted or ``None``, the current time " | ||
| "is used. See the :attr:`mtime` attribute for more details." | ||
| msgstr "" | ||
| "L'argument *mtime* est un *timestamp* numérique optionnel à écrire dans le " |
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.
timestamp : groupe date-heure
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.
Cette traduction est introuvable dans la documentation python, timestamp n'est traduit que trois fois par horodatage.
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.
Bien vu. Je prends : #372
library/gzip.po Outdated
| "class:`io.BytesIO` object's :meth:`~io.BytesIO.getvalue` method." | ||
| msgstr "" | ||
| "Appeler la méthode :meth:`close` d'un objet :class:`GzipFile` ne ferme pas " | ||
| "*fileobj*, puisque vous pourriez souhaiter ajouter des informations après " |
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.
pourriez souhaiter ajouter : pourriez avoir besoin d'ajouter (un peu moins lourd ?)
library/gzip.po Outdated
| "including iteration and the :keyword:`with` statement. Only the :meth:" | ||
| "`truncate` method isn't implemented." | ||
| msgstr "" | ||
| ":La classe :class:`GzipFile` supporte l'interface :class:`io." |
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.
s/supporte/implémente/
library/gzip.po Outdated
| "The basic data compression module needed to support the :program:`gzip` file " | ||
| "format." | ||
| msgstr "" | ||
| "Le module de compression de données de base nécessaire pour supporter le " |
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.
s/supporter/gérer/
| Mergé ! Merci \o/ |
Closes #356.