1 # This properties file is used to create a PropertyResourceBundle
   2 # It contains Locale specific strings used in Swing
   3 # Currently, the following components need this for support:
   4 #
   5 #    ColorChooser
   6 #    FileChooser
   7 #    OptionPane
   8 #
   9 # When this file is read in, the strings are put into the
  10 # defaults table.  This is an implementation detail of the current
  11 # workings of Swing.  DO NOT DEPEND ON THIS.
  12 # This may change in future versions of Swing as we improve localization
  13 # support.
  14 #
  15 #                        MNEMONIC NOTE:
  16 # Many of strings in this file are used by widgets that have a
  17 # mnemonic, for example:
  18 #   ColorChooser.rgbNameTextAndMnemonic=R&GB
  19 #
  20 # Indicates that the tab in the ColorChooser for RGB colors will have
  21 # the text 'RGB', further the mnemonic character will be 'g' and that
  22 # a decoration will be provided under the 'G'. This will typically
  23 # look like:  RGB
  24 #              -
  25 #
  26 # One important thing to remember is that the mnemonic MUST exist in
  27 # the String, if it does not exist you should add text that makes it
  28 # exist. This will typically take the form 'XXXX (M)' where M is the
  29 # character for the mnemonic.
  30 #
  31 # @author Steve Wilson
  32 
  33 ############ FILE CHOOSER STRINGS #############
  34 FileChooser.fileDescription.textAndMnemonic=Generic File
  35 FileChooser.directoryDescription.textAndMnemonic=Directory
  36 FileChooser.newFolderError.textAndMnemonic=Error creating new folder
  37 FileChooser.newFolderErrorSeparator= :
  38 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
  39 FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
  40 FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
  41 FileChooser.renameError.textAndMnemonic=Cannot rename {0}
  42 FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
  43   Specify a different file name.
  44 FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
  45 FileChooser.cancelButton.textAndMnemonic=Cancel
  46 FileChooser.saveButton.textAndMnemonic=Save
  47 FileChooser.openButton.textAndMnemonic=Open
  48 FileChooser.saveDialogTitle.textAndMnemonic=Save
  49 FileChooser.openDialogTitle.textAndMnemonic=Open
  50 FileChooser.updateButton.textAndMnemonic=&Update
  51 FileChooser.helpButton.textAndMnemonic=&Help
  52 FileChooser.directoryOpenButton.textAndMnemonic=Open
  53 
  54 # File Size Units
  55 FileChooser.fileSizeKiloBytes={0} KB
  56 FileChooser.fileSizeMegaBytes={0} MB
  57 FileChooser.fileSizeGigaBytes={0} GB
  58 
  59 # These strings are platform dependent not look and feel dependent.
  60 FileChooser.win32.newFolder=New Folder
  61 FileChooser.win32.newFolder.subsequent=New Folder ({0})
  62 FileChooser.other.newFolder=NewFolder
  63 FileChooser.other.newFolder.subsequent=NewFolder.{0}
  64 
  65 
  66 ## file chooser tooltips ###
  67 FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
  68 FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
  69 FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
  70 FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
  71 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
  72 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
  73 
  74 FileChooser.filesListAccessibleName=Files List
  75 FileChooser.filesDetailsAccessibleName=Files Details
  76 
  77 ############ COLOR CHOOSER STRINGS #############
  78 ColorChooser.preview.textAndMnemonic=Preview
  79 ColorChooser.ok.textAndMnemonic=OK
  80 ColorChooser.cancel.textAndMnemonic=Cancel
  81 ColorChooser.reset.textAndMnemonic=&Reset
  82 ColorChooser.sample.textAndMnemonic=Sample Text  Sample Text
  83 ColorChooser.swatches.textAndMnemonic=&Swatches
  84 ColorChooser.swatchesRecent.textAndMnemonic=Recent:
  85 ColorChooser.hsv.textAndMnemonic=&HSV
  86 ColorChooser.hsvHue.textAndMnemonic=Hue
  87 ColorChooser.hsvSaturation.textAndMnemonic=Saturation
  88 ColorChooser.hsvValue.textAndMnemonic=Value
  89 ColorChooser.hsvTransparency.textAndMnemonic=Transparency
  90 ColorChooser.hsl.textAndMnemonic=HS&L
  91 ColorChooser.hslHue.textAndMnemonic=Hue
  92 ColorChooser.hslSaturation.textAndMnemonic=Saturation
  93 ColorChooser.hslLightness.textAndMnemonic=Lightness
  94 ColorChooser.hslTransparency.textAndMnemonic=Transparency
  95 ColorChooser.rgb.textAndMnemonic=R&GB
  96 ColorChooser.rgbRed.textAndMnemonic=Re&d
  97 ColorChooser.rgbGreen.textAndMnemonic=Gree&n
  98 ColorChooser.rgbBlue.textAndMnemonic=&Blue
  99 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
 100 ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
 101 ColorChooser.cmyk.textAndMnemonic=C&MYK
 102 ColorChooser.cmykCyan.textAndMnemonic=Cyan
 103 ColorChooser.cmykMagenta.textAndMnemonic=Magenta
 104 ColorChooser.cmykYellow.textAndMnemonic=Yellow
 105 ColorChooser.cmykBlack.textAndMnemonic=Black
 106 ColorChooser.cmykAlpha.textAndMnemonic=Alpha
 107 
 108 ############ OPTION PANE STRINGS #############
 109 # We only define mnemonics for YES/NO, but for completeness you can
 110 # define mnemonics for any of the buttons.
 111 OptionPane.yesButton.textAndMnemonic=&Yes
 112 OptionPane.noButton.textAndMnemonic=&No
 113 OptionPane.okButton.textAndMnemonic=OK
 114 #OptionPane.okButtonMnemonic=0
 115 OptionPane.cancelButton.textAndMnemonic=Cancel
 116 #OptionPane.cancelButtonMnemonic=0
 117 OptionPane.title.textAndMnemonic=Select an Option
 118 # Title for the dialog for the showInputDialog methods. Only used if
 119 # the developer uses one of the variants that doesn't take a title.
 120 OptionPane.inputDialog.titleAndMnemonic=Input
 121 # Title for the dialog for the showMessageDialog methods. Only used if
 122 # the developer uses one of the variants that doesn't take a title.
 123 OptionPane.messageDialog.titleAndMnemonic=Message
 124 
 125 ############ Printing Dialog Strings ############
 126 PrintingDialog.titleProgress.textAndMnemonic=Printing
 127 PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
 128 
 129 PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
 130 
 131 # The following string will be formatted by a MessageFormat
 132 # and {0} will be replaced by page number being printed
 133 PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
 134 
 135 PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
 136 
 137 PrintingDialog.abortButton.textAndMnemonic=&Abort
 138 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
 139 
 140 ############ Internal Frame Strings ############
 141 InternalFrame.iconButtonToolTip=Minimize
 142 InternalFrame.maxButtonToolTip=Maximize
 143 InternalFrame.restoreButtonToolTip=Restore
 144 InternalFrame.closeButtonToolTip=Close
 145 
 146 ############ Internal Frame Title Pane Strings ############
 147 InternalFrameTitlePane.restoreButton.textAndMnemonic=&Restore
 148 InternalFrameTitlePane.moveButton.textAndMnemonic=&Move
 149 InternalFrameTitlePane.sizeButton.textAndMnemonic=&Size
 150 InternalFrameTitlePane.minimizeButton.textAndMnemonic=Mi&nimize
 151 InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ma&ximize
 152 InternalFrameTitlePane.closeButton.textAndMnemonic=&Close
 153 
 154 ############ Text strings #############
 155 # Used for html forms
 156 FormView.submitButton.textAndMnemonic=Submit Query
 157 FormView.resetButton.textAndMnemonic=Reset
 158 FormView.browseFileButton.textAndMnemonic=Browse...
 159 
 160 ############ Abstract Document Strings ############
 161 AbstractDocument.styleChange.textAndMnemonic=style change
 162 AbstractDocument.addition.textAndMnemonic=addition
 163 AbstractDocument.deletion.textAndMnemonic=deletion
 164 AbstractDocument.undo.textAndMnemonic=Undo
 165 AbstractDocument.redo.textAndMnemonic=Redo
 166 
 167 ############ Abstract Button Strings ############
 168 AbstractButton.click.textAndMnemonic=click
 169 
 170 ############ Abstract Undoable Edit Strings ############
 171 AbstractUndoableEdit.undo.textAndMnemonic=Undo
 172 AbstractUndoableEdit.redo.textAndMnemonic=Redo
 173 
 174 ############ Combo Box Strings ############
 175 ComboBox.togglePopup.textAndMnemonic=togglePopup
 176 
 177 ############ Progress Monitor Strings ############
 178 ProgressMonitor.progress.textAndMnemonic=Progress...
 179 
 180 ############ Split Pane Strings ############
 181 SplitPane.leftButton.textAndMnemonic=left button
 182 SplitPane.rightButton.textAndMnemonic=right button
 183 # Used for Isindex
 184 IsindexView.prompt=This is a searchable index.  Enter search keywords:
 185 
 186 ############ InternalFrameTitlePane Strings ############
 187 InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
 188 InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
 189 InternalFrameTitlePane.closeButtonAccessibleName=Close