Skip to content

Translate library/lzma.po #135

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 19 commits into from
Sep 27, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Translation lzma.po (10%)
  • Loading branch information
stevostean committed Jan 23, 2018
commit 57027a936428a987e8909938adb31d6800704776
39 changes: 32 additions & 7 deletions library/lzma.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"PO-Revision-Date: 2018-01-10 22:13+0100\n"
"PO-Revision-Date: 2018-01-23 09:57+0100\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand All @@ -33,11 +33,11 @@ msgid ""
"file interface supporting the ``.xz`` and legacy ``.lzma`` file formats used "
"by the :program:`xz` utility, as well as raw compressed streams."
msgstr ""
"Ce module fournit des classes et des fonctions utiles pour comprimer et "
"décompresser des données en utilisant l'algorithme LZMA. Il "
"ya aussi une interface de fichier prenant en charge les formats de fichiers "
"``. xz`` et son format originel ``. lzma``` utilisés par l'utilitaire :"
"program:`xz`, ainsi que les flux bruts compressés."
"Ce module fournit des classes et des fonctions utiles pour compresser et "
"décompresser des données en utilisant l'algorithme LZMA. Il contient aussi "
"une interface de gestion de fichiers prenant en charge les formats de "
"fichiers ``.xz`` et son format originel ``.lzma`` utilisés par l'utilitaire :"
"program:`xz`, ainsi que des flux bruts compressés."

#: ../Doc/library/lzma.rst:21
msgid ""
Expand All @@ -47,22 +47,32 @@ msgid ""
"`LZMAFile` instance from multiple threads, it is necessary to protect it "
"with a lock."
msgstr ""
"L'interface disponible par ce module ressemble en de nombreux points à celle "
"du module :mod:`bz2`. Cependant, notez que la :class:`LZMAFile` n'est pas "
"*thread-safe*, comme l'est la :class:`bz2.BZ2File`. Donc, si vous souhaitez "
"utiliser une seule instance de :class:`LZMAFile` pour plusieurs fils, il "
"sera alors nécessaire de la protéger avec un verrou (*lock*)."

#: ../Doc/library/lzma.rst:29
msgid ""
"This exception is raised when an error occurs during compression or "
"decompression, or while initializing the compressor/decompressor state."
msgstr ""
"Cette exception est levée dès lors qu'une erreur survient pendant la "
"compression ou la décompression, ou pendant l'initialisation de l'état de la "
"compression/décompression."

#: ../Doc/library/lzma.rst:34
msgid "Reading and writing compressed files"
msgstr ""
msgstr "Lire et écrire des fichiers compressés"

#: ../Doc/library/lzma.rst:38
msgid ""
"Open an LZMA-compressed file in binary or text mode, returning a :term:`file "
"object`."
msgstr ""
"Ouvre un fichier compressé sous LZMA en mode binaire ou texte, retourne un :"
"term:`file object`."

#: ../Doc/library/lzma.rst:41
msgid ""
Expand All @@ -71,6 +81,10 @@ msgid ""
"which case the named file is opened, or it can be an existing file object to "
"read from or write to."
msgstr ""
"L'argument *nom de fichier* peut être soit le nom d'un fichier à créer "
"(donné pour :class:`str`, :class:`bytes` ou un objet :term:`path-like <path-"
"like object>`), dont le fichier nommé reste ouvert, ou soit un objet fichier "
"existant à lire ou à écrire."

#: ../Doc/library/lzma.rst:46
msgid ""
Expand All @@ -79,19 +93,30 @@ msgid ""
"\"rt\"``, ``\"wt\"``, ``\"xt\"``, or ``\"at\"`` for text mode. The default "
"is ``\"rb\"``."
msgstr ""
"L'argument *mode* peut être n'importe quel argument suivant : ``\"r\"``, ``"
"\"rb\"``, ``\"w\"``, ``\"wb\"``, ``\"x\"``, ``\"xb\"``, ``\"a\"`` ou ``\"ab"
"\"`` pour le mode binaire, ou ``\"rt\"``, ``\"wt\"``, ``\"xt\"``, ou ``\"at"
"\"`` pour le mode texte. La valeur par défaut est ``\"rb\"``."

#: ../Doc/library/lzma.rst:50 ../Doc/library/lzma.rst:95
msgid ""
"When opening a file for reading, the *format* and *filters* arguments have "
"the same meanings as for :class:`LZMADecompressor`. In this case, the "
"*check* and *preset* arguments should not be used."
msgstr ""
"Quand un fichier est ouvert pour le lire, les arguments *format* et "
"*filtres* ont les mêmes significations que pour la :class:"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*filters* est à laisser tel quel, c'est le nom d'un paramètre qui ne sera donc pas traduit.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fait.

"`LZMADecompressor`. Par conséquent, les arguments *vérifié* et *préréglage* "
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idem, ne pas traduire les noms des paramètres.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fait.

"ne devront pas être sollicités."

#: ../Doc/library/lzma.rst:54 ../Doc/library/lzma.rst:99
msgid ""
"When opening a file for writing, the *format*, *check*, *preset* and "
"*filters* arguments have the same meanings as for :class:`LZMACompressor`."
msgstr ""
"Dès ouverture d'un fichier pour l'écriture, les arguments *format*, "
"*vérifié*, *préréglage* et *filtres* ont le même sens que dans la :class:"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idem nom de paramètres.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fait.

"`LZMACompressor`."

#: ../Doc/library/lzma.rst:57
msgid ""
Expand Down