;the "Help | Check for Updates..." menu command

object CheckUpdateForm: TCheckUpdateForm
  ClientHeight = 280
  ClientWidth = 477
  OnClose = FormClose
  object LogoImg: TImage
    Left = 10
    Top = 10
    Width = 90
    Height = 260
    Center = True
  end
  object Bevel: TBevel
    Left = 110
    Top = 10
    Width = 360
    Height = 228
    Shape = bsFrame
  end
  object Lbl1: TLabel
    Left = 120
    Top = 20
    Width = 340
    Height = 54
    AutoSize = False
    Caption = 'Está disponible la versión %s de Atlantis.'#13'En comparación con su versión actual de Atlantis, la última versión contiene los siguientes cambios:'
;%s - a version
  end
  object DetailsMemo: TMemo
    Left = 120
    Top = 73
    Width = 340
    Height = 155
    ReadOnly = True
    ScrollBars = ssVertical
  end
  object Lbl2: TLabel
    Left = 120
    Top = 40
    Width = 340
    Height = 13
    Alignment = taCenter
    AutoSize = False
    Caption = 'Preparando la actualización. Por favor espere...'
    Visible = False
  end
  object ProgressBar: TProgressBar
    Left = 120
    Top = 180
    Width = 340
    Visible = False
  end
  object MoreBtn: TButton
    Left = 111
    Top = 248
    Width = 90
    Caption = 'Más detalles...'
    OnClick = MoreBtnClick
  end
  object UpdtBtn: TButton
    Left = 282
    Top = 249
    Width = 90
    Caption = 'Actualizar >'
    Default = True
    OnClick = UpdtBtnClick
  end
  object CloseBtn: TButton
    Left = 377
    Top = 249
    Width = 90
    Cancel = True
    Caption = 'Cancelar'
    ModalResult = 2
  end
end