blob: 6ed147407e7e0d5408edb9010486e43dfbaab543 (
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
|
{
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}
{$mode objfpc}
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.
|