;the "Tools | Options..." menu command, the "Spellcheck" tab, the "Spellcheckers & Dictionaries..." button

object SpellcheckEditForm: TSpellcheckEditForm
  Caption = 'Correctores Ortográficos y Diccionarios'
  ClientHeight = 240
  ClientWidth = 440
  object SystemLbl: TLabel
    Left = 10
    Top = 8
    Caption = 'Correctores ortográficos:'
  end
  object SystemLstBx: TListBox
    Left = 10
    Top = 25
    Width = 245
    Height = 69
    OnClick = SystemLstBxClick
  end
  object UninstallBtn: TButton
    Left = 263
    Top = 25
    Width = 82
    Caption = 'Desinstalar'
  end
  object UsrLexLbl: TLabel
    Left = 10
    Top = 104
    Caption = 'Diccionarios del usuario:'
  end
  object UsrLexLstBx: TListBox
    Left = 10
    Top = 122
    Width = 245
    Height = 43
    OnClick = UsrLexLstBxClick
  end
  object AddUsrLexBtn: TButton
    Left = 10
    Top = 172
    Width = 59
    Caption = 'Añadir...'
  end
  object RmvUsrLexBtn: TButton
    Left = 72
    Top = 172
    Width = 59
    Caption = 'Eliminar'
  end
  object NewUsrLexBtn: TButton
    Left = 134
    Top = 172
    Width = 59
    Caption = 'Nuevo...'
  end
  object EdtLexBtn: TButton
    Left = 196
    Top = 172
    Width = 59
    Caption = 'Editar...'
  end
  object MainLexLabl: TLabel
    Left = 263
    Top = 104
    Caption = 'Diccionarios principales:'
  end
  object MainLexLstBx: TListBox
    Left = 263
    Top = 122
    Width = 166
    Height = 43
    Enabled = false
  end
  object OpenLexDlg: TOpenDialog
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Añadir diccionario'
  end
  object SaveLexDlg: TSaveDialog
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Crear un nuevo diccionario de usuario'
  end
end