- Notifications
You must be signed in to change notification settings - Fork266
update translations for module library/glob.po#245
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
library/glob.po Outdated
#: ../Doc/library/glob.rst:23 | ||
msgid "" | ||
"For a literal match, wrap the meta-characters in brackets. For example, " | ||
"``'[?]'`` matches the character ``'?'``." | ||
msgstr "" | ||
"Pour une correspondance littérale, il faut entourer le métacaractère par des " | ||
"crochets =. Par exemple, ``'[?]'`` reconnaîtra le caractère ``'?'``." |
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.
Un=
qui traîne ?
library/glob.po Outdated
@@ -53,29 +71,44 @@ msgid "" | |||
"`../../Tools/\\*/\\*.gif`), and can contain shell-style wildcards. Broken " | |||
"symlinks are included in the results (as in the shell)." | |||
msgstr "" | |||
"Retourne une liste, potentiellement vide, de chemins d'accès correspond au " |
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.
correspondant*
julienvitard commentedJul 12, 2018 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
fix#224, j'ai appliqué les modifications demandées. |
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.
Merci de cette contribution.
Il me semble que dans le reste de la documentation, on utilise "chemin" tout court pour les emplacements dans les systèmes de fichiers.
Je mettrais les phrases au futur en anglais au présent en français, sauf si cela ne fait plus sens (le futur anglais est idiomatique).
library/glob.po Outdated
@@ -34,16 +37,31 @@ msgid "" | |||
"as special cases. (For tilde and shell variable expansion, use :func:`os." | |||
"path.expanduser` and :func:`os.path.expandvars`.)" | |||
msgstr "" | |||
"Le module :mod:`glob` recherche tous les chemins d'accès correspondant à un " | |||
"motif particulier selon les règles utilisées par le shell Unix, les " | |||
"résultats sont retournés dans un ordre arbitraire. Aucun remplacement du " |
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/retournés/renvoyés/ pour être en cohérence avec le reste de documentation (remarque globale).
library/glob.po Outdated
"fnmatch` de concert, et sans invoquer une sous-commande. Notons qu'à la " | ||
"différence de :func:`fnmatch.fnmatch`, :mod:`glob` traite les noms de " | ||
"fichiers commençant par un point (``.``) comme des cas spéciaux. (Pour " | ||
"remplacer le tilde et les variables shell, nous préférerons utiliser les " |
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/nous préférerons/ nous vous conseillons/ ?
library/glob.po Outdated
#: ../Doc/library/glob.rst:53 | ||
msgid "" | ||
"Return an :term:`iterator` which yields the same values as :func:`glob` " | ||
"without actually storing them all simultaneously." | ||
msgstr "" | ||
"Retourne un :term:`iterator` qui renvoit les mêmes valeurs que :func:`glob`, " |
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/renvoit/renvoie/
library/glob.po Outdated
#: ../Doc/library/glob.rst:53 | ||
msgid "" | ||
"Return an :term:`iterator` which yields the same values as :func:`glob` " | ||
"without actually storing them all simultaneously." | ||
msgstr "" | ||
"Retourne un :term:`iterator` qui renvoit les mêmes valeurs que :func:`glob`, " | ||
"sans tous les charger en mémoire simultanément." |
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/tous/toutes/ (les valeurs ?)
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.
Juste un point : nous utilisons "renvoyer" pour "to return" et "gérer" pour "to support".
Merci pour les remarques, je viens d'appliquer les corrections |
@JulienPalard: les modifications sont effectuées |
fix#224