< prev index next >

src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic_pt_BR.properties

Print this page
rev 1468 : 7034940: message drop 2 translation integration
Reviewed-by: yhuang
rev 1479 : 7034259: [all] incorrect mnemonic keys in JCP automatic update advanced settings dialog.
Reviewed-by: yhuang
rev 1486 : 7093156: NLS Please change the mnemonic assignment system to avoid translation issue (Swing files)
Reviewed-by: rupashka, alexp
rev 1487 : 7175367: NLS: 7u6 message drop10 integration
Reviewed-by: yhuang
rev 1492 : 7032018: The file list in JFileChooser does not have an accessible name
Reviewed-by: rupashka, coffeys
rev 1493 : 7182226: NLS: jdk7u6 message drop20 integration
Reviewed-by: yhuang
rev 1497 : 8008764: 7uX l10n resource file translation update
Reviewed-by: naoto
rev 1498 : 8019541: 7u40 l10n resource file translation update
Reviewed-by: robilad, naoto, yhuang
rev 1582 : 8020708: NLS mnemonics missing in SwingSet2/JInternalFrame demo
Reviewed-by: malenkov, leonidr
rev 1583 : 8026741: jdk8 l10n resource file translation update 5
Reviewed-by: naoto, yhuang
rev 1584 : 8080628: No mnemonics on Open and Save buttons in JFileChooser
Reviewed-by: serb, alexsch
   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=Arquivo Gen\u00E9rico
  49 FileChooser.directoryDescriptionText=Diret\u00F3rio
  50 FileChooser.newFolderErrorText=Erro ao criar nova pasta
  51 FileChooser.newFolderErrorSeparator= : 
  52 FileChooser.newFolderParentDoesntExistTitleText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
  53 FileChooser.newFolderParentDoesntExistText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
  54 FileChooser.renameErrorTitleText=Erro ao Renomear o Arquivo ou a Pasta
  55 FileChooser.renameErrorText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
  56 FileChooser.renameErrorFileExistsText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo. 
  57 FileChooser.acceptAllFileFilterText=Todos os Arquivos
  58 FileChooser.cancelButtonText=Cancelar
  59 FileChooser.cancelButtonMnemonic=67
  60 FileChooser.saveButtonText=Salvar
  61 FileChooser.saveButtonMnemonic=83
  62 FileChooser.openButtonText=Abrir
  63 FileChooser.openButtonMnemonic=79
  64 FileChooser.saveDialogTitleText=Salvar
  65 FileChooser.openDialogTitleText=Abrir
  66 FileChooser.updateButtonText=Atualizar
  67 FileChooser.updateButtonMnemonic=85
  68 FileChooser.helpButtonText=Ajuda
  69 FileChooser.helpButtonMnemonic=72
  70 FileChooser.directoryOpenButtonText=Abrir
  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=Nova Pasta
  80 FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
  81 FileChooser.other.newFolder=NewFolder
  82 FileChooser.other.newFolder.subsequent=NewFolder.{0}
  83 
  84 
  85 ## file chooser tooltips ###
  86 FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos
  87 FileChooser.saveButtonToolTipText=Salvar arquivo selecionado
  88 FileChooser.openButtonToolTipText=Abrir arquivo selecionado
  89 FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios
  90 FileChooser.helpButtonToolTipText=Ajuda do FileChooser
  91 FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00F3rio selecionado



  92 
  93 ############ COLOR CHOOSER STRINGS #############
  94 ColorChooser.previewText=Visualizar
  95 ColorChooser.okText=OK
  96 ColorChooser.cancelText=Cancelar
  97 ColorChooser.resetText=Redefinir
  98 # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
  99 ColorChooser.resetMnemonic=82
 100 ColorChooser.sampleText=Texto de Amostra Texto de Amostra
 101 ColorChooser.swatchesNameText=Amostras
 102 ColorChooser.swatchesMnemonic=83
 103 ColorChooser.swatchesRecentText=Recente:
 104 # Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
 105 # constant, and an index into the text to render the mnemonic as. The
 106 # mnemonic is xxxMnemonic and the index of the character to underline is
 107 # xxxDisplayedMnemonicIndex.
 108 ColorChooser.hsvNameText=HSV
 109 ColorChooser.hsvMnemonic=72
 110 ColorChooser.hsvHueText=Matiz
 111 ColorChooser.hsvSaturationText=Satura\u00E7\u00E3o
 112 ColorChooser.hsvValueText=Valor
 113 ColorChooser.hsvTransparencyText=Transpar\u00EAncia
 114 ColorChooser.hslNameText=HSL
 115 ColorChooser.hslMnemonic=76
 116 ColorChooser.hslHueText=Matiz
 117 ColorChooser.hslSaturationText=Satura\u00E7\u00E3o
 118 ColorChooser.hslLightnessText=Clareza
 119 ColorChooser.hslTransparencyText=Transpar\u00EAncia
 120 ColorChooser.rgbNameText=RGB
 121 ColorChooser.rgbMnemonic=71
 122 ColorChooser.rgbRedText=Vermelho
 123 ColorChooser.rgbRedMnemonic=68
 124 ColorChooser.rgbGreenText=Verde
 125 ColorChooser.rgbGreenMnemonic=78
 126 ColorChooser.rgbBlueText=Azul
 127 ColorChooser.rgbBlueMnemonic=66
 128 ColorChooser.rgbAlphaText=Alfa
 129 ColorChooser.rgbHexCodeText=C\u00F3digo da Cor
 130 ColorChooser.rgbHexCodeMnemonic=67
 131 ColorChooser.cmykNameText=CMYK
 132 ColorChooser.cmykMnemonic=77
 133 ColorChooser.cmykCyanText=Ciano
 134 ColorChooser.cmykMagentaText=Magenta
 135 ColorChooser.cmykYellowText=Amarelo
 136 ColorChooser.cmykBlackText=Preto
 137 ColorChooser.cmykAlphaText=Alfa
 138 
 139 ############ OPTION PANE STRINGS #############
 140 # Mnemonic keys correspond to KeyEvent.VK_XXX constant
 141 # We only define mnemonics for YES/NO, but for completeness you can
 142 # define mnemonics for any of the buttons.
 143 OptionPane.yesButtonText=Sim
 144 OptionPane.yesButtonMnemonic=89
 145 OptionPane.noButtonText=N\u00E3o
 146 OptionPane.noButtonMnemonic=78
 147 OptionPane.okButtonText=OK
 148 OptionPane.okButtonMnemonic=0
 149 OptionPane.cancelButtonText=Cancelar
 150 OptionPane.cancelButtonMnemonic=0
 151 OptionPane.titleText=Selecionar uma Op\u00E7\u00E3o
 152 # Title for the dialog for the showInputDialog methods. Only used if
 153 # the developer uses one of the variants that doesn't take a title.
 154 OptionPane.inputDialogTitle=Entrada
 155 # Title for the dialog for the showMessageDialog methods. Only used if
 156 # the developer uses one of the variants that doesn't take a title.
 157 OptionPane.messageDialogTitle=Mensagem
 158 
 159 ############ Printing Dialog Strings ############
 160 PrintingDialog.titleProgressText=Impress\u00E3o
 161 PrintingDialog.titleAbortingText=Impress\u00E3o (Abortando)
 162 
 163 PrintingDialog.contentInitialText=Impress\u00E3o em andamento...
 164 
 165 # The following string will be formatted by a MessageFormat
 166 # and {0} will be replaced by page number being printed
 167 PrintingDialog.contentProgressText=P\u00E1gina impressa {0}...
 168 
 169 PrintingDialog.contentAbortingText=Abortando impress\u00E3o...
 170 
 171 PrintingDialog.abortButtonText=Abortar
 172 PrintingDialog.abortButtonMnemonic=65
 173 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
 174 PrintingDialog.abortButtonToolTipText=Abortar Impress\u00E3o
 175 
 176 ############ Internal Frame Strings ############
 177 InternalFrame.iconButtonToolTip=Minimizar
 178 InternalFrame.maxButtonToolTip=Maximizar
 179 InternalFrame.restoreButtonToolTip=Restaurar
 180 InternalFrame.closeButtonToolTip=Fechar
 181 
 182 ############ Internal Frame Title Pane Strings ############
 183 InternalFrameTitlePane.restoreButtonText=Restaurar
 184 InternalFrameTitlePane.moveButtonText=Mover
 185 InternalFrameTitlePane.sizeButtonText=Tamanho
 186 InternalFrameTitlePane.minimizeButtonText=Minimizar
 187 InternalFrameTitlePane.maximizeButtonText=Maximizar
 188 InternalFrameTitlePane.closeButtonText=Fechar
 189 
 190 ############ Text strings #############
 191 # Used for html forms
 192 FormView.submitButtonText=Submeter Consulta
 193 FormView.resetButtonText=Redefinir
 194 FormView.browseFileButtonText=Procurar...
 195 
 196 ############ Abstract Document Strings ############
 197 AbstractDocument.styleChangeText=altera\u00E7\u00E3o de estilo
 198 AbstractDocument.additionText=adi\u00E7\u00E3o
 199 AbstractDocument.deletionText=dele\u00E7\u00E3o
 200 AbstractDocument.undoText=Desfazer
 201 AbstractDocument.redoText=Refazer
 202 
 203 ############ Abstract Button Strings ############
 204 AbstractButton.clickText=clicar
 205 
 206 ############ Abstract Undoable Edit Strings ############
 207 AbstractUndoableEdit.undoText=Desfazer
 208 AbstractUndoableEdit.redoText=Refazer
 209 
 210 ############ Combo Box Strings ############
 211 ComboBox.togglePopupText=togglePopup
 212 
 213 ############ Progress Monitor Strings ############
 214 ProgressMonitor.progressText=Progresso...
 215 
 216 ############ Split Pane Strings ############
 217 SplitPane.leftButtonText=bot\u00E3o esquerdo
 218 SplitPane.rightButtonText=bot\u00E3o direito
 219 # Used for Isindex
 220 IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
 221 
 222 ############ InternalFrameTitlePane Strings ############
 223 InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
 224 InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
 225 InternalFrameTitlePane.closeButtonAccessibleName=Fechar
   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=Arquivo Gen\u00E9rico
  35 FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio
  36 FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta
  37 FileChooser.newFolderErrorSeparator= :
  38 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
  39 FileChooser.newFolderParentDoesntExist.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
  40 FileChooser.renameErrorTitle.textAndMnemonic=Erro ao Renomear o Arquivo ou a Pasta
  41 FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
  42 FileChooser.renameErrorFileExists.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
  43 FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
  44 FileChooser.cancelButton.textAndMnemonic=Cancelar
  45 FileChooser.saveButton.textAndMnemonic=Salvar
  46 FileChooser.openButton.textAndMnemonic=Abrir
  47 FileChooser.saveDialogTitle.textAndMnemonic=Salvar
  48 FileChooser.openDialogTitle.textAndMnemonic=Abrir
  49 FileChooser.updateButton.textAndMnemonic=At&ualizar
  50 FileChooser.helpButton.textAndMnemonic=Aj&uda
  51 FileChooser.directoryOpenButton.textAndMnemonic=Abrir






  52 
  53 # File Size Units
  54 FileChooser.fileSizeKiloBytes={0} KB
  55 FileChooser.fileSizeMegaBytes={0} MB
  56 FileChooser.fileSizeGigaBytes={0} GB
  57 
  58 # These strings are platform dependent not look and feel dependent.
  59 FileChooser.win32.newFolder=Nova Pasta
  60 FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
  61 FileChooser.other.newFolder=NewFolder
  62 FileChooser.other.newFolder.subsequent=NewFolder.{0}
  63 
  64 
  65 ## file chooser tooltips ###
  66 FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos
  67 FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado
  68 FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado
  69 FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios
  70 FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser
  71 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir diret\u00F3rio selecionado
  72 
  73 FileChooser.filesListAccessibleName=Lista de Arquivos
  74 FileChooser.filesDetailsAccessibleName=Detalhes do Arquivo
  75 
  76 ############ COLOR CHOOSER STRINGS #############
  77 ColorChooser.preview.textAndMnemonic=Visualizar
  78 ColorChooser.ok.textAndMnemonic=OK
  79 ColorChooser.cancel.textAndMnemonic=Cancelar
  80 ColorChooser.reset.textAndMnemonic=&Redefinir
  81 ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra
  82 ColorChooser.swatches.textAndMnemonic=Amo&stras
  83 ColorChooser.swatchesRecent.textAndMnemonic=Recente:
  84 ColorChooser.hsv.textAndMnemonic=&HSV
  85 ColorChooser.hsvHue.textAndMnemonic=Matiz
  86 ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o
  87 ColorChooser.hsvValue.textAndMnemonic=Valor
  88 ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia
  89 ColorChooser.hsl.textAndMnemonic=HS&L
  90 ColorChooser.hslHue.textAndMnemonic=Matiz
  91 ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o
  92 ColorChooser.hslLightness.textAndMnemonic=Clareza
  93 ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia
  94 ColorChooser.rgb.textAndMnemonic=R&GB
  95 ColorChooser.rgbRed.textAndMnemonic=&Vermelho
  96 ColorChooser.rgbGreen.textAndMnemonic=&Verde
  97 ColorChooser.rgbBlue.textAndMnemonic=&Azul
  98 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
  99 ColorChooser.rgbHexCode.textAndMnemonic=&C\u00F3digo da Cor
 100 ColorChooser.cmyk.textAndMnemonic=C&MYK
 101 ColorChooser.cmykCyan.textAndMnemonic=Ciano
 102 ColorChooser.cmykMagenta.textAndMnemonic=Magenta
 103 ColorChooser.cmykYellow.textAndMnemonic=Amarelo
 104 ColorChooser.cmykBlack.textAndMnemonic=Preto
 105 ColorChooser.cmykAlpha.textAndMnemonic=Alfa















 106 
 107 ############ OPTION PANE STRINGS #############

 108 # We only define mnemonics for YES/NO, but for completeness you can
 109 # define mnemonics for any of the buttons.
 110 OptionPane.yesButton.textAndMnemonic=&Sim
 111 OptionPane.noButton.textAndMnemonic=&N\u00E3o
 112 OptionPane.okButton.textAndMnemonic=OK
 113 #OptionPane.okButtonMnemonic=0
 114 OptionPane.cancelButton.textAndMnemonic=Cancelar
 115 #OptionPane.cancelButtonMnemonic=0
 116 OptionPane.title.textAndMnemonic=Selecionar uma Op\u00E7\u00E3o


 117 # Title for the dialog for the showInputDialog methods. Only used if
 118 # the developer uses one of the variants that doesn't take a title.
 119 OptionPane.inputDialog.titleAndMnemonic=Entrada
 120 # Title for the dialog for the showMessageDialog methods. Only used if
 121 # the developer uses one of the variants that doesn't take a title.
 122 OptionPane.messageDialog.titleAndMnemonic=Mensagem
 123 
 124 ############ Printing Dialog Strings ############
 125 PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o
 126 PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando)
 127 
 128 PrintingDialog.contentInitial.textAndMnemonic=Impress\u00E3o em andamento...
 129 
 130 # The following string will be formatted by a MessageFormat
 131 # and {0} will be replaced by page number being printed
 132 PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}...
 133 
 134 PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o...
 135 
 136 PrintingDialog.abortButton.textAndMnemonic=&Abortar
 137 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o


 138 
 139 ############ Internal Frame Strings ############
 140 InternalFrame.iconButtonToolTip=Minimizar
 141 InternalFrame.maxButtonToolTip=Maximizar
 142 InternalFrame.restoreButtonToolTip=Restaurar
 143 InternalFrame.closeButtonToolTip=Fechar
 144 
 145 ############ Internal Frame Title Pane Strings ############
 146 InternalFrameTitlePane.restoreButton.textAndMnemonic=&Restaurar
 147 InternalFrameTitlePane.moveButton.textAndMnemonic=&Mover
 148 InternalFrameTitlePane.sizeButton.textAndMnemonic=&Dimensionar
 149 InternalFrameTitlePane.minimizeButton.textAndMnemonic=Mi&nimizar
 150 InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ma&ximizar
 151 InternalFrameTitlePane.closeButton.textAndMnemonic=&Fechar
 152 
 153 ############ Text strings #############
 154 # Used for html forms
 155 FormView.submitButton.textAndMnemonic=Submeter Consulta
 156 FormView.resetButton.textAndMnemonic=Redefinir
 157 FormView.browseFileButton.textAndMnemonic=Procurar...
 158 
 159 ############ Abstract Document Strings ############
 160 AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo
 161 AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o
 162 AbstractDocument.deletion.textAndMnemonic=exclus\u00E3o
 163 AbstractDocument.undo.textAndMnemonic=Desfazer
 164 AbstractDocument.redo.textAndMnemonic=Refazer
 165 
 166 ############ Abstract Button Strings ############
 167 AbstractButton.click.textAndMnemonic=clicar
 168 
 169 ############ Abstract Undoable Edit Strings ############
 170 AbstractUndoableEdit.undo.textAndMnemonic=Desfazer
 171 AbstractUndoableEdit.redo.textAndMnemonic=Refazer
 172 
 173 ############ Combo Box Strings ############
 174 ComboBox.togglePopup.textAndMnemonic=togglePopup
 175 
 176 ############ Progress Monitor Strings ############
 177 ProgressMonitor.progress.textAndMnemonic=Andamento...
 178 
 179 ############ Split Pane Strings ############
 180 SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo
 181 SplitPane.rightButton.textAndMnemonic=bot\u00E3o direito
 182 # Used for Isindex
 183 IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
 184 
 185 ############ InternalFrameTitlePane Strings ############
 186 InternalFrameTitlePane.iconifyButtonAccessibleName=Iconizar
 187 InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
 188 InternalFrameTitlePane.closeButtonAccessibleName=Fechar
< prev index next >