Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fcf4f69

Browse filesBrowse files
authored
Merge pull request #180 from JulienPalard/fuzzy
Fuzzy
2 parents 31c80b4 + 7506aad commit fcf4f69
Copy full SHA for fcf4f69

File tree

Expand file treeCollapse file tree

25 files changed

+118
-161
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

25 files changed

+118
-161
lines changed
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ endif
9090

9191
.PHONY: fuzzy
9292
fuzzy:
93-
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c ^msgid) $$file; done | grep -v ^0 | sort -gr
93+
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c '#, fuzzy') $$file; done | grep -v ^0 | sort -gr
Collapse file

‎c-api/arg.po‎

Copy file name to clipboardExpand all lines: c-api/arg.po
+3-5Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
11-
"PO-Revision-Date: 2018-02-15 00:29+0100\n"
11+
"PO-Revision-Date: 2018-05-08 17:57+0200\n"
1212
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
@@ -1045,9 +1045,8 @@ msgid "Same as ``s#``."
10451045
msgstr ""
10461046

10471047
#: ../Doc/c-api/arg.rst:574
1048-
#, fuzzy
10491048
msgid "``u`` (:class:`str`) [wchar_t \\*]"
1050-
msgstr "``s`` (:class:`str`) [const char \\*]"
1049+
msgstr "``u`` (:class:`str`) [wchar_t \\*]"
10511050

10521051
#: ../Doc/c-api/arg.rst:572
10531052
msgid ""
@@ -1057,9 +1056,8 @@ msgid ""
10571056
msgstr ""
10581057

10591058
#: ../Doc/c-api/arg.rst:579
1060-
#, fuzzy
10611059
msgid "``u#`` (:class:`str`) [wchar_t \\*, int]"
1062-
msgstr "``y#`` (:class:`bytes`) [char \\*, int]"
1060+
msgstr "``u#`` (:class:`str`) [wchar_t \\*, int]"
10631061

10641062
#: ../Doc/c-api/arg.rst:577
10651063
msgid ""
Collapse file

‎extending/extending.po‎

Copy file name to clipboardExpand all lines: extending/extending.po
+3-4Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
11-
"PO-Revision-Date: 2018-02-15 00:36+0100\n"
12-
"Last-Translator: \n"
11+
"PO-Revision-Date: 2018-05-08 17:12+0200\n"
12+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
1515
"MIME-Version: 1.0\n"
@@ -84,7 +84,6 @@ msgid "A Simple Example"
8484
msgstr "Un exemple simple"
8585

8686
#: ../Doc/extending/extending.rst:41
87-
#, fuzzy
8887
msgid ""
8988
"Let's create an extension module called ``spam`` (the favorite food of Monty "
9089
"Python fans...) and let's say we want to create a Python interface to the C "
@@ -97,7 +96,7 @@ msgstr ""
9796
"à la fonction de la bibliothèque C :c:func:`system` [#]_. Cette fonction "
9897
"prend une chaîne de caractères terminée par NULL comme argument et renvoie "
9998
"un entier. Nous voulons que cette fonction soit appelable à partir de Python "
100-
"comme suit : ::"
99+
"comme suit :"
101100

102101
#: ../Doc/extending/extending.rst:52
103102
msgid ""
Collapse file

‎extending/index.po‎

Copy file name to clipboardExpand all lines: extending/index.po
+5-4Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
11-
"PO-Revision-Date: 2017-11-22 10:45+0100\n"
11+
"PO-Revision-Date: 2018-05-08 12:24+0200\n"
1212
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
@@ -69,7 +69,6 @@ msgid "Recommended third party tools"
6969
msgstr "Les outils tiers recommandés"
7070

7171
#: ../Doc/extending/index.rst:28
72-
#, fuzzy
7372
msgid ""
7473
"This guide only covers the basic tools for creating extensions provided as "
7574
"part of this version of CPython. Third party tools like `Cython <http://"
@@ -79,8 +78,10 @@ msgid ""
7978
msgstr ""
8079
"Ce guide ne couvre que les outils basiques permettant de créer des "
8180
"extensions fournies dans cette version de CPython. Les outils tiers tels que "
82-
"Cython, ``cffi``, SWIG et Numba offrent des approches plus simples et plus "
83-
"élaborées pour créer des extensions C et C++ pour Python."
81+
"`Cython <http://cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG "
82+
"<http://www.swig.org>`_ et `Numba <https://numba.pydata.org/>`_ offrent des "
83+
"approches plus simples et plus élaborées pour créer des extensions C et C++ "
84+
"pour Python."
8485

8586
#: ../Doc/extending/index.rst:40
8687
msgid ""
Collapse file

