-
Notifications
You must be signed in to change notification settings - Fork 265
Translation of tarfile.po from english to french #1274
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
32 commits
Select commit
Hold shift + click to select a range
b6bd708
Translation for tarfile.po from english to french
JulienPalard a567607
Fix to make serve working correctly
Sim4n6 814ebf8
Text improvement
Sim4n6 9616976
Update library/tarfile.po
Sim4n6 6ed5a7b
Update library/tarfile.po
Sim4n6 5bb03c4
Update library/tarfile.po
Sim4n6 012493f
Update library/tarfile.po
Sim4n6 a254d34
Update library/tarfile.po
Sim4n6 8c78ec3
Update library/tarfile.po
Sim4n6 e7025ab
Update library/tarfile.po
Sim4n6 81b46a5
Update library/tarfile.po
Sim4n6 03b1fba
Update library/tarfile.po
Sim4n6 cae624d
Update library/tarfile.po
Sim4n6 e1fa381
Update library/tarfile.po
Sim4n6 c0749b1
Update library/tarfile.po
Sim4n6 43097e4
Update library/tarfile.po
Sim4n6 6d91fb7
Update library/tarfile.po
Sim4n6 6a2a49b
Update library/tarfile.po
Sim4n6 7e0ca4b
Update library/tarfile.po
Sim4n6 43faaf9
Update library/tarfile.po
Sim4n6 8bdaf23
Update library/tarfile.po
Sim4n6 12b3c77
Update library/tarfile.po
Sim4n6 f1c7bed
Update library/tarfile.po
Sim4n6 73f191e
update after re-reading using Poeditor
8000
Sim4n6 0cf7601
Small fix wrap and spell
Sim4n6 fc538a6
Small fix for a runaway space
Sim4n6 f5b25bc
espaces insécable + minuscules pour certaines phrases
deronnax 4290070
Apply suggestions from code review
Sim4n6 b254882
Apply suggestions from code review
Sim4n6 4bfb4d1
Fix of wrapping
Sim4n6 24d48e3
ajoute un marqueur de fuzzy
deronnax 7375913
Useless spaces.
JulienPalard 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
espaces insécable + minuscules pour certaines phrases
- Loading branch information
commit f5b25bc63b7e1b9b788420599bbbe79d0875f529
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 | ||||
---|---|---|---|---|---|---|
|
@@ -52,7 +52,7 @@ msgstr "" | |||||
#: library/tarfile.rst:24 | ||||||
msgid "read/write support for the POSIX.1-1988 (ustar) format." | ||||||
msgstr "" | ||||||
"prise en charge de la lecture/l'écriture pour le format *POSIX.1-1988* " | ||||||
"prise en charge de la lecture/écriture pour le format *POSIX.1-1988* " | ||||||
"(*ustar*)." | ||||||
|
||||||
#: library/tarfile.rst:26 | ||||||
|
@@ -61,16 +61,15 @@ msgid "" | |||||
"*longlink* extensions, read-only support for all variants of the *sparse* " | ||||||
"extension including restoration of sparse files." | ||||||
msgstr "" | ||||||
"prise en charge de la lecture/l'écriture pour le format GNU *tar* incluant " | ||||||
"les extensions *longname* et *longlink*, prise en charge de la lecture seule " | ||||||
"de toutes les variantes de l'extension *sparse* incluant la restauration des " | ||||||
"prise en charge de la lecture/écriture pour le format GNU *tar* incluant les " | ||||||
"extensions *longname* et *longlink*, prise en charge de la lecture seule de " | ||||||
"toutes les variantes de l'extension *sparse* incluant la restauration des " | ||||||
"fichiers discontinus." | ||||||
|
||||||
#: library/tarfile.rst:30 | ||||||
msgid "read/write support for the POSIX.1-2001 (pax) format." | ||||||
msgstr "" | ||||||
"prise en charge de la lecture/l'écriture pour le format *POSIX.1-2001* " | ||||||
"(*pax*)." | ||||||
"prise en charge de la lecture/écriture pour le format *POSIX.1-2001* (*pax*)." | ||||||
|
||||||
#: library/tarfile.rst:32 | ||||||
msgid "" | ||||||
|
@@ -86,7 +85,7 @@ msgstr "" | |||||
|
||||||
#: library/tarfile.rst:36 | ||||||
msgid "Added support for :mod:`lzma` compression." | ||||||
msgstr "Prise en charge de la compression :mod:`lzma`." | ||||||
msgstr "prise en charge de la compression :mod:`lzma`." | ||||||
|
||||||
#: library/tarfile.rst:42 | ||||||
msgid "" | ||||||
|
@@ -292,17 +291,17 @@ msgid "" | |||||
"does not allow random access, see :ref:`tar-examples`. The currently " | ||||||
"possible modes:" | ||||||
msgstr "" | ||||||
"Pour des raisons spéciales, il y a un deuxième format pour le *mode* :" | ||||||
"Pour des raisons spéciales, il y a un deuxième format pour le *mode* : " | ||||||
"``'filemode[compression]'``. :func:`tarfile.open` renvoie un objet :class:" | ||||||
"`TarFile` qui traite ses données comme un flux de blocs. Aucune recherche " | ||||||
"aléatoire ne sera effectuée dans le dossier. S'il est donné, *fileobj* peut " | ||||||
"être n'importe quel objet qui a une méthode :meth:`read` ou :meth:`write` " | ||||||
"(selon le *mode*). Le *bufsize* spécifie la taille du bloc et par défaut à " | ||||||
Sim4n6 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"``20*512`` octets. Utilise cette variante en combinaison avec par exemple " | ||||||
"``sys.stdin``, un socket :term:`file object` ou un dispositif de bande. " | ||||||
"``20*512`` octets. Utilisez cette variante en combinaison avec par exemple " | ||||||
Sim4n6 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"``sys.stdin``, un connecteur :term:`file object` ou un dispositif de bande. " | ||||||
Sim4n6 marked this conversation as resolved.
Show resolved
Hide resolved
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
|
||||||
"Cependant, un tel objet :class:`TarFile` est limité en ce qu'il ne permet " | ||||||
"pas l'accès aléatoire, voir :ref:`tar-examples`. Les modes actuellement " | ||||||
"possibles:" | ||||||
"possibles :" | ||||||
|
||||||
#: library/tarfile.rst:117 | ||||||
msgid "Mode" | ||||||
|
@@ -388,12 +387,12 @@ msgstr "Ouvre un *flux* compressé avec *lzma* en écriture." | |||||
|
||||||
#: library/tarfile.rst:146 library/tarfile.rst:332 | ||||||
msgid "The ``'x'`` (exclusive creation) mode was added." | ||||||
msgstr "Le mode ``'x'`` (création exclusive) a été ajouté." | ||||||
msgstr "le mode ``'x'`` (création exclusive) a été ajouté." | ||||||
|
||||||
|
||||||
#: library/tarfile.rst:149 library/tarfile.rst:335 library/tarfile.rst:503 | ||||||
msgid "The *name* parameter accepts a :term:`path-like object`." | ||||||
msgstr "Le paramètre *name* accepte :term:`path-like object`." | ||||||
msgstr "le paramètre *name* accepte :term:`path-like object`." | ||||||
Sim4n6 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
#: library/tarfile.rst:155 | ||||||
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.