-
-
Notifications
You must be signed in to change notification settings - Fork 12
afic, archiving, argparse #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Addivsyou
wants to merge
3
commits into
python:3.12
Choose a base branch
from
Addivsyou:3.12
base: 3.12
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
1 traduzione della pagina migliorata, 1 pagina tradotta, prime 100 ri…
…ghe di argparse tradotti
- Loading branch information
commit 98a9dcf8845bafeb96f1e0b8bf6d94f272f90987
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3,40 +3,46 @@ | |||||||||
# This file is distributed under the same license as the Python package. | ||||||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||||||||||
# | ||||||||||
#, fuzzy | ||||||||||
msgid "" | ||||||||||
msgstr "" | ||||||||||
"Project-Id-Version: Python 3.7\n" | ||||||||||
"Report-Msgid-Bugs-To: \n" | ||||||||||
"POT-Creation-Date: 2024-06-01 22:23+0200\n" | ||||||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||||||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||||||||||
"Language-Team: LANGUAGE <LL@li.org>\n" | ||||||||||
"Language: \n" | ||||||||||
"PO-Revision-Date: 2024-06-15 12:16+0200\n" | ||||||||||
"Last-Translator: Adnan Said <adnansaidre@gmail.com>\n" | ||||||||||
"Language-Team: \n" | ||||||||||
"Language: it_IT\n" | ||||||||||
"MIME-Version: 1.0\n" | ||||||||||
"Content-Type: text/plain; charset=UTF-8\n" | ||||||||||
"Content-Transfer-Encoding: 8bit\n" | ||||||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||||||
"X-Generator: Poedit 2.2.1\n" | ||||||||||
|
||||||||||
#: library/argparse.rst:2 | ||||||||||
msgid "" | ||||||||||
":mod:`!argparse` --- Parser for command-line options, arguments and sub-" | ||||||||||
"commands" | ||||||||||
msgstr "" | ||||||||||
":mod:`!argparse` --- Parser per le opzioni della riga di comando, argomenti e sotto-" | ||||||||||
"comandi" | ||||||||||
|
||||||||||
#: library/argparse.rst:12 | ||||||||||
msgid "**Source code:** :source:`Lib/argparse.py`" | ||||||||||
msgstr "" | ||||||||||
msgstr "**Codice sorgente:** :source:`Lib/argparse.py`" | ||||||||||
|
||||||||||
#: library/argparse.rst:-1 | ||||||||||
msgid "Tutorial" | ||||||||||
msgstr "" | ||||||||||
msgstr "Tutorial" | ||||||||||
|
||||||||||
#: library/argparse.rst:18 | ||||||||||
msgid "" | ||||||||||
"This page contains the API reference information. For a more gentle " | ||||||||||
"introduction to Python command-line parsing, have a look at the :ref:" | ||||||||||
"`argparse tutorial <argparse-tutorial>`." | ||||||||||
msgstr "" | ||||||||||
"Questa pagina contiene le informazioni di riferimento sull'API. Per una introduzione " | ||||||||||
"più semplice al parsing della riga di comando in Python, consulta :ref:" | ||||||||||
"`argparse tutorial <argparse-tutorial>`." | ||||||||||
|
||||||||||
#: library/argparse.rst:22 | ||||||||||
msgid "" | ||||||||||
|
@@ -47,10 +53,16 @@ msgid "" | |||||||||
"The module will also issue errors when users give the program invalid " | ||||||||||
"arguments." | ||||||||||
msgstr "" | ||||||||||
"Il modulo :mod:`argparse` rende facile scrivere interfacce a riga di comando " | ||||||||||
"user-friendly. Il programma definisce quali argomenti richiede, e :mod:" | ||||||||||
"`argparse` determinerà come analizzarli da :data:`sys.argv`. Il modulo :" | ||||||||||
"mod:`argparse` genera anche automaticamente messaggi di aiuto e di utilizzo. " | ||||||||||
"Inoltre, il modulo emetterà errori quando gli utenti forniscono argomenti non validi " | ||||||||||
"al programma." | ||||||||||
|
||||||||||
#: library/argparse.rst:30 | ||||||||||
msgid "Core Functionality" | ||||||||||
msgstr "" | ||||||||||
msgstr "funzionalità Principale" | ||||||||||
|
||||||||||
#: library/argparse.rst:32 | ||||||||||
msgid "" | ||||||||||
|
@@ -59,35 +71,44 @@ msgid "" | |||||||||
"for argument specifications and has options that apply to the parser as " | ||||||||||
"whole::" | ||||||||||
msgstr "" | ||||||||||
"Il supporto del modulo :mod:`argparse` per le interfacce a riga di comando " | ||||||||||
"è costruito attorno a un'istanza di :class:`argparse.ArgumentParser`. È un contenitore " | ||||||||||
"per le specifiche degli argomenti e ha opzioni che si applicano all'intero " | ||||||||||
"parser::" | ||||||||||
|
||||||||||
#: library/argparse.rst:41 | ||||||||||
msgid "" | ||||||||||
"The :meth:`ArgumentParser.add_argument` method attaches individual argument " | ||||||||||
"specifications to the parser. It supports positional arguments, options " | ||||||||||
"that accept values, and on/off flags::" | ||||||||||
msgstr "" | ||||||||||
"Il metodo :meth:`ArgumentParser.add_argument` collega le specifiche degli argomenti " | ||||||||||
"individuali al parser. Supporta argomenti posizionali, opzioni " | ||||||||||
"che accettano valori, e flag di attivazione/spegnimento(on/off)::" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
or just
Suggested change
|
||||||||||
|
||||||||||
#: library/argparse.rst:50 | ||||||||||
msgid "" | ||||||||||
"The :meth:`ArgumentParser.parse_args` method runs the parser and places the " | ||||||||||
"extracted data in a :class:`argparse.Namespace` object::" | ||||||||||
msgstr "" | ||||||||||
"Il metodo :meth:`ArgumentParser.parse_args` esegue il parser e inserisce i " | ||||||||||
"dati estratti in un oggetto :class:`argparse.Namespace`::" | ||||||||||
|
||||||||||
#: library/argparse.rst:58 | ||||||||||
msgid "Quick Links for add_argument()" | ||||||||||
msgstr "" | ||||||||||
msgstr "Ecco dei collegamenti rapidi per il metodo add_argument()" | ||||||||||
Addivsyou marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
|
||||||||||
#: library/argparse.rst:61 | ||||||||||
msgid "Name" | ||||||||||
msgstr "" | ||||||||||
msgstr "Nome" | ||||||||||
|
||||||||||
#: library/argparse.rst:61 | ||||||||||
msgid "Description" | ||||||||||
msgstr "" | ||||||||||
msgstr "Descrizione" | ||||||||||
|
||||||||||
#: library/argparse.rst:61 | ||||||||||
msgid "Values" | ||||||||||
msgstr "" | ||||||||||
msgstr "Valori" | ||||||||||
|
||||||||||
#: library/argparse.rst:63 | ||||||||||
msgid "action_" | ||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.