Skip to content

Commit

Permalink
improve the translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
cheat-engine committed Jun 7, 2018
1 parent e298913 commit 591d1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cheat Engine/frmstructurecompareunit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ implementation
rsSPSInvalidstruct = 'Invalid structure pointerfile';
rsSPSNeedNewCE = 'You''ll need a newer CE version to open this file';
rsSPSNoError = 'No error';
rsSPSUnlock = 'Unlock (';
rsSPSUnlock = 'Unlock (%.8x-%.8x)';
rsSPSLock = 'Lock';
//----------TPointerfileReader---------

Expand Down Expand Up @@ -2394,7 +2394,7 @@ procedure TfrmStructureCompare.pmAddressPopupPopup(Sender: TObject);
miShadow.enabled:=(e.invalidAddress=false) or (e.tag<>0);

if e.tag<>0 then
miShadow.Caption:=rsSPSUnlock+inttohex(TShadow(e.tag).address,8)+' - '+inttohex(TShadow(e.tag).address+TShadow(e.tag).size,9)+')'
miShadow.Caption:=format(rsSPSUnlock,[TShadow(e.tag).address, TShadow(e.tag).address+TShadow(e.tag).size])
else
miShadow.caption:=rsSPSLock;
end;
Expand Down

0 comments on commit 591d1fe

Please sign in to comment.