mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 10:40:24 +02:00
IDE, components: various improvements for descriptions in 'New...' dialog, bug #10808.
git-svn-id: trunk@25387 -
This commit is contained in:
parent
65f048b55b
commit
6b87644a97
@ -69,7 +69,7 @@ implementation
|
||||
|
||||
resourcestring
|
||||
lisdescription = 'Simple CGI Application%sA CGI (Common Gateway Interface) '
|
||||
+'program in Free Pascal.%sThe program file is automatically maintained '
|
||||
+'program in Free Pascal.%sThe application source is automatically maintained '
|
||||
+'by Lazarus.%sThis kind of application is deprecated, for CGI programs '
|
||||
+'or Apache modules, please use the LazWeb package instead.';
|
||||
lisdescrmod = 'Simple CGI Module%sA datamodule for CGI applications.%sThis '
|
||||
|
@ -92,7 +92,7 @@ implementation
|
||||
resourcestring
|
||||
sFPCUnTestApp = 'FPCUnit Test Application';
|
||||
sFPCUnTestAppDesc = 'FPCUnit Test Application%sAn application to run '
|
||||
+'fpcunit test cases.%sThe program file is automatically maintained by '
|
||||
+'FPCUnit test cases.%sThe application source is automatically maintained by '
|
||||
+'Lazarus.';
|
||||
sFPCUnTestCase = 'FPCUnit Test Case';
|
||||
sFPCUnTestCaseDesc = 'FPCUnit Test Case%sA unit containing a FPCUnit Test '
|
||||
@ -100,7 +100,7 @@ resourcestring
|
||||
sWriteYourOwnTest = 'Write your own test';
|
||||
sFPCUnConsoleTestApp = 'FPCUnit Console Test Application';
|
||||
sFPCUnConsoleTestDesc = 'FPCUnit Console Test Application%sAn application '
|
||||
+'to run fpcunit test cases in console mode.%sThe program file is '
|
||||
+'to run FPCUnit test cases in console mode.%sThe application source is '
|
||||
+'automatically maintained by Lazarus.';
|
||||
|
||||
procedure Register;
|
||||
|
@ -190,7 +190,7 @@ end;
|
||||
function TCGIApplicationDescriptor.GetLocalizedDescription: string;
|
||||
begin
|
||||
Result:='CGI Application'#13#13'A CGI (Common Gateway Interface) program '
|
||||
+'in Free Pascal using webmodules. The program file is '
|
||||
+'in Free Pascal using webmodules. The program source is '
|
||||
+'automatically maintained by Lazarus.';
|
||||
end;
|
||||
|
||||
@ -259,7 +259,7 @@ end;
|
||||
function TCustomCGIApplicationDescriptor.GetLocalizedDescription: string;
|
||||
begin
|
||||
Result:='Custom CGI Application'#13#13'A CGI (Common Gateway Interface) program '
|
||||
+'in Free Pascal. The program file is '
|
||||
+'in Free Pascal. The program source is '
|
||||
+'automatically maintained by Lazarus.';
|
||||
end;
|
||||
|
||||
@ -500,7 +500,7 @@ end;
|
||||
function TCustomFCGIApplicationDescriptor.GetLocalizedDescription: string;
|
||||
begin
|
||||
Result:='Custom FastCGI Application'#13#13'A FastCGI (Common Gateway Interface) program '
|
||||
+'in Free Pascal. The program file is '
|
||||
+'in Free Pascal. The program source is '
|
||||
+'automatically maintained by Lazarus.';
|
||||
end;
|
||||
|
||||
@ -582,7 +582,7 @@ end;
|
||||
function TFCGIApplicationDescriptor.GetLocalizedDescription: string;
|
||||
begin
|
||||
Result:='FastCGI Application'#13#13'A FastCGI (Common Gateway Interface) program '
|
||||
+'in Free Pascal using webmodules. The program file is '
|
||||
+'in Free Pascal using webmodules. The program source is '
|
||||
+'automatically maintained by Lazarus.';
|
||||
end;
|
||||
|
||||
|
@ -1903,8 +1903,8 @@ resourcestring
|
||||
dlgProjectOptionsFor = 'Options for Project: %s';
|
||||
dlgPOApplication = 'Application';
|
||||
lisApplicationAGraphicalLclFreepascalProgramTheProgra = 'Application%sA '
|
||||
+'graphical lcl/freepascal program. The program file is automatically '
|
||||
+'maintained by lazarus.';
|
||||
+'graphical LCL/Free Pascal program. The program source is automatically '
|
||||
+'maintained by Lazarus.';
|
||||
dlgPOFroms = 'Forms';
|
||||
dlgPOMisc = 'Miscellaneous';
|
||||
dlgPOI18n = 'i18n';
|
||||
@ -3106,19 +3106,19 @@ resourcestring
|
||||
lisNewDlgCreateANewPascalUnit = 'Create a new pascal unit.';
|
||||
lisNewDlgCreateANewUnitWithALCLForm = 'Create a new unit with a LCL form.';
|
||||
lisNewDlgCreateANewUnitWithADataModule = 'Create a new unit with a datamodule.';
|
||||
lisNewDlgCreateANewUnitWithAFrame = 'Create a new unit with a frame';
|
||||
lisNewDlgCreateANewUnitWithAFrame = 'Create a new unit with a frame.';
|
||||
lisNewDlgCreateANewEmptyTextFile = 'Create a new empty text file.';
|
||||
lisNewDlgInheritAnExistingComponent = 'Inherit from an existing component.';
|
||||
lisASimplePascalProgramFileThisCanBeUsedForQuickAndDi = 'A simple Pascal '
|
||||
+'Program file.%sThis can be used for quick and dirty testing.%sBetter '
|
||||
+'create a new project.';
|
||||
lisNewDlgCreateANewGraphicalApplication = 'Create a new '
|
||||
+'graphical application.%sThe program file is maintained by Lazarus.';
|
||||
+'graphical application.%sThe application source is maintained by Lazarus.';
|
||||
lisNewDlgCreateANewProgram = 'Create a new '
|
||||
+'program.%sThe program file is maintained by Lazarus.';
|
||||
+'program.%sThe program source is maintained by Lazarus.';
|
||||
lisNewDlgCreateANewCustomProgram = 'Create a new program.';
|
||||
lisNewCreateANewCgiApplicationTheProgramFileIsMaintained = 'Create a new '
|
||||
+'cgi application.%sThe program file is maintained by Lazarus.';
|
||||
+'CGI application.%sThe application source is maintained by Lazarus.';
|
||||
lisNewDlgCreateANewStandardPackageAPackageIsACollectionOfUn = 'Create a new '
|
||||
+'standard package.%sA package is a collection of units and components.';
|
||||
|
||||
@ -4094,16 +4094,16 @@ resourcestring
|
||||
lisProgram = 'Program';
|
||||
lisConsoleApplication = 'Console application';
|
||||
lisFreepascalProgramUsingTCustomApplicationToEasilyCh =
|
||||
'freepascal program '
|
||||
'Free Pascal program '
|
||||
+'using TCustomApplication to easily check command line options, handling '
|
||||
+'exceptions, etc. The program file is automatically maintained by lazarus.';
|
||||
+'exceptions, etc. The program source is automatically maintained by Lazarus.';
|
||||
lisProgramAFreepascalProgramTheProgramFileIsAutomatic = 'Program%sA '
|
||||
+'freepascal program. The program file is automatically maintained by '
|
||||
+'lazarus.';
|
||||
lisCustomProgramAFreepascalProgram = 'Custom Program%sA freepascal program.';
|
||||
+'Free Pascal program. The program source is automatically maintained by '
|
||||
+'Lazarus.';
|
||||
lisCustomProgramAFreepascalProgram = 'Custom Program%sA Free Pascal program.';
|
||||
lisLibraryAFreepascalLibraryDllUnderWindowsSoUnderLin = 'Library%sA '
|
||||
+'freepascal library (.dll under windows, .so under linux, .dylib under '
|
||||
+'macosx). The library source file is automatically maintained by Lazarus.';
|
||||
+'Free Pascal library (.dll under Windows, .so under Linux, .dylib under '
|
||||
+'MacOS X). The library source is automatically maintained by Lazarus.';
|
||||
lisNPSelectAProjectType = 'Select a project type';
|
||||
lisNPCreateANewProject = 'Create a new project';
|
||||
lisNPCreate = 'Create';
|
||||
|
Loading…
Reference in New Issue
Block a user