;the "Tools | Hyphenation..." menu command, the "Customize..." button

object CustomizeHyphForm: TCustomizeHyphForm
  Caption = 'Guionización personalizada para: %s'
;%s - a language
  ClientHeight = 332
  ClientWidth = 348
  object Lbl1: TLabel
    Left = 10
    Top = 10
    Width = 328
    Height = 69
    AutoSize = False
    Caption = 'Utilice este cuadro de diálogo para crear listas personalizadas de patrones de separación de sílabas para palabras específicas. Los patrones personalizados encontrados en la lista actual sustituirán a los patrones predeterminados utilizados o sugeridos normalmente por la separación automática de sílabas.'
  end
  object Lbl3: TLabel
    Left = 170
    Top = 95
    Caption = 'Ejemplos: com-bi-na-ción, maíz.'
  end
  object Lbl2: TLabel
    Left = 10
    Top = 95
    Caption = 'Patrón de &separación:'
    Font.Style = [fsBold]
  end
  object PatternEdt: TEdit
    Left = 10
    Top = 113
    Width = 230
    OnChange = PatternEdtChange
  end
  object AddBtn: TButton
    Left = 247
    Top = 113
    Width = 93
    Height = 21
    Default = True
    OnClick = AddBtnClick
  end
  object PatternLstBx: TListBox
    Left = 10
    Top = 138
    Width = 230
    Height = 186
    OnClick = PatternLstBxClick
  end
  object DelBtn: TButton
    Left = 247
    Top = 138
    Width = 93
    Height = 21
    Caption = '&Eliminar'
    OnClick = DelBtnClick
  end
  object LoadBtn: TButton
    Left = 247
    Top = 197
    Width = 93
    Height = 21
    Caption = '&Importar...'
    OnClick = LoadBtnClick
  end
  object SaveBtn: TButton
    Left = 247
    Top = 222
    Width = 93
    Height = 21
    Caption = 'E&xportar...'
    OnClick = SaveBtnClick
  end
  object OKBtn: TButton
    Left = 247
    Top = 279
    Width = 93
    Height = 21
    Caption = 'Aceptar'
    OnClick = OKBtnClick
  end
  object CancelBtn: TButton
    Left = 247
    Top = 304
    Width = 93
    Height = 21
    Cancel = True
    Caption = 'Cancelar'
    ModalResult = 2
  end
  object OpenDlg: TOpenDialog
    Filter = 'Texto plano (*.txt)|*.txt|Todos los archivos (*.*)|*.*'
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Cargar patrones de separación de sílabas'
  end
  object SaveDlg: TSaveDialog
    Filter = 'Texto plano (*.txt)|*.txt'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar patrones de separación de sílabas'
  end
end