forked from einsiedler90/Whonix-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
whonixstarter_error.lfm
43 lines (43 loc) · 1.03 KB
/
whonixstarter_error.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
object ErrorForm: TErrorForm
Left = 325
Height = 600
Top = 198
Width = 600
BorderStyle = bsDialog
Caption = 'Error'
ClientHeight = 600
ClientWidth = 600
OnCreate = FormCreate
OnHide = FormHide
LCLVersion = '2.2.4.0'
object ButtonErrorOK: TButton
Left = 10
Height = 100
Top = 490
Width = 580
Align = alBottom
BorderSpacing.Around = 10
Caption = 'OK'
Font.Height = -48
OnClick = ButtonErrorOKClick
ParentFont = False
TabOrder = 0
end
object MemoError: TMemo
Left = 10
Height = 470
Top = 10
Width = 580
Align = alClient
BorderSpacing.Around = 10
Font.Height = -37
Lines.Strings = (
'You appear to execute this program from a folder which does not contain the necessary files for it to operate properly. Please try reinstalling this program via the Whonix-Installer. If the program persists, please contact the developer at:'
''
'https://forums.whonix.org'
)
ParentFont = False
ReadOnly = True
TabOrder = 1
end
end