blob: b080ee2d466ea6eaa0f17b8836cdb304eec6e7c9 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{%mainunit gfx_constants.pas}
rsLanguage = 'English';
// Buttons
rsOK = 'OK';
rsCancel = 'Cancel';
rsHelp = 'Help';
rsOpen = 'Open';
rsSave = 'Save';
rsCreate = 'Create';
rsChange = 'Changes';
rsFind = 'Find';
rsSearch = 'Search';
rsReplace = 'Replace';
rsConfirm = 'Confirm';
rsAll = 'All';
rsSelect = 'Select';
rsYes = 'Yes';
rsNo = 'No';
rsAbort = 'Abort';
rsRetry = 'Retry';
rsIgnore = 'Ignore';
rsClose = 'Close';
rsInsert = 'Insert';
rsEdit = 'Edit';
rsDelete = 'Delete';
rsExit = 'Exit';
// Captions
rsError = 'Error';
rsCriticalError = 'Critical Error';
rsInformation = 'Information';
rsConfirmation = 'Confirm';
rsWarning = 'Warning';
rsMessage = 'Message';
// Standard file filters
rsAllFiles = 'All Files';
// CreateDir Dialog
rsCreateDirectory = 'Create directory';
rsEnterNewDirectory = 'Enter new directory name';
rsCannotCreateDir = 'Cannot create directory';
// Font Dialog
rsSelectAFont = 'Select a font';
rsName = 'Name';
rsCollection = 'Collection';
rsSize = 'Size';
rsStyle = 'Style';
rsItalic = 'Italic';
rsBold = 'Bold';
rsUnderScore = 'UnderScore';
rsExampleText = 'Example Text';
// Open Dialog
rsOpenAFile = 'Open a file';
rsFileName = 'Filename';
rsFileType = 'Type of file';
rsDrive = 'Drive';
rsFiles = 'Files';
rsDirectories = 'Directories';
rsShowHidden = 'Show hidden files';
// Save Dialog
rsSaveAFile = 'Save file as';
|