mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 18:39:52 +02:00
IDE: improved i18n in messages window, fixed some typos
git-svn-id: trunk@55044 -
This commit is contained in:
parent
675c59e5e6
commit
10feb7c68a
@ -314,7 +314,8 @@ begin
|
|||||||
for i:=0 to Fixes.LineCount-1 do begin
|
for i:=0 to Fixes.LineCount-1 do begin
|
||||||
Msg:=Fixes.Lines[i];
|
Msg:=Fixes.Lines[i];
|
||||||
if not IsApplicable(Msg,MsgID,Tool) then continue;
|
if not IsApplicable(Msg,MsgID,Tool) then continue;
|
||||||
aCaption:='Hide message by inserting {$warn '+IntToStr(MsgID)+' off} to unit "'+ExtractFilename(Tool.MainFilename)+'"';
|
aCaption:=Format(lisHideMessageByInsertingWarnOffToUnit, [IntToStr(MsgID),
|
||||||
|
ExtractFilename(Tool.MainFilename)]);
|
||||||
Fixes.AddMenuItem(Self,Msg,aCaption);
|
Fixes.AddMenuItem(Self,Msg,aCaption);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
@ -2157,8 +2157,8 @@ resourcestring
|
|||||||
dlgIdentifierCompletion = 'Identifier Completion';
|
dlgIdentifierCompletion = 'Identifier Completion';
|
||||||
dlgJumpingETC = 'Jumping (e.g. Method Jumping)';
|
dlgJumpingETC = 'Jumping (e.g. Method Jumping)';
|
||||||
dlgAdjustTopLine = 'Adjust top line due to comment in front';
|
dlgAdjustTopLine = 'Adjust top line due to comment in front';
|
||||||
dlgJumpSingleLinePos = 'Vertical position for a single line jump in %. (0=top, 100=bottom)';
|
dlgJumpSingleLinePos = 'Vertical position for a single line jump in % (0=top, 100=bottom)';
|
||||||
dlgJumpCodeBlockPos = 'Vertical position for a code block jump in %. (0=top, 100=bottom)';
|
dlgJumpCodeBlockPos = 'Vertical position for a code block jump in % (0=top, 100=bottom)';
|
||||||
dlgAvoidUnnecessaryJumps = 'Avoid unnecessary jumps';
|
dlgAvoidUnnecessaryJumps = 'Avoid unnecessary jumps';
|
||||||
dlgCursorBeyondEOL = 'Cursor beyond EOL';
|
dlgCursorBeyondEOL = 'Cursor beyond EOL';
|
||||||
dlgSkipForwardClassDeclarations = 'Skip forward class declarations';
|
dlgSkipForwardClassDeclarations = 'Skip forward class declarations';
|
||||||
@ -6350,6 +6350,8 @@ resourcestring
|
|||||||
lisMultiplePack = ', multiple packages: ';
|
lisMultiplePack = ', multiple packages: ';
|
||||||
lisQuickFixError = 'QuickFix error';
|
lisQuickFixError = 'QuickFix error';
|
||||||
lisPositionOutsideOfSource = '%s (position outside of source)';
|
lisPositionOutsideOfSource = '%s (position outside of source)';
|
||||||
|
lisHideMessageByInsertingWarnOffToUnit = 'Hide message by inserting {$warn %'
|
||||||
|
+'s off} to unit "%s"';
|
||||||
lisHideWithProjectOptionVm = 'Hide with project option (-vm%s)';
|
lisHideWithProjectOptionVm = 'Hide with project option (-vm%s)';
|
||||||
lisHideWithPackageOptionVm = 'Hide with package option (-vm%s)';
|
lisHideWithPackageOptionVm = 'Hide with package option (-vm%s)';
|
||||||
lisRemoveLocalVariable3 = 'Remove local variable "%s"';
|
lisRemoveLocalVariable3 = 'Remove local variable "%s"';
|
||||||
|
Loading…
Reference in New Issue
Block a user