diff options
Diffstat (limited to 'docview/src/dvconstants.pas')
-rw-r--r-- | docview/src/dvconstants.pas | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/docview/src/dvconstants.pas b/docview/src/dvconstants.pas index 626e0840..3e44ef58 100644 --- a/docview/src/dvconstants.pas +++ b/docview/src/dvconstants.pas @@ -1,9 +1,31 @@ +{ + fpGUI - Free Pascal GUI Toolkit + + Copyright (C) 2006 - 2010 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + Description: + Constants used by DocView. +} + unit dvConstants; {$mode objfpc}{$H+} interface +uses + Classes + ,fpg_base + ; + const { DO NOT LOCALIZE } HelpPathEnvironmentVar = 'HELP'; @@ -11,6 +33,8 @@ const HELP_FILE_DELIMITER = '+'; HELP_FILE_EXTENSION = ExtensionSeparator + 'hlp'; INF_FILE_EXTENSION = ExtensionSeparator + 'inf'; + NOTES_FILE_EXTENSION = ExtensionSeparator + 'notes'; + cDocViewHelpFile = 'docview.inf'; resourcestring @@ -24,7 +48,7 @@ resourcestring rsDVNoFile = 'No file'; rsDVOpenHelpFile = 'Open Help File'; rsDVHelpFiles = 'Help Files'; - rsDVNoMatchesFound = '(No matches found for ''%s'')'; + rsDVNoMatchesFound = '(No matches found for <%s>)'; rsDVSearchSyntaxError = 'Error in search syntax: '; rsDVSearchFoundMsg = 'Found %d matches for '; rsDVCouldNotOpen = 'Could not open <%s>'; @@ -33,6 +57,7 @@ const hcConfigGeneralTab = 510; hcConfigFontsColorTab = 520; + implementation end. |