diff --git a/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlg.pas b/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlg.pas index add29b0b24..35ea22c52e 100644 --- a/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlg.pas +++ b/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlg.pas @@ -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:'; diff --git a/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlgMail.pas b/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlgMail.pas index 1e5cc6cb48..ee4553bff0 100644 --- a/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlgMail.pas +++ b/jcl/experts/repository/ExceptionDialog/StandardDialogs/ExceptDlgMail.pas @@ -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:'; diff --git a/jcl/experts/repository/ExceptionDialog/Templates/ExceptDlg.Delphi32.pas b/jcl/experts/repository/ExceptionDialog/Templates/ExceptDlg.Delphi32.pas index 0c19b01010..83567c33df 100644 --- a/jcl/experts/repository/ExceptionDialog/Templates/ExceptDlg.Delphi32.pas +++ b/jcl/experts/repository/ExceptionDialog/Templates/ExceptDlg.Delphi32.pas @@ -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} diff --git a/jcl/source/common/JclSysUtils.pas b/jcl/source/common/JclSysUtils.pas index 1bcd25ff9e..bb9370d9c9 100644 --- a/jcl/source/common/JclSysUtils.pas +++ b/jcl/source/common/JclSysUtils.pas @@ -2380,7 +2380,7 @@ constructor TJclNumericFormat.Create; FSignChars[False] := '-'; FSignChars[True] := '+'; FPaddingChar := ' '; - FMultiplier := '×'; + FMultiplier := '×'; FFractionalPartSeparator := JclFormatSettings.DecimalSeparator; FDigitBlockSeparator := JclFormatSettings.ThousandSeparator; end; @@ -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;