mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 18:19:09 +02:00
59 lines
1.2 KiB
ObjectPascal
59 lines
1.2 KiB
ObjectPascal
{
|
||
$Id$
|
||
This file is part of the Free Pascal Integrated Development Environment
|
||
Copyright (c) 2000 by B‚rczi G bor
|
||
|
||
Strings for common utilities
|
||
|
||
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.
|
||
|
||
**********************************************************************}
|
||
{$i globdir.inc}
|
||
unit wconsts;
|
||
|
||
interface
|
||
|
||
uses Dos;
|
||
|
||
const
|
||
|
||
{ History ID }
|
||
FileId = 101;
|
||
TextFindId = 105;
|
||
TextReplaceID = 106;
|
||
GotoID = 107;
|
||
TextGrepId = 108;
|
||
GrepArgsId = 109;
|
||
|
||
|
||
{$ifdef LANG_HUN}
|
||
{$i wconstsh.inc} { Hungarian language file }
|
||
{$else}
|
||
{$ifdef LANG_GER}
|
||
{$i wconstsg.inc} { German language file }
|
||
{$else}
|
||
{$i wconstse.inc} { English language file }
|
||
{$endif}
|
||
{$endif}
|
||
|
||
implementation
|
||
|
||
end.
|
||
{
|
||
$Log$
|
||
Revision 1.1 2001-08-04 11:30:25 peter
|
||
* ide works now with both compiler versions
|
||
|
||
Revision 1.1.2.1 2000/11/29 18:28:53 pierre
|
||
+ add save to file capability for list boxes
|
||
|
||
Revision 1.1 2000/07/13 09:48:37 michael
|
||
+ Initial import
|
||
|
||
Revision 1.1 2000/06/16 09:30:01 pierre
|
||
* new files from Gabor
|
||
|
||
}
|