‎faq/windows.po‎

Copy file name to clipboardExpand all lines: faq/windows.po
+6-10Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
12-
"PO-Revision-Date: 2018-01-21 23:08+0100\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12+
"PO-Revision-Date: 2018-05-08 20:24+0200\n"
13+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"Language: fr\n"
1616
"MIME-Version: 1.0\n"
@@ -52,7 +52,6 @@ msgstr ""
5252
"unitaires."
5353

5454
#: ../Doc/faq/windows.rst:38
55-
#, fuzzy
5655
msgid ""
5756
"Unless you use some sort of integrated development environment, you will end "
5857
"up *typing* Windows commands into what is variously referred to as a \"DOS "
@@ -68,16 +67,15 @@ msgstr ""
6867
"ouvrir cette fenêtre depuis le menu Démarrer; sous Windows 7, allez dans :"
6968
"Démarrer --> Programmes --> Accessoires --> Invite de commande. Vous serez "
7069
"dans la bonne fenêtre quand vous verrez une fenêtre invite de commande qui "
71-
"ressemble normalement à ça ::"
70+
"ressemble normalement à ça :"
7271

7372
#: ../Doc/faq/windows.rst:50
74-
#, fuzzy
7573
msgid ""
7674
"The letter may be different, and there might be other things after it, so "
7775
"you might just as easily see something like:"
7876
msgstr ""
7977
"La lettre peut être différente, et il peut y avoir d'autres choses à la "
80-
"suite, alors il se peut aussi bien que vous voyez quelque chose tel que ::"
78+
"suite, alors il se peut aussi bien que vous voyez quelque chose tel que :"
8179

8280
#: ../Doc/faq/windows.rst:57
8381
msgid ""
@@ -103,7 +101,6 @@ msgstr ""
103101
"l'interpréteur ?"
104102

105103
#: ../Doc/faq/windows.rst:66
106-
#, fuzzy
107104
msgid ""
108105
"First, you need to make sure that your command window recognises the word "
109106
"\"python\" as an instruction to start the interpreter. If you have opened a "
@@ -113,12 +110,11 @@ msgstr ""
113110
"Tout d'abord, vous devez vous assurer que votre fenêtre d'invite de commande "
114111
"reconnaît le mot \"python\" comme une instruction pour démarrer "
115112
"l'interpréteur. Si vous avez ouvert une fenêtre de commande, entrez la "
116-
"commande ``python``, puis appuyez sur la touche entrée ::"
113+
"commande ``python``, puis appuyez sur la touche entrée :"
117114

118115
#: ../Doc/faq/windows.rst:75
119-
#, fuzzy
120116
msgid "You should then see something like:"
121-
msgstr "Vous devez vous trouver face à quelque chose comme ça ::"
117+
msgstr "Vous devez vous trouver face à quelque chose comme ça :"
122118

123119
#: ../Doc/faq/windows.rst:83
124120
msgid ""
Collapse file

‎install/index.po‎

Copy file name to clipboardExpand all lines: install/index.po
+3-5Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
11-
"PO-Revision-Date: 2018-02-15 00:40+0100\n"
11+
"PO-Revision-Date: 2018-05-08 18:02+0200\n"
1212
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
@@ -526,7 +526,6 @@ msgstr ""
526526
"\\Program Files\\\\Python` sous Python 1.6a1, 1.5.2 et avant."
527527

528528
#: ../Doc/install/index.rst:276
529-
#, fuzzy
530529
msgid ""
531530
":file:`{prefix}` and :file:`{exec-prefix}` stand for the directories that "
532531
"Python is installed to, and where it finds its libraries at run-time. They "
@@ -551,7 +550,7 @@ msgstr ""
551550
"Python (ligne de commande)`. Un fois l'interpréteur démarré, vous taper du "
552551
"code Python à l'invite de commande. Par exemple, sur mon système Linux, je "
553552
"tape les trois instructions ci-dessous et obtient la sortie comme indiqué "
554-
"pour trouver mes :file:`{prefix}` et :file:`{exec-prefix}` ::"
553+
"pour trouver mes :file:`{prefix}` et :file:`{exec-prefix}` :"
555554

556555
#: ../Doc/install/index.rst:298
557556
msgid ""
@@ -1161,9 +1160,8 @@ msgid ""
11611160
msgstr ""
11621161

11631162
#: ../Doc/install/index.rst:638
1164-
#, fuzzy
11651163
msgid "or, equivalently,"
1166-
msgstr "ou : ::"
1164+
msgstr "ou (équivalent),"
11671165

11681166
#: ../Doc/install/index.rst:649
11691167
msgid ""
Collapse file

‎library/abc.po‎

