Newer
Older
# Italian translations for Mercurial
# Traduzione italiana per Mercurial
# Copyright (C) 2009 Olivia Mackall and others
msgid ""
msgstr ""
"Project-Id-Version: Mercurial\n"
"Report-Msgid-Bugs-To: <mercurial-devel@mercurial-scm.org>\n"
"POT-Creation-Date: 2011-03-22 22:04+0100\n"
"Last-Translator: Stefano Tortarolo <stefano.tortarolo@gmail.com>\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"
#, python-format
msgid " (default: %s)"
msgstr " (default: %s)"
msgid "Options"
msgid "Commands"
msgid "Extensions"
msgstr "Estensioni"
msgid ""
"This section contains help for extensions that are distributed together with "
"Mercurial. Help for other extensions is available in the help system."
msgstr ""
"Questa sezione contiene la guida per le estensioni che sono distribuite con "
"Mercurial. Guide per altre estensioni sono disponibili nel sistema d'aiuto."
msgid "Options:"
msgstr "Opzioni:"
msgid " aliases: %s"
msgstr " alias: %s"
msgid "hooks for controlling repository access"
msgstr "hook per controllare l'accesso al repository"
"This hook makes it possible to allow or deny write access to given\n"
"branches and paths of a repository when receiving incoming changesets\n"
"via pretxnchangegroup and pretxncommit."
"Questo hook rende possibile consentire o negare l'accesso in scrittura\n"
"a specifiche branch o percorsi di un repository durante la ricezione di\n"
"changeset in ingresso tramite pretxnchangegroup and pretxncommit."
"The authorization is matched based on the local user name on the\n"
"system where the hook runs, and not the committer of the original\n"
"changeset (since the latter is merely informative)."
msgstr ""
"L'autorizzazione è verificata sulla base del nome dell'utente locale\n"
"del sistema dove l'hook viene eseguito, e non l'autore del commit\n"
"originario (dal momento che quest'ultimo ha mero scopo informativo)."
"The acl hook is best used along with a restricted shell like hgsh,\n"
"preventing authenticating users from doing anything other than pushing\n"
"or pulling. The hook is not safe to use if users have interactive\n"
"shell access, as they can then disable the hook. Nor is it safe if\n"
"remote users share an account, because then there is no way to\n"
"distinguish them."
msgstr ""
"L'hook acl è usato meglio con una shell ristretta come hgsh,\n"
"prevenendo utenti autenticati dal fare altro di push o pull.\n"
"L'hook non è sicuro da usare se gli utenti hanno accesso a\n"
"shell interattive, dal momento che possono disattivare l'hook.\n"
"Allo stesso modo non è sicuro se utenti remoti condividono\n"
"l'account, poichè allora non c'è modo di distinguerli."
msgid "The order in which access checks are performed is:"
msgstr "L'ordine in cui le verifiche di accesso vengono eseguite è:"
msgid ""
"1) Deny list for branches (section ``acl.deny.branches``)\n"
"2) Allow list for branches (section ``acl.allow.branches``)\n"
"3) Deny list for paths (section ``acl.deny``)\n"
"4) Allow list for paths (section ``acl.allow``)"
msgstr ""
msgid "The allow and deny sections take key-value pairs."
msgstr ""
msgid ""
"Branch-based Access Control\n"
"..........................."
msgstr ""
"Controllo degli accessi basato su branch\n"
"..........................."
msgid ""
"Use the ``acl.deny.branches`` and ``acl.allow.branches`` sections to\n"
"have branch-based access control. Keys in these sections can be\n"
"either:"
msgstr ""
msgid ""
"- a branch name, or\n"
"- an asterisk, to match any branch;"
msgstr ""
"- il nome di un branch, oppure\n"
"- un asterisco, per comprendere ogni branch;"
msgid "The corresponding values can be either:"
msgstr "I valori corrispondenti possono essere:"
msgid ""
"- a comma-separated list containing users and groups, or\n"
"- an asterisk, to match anyone;"
msgstr ""
msgid ""
"Path-based Access Control\n"
"........................."
msgstr ""
"Controllo degli accessi basato su percorso\n"
"........................."
msgid ""
"Use the ``acl.deny`` and ``acl.allow`` sections to have path-based\n"
"access control. Keys in these sections accept a subtree pattern (with\n"
"a glob syntax by default). The corresponding values follow the same\n"
"syntax as the other sections above."
msgstr ""
msgid ""
"Groups\n"
"......"
msgstr ""
"Gruppi\n"
"......"
msgid ""
"Group names must be prefixed with an ``@`` symbol. Specifying a group\n"
"name has the same effect as specifying all the users in that group."
msgstr ""
msgid ""
"You can define group members in the ``acl.groups`` section.\n"
"If a group name is not defined there, and Mercurial is running under\n"
"a Unix-like system, the list of users will be taken from the OS.\n"
"Otherwise, an exception will be raised."
msgstr ""
msgid ""
"Example Configuration\n"
"....................."
msgstr ""
"Configurazione d'esempio\n"
"....................."
msgid "::"
msgid " [hooks]"
msgid ""
" # Use this if you want to check access restrictions at commit time\n"
" pretxncommit.acl = python:hgext.acl.hook"
msgstr ""
msgid ""
" # Use this if you want to check access restrictions for pull, push,\n"
" # bundle and serve.\n"
" pretxnchangegroup.acl = python:hgext.acl.hook"
msgstr ""
msgid ""
" # Allow or deny access for incoming changes only if their source is\n"
" # listed here, let them pass otherwise. Source is \"serve\" for all\n"
" # remote access (http or ssh), \"push\", \"pull\" or \"bundle\" when the\n"
" # related commands are run locally.\n"
" # Default: serve\n"
" sources = serve"
msgstr ""
msgid " [acl.deny.branches]"
msgstr " [acl.deny.branches]"
msgid ""
" # Everyone is denied to the frozen branch:\n"
" frozen-branch = *"
msgstr ""
" # Ad ognuno è vietato l'accesso alla branch congelata:\n"
" frozen-branch = *"
msgid ""
" # A bad user is denied on all branches:\n"
" * = bad-user"
msgstr ""
msgid " [acl.allow.branches]"
msgstr " [acl.allow.branches]"
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
msgid ""
" # A few users are allowed on branch-a:\n"
" branch-a = user-1, user-2, user-3"
msgstr ""
msgid ""
" # Only one user is allowed on branch-b:\n"
" branch-b = user-1"
msgstr ""
msgid ""
" # The super user is allowed on any branch:\n"
" * = super-user"
msgstr ""
msgid ""
" # Everyone is allowed on branch-for-tests:\n"
" branch-for-tests = *"
msgstr ""
msgid ""
" [acl.deny]\n"
" # This list is checked first. If a match is found, acl.allow is not\n"
" # checked. All users are granted access if acl.deny is not present.\n"
" # Format for both lists: glob pattern = user, ..., @group, ..."
msgstr ""
msgid ""
" # To match everyone, use an asterisk for the user:\n"
" # my/glob/pattern = *"
msgstr ""
msgid ""
" # user6 will not have write access to any file:\n"
" ** = user6"
msgstr ""
msgid ""
" # Group \"hg-denied\" will not have write access to any file:\n"
" ** = @hg-denied"
msgstr ""
msgid ""
" # Nobody will be able to change \"DONT-TOUCH-THIS.txt\", despite\n"
" # everyone being able to change all other files. See below.\n"
" src/main/resources/DONT-TOUCH-THIS.txt = *"
" # if acl.allow is not present, all users are allowed by default\n"
" # empty acl.allow = no users allowed"
msgstr ""
msgid ""
" # User \"doc_writer\" has write access to any file under the \"docs\"\n"
" # folder:\n"
" docs/** = doc_writer"
msgstr ""
msgid ""
" # User \"jack\" and group \"designers\" have write access to any file\n"
" # under the \"images\" folder:\n"
" images/** = jack, @designers"
msgstr ""
msgid ""
" # Everyone (except for \"user6\" - see acl.deny above) will have write\n"
" # access to any file under the \"resources\" folder (except for 1\n"
" # file. See acl.deny):\n"
" src/main/resources/** = *"
msgstr ""
msgid " .hgtags = release_engineer"
msgstr " .hgtags = release_engineer"
#, python-format
msgid "group '%s' is undefined"
msgstr "il gruppo '%s' non è definito"
msgid ""
"config error - hook type \"%s\" cannot stop incoming changesets nor commits"
msgstr ""
"errore di configurazione - l'hook di tipo \"%s\" non può fermare né i "
"changesetné i commit in entrata"
#, python-format
msgid "acl: user \"%s\" denied on branch \"%s\" (changeset \"%s\")"
msgstr ""
"acl: accesso negato per l'utente \"%s\" per il branch \"%s\" (changeset \"%s"
"\")"
#, python-format
msgid "acl: user \"%s\" not allowed on branch \"%s\" (changeset \"%s\")"
msgstr ""
"acl: accesso non permesso per l'utente \"%s\" per il branch \"%s"
"\" (changeset \"%s\")"
msgid "acl: access denied for changeset %s"
msgstr "acl: accesso negato per il changeset %s"
msgid "hooks for integrating with the Bugzilla bug tracker"
msgstr "hook per l'integrazione con il bug tracker Bugzilla"
"This hook extension adds comments on bugs in Bugzilla when changesets\n"
"that refer to bugs by Bugzilla ID are seen. The hook does not change\n"
"Questa estensione hook aggiunge commenti a bug in Bugzilla quando vengono\n"
"rilevati changeset che fanno riferimento a bug per ID Bugzilla. L'hook non\n"
"cambia lo status del bug."
"The hook updates the Bugzilla database directly. Only Bugzilla\n"
"installations using MySQL are supported."
msgstr ""
"L'hook aggiorna direttamente il database Bugzilla. Sono supportate\n"
"solo installazioni di Bugzilla che usano MySQL."
"The hook relies on a Bugzilla script to send bug change notification\n"
"emails. That script changes between Bugzilla versions; the\n"
"'processmail' script used prior to 2.18 is replaced in 2.18 and\n"
"subsequent versions by 'config/sendbugmail.pl'. Note that these will\n"
"be run by Mercurial as the user pushing the change; you will need to\n"
"ensure the Bugzilla install file permissions are set appropriately."
msgstr ""
msgid ""
"The extension is configured through three different configuration\n"
"sections. These keys are recognized in the [bugzilla] section:"
msgstr ""
msgid ""
" Hostname of the MySQL server holding the Bugzilla database."
msgstr ""
msgid ""
" Name of the Bugzilla database in MySQL. Default 'bugs'."
msgstr ""
msgid ""
" Username to use to access MySQL server. Default 'bugs'."
msgstr ""
msgid ""
" Password to use to access MySQL server."
msgstr ""
msgid ""
" Database connection timeout (seconds). Default 5."
msgstr ""
msgid ""
"version\n"
" Bugzilla version. Specify '3.0' for Bugzilla versions 3.0 and later,\n"
" '2.18' for Bugzilla versions from 2.18 and '2.16' for versions prior\n"
" to 2.18."
msgstr ""
msgid ""
"bzuser\n"
" Fallback Bugzilla user name to record comments with, if changeset\n"
" committer cannot be found as a Bugzilla user."
msgstr ""
msgid ""
"bzdir\n"
" Bugzilla install directory. Used by default notify. Default\n"
" '/var/www/html/bugzilla'."
msgstr ""
msgid ""
"notify\n"
" The command to run to get Bugzilla to send bug change notification\n"
" emails. Substitutes from a map with 3 keys, 'bzdir', 'id' (bug id)\n"
" and 'user' (committer bugzilla email). Default depends on version;\n"
" from 2.18 it is \"cd %(bzdir)s && perl -T contrib/sendbugmail.pl\n"
" %(id)s %(user)s\"."
msgstr ""
msgid ""
"regexp\n"
" Regular expression to match bug IDs in changeset commit message.\n"
" Must contain one \"()\" group. The default expression matches 'Bug\n"
" 1234', 'Bug no. 1234', 'Bug number 1234', 'Bugs 1234,5678', 'Bug\n"
" 1234 and 5678' and variations thereof. Matching is case insensitive."
msgstr ""
msgid ""
" The style file to use when formatting comments."
msgstr ""
msgid ""
"template\n"
" Template to use when formatting comments. Overrides style if\n"
" specified. In addition to the usual Mercurial keywords, the\n"
" extension specifies::"
msgstr ""
msgid ""
" {bug} The Bugzilla bug ID.\n"
" {root} The full pathname of the Mercurial repository.\n"
" {webroot} Stripped pathname of the Mercurial repository.\n"
" {hgweb} Base URL for browsing Mercurial repositories."
msgstr ""
msgid ""
" Default 'changeset {node|short} in repo {root} refers '\n"
" 'to bug {bug}.\\ndetails:\\n\\t{desc|tabindent}'"
msgstr ""
msgid ""
"strip\n"
" The number of slashes to strip from the front of {root} to produce\n"
" {webroot}. Default 0."
msgstr ""
msgid ""
"usermap\n"
" Path of file containing Mercurial committer ID to Bugzilla user ID\n"
" mappings. If specified, the file should contain one mapping per\n"
" line, \"committer\"=\"Bugzilla user\". See also the [usermap] section."
msgstr ""
msgid ""
"The [usermap] section is used to specify mappings of Mercurial\n"
"committer ID to Bugzilla user ID. See also [bugzilla].usermap.\n"
"\"committer\"=\"Bugzilla user\""
msgstr ""
msgid "Finally, the [web] section supports one entry:"
msgstr ""
msgid ""
"baseurl\n"
" Base URL for browsing Mercurial repositories. Reference from\n"
" templates as {hgweb}."
msgstr ""
msgid "Activating the extension::"
msgstr "Attivazione dell'estensione::"
" [extensions]\n"
" bugzilla ="
" [hooks]\n"
" # run bugzilla hook on every change pulled or pushed in here\n"
" incoming.bugzilla = python:hgext.bugzilla.hook"
msgstr ""
" [hooks]\n"
" # esegue l'hook bugzilla ad ogni modifica a seguito di pull o push qui\n"
" incoming.bugzilla = python:hgext.bugzilla.hook"
msgid "Example configuration:"
msgstr "Configurazione di esempio:"
"This example configuration is for a collection of Mercurial\n"
"repositories in /var/local/hg/repos/ used with a local Bugzilla 3.2\n"
"installation in /opt/bugzilla-3.2. ::"
msgstr ""
msgid ""
" [bugzilla]\n"
" host=localhost\n"
" password=XYZZY\n"
" version=3.0\n"
" bzuser=unknown@domain.com\n"
" bzdir=/opt/bugzilla-3.2\n"
" template=Changeset {node|short} in {root|basename}.\n"
" {hgweb}/{webroot}/rev/{node|short}\\n\n"
" {desc}\\n\n"
" [bugzilla]\n"
" host=localhost\n"
" password=XYZZY\n"
" version=3.0\n"
" bzuser=unknown@domain.com\n"
" bzdir=/opt/bugzilla-3.2\n"
" template=Changeset {node|short} in {root|basename}.\n"
" {hgweb}/{webroot}/rev/{node|short}\\n\n"
" {desc}\\n\n"
" strip=5"
" baseurl=http://dev.domain.com/hg"
msgstr ""
" [web]\n"
" baseurl=http://dev.domain.com/hg"
" user@emaildomain.com=user.name@bugzilladomain.com"
msgstr ""
" [usermap]\n"
" user@emaildomain.com=user.name@bugzilladomain.com"
msgid "Commits add a comment to the Bugzilla bug record of the form::"
msgstr ""
msgid ""
" Changeset 3b16791d6642 in repository-name.\n"
" http://dev.domain.com/hg/repository-name/rev/3b16791d6642"
msgstr ""
msgid " Changeset commit comment. Bug 1234.\n"
msgid "connecting to %s:%s as %s, password %s\n"
msgstr "sto connettendomi a %s:%s come %s, password %s\n"
msgstr "schema del database sconosciuto"
msgid "bug %d already knows about changeset %s\n"
msgstr "il bug %d è già a conoscenza del changeset %s\n"
msgid "telling bugzilla to send mail:\n"
msgstr "sto dicendo a bugzilla di inviare la mail:\n"
msgid " bug %s\n"
msgstr " bug %s\n"
msgid "running notify command %s\n"
msgstr "sto eseguendo il comando di notifica %s\n"
msgid "bugzilla notify command %s"
msgstr "comando di notifica di bugzilla %s"
msgid "done\n"
msgstr "fatto\n"
msgid "looking up user %s\n"
msgstr "ricercando l'utente %s\n"
msgid "cannot find bugzilla user id for %s"
msgstr "impossibile trovare nome utente bugzilla per %s"
#, python-format
msgid "cannot find bugzilla user id for %s or %s"
msgstr "impossibile trovare nome utente bugzilla per %s o %s"
msgid "bugzilla version %s not supported"
msgstr "versione di bugzilla %s non supportata"
msgid ""
"changeset {node|short} in repo {root} refers to bug {bug}.\n"
"details:\n"
"\t{desc|tabindent}"
msgstr ""
"changeset {node|short} nel repository {root} si riferisce al bug {bug}.\n"
"dettagli:\n"
"\t{desc|tabindent}"
msgid "python mysql support not available: %s"
msgstr "il supporto per python per mysql non è disponibile: %s"
msgid "hook type %s does not pass a changeset id"
msgstr ""
msgid "database error: %s"
msgstr "errore del database: %s"
msgid "command to display child changesets"
msgstr "comando per mostrare i changeset figli"
msgid "show the children of the given or working directory revision"
msgstr ""
"mostra i figli della revisione data o di quella della directory di lavoro"
" Print the children of the working directory's revisions. If a\n"
" revision is given via -r/--rev, the children of that revision will\n"
" be printed. If a file argument is given, revision in which the\n"
" file was last changed (after the working directory revision or the\n"
" argument to --rev if given) is printed.\n"
" Stampa le revisioni figlie della directory di lavoro. Se una\n"
" revisione è data tramite --rev, verranno stampati i figli di\n"
" quella revisione. Se viene fornito un file come argomento,\n"
" verrà stampata l'ultima revisione in cui il file è stato\n"
" modificato (dopo la revisione della directory di lavoro\n"
" o dell'argomento di --rev se fornito).\n"
" "
msgid "REV"
msgstr "REV"
msgid "show children of the specified revision"
msgstr "mostra i figli della revisione specificata"
msgid "hg children [-r REV] [FILE]"
msgstr "hg·children·[-r·REV]·[FILE]"
msgid "command to display statistics about repository history"
msgstr "comando per mostrare statistiche sulla storia del repository"
msgid "Revision %d is a merge, ignoring...\n"
msgstr "La revisione %d è un merge, ignoro...\n"
msgid "analyzing"
msgstr "sto effettuando l'analisi"
msgid "histogram of changes to the repository"
msgstr "istogramma delle modifiche al repository"
" This command will display a histogram representing the number\n"
" of changed lines or revisions, grouped according to the given\n"
" template. The default template will group changes by author.\n"
" The --dateformat option may be used to group the results by\n"
" date instead."
msgstr ""
msgid ""
" Statistics are based on the number of changed lines, or\n"
" alternatively the number of matching revisions if the\n"
" --changesets option is specified."
msgstr ""
msgid " Examples::"
" # display count of changed lines for every committer\n"
" hg churn -t '{author|email}'"
msgstr ""
msgid ""
" hg churn -f '%H' -s -c"
msgstr ""
msgid ""
" # display activity of developers by month\n"
" hg churn -f '%Y-%m' -s -c"
msgstr ""
msgid ""
" # display count of lines changed in every year\n"
" hg churn -f '%Y' -s"
msgstr ""
msgid ""
" It is possible to map alternate email addresses to a main address\n"
" by providing a file using the following format::"
msgstr ""
msgid " <alias email> = <actual email>"
" Such a file may be specified with the --aliases option, otherwise\n"
" a .hgchurn file will be looked for in the working directory root.\n"
" "
msgstr ""
#, python-format
msgid "skipping malformed alias: %s\n"
msgstr "sto saltando un alias malformato: %s\n"
msgid "count rate for the specified revision or range"
msgstr "misura velocità per le revisioni o il range specificati"
msgid "DATE"
msgid "count rate for revisions matching date spec"
msgstr "misura velocità per le revisioni che corrispondono ad una data fornita"
msgid "TEMPLATE"
msgid "template to group changesets"
msgstr ""
msgid "FORMAT"
msgid "strftime-compatible format for grouping by date"
msgstr ""
msgid "count rate by number of changesets"
msgstr "misura velocità dal numero di changeset"
msgid "sort by key (default: sort by count)"
msgstr "ordina per chiave (default: ordina per conteggio)"
msgid "display added/removed lines separately"
msgstr ""
msgid "FILE"
msgstr "FILE"
msgid "hg churn [-d DATE] [-r REV] [--aliases FILE] [FILE]"
msgstr "hg churn [-d DATA] [-r REV] [--aliases FILE] [FILE]"
msgid "colorize output from some commands"
msgstr ""
msgid ""
"This extension modifies the status and resolve commands to add color to "
"their\n"
"output to reflect file status, the qseries command to add color to reflect\n"
"patch status (applied, unapplied, missing), and to diff-related\n"
"commands to highlight additions, removals, diff headers, and trailing\n"
"whitespace."
msgstr ""
msgid ""
"Other effects in addition to color, like bold and underlined text, are\n"
"also available. Effects are rendered with the ECMA-48 SGR control\n"
"function (aka ANSI escape codes)."
msgstr ""
msgid "Default effects may be overridden from your configuration file::"
" [color]\n"
" status.modified = blue bold underline red_background\n"
" status.added = green bold\n"
" status.removed = red bold blue_background\n"
" status.deleted = cyan bold underline\n"
" status.unknown = magenta bold underline\n"
" status.ignored = black bold"
msgstr ""
msgid ""
" # 'none' turns off all effects\n"
" status.clean = none\n"
" status.copied = none"
msgstr ""
msgid ""
" qseries.applied = blue bold underline\n"
" qseries.unapplied = black bold\n"
" qseries.missing = red bold"
msgstr ""
msgid ""
" diff.diffline = bold\n"
" diff.extended = cyan bold\n"
" diff.file_a = red bold\n"
" diff.file_b = green bold\n"
" diff.hunk = magenta\n"
" diff.deleted = red\n"
" diff.inserted = green\n"
" diff.changed = white\n"
" diff.trailingwhitespace = bold red_background"
msgstr ""
msgid ""
" resolve.unresolved = red bold\n"
" resolve.resolved = green bold"
msgstr ""
msgid " bookmarks.current = green"
msgstr " bookmarks.current = green"
msgid ""
" branches.active = none\n"
" branches.closed = black bold\n"
" branches.current = green\n"
" branches.inactive = none"
msgstr ""
msgid ""
"The color extension will try to detect whether to use ANSI codes or\n"
"Win32 console APIs, unless it is made explicit::"
msgstr ""
msgid ""
" [color]\n"
" mode = ansi"
msgstr ""
msgid "Any value other than 'ansi', 'win32', or 'auto' will disable color."
msgstr ""
#, python-format
msgid "ignoring unknown color/effect %r (configured in color.%s)\n"
msgstr ""
#, python-format
msgid "warning: failed to set color mode to %s\n"
msgstr ""
#. i18n: 'always', 'auto', and 'never' are keywords and should
#. not be translated
msgid "when to colorize (boolean, always, auto, or never)"
msgstr "quando colorare (booleano, sempre, auto o mai)"
msgid "TYPE"
msgid "import revisions from foreign VCS repositories into Mercurial"
msgstr "importa revisioni da repository di altri VCS in Mercurial"
msgid "convert a foreign SCM repository to a Mercurial one."
msgstr ""
msgid " Accepted source formats [identifiers]:"
msgstr ""
msgid ""
" - Mercurial [hg]\n"
" - CVS [cvs]\n"
" - Darcs [darcs]\n"
" - git [git]\n"
" - Subversion [svn]\n"
" - Monotone [mtn]\n"
" - GNU Arch [gnuarch]\n"
" - Bazaar [bzr]\n"
" - Perforce [p4]"
msgstr ""
msgid " Accepted destination formats [identifiers]:"
msgstr ""
msgid ""
" - Subversion [svn] (history on branches is not preserved)"
msgstr ""
msgid ""
" If no revision is given, all revisions will be converted.\n"
" Otherwise, convert will only import up to the named revision\n"
" (given in a format understood by the source)."
msgstr ""
msgid ""
" If no destination directory name is specified, it defaults to the\n"
" basename of the source with ``-hg`` appended. If the destination\n"
" repository doesn't exist, it will be created."
msgstr ""
msgid ""
" By default, all sources except Mercurial will use --branchsort.\n"
" Mercurial uses --sourcesort to preserve original revision numbers\n"
" order. Sort modes have the following effects:"
msgstr ""
msgid ""
" --branchsort convert from parent to child revision when possible,\n"
" which means branches are usually converted one after\n"
" the other. It generates more compact repositories."
msgstr ""
msgid ""
" --datesort sort revisions by date. Converted repositories have\n"
" good-looking changelogs but are often an order of\n"
" magnitude larger than the same ones generated by\n"
" --branchsort."
msgstr ""
msgid ""
" --sourcesort try to preserve source revisions order, only\n"
" supported by Mercurial sources."
msgstr ""
msgid ""
" If ``REVMAP`` isn't given, it will be put in a default location\n"
" (``<dest>/.hg/shamap`` by default). The ``REVMAP`` is a simple\n"
" text file that maps each source commit ID to the destination ID\n"
" for that revision, like so::"
msgstr ""
msgid " <source ID> <destination ID>"
msgstr ""
msgid ""
" If the file doesn't exist, it's automatically created. It's\n"
" updated on each commit copied, so :hg:`convert` can be interrupted\n"
" and can be run repeatedly to copy new commits."
msgstr ""
msgid ""
" The authormap is a simple text file that maps each source commit\n"
" author to a destination commit author. It is handy for source SCMs\n"
" that use unix logins to identify authors (eg: CVS). One line per\n"
" author mapping and the line format is::"
msgstr ""
msgid " source author = destination author"
msgstr " autore sorgente = autore destinatario"
msgid " Empty lines and lines starting with a ``#`` are ignored."
msgstr " Linee vuote e linee che iniziano con un ``#`` vengono ignorate."
" The filemap is a file that allows filtering and remapping of files\n"
" and directories. Each line can contain one of the following\n"
" directives::"
msgstr ""
msgid " include path/to/file-or-dir"
msgstr " include percorso/al/file-o-dir"
msgid " exclude path/to/file-or-dir"
msgstr " esclude percorso/al/file-o-dir"
msgid " rename path/to/source path/to/destination"
msgstr " rinomina percorso/sorgente percorso/destinazione"
msgid ""
" Comment lines start with ``#``. A specified path matches if it\n"
" equals the full relative name of a file or one of its parent\n"
" directories. The ``include`` or ``exclude`` directive with the\n"
" longest matching path applies, so line order does not matter."
msgstr ""
msgid ""
" The ``include`` directive causes a file, or all files under a\n"
" directory, to be included in the destination repository, and the\n"
" exclusion of all other files and directories not explicitly\n"
" included. The ``exclude`` directive causes files or directories to\n"
" be omitted. The ``rename`` directive renames a file or directory if\n"
" it is converted. To rename from a subdirectory into the root of\n"
" the repository, use ``.`` as the path to rename to."
" The splicemap is a file that allows insertion of synthetic\n"
" history, letting you specify the parents of a revision. This is\n"
" useful if you want to e.g. give a Subversion merge two parents, or\n"
" graft two disconnected series of history together. Each entry\n"
" contains a key, followed by a space, followed by one or two\n"
" comma-separated values::"
msgstr ""
msgid " key parent1, parent2"
msgstr ""
msgid ""
" The key is the revision ID in the source\n"
" revision control system whose parents should be modified (same\n"
" format as a key in .hg/shamap). The values are the revision IDs\n"
" (in either the source or destination revision control system) that\n"
" should be used as the new parents for that node. For example, if\n"
" you have merged \"release-1.0\" into \"trunk\", then you should\n"
" specify the revision on \"trunk\" as the first parent and the one on\n"
" the \"release-1.0\" branch as the second."
" The branchmap is a file that allows you to rename a branch when it is\n"
" being brought in from whatever external repository. When used in\n"
" conjunction with a splicemap, it allows for a powerful combination\n"
" to help fix even the most badly mismanaged repositories and turn them\n"
" into nicely structured Mercurial repositories. The branchmap contains\n"