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=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
  49 FileChooser.directoryDescriptionText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
  50 FileChooser.newFolderErrorText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
  51 FileChooser.newFolderErrorSeparator= : 
  52 FileChooser.newFolderParentDoesntExistTitleText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
  53 FileChooser.newFolderParentDoesntExistText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002
  54 FileChooser.renameErrorTitleText=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC
  55 FileChooser.renameErrorText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
  56 FileChooser.renameErrorFileExistsText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002 
  57 FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
  58 FileChooser.cancelButtonText=\u53D6\u6D88
  59 FileChooser.cancelButtonMnemonic=67
  60 FileChooser.saveButtonText=\u4FDD\u5B58
  61 FileChooser.saveButtonMnemonic=83
  62 FileChooser.openButtonText=\u958B\u304F
  63 FileChooser.openButtonMnemonic=79
  64 FileChooser.saveDialogTitleText=\u4FDD\u5B58
  65 FileChooser.openDialogTitleText=\u958B\u304F
  66 FileChooser.updateButtonText=\u66F4\u65B0
  67 FileChooser.updateButtonMnemonic=85
  68 FileChooser.helpButtonText=\u30D8\u30EB\u30D7
  69 FileChooser.helpButtonMnemonic=72
  70 FileChooser.directoryOpenButtonText=\u958B\u304F
  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\u898F\u30D5\u30A9\u30EB\u30C0
  80 FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
  81 FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
  82 FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
  83 
  84 
  85 ## file chooser tooltips ###
  86 FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059
  87 FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
  88 FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
  89 FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
  90 FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
  91 FileChooser.directoryOpenButtonToolTipText=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
  92 
  93 ############ COLOR CHOOSER STRINGS #############
  94 ColorChooser.previewText=\u30D7\u30EC\u30D3\u30E5\u30FC
  95 ColorChooser.okText=OK
  96 ColorChooser.cancelText=\u53D6\u6D88
  97 ColorChooser.resetText=\u30EA\u30BB\u30C3\u30C8
  98 # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
  99 ColorChooser.resetMnemonic=82
 100 ColorChooser.sampleText=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8  \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
 101 ColorChooser.swatchesNameText=\u30B5\u30F3\u30D7\u30EB
 102 ColorChooser.swatchesMnemonic=83
 103 ColorChooser.swatchesDisplayedMnemonicIndex=5
 104 ColorChooser.swatchesRecentText=\u6700\u65B0:
 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=\u8D64
 122 ColorChooser.rgbRedMnemonic=68
 123 ColorChooser.rgbGreenText=\u7DD1
 124 ColorChooser.rgbGreenMnemonic=78
 125 ColorChooser.rgbBlueText=\u9752
 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=\u306F\u3044
 133 OptionPane.yesButtonMnemonic=89
 134 OptionPane.noButtonText=\u3044\u3044\u3048
 135 OptionPane.noButtonMnemonic=78
 136 OptionPane.okButtonText=OK
 137 OptionPane.okButtonMnemonic=0
 138 OptionPane.cancelButtonText=\u53D6\u6D88
 139 OptionPane.cancelButtonMnemonic=0
 140 OptionPane.titleText=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
 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=\u5165\u529B
 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=\u30E1\u30C3\u30BB\u30FC\u30B8
 147 
 148 ############ Printing Dialog Strings ############
 149 PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
 150 PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
 151 
 152 PrintingDialog.contentInitialText=\u5370\u5237\u4E2D...
 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=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
 157  
 158 PrintingDialog.contentAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
 159  
 160 PrintingDialog.abortButtonText=\u4E2D\u6B62
 161 PrintingDialog.abortButtonMnemonic=65
 162 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
 163 PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306E\u4E2D\u6B62
 164 
 165 ############ Internal Frame Strings ############
 166 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
 167 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
 168 InternalFrame.restoreButtonToolTip=\u5FA9\u5143
 169 InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
 170 
 171 ############ Internal Frame Title Pane Strings ############
 172 InternalFrameTitlePane.restoreButtonText=\u5FA9\u5143
 173 InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
 174 InternalFrameTitlePane.sizeButtonText=\u30B5\u30A4\u30BA
 175 InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
 176 InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
 177 InternalFrameTitlePane.closeButtonText=\u9589\u3058\u308B
 178 
 179 ############ Text strings #############
 180 # Used for html forms
 181 FormView.submitButtonText=\u554F\u5408\u305B\u306E\u5B9F\u884C
 182 FormView.resetButtonText=\u30EA\u30BB\u30C3\u30C8
 183 FormView.browseFileButtonText=\u53C2\u7167...
 184 
 185 ############ Abstract Document Strings ############
 186 AbstractDocument.styleChangeText=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
 187 AbstractDocument.additionText=\u8FFD\u52A0
 188 AbstractDocument.deletionText=\u524A\u9664
 189 AbstractDocument.undoText=\u5143\u306B\u623B\u3059
 190 AbstractDocument.redoText=\u3084\u308A\u76F4\u3057
 191 
 192 ############ Abstract Button Strings ############
 193 AbstractButton.clickText=\u30AF\u30EA\u30C3\u30AF
 194 
 195 ############ Abstract Undoable Edit Strings ############
 196 AbstractUndoableEdit.undoText=\u5143\u306B\u623B\u3059
 197 AbstractUndoableEdit.redoText=\u3084\u308A\u76F4\u3057
 198 
 199 ############ Combo Box Strings ############
 200 ComboBox.togglePopupText=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
 201  
 202  ############ Progress Monitor Strings ############
 203 ProgressMonitor.progressText=\u9032\u884C\u4E2D...
 204  
 205  ############ Split Pane Strings ############
 206 SplitPane.leftButtonText=\u5DE6\u30DC\u30BF\u30F3
 207 SplitPane.rightButtonText=\u53F3\u30DC\u30BF\u30F3
 208 # Used for Isindex
 209 IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:
 210 
 211 ############ InternalFrameTitlePane Strings ############
 212 InternalFrameTitlePane.iconifyButtonAccessibleName=\u30A2\u30A4\u30B3\u30F3\u5316
 213 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
 214 InternalFrameTitlePane.closeButtonAccessibleName=\u9589\u3058\u308B