Copy file name to clipboardExpand all lines: library/abc.po
+3-4Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2018-03-23 09:03+0100\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12+
"PO-Revision-Date: 2018-05-08 17:13+0200\n"
13+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"Language: fr\n"
1616
"MIME-Version: 1.0\n"
@@ -159,9 +159,8 @@ msgid ""
159159
msgstr ""
160160

161161
#: ../Doc/library/abc.rst:163
162-
#, fuzzy
163162
msgid "The :mod:`abc` module also provides the following decorator:"
164-
msgstr "Le module fournit les classes suivantes :"
163+
msgstr "Le module :mod:`abc` fournit aussi le décorateur :"
165164

166165
#: ../Doc/library/abc.rst:167
167166
msgid "A decorator indicating abstract methods."
Collapse file

‎library/constants.po‎

Copy file name to clipboardExpand all lines: library/constants.po
+5-6Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-03-23 09:03+0100\n"
11-
"PO-Revision-Date: 2017-09-24 23:11+0200\n"
12-
"Last-Translator: \n"
11+
"PO-Revision-Date: 2018-05-11 19:27+0200\n"
12+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
1515
"MIME-Version: 1.0\n"
@@ -164,12 +164,11 @@ msgid ""
164164
msgstr ""
165165

166166
#: ../Doc/library/constants.rst:96
167-
#, fuzzy
168167
msgid ""
169168
"Object that when printed, prints the message \"Type license() to see the "
170169
"full license text\", and when called, displays the full license text in a "
171170
"pager-like fashion (one screen at a time)."
172171
msgstr ""
173-
"Objets qui, lorsqu'ils sont représentés, affichent un message comme \"Type "
174-
"license() to see the full license text\", et lorsqu'ils sont appelés, "
175-
"présentent le texte correspondant dans un style paginé (un écran à la fois)."
172+
"Objet qui, lorsqu'il est affiché, affiche un message comme \"Type license() "
173+
"to see the full license text\", et lorsqu'il est appelé, affiche le texte "
174+
"complet de la licence dans un style paginé (un écran à la fois)."
Collapse file

‎library/functions.po‎

Copy file name to clipboardExpand all lines: library/functions.po
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2018-03-23 09:03+0100\n"
11-
"PO-Revision-Date: 2018-02-15 00:43+0100\n"
11+
"PO-Revision-Date: 2018-05-08 18:02+0200\n"
1212
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
@@ -1385,7 +1385,6 @@ msgstr ""
13851385
"fournir des fonctionnalités d'édition et d'historique élaborées."
13861386

13871387
#: ../Doc/library/functions.rst:718
1388-
#, fuzzy
13891388
msgid ""
13901389
"Return an integer object constructed from a number or string *x*, or return "
13911390
"``0`` if no arguments are given. If *x* is a number, return :meth:`x."
@@ -1395,9 +1394,11 @@ msgid ""
13951394
"truncates towards zero."
13961395
msgstr ""
13971396
"Donne un entier construit depuis un nombre ou une chaîne *x*, ou ``0`` si "
1398-
"aucun argument n'est fourni. Si *x* est un nombre, :meth:`__int__() <object."
1399-
"__int__>` est donné. Les nombres à virgule flottante sont tronquées vers "
1400-
"zéro."
1397+
"aucun argument n'est fourni. Si *x* est un nombre, renvoie :meth:`x."
1398+
"__int__() <object.__int__>`. Si *x* définit :meth:`x.__trunc__() <object."
1399+
"__trunc__>` mais pas :meth:`x.__int__() <object.__int__>`, alors :meth:`x."
1400+
"__trunc__() <object.__trunc__>` est renvoyé. Les nombres à virgule flottante "
1401+
"sont tronqués vers zéro."
14011402

14021403
#: ../Doc/library/functions.rst:726
14031404
msgid ""
@@ -2588,7 +2589,6 @@ msgstr ""
25882589
"des constructeurs alternatifs."
25892590

25902591
#: ../Doc/library/functions.rst:1417
2591-
#, fuzzy
25922592
msgid ""
25932593
"Like all decorators, it is also possible to call ``staticmethod`` as a "
25942594
"regular function and do something with its result. This is needed in some "
Collapse file

‎library/functools.po‎

Copy file name to clipboardExpand all lines: library/functools.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-12-01 07:43+0100\n"
11-
"PO-Revision-Date: 2018-04-16 23:54+0200\n"
12-
"Last-Translator: \n"
11+
"PO-Revision-Date: 2018-05-08 20:25+0200\n"
12+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1313
"Language-Team: \n"
1414
"Language: fr\n"
1515
"MIME-Version: 1.0\n"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.