Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ implementation
'The application might become unstable and even useless.' + NativeLineBreak +
'It''s recommended that you save your work and close this application.' + NativeLineBreak + NativeLineBreak;
RsDetailsIntro = 'Exception log with detailed tech info. Generated on %s.' + NativeLineBreak +
'You may send it to the application vendor, helping him to understand what had happened.' + NativeLineBreak +
'You may send it to the application vendor, helping them to understand what had happened.' + NativeLineBreak +
' Application title: %s' + NativeLineBreak +
' Application file: %s';
RsUnitVersioningIntro = 'Unit versioning information:';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ implementation
'The application might become unstable and even useless.' + NativeLineBreak +
'It''s recommended that you save your work and close this application.' + NativeLineBreak + NativeLineBreak;
RsDetailsIntro = 'Exception log with detailed tech info. Generated on %s.' + NativeLineBreak +
'You may send it to the application vendor, helping him to understand what had happened.' + NativeLineBreak +
'You may send it to the application vendor, helping them to understand what had happened.' + NativeLineBreak +
' Application title: %s' + NativeLineBreak +
' Application file: %s';
RsUnitVersioningIntro = 'Unit versioning information:';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ implementation
'The application might become unstable and even useless.' + NativeLineBreak +
'It''s recommended that you save your work and close this application.' + NativeLineBreak + NativeLineBreak;
RsDetailsIntro = 'Exception log with detailed tech info. Generated on %s.' + NativeLineBreak +
'You may send it to the application vendor, helping him to understand what had happened.' + NativeLineBreak +
'You may send it to the application vendor, helping them to understand what had happened.' + NativeLineBreak +
' Application title: %s' + NativeLineBreak +
' Application file: %s';
{$IFDEF UnitVersioning} RsUnitVersioningIntro = 'Unit versioning information:';{$ENDIF}
Expand Down
4 changes: 2 additions & 2 deletions jcl/source/common/JclSysUtils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2380,7 +2380,7 @@ constructor TJclNumericFormat.Create;
FSignChars[False] := '-';
FSignChars[True] := '+';
FPaddingChar := ' ';
FMultiplier := '';
FMultiplier := '×';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not have been changed, the encoding of JCL files must never be UTF-8 as it is not understood by early versions of Delphi/BCB

FFractionalPartSeparator := JclFormatSettings.DecimalSeparator;
FDigitBlockSeparator := JclFormatSettings.ThousandSeparator;
end;
Expand Down Expand Up @@ -4528,7 +4528,7 @@ finalization
{$ENDIF UNITVERSIONING}
{$IFDEF MSWINDOWS}
{$IFDEF THREADSAFE}
// The user must release shared memory blocks himself. We don't clean up his
// The user must release shared memory blocks themself. We don't clean up their
// memory leaks and make it impossible to release the shared memory in other
// unit's finalization blocks.
MMFFinalized := True;
Expand Down