jdk/src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic_zh_TW.properties
author yhuang
Sun, 11 Apr 2010 23:21:23 -0700
changeset 5307 7865cb8f2f54
parent 1282 00a51b36c173
child 7473 2f12ec94c20a
permissions -rw-r--r--
6875904: Java 7 message synchronization 1 Reviewed-by: ogino, faryad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
# This properties file is used to create a PropertyResourceBundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# It contains Locale specific strings used in Swing
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# Currently, the following components need this for support:
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#    ColorChooser
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#    FileChooser
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
#    OptionPane
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# When this file is read in, the strings are put into the 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# defaults table.  This is an implementation detail of the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# workings of Swing.  DO NOT DEPEND ON THIS.  
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# This may change in future versions of Swing as we improve localization 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# support.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
#                        MNEMONIC NOTE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# Many of strings in this file are used by widgets that have a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# mnemonic, for example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#   ColorChooser.rgbNameText=RGB
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
#   ColorChooser.rgbMnemonic=71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#   ColorChooser.rgbDisplayedMnemonicIndex=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Indicates that the tab in the ColorChooser for RGB colors will have
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# the text 'RGB', further the mnemonic character will be 'g' and that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# a decoration will be provided under the 'G'. This will typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# look like:  RGB
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#              -
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# 71 corresponds to the decimal value of the VK constant defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# in java/awt/KeyEvent.java. VK_G is defined as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#    public static final int VK_G              = 0x47;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
# 0x47 is a hex number and needs to be converted to decimal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# A simple way to calculate this for a-z is to add 64 to the index of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
# for 'a' is 65, 'b' is 66...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
# The xxDisplayedMnemonicIndex is used to indicate the index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# character that should be underlined in the String, with 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
# corresponding to the first character in the String.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# One important thing to remember is that the mnemonic MUST exist in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
# the String, if it does not exist you should add text that makes it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# exist. This will typically take the form 'XXXX (M)' where M is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# character for the mnemonic.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
# 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
# @author Steve Wilson
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
############ FILE CHOOSER STRINGS #############
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
FileChooser.fileDescriptionText=\u4e00\u822c\u6a94\u6848
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
FileChooser.directoryDescriptionText=\u76ee\u9304
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
FileChooser.newFolderErrorText=\u5efa\u7acb\u65b0\u6a94\u6848\u593e\u6642\u767c\u751f\u932f\u8aa4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
FileChooser.newFolderErrorSeparator= : 
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
    52
FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6cd5\u5efa\u7acb\u8cc7\u6599\u593e
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
    53
FileChooser.newFolderParentDoesntExistText=\u7121\u6cd5\u5efa\u7acb\u8cc7\u6599\u593e\u3002\n\n\u7cfb\u7d71\u627e\u4e0d\u5230\u6240\u6307\u5b9a\u7684\u8def\u5f91\u3002
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
    54
FileChooser.renameErrorTitleText=\u91cd\u65b0\u547d\u540d\u6a94\u6848\u6216\u8cc7\u6599\u593e\u6642\u767c\u751f\u932f\u8aa4
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
    55
FileChooser.renameErrorText=\u7121\u6cd5\u91cd\u65b0\u547d\u540d {0}
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
    56
