blob: 905e0cb2f43765c742b32c5793d6c146cabf23de (
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
|
unit dvConstants;
{$mode objfpc}{$H+}
interface
uses
Classes;
const
{ DO NOT LOCALIZE }
HelpPathEnvironmentVar = 'HELP';
BookshelfEnvironmentVar = 'BOOKSHELF';
HELP_FILE_DELIMITER = '+';
HELP_FILE_EXTENSION = ExtensionSeparator + 'hlp';
INF_FILE_EXTENSION = ExtensionSeparator + 'inf';
cDocViewHelpFile = 'docview.inf';
resourcestring
rsDVTitle = 'Documentation Viewer';
rsDVSearchingMsg = 'Searching...';
rsDVDisplaying = 'Displaying...';
rsDVLoadingNotes = 'Loading notes...';
rsDVDisplayContents = 'Display contents...';
rsDVDisplayingFirstTopic = 'Display first topic...';
rsDVDone = 'Done';
rsDVNoFile = 'No file';
rsDVOpenHelpFile = 'Open Help File';
rsDVHelpFiles = 'Help Files';
rsDVNoMatchesFound = '(No matches found for <%s>)';
rsDVSearchSyntaxError = 'Error in search syntax: ';
rsDVSearchFoundMsg = 'Found %d matches for ';
rsDVCouldNotOpen = 'Could not open <%s>';
const
hcConfigGeneralTab = 510;
hcConfigFontsColorTab = 520;
implementation
end.
|