mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 20:49:27 +02:00
replaced some resource strings
git-svn-id: trunk@8404 -
This commit is contained in:
parent
70eae36fca
commit
8108cc7e91
@ -177,7 +177,7 @@ resourcestring
|
||||
SYNS_FilterCAClipper = 'CA-Clipper Files (*.prg,*.ch,*.inc)|*.prg;*.ch;*.inc';
|
||||
SYNS_FilterCORBAIDL = 'CORBA IDL files (*.idl)|*.idl';
|
||||
SYNS_FilterCPM = 'CPM reports (*.rdf,*.rif,*.rmf,*.rxf)|*.rdf;*.rif;*.rmf;*.rxf';
|
||||
SYNS_FilterCPP = 'C++ Files (*.c,*.cpp,*.h,*.hpp)|*.c;*.cpp;*.h;*.hpp';
|
||||
SYNS_FilterCPP = 'C++ Files (*.c,*.cpp,*.h,*.hpp,*.hh)|*.c;*.cpp;*.h;*.hpp;*.hh';
|
||||
SYNS_FilterJava = 'Java Files (*.java)|*.java';
|
||||
SYNS_FilterPerl = 'Perl Files (*.pl,*.pm,*.cgi)|*.pl;*.pm;*.cgi';
|
||||
SYNS_FilterAWK = 'AWK Script (*.awk)|*.awk';
|
||||
|
@ -847,7 +847,7 @@ begin
|
||||
TheType := lshCPP;
|
||||
DefaultCommentType := DefaultCommentTypes[TheType];
|
||||
SynClass := LazSyntaxHighlighterClasses[TheType];
|
||||
FileExtensions := 'c;cc;cpp;h;hpp';
|
||||
FileExtensions := 'c;cc;cpp;h;hpp;hh';
|
||||
SampleSource :=
|
||||
'/* Comment */'#13 + '#include <stdio.h>'#13 +
|
||||
'#include <stdlib.h>'#13 + #13 +
|
||||
|
@ -251,6 +251,7 @@ resourcestring
|
||||
oisErrorLoadingImage = 'Error loading image';
|
||||
oisErrorLoadingImage2 = 'Error loading image %s%s%s:%s%s';
|
||||
oisOk2 = 'Ok';
|
||||
oisCreateANewPascalUnit = 'Create a new pascal unit.';
|
||||
|
||||
implementation
|
||||
|
||||
|
@ -22,7 +22,8 @@ unit ProjectIntf;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LCLProc, FileUtil, Controls, Forms, NewItemIntf;
|
||||
Classes, SysUtils, LCLProc, FileUtil, Controls, Forms, NewItemIntf,
|
||||
ObjInspStrConsts;
|
||||
|
||||
const
|
||||
FileDescGroupName = 'File';
|
||||
@ -858,7 +859,7 @@ end;
|
||||
|
||||
function TFileDescPascalUnit.GetLocalizedDescription: string;
|
||||
begin
|
||||
Result:='Create a new pascal unit.';
|
||||
Result:=oisCreateANewPascalUnit;
|
||||
end;
|
||||
|
||||
function TFileDescPascalUnit.GetInterfaceUsesSection: string;
|
||||
|
Loading…
Reference in New Issue
Block a user