FileChooser.renameErrorFileExistsText=\u7121\u6cd5\u91cd\u65b0\u547d\u540d {0}\uff1a\u60a8\u6307\u5b9a\u4e4b\u540d\u7a31\u7684\u6a94\u6848\u5df2\u5b58\u5728\u3002\u6307\u5b9a\u4e0d\u540c\u7684\u6a94\u6848\u540d\u7a31\u3002 
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6a94\u6848
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
FileChooser.cancelButtonText=\u53d6\u6d88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
FileChooser.cancelButtonMnemonic=67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
FileChooser.saveButtonText=\u5132\u5b58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
FileChooser.saveButtonMnemonic=83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
FileChooser.openButtonText=\u958b\u555f
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
FileChooser.openButtonMnemonic=79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
FileChooser.saveDialogTitleText=\u5132\u5b58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
FileChooser.openDialogTitleText=\u958b\u555f
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
FileChooser.updateButtonText=\u66f4\u65b0(U)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
FileChooser.updateButtonMnemonic=85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
FileChooser.helpButtonText=\u8aaa\u660e(H)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
FileChooser.helpButtonMnemonic=72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
FileChooser.directoryOpenButtonText=\u958b\u555f(O)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
FileChooser.directoryOpenButtonMnemonic=79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
# File Size Units
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
FileChooser.fileSizeKiloBytes={0} KB
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
FileChooser.fileSizeMegaBytes={0} MB
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
FileChooser.fileSizeGigaBytes={0} GB
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
# These strings are platform dependent not look and feel dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
FileChooser.win32.newFolder=\u65b0\u8cc7\u6599\u593e
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
FileChooser.win32.newFolder.subsequent=\u65b0\u8cc7\u6599\u593e ({0})
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
FileChooser.other.newFolder=\u65b0\u8cc7\u6599\u593e
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
FileChooser.other.newFolder.subsequent=\u65b0\u8cc7\u6599\u593e.{0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
## file chooser tooltips ###
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
FileChooser.cancelButtonToolTipText=\u4e2d\u65b7\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u5c0d\u8a71\u65b9\u584a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
FileChooser.saveButtonToolTipText=\u5132\u5b58\u9078\u53d6\u7684\u6a94\u6848
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
FileChooser.openButtonToolTipText=\u958b\u555f\u9078\u53d6\u7684\u6a94\u6848
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
FileChooser.updateButtonToolTipText=\u66f4\u65b0\u76ee\u9304\u6e05\u55ae
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
FileChooser.helpButtonToolTipText=\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u8aaa\u660e
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
FileChooser.directoryOpenButtonToolTipText=\u958b\u555f\u9078\u53d6\u7684\u76ee\u9304
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
############ COLOR CHOOSER STRINGS #############
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
ColorChooser.previewText=\u9810\u89bd
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
ColorChooser.okText=\u78ba\u5b9a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
ColorChooser.cancelText=\u53d6\u6d88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
ColorChooser.resetText=\u91cd\u8a2d(R)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
ColorChooser.resetMnemonic=82
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
ColorChooser.sampleText=\u7bc4\u4f8b\u6587\u5b57  \u7bc4\u4f8b\u6587\u5b57
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
ColorChooser.swatchesNameText=\u8abf\u8272\u677f(S)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
ColorChooser.swatchesMnemonic=83
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
ColorChooser.swatchesRecentText=\u6700\u65b0\u9078\u64c7:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
# constant, and an index into the text to render the mnemonic as. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
# mnemonic is xxxMnemonic and the index of the character to underline is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
# xxxDisplayedMnemonicIndex.
1282
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   108
ColorChooser.hsvNameText=HSV
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   109
ColorChooser.hsvMnemonic=72
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   110
ColorChooser.hsvHueText=\u8272\u8abf
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   111
ColorChooser.hsvSaturationText=\u98fd\u548c\u5ea6
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   112
ColorChooser.hsvValueText=\u503c
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   113
ColorChooser.hsvTransparencyText=\u900f\u660e\u5ea6
1282
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   114
ColorChooser.hslNameText=HSL
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   115
ColorChooser.hslMnemonic=76
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   116
ColorChooser.hslHueText=\u8272\u8abf
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   117
ColorChooser.hslSaturationText=\u98fd\u548c\u5ea6
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   118
ColorChooser.hslLightnessText=\u4eae\u5ea6
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   119
ColorChooser.hslTransparencyText=\u900f\u660e\u5ea6
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
ColorChooser.rgbNameText=RGB
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
ColorChooser.rgbMnemonic=71
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
ColorChooser.rgbRedText=\u7d05\u8272(D)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
ColorChooser.rgbRedMnemonic=68
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
ColorChooser.rgbGreenText=\u7da0\u8272(N)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
ColorChooser.rgbGreenMnemonic=78
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
ColorChooser.rgbBlueText=\u85cd\u8272(B)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
ColorChooser.rgbBlueMnemonic=66
1282
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   128
ColorChooser.rgbAlphaText=Alpha
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   129
ColorChooser.rgbHexCodeText=\u8272\u78bc
1282
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   130
ColorChooser.rgbHexCodeMnemonic=67
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   131
ColorChooser.cmykNameText=CMYK
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   132
ColorChooser.cmykMnemonic=77
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   133
ColorChooser.cmykCyanText=\u85cd\u7da0\u8272
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   134
ColorChooser.cmykMagentaText=\u7d2b\u7d05\u8272
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   135
ColorChooser.cmykYellowText=\u9ec3\u8272
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 1282
diff changeset
   136
ColorChooser.cmykBlackText=\u9ed1\u8272
1282
00a51b36c173 6552812: Add HSL tab to JColorChooser
malenkov
parents: 2
diff changeset
   137
ColorChooser.cmykAlphaText=Alpha
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
############ OPTION PANE STRINGS #############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
# We only define mnemonics for YES/NO, but for completeness you can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
# define mnemonics for any of the buttons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
OptionPane.yesButtonText=\u662f(Y)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
OptionPane.yesButtonMnemonic=89
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
OptionPane.noButtonText=\u5426(N)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
OptionPane.noButtonMnemonic=78
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
OptionPane.okButtonText=\u78ba\u5b9a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
OptionPane.okButtonMnemonic=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
OptionPane.cancelButtonText=\u53d6\u6d88
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
OptionPane.cancelButtonMnemonic=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
OptionPane.titleText=\u9078\u53d6\u4e00\u500b\u9078\u9805
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
# Title for the dialog for the showInputDialog methods. Only used if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
# the developer uses one of the variants that doesn't take a title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
OptionPane.inputDialogTitle=\u8f38\u5165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
# Title for the dialog for the showMessageDialog methods. Only used if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
# the developer uses one of the variants that doesn't take a title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
OptionPane.messageDialogTitle=\u8a0a\u606f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
############ Printing Dialog Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
PrintingDialog.titleProgressText=\u5217\u5370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
PrintingDialog.titleAbortingText=\u5217\u5370 (\u4e2d\u65b7)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
PrintingDialog.contentInitialText=\u6b63\u5728\u5217\u5370...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
# The following string will be formatted by a MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
# and {0} will be replaced by page number being printed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
PrintingDialog.contentProgressText=\u5df2\u5217\u5370\u7684\u9801\u9762 {0}...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
PrintingDialog.contentAbortingText=\u6b63\u5728\u4e2d\u65b7\u5217\u5370...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
PrintingDialog.abortButtonText=\u4e2d\u65b7(A)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
PrintingDialog.abortButtonMnemonic=65
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
PrintingDialog.abortButtonToolTipText=\u4e2d\u65b7\u5217\u5370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
############ Internal Frame Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
InternalFrame.iconButtonToolTip=\u6700\u5c0f\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
InternalFrame.restoreButtonToolTip=\u5fa9\u539f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
InternalFrame.closeButtonToolTip=\u95dc\u9589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
############ Internal Frame Title Pane Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
InternalFrameTitlePane.restoreButtonText=\u5fa9\u539f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
InternalFrameTitlePane.moveButtonText=\u79fb\u52d5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
InternalFrameTitlePane.sizeButtonText=\u5927\u5c0f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
InternalFrameTitlePane.minimizeButtonText=\u6700\u5c0f\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
InternalFrameTitlePane.closeButtonText=\u95dc\u9589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
############ Text strings #############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
# Used for html forms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
FormView.submitButtonText=\u63d0\u51fa\u67e5\u8a62
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
FormView.resetButtonText=\u91cd\u8a2d
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
FormView.browseFileButtonText=\u700f\u89bd...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
############ Abstract Document Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
AbstractDocument.styleChangeText=\u6a23\u5f0f\u8b8a\u66f4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
AbstractDocument.additionText=\u9644\u52a0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
AbstractDocument.deletionText=\u522a\u9664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
AbstractDocument.undoText=\u9084\u539f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
AbstractDocument.redoText=\u91cd\u505a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
############ Abstract Button Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
AbstractButton.clickText=\u6309\u4e00\u4e0b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
############ Abstract Undoable Edit Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
AbstractUndoableEdit.undoText=\u9084\u539f
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
AbstractUndoableEdit.redoText=\u91cd\u505a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
############ Combo Box Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
ComboBox.togglePopupText=\u5207\u63db\u5373\u73fe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
############ Progress Monitor Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
ProgressMonitor.progressText=\u9032\u5ea6...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
############ Split Pane Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
SplitPane.leftButtonText=\u5de6\u6309\u9215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
SplitPane.rightButtonText=\u53f3\u6309\u9215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
# Used for Isindex
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
IsindexView.prompt=\u9019\u662f\u4e00\u500b\u53ef\u641c\u5c0b\u7684\u7d22\u5f15\u3002\u8f38\u5165\u641c\u5c0b\u95dc\u9375\u5b57\uff1a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
############ InternalFrameTitlePane Strings ############
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793a\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
InternalFrameTitlePane.closeButtonAccessibleName=\u95dc\u9589