1 #
   2 # Copyright (c) 2010, 2019, Oracle and/or its affiliates. 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.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # This properties file is used to create a PropertyResourceBundle
  27 # It contains Locale specific strings used in Swing
  28 # Currently, the following components need this for support:
  29 #
  30 #    ColorChooser
  31 #    FileChooser
  32 #    OptionPane
  33 #
  34 # When this file is read in, the strings are put into the
  35 # defaults table.  This is an implementation detail of the current
  36 # workings of Swing.  DO NOT DEPEND ON THIS.
  37 # This may change in future versions of Swing as we improve localization
  38 # support.
  39 #
  40 #                        MNEMONIC NOTE:
  41 # Many of strings in this file are used by widgets that have a
  42 # mnemonic, for example:
  43 #   ColorChooser.rgbNameTextAndMnemonic=R&GB
  44 #
  45 # Indicates that the tab in the ColorChooser for RGB colors will have
  46 # the text 'RGB', further the mnemonic character will be 'g' and that
  47 # a decoration will be provided under the 'G'. This will typically
  48 # look like:  RGB
  49 #              -
  50 #
  51 # One important thing to remember is that the mnemonic MUST exist in
  52 # the String, if it does not exist you should add text that makes it
  53 # exist. This will typically take the form 'XXXX (M)' where M is the
  54 # character for the mnemonic.
  55 #
  56 # @author Steve Wilson
  57 
  58 ############ FILE CHOOSER STRINGS #############
  59 FileChooser.fileDescription.textAndMnemonic=File generico
  60 FileChooser.directoryDescription.textAndMnemonic=Directory
  61 FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
  62 FileChooser.newFolderErrorSeparator= :
  63 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
  64 FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
  65 FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
  66 FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
  67 FileChooser.renameErrorFileExists.textAndMnemonic=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome. 
  68 FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
  69 FileChooser.cancelButton.textAndMnemonic=Annulla
  70 FileChooser.saveButton.textAndMnemonic=Salva
  71 FileChooser.openButton.textAndMnemonic=Apri
  72 FileChooser.saveDialogTitle.textAndMnemonic=Salva
  73 FileChooser.openDialogTitle.textAndMnemonic=Apri
  74 FileChooser.updateButton.textAndMnemonic=Ag&giorna
  75 FileChooser.helpButton.textAndMnemonic=&?
  76 FileChooser.directoryOpenButton.textAndMnemonic=Apri
  77 
  78 # File Size Units
  79 FileChooser.fileSizeKiloBytes={0} KB
  80 FileChooser.fileSizeMegaBytes={0} MB
  81 FileChooser.fileSizeGigaBytes={0} GB
  82 
  83 # These strings are platform dependent not look and feel dependent.
  84 FileChooser.win32.newFolder=Nuova cartella
  85 FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
  86 FileChooser.other.newFolder=NewFolder
  87 FileChooser.other.newFolder.subsequent=NewFolder.{0}
  88 
  89 
  90 ## file chooser tooltips ###
  91 FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
  92 FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
  93 FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
  94 FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
  95 FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
  96 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Apre la directory selezionata
  97 
  98 FileChooser.filesListAccessibleName=Lista dei file
  99 FileChooser.filesDetailsAccessibleName=Dettagli file
 100 
 101 ############ COLOR CHOOSER STRINGS #############
 102 ColorChooser.preview.textAndMnemonic=Anteprima
 103 ColorChooser.ok.textAndMnemonic=OK
 104 ColorChooser.cancel.textAndMnemonic=Annulla
 105 ColorChooser.reset.textAndMnemonic=&Reimposta
 106 ColorChooser.sample.textAndMnemonic=Testo di prova          Testo di prova
 107 ColorChooser.swatches.textAndMnemonic=Colori cam&pione
 108 ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
 109 ColorChooser.hsv.textAndMnemonic=&HSV
 110 ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
 111 ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
 112 ColorChooser.hsvValue.textAndMnemonic=Valore
 113 ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
 114 ColorChooser.hsl.textAndMnemonic=HS&L
 115 ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
 116 ColorChooser.hslSaturation.textAndMnemonic=Saturazione
 117 ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
 118 ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
 119 ColorChooser.rgb.textAndMnemonic=R&GB
 120 ColorChooser.rgbRed.textAndMnemonic=Ro&sso
 121 ColorChooser.rgbGreen.textAndMnemonic=Ver&de
 122 ColorChooser.rgbBlue.textAndMnemonic=&Blu
 123 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
 124 ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
 125 ColorChooser.cmyk.textAndMnemonic=C&MYK
 126 ColorChooser.cmykCyan.textAndMnemonic=Ciano
 127 ColorChooser.cmykMagenta.textAndMnemonic=Magenta
 128 ColorChooser.cmykYellow.textAndMnemonic=Giallo
 129 ColorChooser.cmykBlack.textAndMnemonic=Nero
 130 ColorChooser.cmykAlpha.textAndMnemonic=Alfa
 131 
 132 ############ OPTION PANE STRINGS #############
 133 # We only define mnemonics for YES/NO, but for completeness you can
 134 # define mnemonics for any of the buttons.
 135 OptionPane.yesButton.textAndMnemonic=&S\u00EC
 136 OptionPane.noButton.textAndMnemonic=&No
 137 OptionPane.okButton.textAndMnemonic=OK
 138 #OptionPane.okButtonMnemonic=0
 139 OptionPane.cancelButton.textAndMnemonic=Annulla
 140 #OptionPane.cancelButtonMnemonic=0
 141 OptionPane.title.textAndMnemonic=Selezionare una opzione
 142 # Title for the dialog for the showInputDialog methods. Only used if
 143 # the developer uses one of the variants that doesn't take a title.
 144 OptionPane.inputDialog.titleAndMnemonic=Input
 145 # Title for the dialog for the showMessageDialog methods. Only used if
 146 # the developer uses one of the variants that doesn't take a title.
 147 OptionPane.messageDialog.titleAndMnemonic=Messaggio
 148 
 149 ############ Printing Dialog Strings ############
 150 PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
 151 PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
 152 
 153 PrintingDialog.contentInitial.textAndMnemonic=Stampa in corso...
 154 
 155 # The following string will be formatted by a MessageFormat
 156 # and {0} will be replaced by page number being printed
 157 PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
 158 
 159 PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
 160 
 161 PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
 162 PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
 163 
 164 ############ Internal Frame Strings ############
 165 InternalFrame.iconButtonToolTip=Riduci a icona
 166 InternalFrame.maxButtonToolTip=Ingrandisci
 167 InternalFrame.restoreButtonToolTip=Ripristina
 168 InternalFrame.closeButtonToolTip=Chiudi
 169 
 170 ############ Internal Frame Title Pane Strings ############
 171 InternalFrameTitlePane.restoreButton.textAndMnemonic=&Ripristina
 172 InternalFrameTitlePane.moveButton.textAndMnemonic=&Sposta
 173 InternalFrameTitlePane.sizeButton.textAndMnemonic=R&idimensiona
 174 InternalFrameTitlePane.minimizeButton.textAndMnemonic=Ri&duci a icona
 175 InternalFrameTitlePane.maximizeButton.textAndMnemonic=In&grandisci
 176 InternalFrameTitlePane.closeButton.textAndMnemonic=&Chiudi
 177 
 178 ############ Text strings #############
 179 # Used for html forms
 180 FormView.submitButton.textAndMnemonic=Sottometti query
 181 FormView.resetButton.textAndMnemonic=Reimposta
 182 FormView.browseFileButton.textAndMnemonic=Sfoglia...
 183 
 184 ############ Abstract Document Strings ############
 185 AbstractDocument.styleChange.textAndMnemonic=modifica di stile
 186 AbstractDocument.addition.textAndMnemonic=aggiunta
 187 AbstractDocument.deletion.textAndMnemonic=eliminazione
 188 AbstractDocument.undo.textAndMnemonic=Annulla
 189 AbstractDocument.redo.textAndMnemonic=Ripeti
 190 
 191 ############ Abstract Button Strings ############
 192 AbstractButton.click.textAndMnemonic=fare clic
 193 
 194 ############ Abstract Undoable Edit Strings ############
 195 AbstractUndoableEdit.undo.textAndMnemonic=Annulla
 196 AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
 197 
 198 ############ Combo Box Strings ############
 199 ComboBox.togglePopup.textAndMnemonic=togglePopup
 200 
 201 ############ Progress Monitor Strings ############
 202 ProgressMonitor.progress.textAndMnemonic=Avanzamento...
 203 
 204 ############ Split Pane Strings ############
 205 SplitPane.leftButton.textAndMnemonic=tasto sinistro
 206 SplitPane.rightButton.textAndMnemonic=tasto destro
 207 # Used for Isindex
 208 IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
 209 
 210 ############ InternalFrameTitlePane Strings ############
 211 InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
 212 InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
 213 InternalFrameTitlePane.closeButtonAccessibleName=Chiudi