;the "File | Save Special | Save As eBook..." menu command

object EbookForm: TEbookForm
  Caption = 'Guardar como eBook'
  ClientHeight = 517
  ClientWidth = 452
  object Lbl: TLabel
    Left = 100
    Top = 7
    Width = 344
    Height = 35
    AutoSize = False
    Caption = 'Por favor, especifique información sobre su eBook.'#13'Todos los campos son opcionales, excepto el "Título del libro".'
  end
  object TitleLbl: TLabel
    Left = 9
    Top = 56
    Caption = 'Título del libro:'
    Font.Style = [fsBold]
  end
  object TitleEdt: TEdit
    Left = 100
    Top = 53
    Width = 344
  end
  object AuthorLbl: TLabel
    Left = 9
    Top = 81
    Caption = 'Autor:'
  end
  object AuthorEdt: TEdit
    Left = 100
    Top = 78
    Width = 344
  end
  object SubjectLbl: TLabel
    Left = 9
    Top = 106
    Caption = 'Asunto:'
  end
  object SubjectEdt: TEdit
    Left = 100
    Top = 103
    Width = 344
  end
  object DescLbl: TLabel
    Left = 9
    Top = 131
    Caption = 'Descripción:'
  end
  object DescEdt: TEdit
    Left = 100
    Top = 128
    Width = 344
  end
  object PubLbl: TLabel
    Left = 9
    Top = 156
    Caption = 'Editorial:'
  end
  object PubEdt: TEdit
    Left = 100
    Top = 153
    Width = 344
  end
  object IdLbl: TLabel
    Left = 9
    Top = 181
    Caption = 'Identificador:'
  end
  object IdEdt: TEdit
    Left = 100
    Top = 178
    Width = 344
    Hint = 'Un identificador único para el libro, como un ISBN'
  end
  object CoverageLbl: TLabel
    Left = 9
    Top = 206
    Caption = 'Cobertura:'
  end
  object CoverageEdt: TEdit
    Left = 100
    Top = 203
    Width = 344
    Hint = 'Alcance de la publicación'
  end
  object RightsLbl: TLabel
    Left = 9
    Top = 231
    Caption = 'Derechos:'
  end
  object RightsEdt: TEdit
    Left = 100
    Top = 228
    Width = 344
    Hint = 'Una declaración sobre los derechos'
  end
  object PriceLbl: TLabel
    Left = 9
    Top = 256
    Caption = 'Precio:'
  end
  object PriceEdt: TEdit
    Left = 100
    Top = 253
    Width = 90
    Hint = 'Ejemplo: USD 2.99'
  end
  object DateLbl: TLabel
    Left = 200
    Top = 256
    Caption = 'Fecha de publicación:'
  end
  object DateEdt: TEdit
    Left = 309
    Top = 253
    Width = 135
    Hint = 'Fecha como AAAA, AAAA-MM o AAAA-MM-DD.'#13#13'Ejemplos:'#13'1995'#13'2002-05'#13'2012-07-31'
  end
  object CustomLbl: TLabel
    Left = 9
    Top = 281
    Width = 90
    Height = 35
    AutoSize = False
    Caption = 'Datos'#13'personalizados:'
  end
  object CustomDataMemo: TMemo
    Left = 100
    Top = 279
    Width = 344
    Height = 47
    Hint = 'Elementos de metadatos adicionales. Ejemplo:'#13#13'<dc:source id="src">urn:isbn:9781234567890</dc:source>'#13'<dc:relation>https://www.some.site</dc:relation>'
  end
  object Bevel: TBevel
    Left = 9
    Top = 335
    Width = 434
    Height = 2
  end
  object CoverLbl: TLabel
    Left = 9
    Top = 350
    Height = 30
    Width = 80
    AutoSize = false
    Caption = 'Imagen'#13'de portada:'
  end
  object CoverCmbBx: TComboBox
    Left = 100
    Top = 347
    Width = 90
    Style = csOwnerDrawFixed
    OnChange = ControlChange
    OnDrawItem = CoverCmbBxDrawItem
    OnMeasureItem = CoverCmbBxMeasureItem
  end
  object MargChkBx: TCheckBox
    Left = 195
    Top = 350
    Caption = 'Guardar márgenes de página'
    OnClick = ControlChange
  end
  object MargSetupBtn: TButton
    Left = 360
    Top = 347
    Width = 84
    Caption = 'Configurar...'
    OnClick = ControlChange
  end
  object FntLbl: TLabel
    Left = 195
    Top = 377
    Caption = 'Fuentes:'
  end
  object FntCmbBx: TComboBox
    Left = 195
    Top = 394
    Width = 145
    Style = csDropDownList
    Items.Strings = (
      'No guardar'
      'Guardar, pero no incrustar'
      'Guardar e incrustar')
    OnClick = ControlChange
  end
  object EmbedExBtn: TButton
    Left = 360
    Top = 394
    Width = 84
    Caption = 'Excepciones...'
    OnClick = ControlChange
  end
  object NoteContNumChkBx: TCheckBox
    Left = 9
    Top = 429
    Caption = 'Numerar notas continuamente'
    OnClick = ControlChange
  end
  object EncloseNoteRefChkBx: TCheckBox
    Left = 195
    Top = 429
    Caption = 'Incluir referencias de notas entre llaves'
    OnClick = ControlChange
  end
  object ManLstChkBx: TCheckBox
    Left = 9
    Top = 447
    Caption = 'Guardar listas manuales'
    OnClick = ControlChange
  end
  object Limit300ChkBx: TCheckBox
    Left = 195
    Top = 447
    Caption = 'Limitar el tamaño del archivo de tema a 300 KB'
    OnClick = ControlChange
  end
  object PreviewBtn: TButton
    Left = 9
    Top = 487
    Width = 181
    Caption = 'Vista previa en lector de eBooks...'
    OnClick = ControlChange
  end
end