fpc/ide/wconsts.pas
florian 08d248f7c5 * activated resourcestrings
git-svn-id: trunk@1040 -
2005-09-02 21:47:45 +00:00

45 lines
918 B
ObjectPascal
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
This file is part of the Free Pascal Integrated Development Environment
Copyright (c) 2000 by Brczi 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.