8000 library/json.po: fuzzies (#1878) · python/python-docs-fr@2395178 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2395178

Browse files
Mathieu DupuyJulienPalard
authored andcommitted
library/json.po: fuzzies (#1878)
1 parent 5595763 commit 2395178

File tree

1 file changed

+21
-24
lines changed

1 file changed

+21
-24
lines changed

library/json.po

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2022-05-22 23:13+0200\n"
9-
"PO-Revision-Date: 2021-07-28 18:57+0200\n"
9+
"PO-Revision-Date: 2022-05-21 10:32+0200\n"
1010
"Last-Translator: Caliendo Julien <caliendo@hotmail.fr>\n"
1111
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
16-
"X-Generator: Poedit 2.4.1\n"
16+
"X-Generator: Poedit 3.0.1\n"
1717

1818
#: library/json.rst:2
1919
msgid ":mod:`json` --- JSON encoder and decoder"
@@ -24,7 +24,6 @@ msgid "**Source code:** :source:`Lib/json/__init__.py`"
2424
msgstr "**Code source :** :source:`Lib/json/__init__.py`"
2525

2626
#: library/json.rst:14
27-
#, fuzzy
2827
msgid ""
2928
"`JSON (JavaScript Object Notation) <https://json.org>`_, specified by :rfc:"
3029
"`7159` (which obsoletes :rfc:`4627`) and by `ECMA-404 <https://www.ecma-"
@@ -33,12 +32,13 @@ msgid ""
3332
"wikipedia.org/wiki/JavaScript>`_ object literal syntax (although it is not a "
3433
"strict subset of JavaScript [#rfc-errata]_ )."
3534
msgstr ""
36-
"`JSON (JavaScript Object Notation) <http://json.org>`_, décrit par la :rfc:"
35+
"`JSON (JavaScript Object Notation) <https://json.org>`_, décrit par la :rfc:"
3736
"`7159` (qui rend la :rfc:`4627` obsolète) et par le standard `ECMA-404 "
38-
"<http://www.ecma-international.org/publications/standards/Ecma-404.htm>`_, "
39-
"est un format très simple d'échange de données inspiré par la syntaxe des "
40-
"objets littéraux de `JavaScript <https://fr.wikipedia.org/wiki/JavaScript>`_ "
41-
"(bien que ce ne soit pas un sous-ensemble de Javascript [#rfc-errata]_ )."
37+
"<https://www.ecma-international.org/publications-and-standards/standards/"
38+
"ecma-404/>`_, est un format très simple d'échange de données inspiré par la "
39+
"syntaxe des objets littéraux de `JavaScript <https://fr.wikipedia.org/wiki/"
40+
"JavaScript>`_ (bien que ce ne soit pas un sous-ensemble de Javascript [#rfc-"
41+
"errata]_ )."
4242

4343
#: library/json.rst:21
4444
msgid ""
@@ -148,15 +148,14 @@ msgstr ""
148148
"sont écrits tels quels."
149149

150150
#: library/json.rst:153
151-
#, fuzzy
152151
msgid ""
153152
"If *check_circular* is false (default: ``True``), then the circular "
154153
"reference check for container types will be skipped and a circular reference "
155154
"will result in a :exc:`RecursionError` (or worse)."
156155
msgstr ""
157156
"Si *check_circular* vaut ``False`` (``True`` par défaut), la vérification "
158157
"des références circulaires pour les conteneurs est ignorée, et une référence "
159-
"circulaire cause une :exc:`OverflowError` (ou pire)."
158+
"circulaire cause une :exc:`RecursionError` (ou pire)."
160159

161160
#: library/json.rst:157
162161
msgid ""
@@ -183,12 +182,12 @@ msgid ""
183182
msgstr ""
184183
"Si *indent* est un nombre entier positif ou une chaîne de caractères, les "
185184
"éléments de tableaux et les membres d'objets JSON sont affichés élégamment "
186-
"avec ce niveau d'indentation. Un niveau d'indentation de 0, négatif, ou "
187-
"``\"\"`` n'insère que des retours à la ligne. ``None`` (la valeur par "
188-
"défaut) choisit la représentation la plus compacte. Utiliser un entier "
189-
"positif pour *indent* indente d'autant d'espaces par niveau. Si *indent* est "
190-
"une chaîne (telle que ``\"\\t\"``), cette chaîne est utilisée pour indenter "
191-
"à chaque niveau."
185+
"avec ce niveau d'indentation. Un niveau d'indentation de 0, négatif, ou ``"
186+
"\"\"`` n'insère que des retours à la ligne. ``None`` (la valeur par défaut) "
187+
"choisit la représentation la plus compacte. Utiliser un entier positif pour "
188+
"*indent* indente d'autant d'espaces par niveau. Si *indent* est une chaîne "
189+
"(telle que ``\"\\t\"``), cette chaîne est utilisée pour indenter à chaque "
190+
"niveau."
192191

193192
#: library/json.rst:448
194193
msgid "Allow strings for *indent* in addition to integers."
@@ -647,7 +646,6 @@ msgstr ""
647646
"simplement ignorés."
648647

649648
#: library/json.rst:426
650-
#, fuzzy
651649
msgid ""
652650
"If *check_circular* is true (the default), then lists, dicts, and custom "
653651
"encoded objects will be checked for circular references during encoding to "
@@ -657,7 +655,7 @@ msgstr ""
657655
"Si *check_circular* vaut ``True`` (valeur par défaut), une vérification a "
658656
"lieu sur les listes, dictionnaires et objets personnalisés, afin de détecter "
659657
"les références circulaires et éviter les récursions infinies (qui "
660-
"causeraient une :exc:`OverflowError`). Autrement, la vérification n'a pas "
658+
"causeraient une :exc:`RecursionError`). Autrement, la vérification n'a pas "
661659
"lieu."
662660

663661
#: library/json.rst:431
@@ -751,7 +749,6 @@ msgid "Standard Compliance and Interoperability"
751749
msgstr "Conformité au standard et Interopérabilité"
752750

753751
#: library/json.rst:539
754-
#, fuzzy
755752
msgid ""
756753
"The JSON format is specified by :rfc:`7159` and by `ECMA-404 <https://www."
757754
"ecma-international.org/publications-and-standards/standards/ecma-404/>`_. "
@@ -760,11 +757,11 @@ msgid ""
760757
"parameters other than those explicitly mentioned, are not considered."
761758
msgstr ""
762759
"Le format JSON est décrit par la :rfc:`7159` et le standard `ECMA-404 "
763-
"<http://www.ecma-international.org/publications/standards/Ecma-404.htm>`_. "
764-
"Cette section détaille la conformité à la RFC au niveau du module. Pour "
765-
"faire simple, les sous-classes de :class:`JSONEncoder` et :class:"
766-
"`JSONDecoder`, et les paramètres autres que ceux explicitement mentionnés ne "
767-
"sont pas considérés."
760+
"<https://www.ecma-international.org/publications-and-standards/standards/"
761+
"ecma-404/>`_. Cette section détaille la conformité à la RFC au niveau du "
762+
"module. Pour faire simple, les sous-classes de :class:`JSONEncoder` et :"
763+
"class:`JSONDecoder`, et les paramètres autres que ceux explicitement "
764+
"mentionnés ne sont pas considérés."
768765

769766
#: library/json.rst:545
770767
msgid ""

0 commit comments

Comments
 (0)
0