Skip to content

Commit 7b54943

Browse files
author
Mathieu Dupuy
authored
library/json.po: fuzzies (#1878)
1 parent ea615bb commit 7b54943

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-04-05 10:05+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 ""
@@ -162,15 +162,14 @@ msgstr ""
162162
"sont écrits tels quels."
163163

164164
#: library/json.rst:160
165-
#, fuzzy
166165
msgid ""
167166
"If *check_circular* is false (default: ``True``), then the circular "
168167
"reference check for container types will be skipped and a circular reference "
169168
"will result in an :exc:`RecursionError` (or worse)."
170169
msgstr ""
171170
"Si *check_circular* vaut ``False`` (``True`` par défaut), la vérification "
172171
"des références circulaires pour les conteneurs est ignorée, et une référence "
173-
"circulaire cause une :exc:`OverflowError` (ou pire)."
172+
"circulaire cause une :exc:`RecursionError` (ou pire)."
174173

175174
#: library/json.rst:164
176175
msgid ""
@@ -197,12 +196,12 @@ msgid ""
197196
msgstr ""
198197
"Si *indent* est un nombre entier positif ou une chaîne de caractères, les "
199198
"éléments de tableaux et les membres d'objets JSON sont affichés élégamment "
200-
"avec ce niveau d'indentation. Un niveau d'indentation de 0, négatif, ou "
201-
"``\"\"`` n'insère que des retours à la ligne. ``None`` (la valeur par "
202-
"défaut) choisit la représentation la plus compacte. Utiliser un entier "
203-
"positif pour *indent* indente d'autant d'espaces par niveau. Si *indent* est "
204-
"une chaîne (telle que ``\"\\t\"``), cette chaîne est utilisée pour indenter "
205-
"à chaque niveau."
199+
"avec ce niveau d'indentation. Un niveau d'indentation de 0, négatif, ou ``"
200+
"\"\"`` n'insère que des retours à la ligne. ``None`` (la valeur par défaut) "
201+
"choisit la représentation la plus compacte. Utiliser un entier positif pour "
202+
"*indent* indente d'autant d'espaces par niveau. Si *indent* est une chaîne "
203+
"(telle que ``\"\\t\"``), cette chaîne est utilisée pour indenter à chaque "
204+
"niveau."
206205

207206
#: library/json.rst:455
208207
msgid "Allow strings for *indent* in addition to integers."
@@ -661,7 +660,6 @@ msgstr ""
661660
"simplement ignorés."
662661

663662
#: library/json.rst:433
664-
#, fuzzy
665663
msgid ""
666664
"If *check_circular* is true (the default), then lists, dicts, and custom "
667665
"encoded objects will be checked for circular references during encoding to "
@@ -671,7 +669,7 @@ msgstr ""
671669
"Si *check_circular* vaut ``True`` (valeur par défaut), une vérification a "
672670
"lieu sur les listes, dictionnaires et objets personnalisés, afin de détecter "
673671
"les références circulaires et éviter les récursions infinies (qui "
674-
"causeraient une :exc:`OverflowError`). Autrement, la vérification n'a pas "
672+
"causeraient une :exc:`RecursionError`). Autrement, la vérification n'a pas "
675673
"lieu."
676674

677675
#: library/json.rst:438
@@ -765,7 +763,6 @@ msgid "Standard Compliance and Interoperability"
765763
msgstr "Conformité au standard et Interopérabilité"
766764

767765
#: library/json.rst:546
768-
#, fuzzy
769766
msgid ""
770767
"The JSON format is specified by :rfc:`7159` and by `ECMA-404 <https://www."
771768
"ecma-international.org/publications-and-standards/standards/ecma-404/>`_. "
@@ -774,11 +771,11 @@ msgid ""
774771
"parameters other than those explicitly mentioned, are not considered."
775772
msgstr ""
776773
"Le format JSON est décrit par la :rfc:`7159` et le standard `ECMA-404 "
777-
"<http://www.ecma-international.org/publications/standards/Ecma-404.htm>`_. "
778-
"Cette section détaille la conformité à la RFC au niveau du module. Pour "
779-
"faire simple, les sous-classes de :class:`JSONEncoder` et :class:"
780-
"`JSONDecoder`, et les paramètres autres que ceux explicitement mentionnés ne "
781-
"sont pas considérés."
774+
"<https://www.ecma-international.org/publications-and-standards/standards/"
775+
"ecma-404/>`_. Cette section détaille la conformité à la RFC au niveau du "
776+
"module. Pour faire simple, les sous-classes de :class:`JSONEncoder` et :"
777+
"class:`JSONDecoder`, et les paramètres autres que ceux explicitement "
778+
"mentionnés ne sont pas considérés."
782779

783780
#: library/json.rst:552
784781
msgid ""

0 commit comments

Comments
 (0)