mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 09:59:23 +02:00
FPCUnit: improved i18n
This commit is contained in:
parent
27ae911ab9
commit
0d4e0fc5be
@ -72,10 +72,17 @@ end;
|
|||||||
procedure TConsoleTestRunnerOptionsForm.TranslateForm;
|
procedure TConsoleTestRunnerOptionsForm.TranslateForm;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
Caption:=sNewFPCUnitProgramToR;
|
||||||
cbRunAllTests.Caption:=sRunAllTests;
|
cbRunAllTests.Caption:=sRunAllTests;
|
||||||
cbTestInsight.Caption:=sUseTextInsight;
|
cbTestInsight.Caption:=sUseTextInsight;
|
||||||
cbCreateTestCase.Caption:=sCreateFirstTestCase;
|
cbCreateTestCase.Caption:=sCreateFirstTestCase;
|
||||||
lblFormat.caption:=sDefaultOutputFormat;
|
lblFormat.caption:=sDefaultOutputFormat;
|
||||||
|
|
||||||
|
cbFormat.Items[0]:=sDefault;
|
||||||
|
cbFormat.Items[1]:=sXML;
|
||||||
|
cbFormat.Items[2]:=sPlainText;
|
||||||
|
cbFormat.Items[3]:=sPlainTextWithoutTimi;
|
||||||
|
cbFormat.Items[4]:=sLaTeX;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TConsoleTestRunnerOptionsForm.LoadForm;
|
procedure TConsoleTestRunnerOptionsForm.LoadForm;
|
||||||
|
@ -18,6 +18,8 @@ resourcestring
|
|||||||
schkTear = 'Create TearDown method';
|
schkTear = 'Create TearDown method';
|
||||||
sbtnCreate = 'Create unit';
|
sbtnCreate = 'Create unit';
|
||||||
|
|
||||||
|
sNewFPCUnitProgramToR = 'New FPCUnit console testrunner program';
|
||||||
|
|
||||||
sFPCUnTestApp = 'FPCUnit Test Application';
|
sFPCUnTestApp = 'FPCUnit Test Application';
|
||||||
sFPCUnTestAppDesc = 'An application to run FPCUnit test cases.';
|
sFPCUnTestAppDesc = 'An application to run FPCUnit test cases.';
|
||||||
sFPCUnTestCase = 'FPCUnit Test Case';
|
sFPCUnTestCase = 'FPCUnit Test Case';
|
||||||
@ -30,6 +32,11 @@ resourcestring
|
|||||||
sUseTextInsight = 'Use &Test Insight to communicate results to the IDE';
|
sUseTextInsight = 'Use &Test Insight to communicate results to the IDE';
|
||||||
sCreateFirstTestCase = '&Create first test case';
|
sCreateFirstTestCase = '&Create first test case';
|
||||||
sDefaultOutputFormat = 'Default output &format';
|
sDefaultOutputFormat = 'Default output &format';
|
||||||
|
sDefault = 'Default';
|
||||||
|
sXML = 'XML';
|
||||||
|
sPlainText = 'Plain text';
|
||||||
|
sPlainTextWithoutTimi = 'Plain text without timings';
|
||||||
|
sLaTeX = 'LaTeX';
|
||||||
|
|
||||||
rsTestInsightTitle = 'Test Insight';
|
rsTestInsightTitle = 'Test Insight';
|
||||||
rsServerPort = 'Server port';
|
rsServerPort = 'Server port';
|
||||||
|
Loading…
Reference in New Issue
Block a user