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.rgbNameText=RGB
  19 #   ColorChooser.rgbMnemonic=71
  20 #   ColorChooser.rgbDisplayedMnemonicIndex=1
  21 # Indicates that the tab in the ColorChooser for RGB colors will have
  22 # the text 'RGB', further the mnemonic character will be 'g' and that
  23 # a decoration will be provided under the 'G'. This will typically
  24 # look like:  RGB
  25 #              -
  26 # 71 corresponds to the decimal value of the VK constant defined
  27 # in java/awt/KeyEvent.java. VK_G is defined as:
  28 #
  29 #    public static final int VK_G              = 0x47;
  30 #
  31 # 0x47 is a hex number and needs to be converted to decimal.
  32 # A simple way to calculate this for a-z is to add 64 to the index of
  33 # the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
  34 # for 'a' is 65, 'b' is 66...
  35 #
  36 # The xxDisplayedMnemonicIndex is used to indicate the index of the
  37 # character that should be underlined in the String, with 0
  38 # corresponding to the first character in the String.
  39 #
  40 # One important thing to remember is that the mnemonic MUST exist in
  41 # the String, if it does not exist you should add text that makes it
  42 # exist. This will typically take the form 'XXXX (M)' where M is the
  43 # character for the mnemonic.
  44 # 
  45 # @author Steve Wilson
  46 
  47 ############ FILE CHOOSER STRINGS #############
  48 FileChooser.fileDescriptionText=\u4E00\u822C\u6A94\u6848
  49 FileChooser.directoryDescriptionText=\u76EE\u9304
  50 FileChooser.newFolderErrorText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
  51 FileChooser.newFolderErrorSeparator= : 
  52 FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
  53 FileChooser.newFolderParentDoesntExistText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
  54 FileChooser.renameErrorTitleText=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002
  55 FileChooser.renameErrorText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
  56 FileChooser.renameErrorFileExistsText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}: \u5DF2\u7D93\u5B58\u5728\u60A8\u6240\u6307\u5B9A\u540D\u7A31\u7684\u6A94\u6848\u3002\u8ACB\u6307\u5B9A\u4E0D\u540C\u7684\u540D\u7A31\u3002
  57 FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
  58 FileChooser.cancelButtonText=\u53D6\u6D88
  59 FileChooser.cancelButtonMnemonic=67
  60 FileChooser.saveButtonText=\u5132\u5B58
  61 FileChooser.saveButtonMnemonic=83
  62 FileChooser.openButtonText=\u958B\u555F
  63 FileChooser.openButtonMnemonic=79
  64 FileChooser.saveDialogTitleText=\u5132\u5B58
  65 FileChooser.openDialogTitleText=\u958B\u555F
  66 FileChooser.updateButtonText=\u66F4\u65B0
  67 FileChooser.updateButtonMnemonic=85
  68 FileChooser.helpButtonText=\u8AAA\u660E
  69 FileChooser.helpButtonMnemonic=72
  70 FileChooser.directoryOpenButtonText=\u958B\u555F
  71 FileChooser.directoryOpenButtonMnemonic=79
  72 
  73 # File Size Units
  74 FileChooser.fileSizeKiloBytes={0} KB
  75 FileChooser.fileSizeMegaBytes={0} MB
  76 FileChooser.fileSizeGigaBytes={0} GB
  77 
  78 # These strings are platform dependent not look and feel dependent.
  79 FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
  80 FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
  81 FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
  82 FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
  83 
  84 
  85 ## file chooser tooltips ###
  86 FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
  87 FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
  88 FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
  89 FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
  90 FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
  91 FileChooser.directoryOpenButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
  92 
  93 ############ COLOR CHOOSER STRINGS #############
  94 ColorChooser.previewText=\u9810\u89BD
  95 ColorChooser.okText=\u78BA\u5B9A
  96 ColorChooser.cancelText=\u53D6\u6D88
  97 ColorChooser.resetText=\u91CD\u8A2D
  98 # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
  99 ColorChooser.resetMnemonic=82
 100 ColorChooser.sampleText=\u7BC4\u4F8B\u6587\u5B57  \u7BC4\u4F8B\u6587\u5B57
 101 ColorChooser.swatchesNameText=\u8ABF\u8272\u677F
 102 ColorChooser.swatchesMnemonic=83
 103 ColorChooser.swatchesDisplayedMnemonicIndex=4
 104 ColorChooser.swatchesRecentText=\u6700\u65B0\u9078\u64C7:
 105 ColorChooser.hsbNameText=HSB
 106 # Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
 107 # constant, and an index into the text to render the mnemonic as. The
 108 # mnemonic is xxxMnemonic and the index of the character to underline is
 109 # xxxDisplayedMnemonicIndex.
 110 ColorChooser.hsbMnemonic=72
 111 ColorChooser.hsbDisplayedMnemonicIndex=0
 112 ColorChooser.hsbHueText=H
 113 ColorChooser.hsbSaturationText=S
 114 ColorChooser.hsbBrightnessText=B
 115 ColorChooser.hsbRedText=R
 116 ColorChooser.hsbGreenText=G
 117 ColorChooser.hsbBlueText=B
 118 ColorChooser.rgbNameText=RGB
 119 ColorChooser.rgbMnemonic=71
 120 ColorChooser.rgbDisplayedMnemonicIndex=1
 121 ColorChooser.rgbRedText=\u7D05\u8272
 122 ColorChooser.rgbRedMnemonic=68
 123 ColorChooser.rgbGreenText=\u7DA0\u8272
 124 ColorChooser.rgbGreenMnemonic=78
 125 ColorChooser.rgbBlueText=\u85CD\u8272
 126 ColorChooser.rgbBlueMnemonic=66
 127 
 128 ############ OPTION PANE STRINGS #############
 129 # Mnemonic keys correspond to KeyEvent.VK_XXX constant
 130 # We only define mnemonics for YES/NO, but for completeness you can
 131 # define mnemonics for any of the buttons.
 132 OptionPane.yesButtonText=\u662F
 133 OptionPane.yesButtonMnemonic=89
 134 OptionPane.noButtonText=\u5426
 135 OptionPane.noButtonMnemonic=78
 136 OptionPane.okButtonText=\u78BA\u5B9A
 137 OptionPane.okButtonMnemonic=0
 138 OptionPane.cancelButtonText=\u53D6\u6D88
 139 OptionPane.cancelButtonMnemonic=0
 140 OptionPane.titleText=\u9078\u53D6\u4E00\u500B\u9078\u9805
 141 # Title for the dialog for the showInputDialog methods. Only used if
 142 # the developer uses one of the variants that doesn't take a title.
 143 OptionPane.inputDialogTitle=\u8F38\u5165
 144 # Title for the dialog for the showMessageDialog methods. Only used if
 145 # the developer uses one of the variants that doesn't take a title.
 146 OptionPane.messageDialogTitle=\u8A0A\u606F
 147 
 148 ############ Printing Dialog Strings ############
 149 PrintingDialog.titleProgressText=\u5217\u5370
 150 PrintingDialog.titleAbortingText=\u5217\u5370 (\u4E2D\u6B62)
 151 
 152 PrintingDialog.contentInitialText=\u6B63\u5728\u5217\u5370...
 153 
 154 # The following string will be formatted by a MessageFormat
 155 # and {0} will be replaced by page number being printed
 156 PrintingDialog.contentProgressText=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
 157  
 158 PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
 159  
 160 PrintingDialog.abortButtonText=\u4E2D\u6B62
 161 PrintingDialog.abortButtonMnemonic=65
 162 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
 163 PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u5217\u5370
 164 
 165 ############ Internal Frame Strings ############
 166 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
 167 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
 168 InternalFrame.restoreButtonToolTip=\u5FA9\u539F
 169 InternalFrame.closeButtonToolTip=\u95DC\u9589
 170 
 171 ############ Internal Frame Title Pane Strings ############
 172 InternalFrameTitlePane.restoreButtonText=\u5FA9\u539F
 173 InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
 174 InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F
 175 InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
 176 InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
 177 InternalFrameTitlePane.closeButtonText=\u95DC\u9589
 178 
 179 ############ Text strings #############
 180 # Used for html forms
 181 FormView.submitButtonText=\u9001\u51FA\u67E5\u8A62
 182 FormView.resetButtonText=\u91CD\u8A2D
 183 FormView.browseFileButtonText=\u700F\u89BD...
 184 
 185 ############ Abstract Document Strings ############
 186 AbstractDocument.styleChangeText=\u6A23\u5F0F\u8B8A\u66F4
 187 AbstractDocument.additionText=\u9644\u52A0
 188 AbstractDocument.deletionText=\u522A\u9664
 189 AbstractDocument.undoText=\u9084\u539F
 190 AbstractDocument.redoText=\u91CD\u505A
 191 
 192 ############ Abstract Button Strings ############
 193 AbstractButton.clickText=\u6309\u4E00\u4E0B
 194 
 195 ############ Abstract Undoable Edit Strings ############
 196 AbstractUndoableEdit.undoText=\u9084\u539F
 197 AbstractUndoableEdit.redoText=\u91CD\u505A
 198 
 199 ############ Combo Box Strings ############
 200 ComboBox.togglePopupText=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
 201 
 202 ############ Progress Monitor Strings ############
 203 ProgressMonitor.progressText=\u9032\u5EA6...
 204 
 205 ############ Split Pane Strings ############
 206 SplitPane.leftButtonText=\u5DE6\u6309\u9215
 207 SplitPane.rightButtonText=\u53F3\u6309\u9215
 208 # Used for Isindex
 209 IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57: 
 210 
 211 ############ InternalFrameTitlePane Strings ############
 212 InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316
 213 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
 214 InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589