blob: cfb9d63ff96671c47bc122cbd01143bc79a93b08 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2# Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation. Sun designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Sun in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22# CA 95054 USA or visit www.sun.com if you need additional information or
23# have any questions.
24#
25
26error.cant.open=\
27 impossibile aprire: {0}
28error.illegal.option=\
29 Opzione non valida: {0}
30error.bad.option=\
31 \u00c8 necessario specificare una delle opzioni -{ctxu}.
32error.bad.cflag=\
33 Per il flag 'c' \u00e8 necessario specificare file manifesto o di input.
34error.bad.uflag=\
35 Per il flag 'u' \u00e8 necessario specificare il flag 'e' oppure file manifesto o di input.
36error.bad.eflag=\
37 Il flag 'e' e il manifesto con l'attributo 'Main-Class' non possono essere specificati\n\
38 insieme.
39error.nosuch.fileordir=\
40 {0} : impossibile trovare il file o la directory
41error.write.file=\
42 Errore durante la scrittura del file jar esistente
43error.create.dir=\
44 {0} : impossibile creare la directory
45error.incorrect.length=\
46 lunghezza non valida durante l''elaborazione: {0}
47out.added.manifest=\
48 aggiunto manifesto
49out.update.manifest=\
50 aggiornato manifesto
51out.ignore.entry=\
52 la voce {0} sar\u00e0 ignorata
53out.adding=\
54 aggiunta in corso di: {0}
55out.deflated=\
56 \ \(compresso {0}%)
57out.stored=\
58 \ \(archiviato 0%)
59out.create=\
60 \ \ \ \ \ creato: {0}
61out.extracted=\
62 \ \ \ estratto: {0}
63out.inflated=\
64 decompresso: {0}
65out.size=\
66 \ \(in = {0}) (out = {1})
67
68usage=\
69Utilizzo: jar {ctxui}[vfm0Me] [file-jar] [file-manifesto] [punto di ingresso] [-C dir] file ...\n\
70Opzioni:\n\
71\ \ -c crea un nuovo archivio\n\
72\ \ -t visualizza l'indice dell'archivio\n\
73\ \ -x estrae i file con nome (o tutti i file) dall'archivio\n\
74\ \ -u aggiorna l'archivio esistente\n\
75\ \ -v genera output commentato dall'output standard\n\
76\ \ -f specifica il nome file dell'archivio\n\
77\ \ -m include informazioni manifesto dal file manifesto specificato\n\
78\ \ -e specifica il punto di ingresso per l'applicazione stand-alone \n\
79\ \ inclusa nel file jar eseguibile\n\
80\ \ -0 solo memorizzazione; senza compressione ZIP\n\
81\ \ -M consente di non creare un file manifesto per le voci\n\
82\ \ -i genera informazioni sull'indice per i file jar specificati\n\
83\ \ -C imposta la directory specificata e include il file seguente\n\
84Se un file \u00e8 una directory, verr\u00e0 elaborato in modo ricorsivo.\n\
85Il nome del file manifesto, del file di archivio e del punto di ingresso devono\n\
86essere specificati nello stesso ordine dei flag 'm', 'f' ed 'e'.\n\n\
87Esempio 1: archiviazione di due file di classe in un archivio con il nome classes.jar: \n\
88\ \ jar cvf classes.jar Foo.class Bar.class \n\
89Esempio 2: utilizzo del file manifesto esistente 'mymanifest' e archiviazione di tutti i\n\
90\ \ file della directory foo/ in 'classes.jar': \n\
91\ \ jar cvfm classes.jar mymanifest -C foo/ .\n