3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
6
- #, fuzzy
7
6
msgid ""
8
7
msgstr ""
9
8
"Project-Id-Version : Python 3.7\n "
10
9
"Report-Msgid-Bugs-To : \n "
11
10
"POT-Creation-Date : 2024-06-01 22:23+0200\n "
12
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
13
- "Last-Translator : FULL NAME <EMAIL@ADDRESS >\n "
14
- "Language-Team : LANGUAGE <LL@li.org> \n "
15
- "Language : \n "
11
+ "PO-Revision-Date : 2024-06-15 12:16+0200 \n "
12
+ "Last-Translator : Adnan Said <adnansaidre@gmail.com >\n "
13
+ "Language-Team : \n "
14
+ "Language : it_IT \n "
16
15
"MIME-Version : 1.0\n "
17
16
"Content-Type : text/plain; charset=UTF-8\n "
18
17
"Content-Transfer-Encoding : 8bit\n "
18
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
19
+ "X-Generator : Poedit 2.2.1\n "
19
20
20
21
#: library/argparse.rst:2
21
22
msgid ""
22
23
":mod:`!argparse` --- Parser for command-line options, arguments and sub-"
23
24
"commands"
24
25
msgstr ""
26
+ ":mod:`!argparse` --- Parser per le opzioni della riga di comando, argomenti e sotto-"
27
+ "comandi"
25
28
26
29
#: library/argparse.rst:12
27
30
msgid "**Source code:** :source:`Lib/argparse.py`"
28
- msgstr ""
31
+ msgstr "**Codice sorgente:** :source:`Lib/argparse.py` "
29
32
30
33
#: library/argparse.rst: -1
31
34
msgid "Tutorial"
32
- msgstr ""
35
+ msgstr "Tutorial "
33
36
34
37
#: library/argparse.rst:18
35
38
msgid ""
36
39
"This page contains the API reference information. For a more gentle "
37
40
"introduction to Python command-line parsing, have a look at the :ref:"
38
41
"`argparse tutorial <argparse-tutorial>`."
39
42
msgstr ""
43
+ "Questa pagina contiene le informazioni di riferimento sull'API. Per una introduzione "
44
+ "più semplice al parsing della riga di comando in Python, consulta :ref:"
45
+ "`argparse tutorial <argparse-tutorial>`."
40
46
41
47
#: library/argparse.rst:22
42
48
msgid ""
@@ -47,10 +53,16 @@ msgid ""
47
53
"The module will also issue errors when users give the program invalid "
48
54
"arguments."
49
55
msgstr ""
56
+ "Il modulo :mod:`argparse` rende facile scrivere interfacce a riga di comando "
57
+ "user-friendly. Il programma definisce quali argomenti richiede, e :mod:"
58
+ "`argparse` determinerà come analizzarli da :data:`sys.argv`. Il modulo :"
59
+ "mod:`argparse` genera anche automaticamente messaggi di aiuto e di utilizzo. "
60
+ "Inoltre, il modulo emetterà errori quando gli utenti forniscono argomenti non validi "
61
+ "al programma."
50
62
51
63
#: library/argparse.rst:30
52
64
msgid "Core Functionality"
53
- msgstr ""
65
+ msgstr "funzionalità Principale "
54
66
55
67
#: library/argparse.rst:32
56
68
msgid ""
@@ -59,35 +71,44 @@ msgid ""
59
71
"for argument specifications and has options that apply to the parser as "
60
72
"whole::"
61
73
msgstr ""
74
+ "Il supporto del modulo :mod:`argparse` per le interfacce a riga di comando "
75
+ "è costruito attorno a un'istanza di :class:`argparse.ArgumentParser`. È un contenitore "
76
+ "per le specifiche degli argomenti e ha opzioni che si applicano all'intero "
77
+ "parser::"
62
78
63
79
#: library/argparse.rst:41
64
80
msgid ""
65
81
"The :meth:`ArgumentParser.add_argument` method attaches individual argument "
66
82
"specifications to the parser. It supports positional arguments, options "
67
83
"that accept values, and on/off flags::"
68
84
msgstr ""
85
+ "Il metodo :meth:`ArgumentParser.add_argument` collega le specifiche degli argomenti "
86
+ "individuali al parser. Supporta argomenti posizionali, opzioni "
87
+ "che accettano valori, e flag di attivazione/spegnimento(on/off)::"
69
88
70
89
#: library/argparse.rst:50
71
90
msgid ""
72
91
"The :meth:`ArgumentParser.parse_args` method runs the parser and places the "
73
92
"extracted data in a :class:`argparse.Namespace` object::"
74
93
msgstr ""
94
+ "Il metodo :meth:`ArgumentParser.parse_args` esegue il parser e inserisce i "
95
+ "dati estratti in un oggetto :class:`argparse.Namespace`::"
75
96
76
97
#: library/argparse.rst:58
77
98
msgid "Quick Links for add_argument()"
78
- msgstr ""
99
+ msgstr "Ecco dei collegamenti rapidi per il metodo add_argument() "
79
100
80
101
#: library/argparse.rst:61
81
102
msgid "Name"
82
- msgstr ""
103
+ msgstr "Nome "
83
104
84
105
#: library/argparse.rst:61
85
106
msgid "Description"
86
- msgstr ""
107
+ msgstr "Descrizione "
87
108
88
109
#: library/argparse.rst:61
89
110
msgid "Values"
90
- msgstr ""
111
+ msgstr "Valori "
91
112
92
113
#: library/argparse.rst:63
93
114
msgid "action_"
0 commit comments