correction positionnel vers optionnel (#270)

closes #269

Reviewed-on: #270
Reviewed-by: deronnax <deronnax@noreply.localhost>
Co-authored-by: Christophe Nanteuil <christophe.nanteuil@gmail.com>
Co-committed-by: Christophe Nanteuil <christophe.nanteuil@gmail.com>
This commit is contained in:
Christophe Nanteuil 2024-05-14 10:29:38 +00:00 committed by Christophe Nanteuil
parent c8e6544251
commit 9624936731

View File

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-07-23 14:38+0200\n"
"PO-Revision-Date: 2023-02-17 16:38+0100\n"
"Last-Translator: Jean Abou Samra <jean@abou-samra.fr>\n"
"PO-Revision-Date: 2024-05-12 23:26+0200\n"
"Last-Translator: Christophe Nanteuil <christophe.nanteuil@gmail.com>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0.1\n"
"X-Generator: Poedit 3.2.2\n"
#: library/argparse.rst:2
msgid ""
@ -1695,7 +1695,7 @@ msgstr ""
"objet. La valeur de dest_ est alors utilisée telle quelle pour les actions "
"d'arguments positionnels et elle (dest_) est convertie en majuscules pour "
"les actions d'arguments optionnels. Ainsi, un argument positionnel unique "
"avec ``dest='bar'`` est affiché comme ``bar`` et un argument positionnel "
"avec ``dest='bar'`` est affiché comme ``bar`` et un argument optionnel "
"unique ``--foo`` qui prend un seul argument sur la ligne de commande est "
"affiché comme ``FOO``. Par exemple ::"