From 35f718cc3a5814348140538281d78f37abe35a72 Mon Sep 17 00:00:00 2001 From: Artic-Circuits Date: Tue, 29 Oct 2024 13:09:45 -0400 Subject: [PATCH 1/2] Update pronouns to gender neutral variants Changing exception messages and a comment from male pronouns to gender neutral pronouns. --- .../repository/ExceptionDialog/StandardDialogs/ExceptDlg.pas | 2 +- .../ExceptionDialog/StandardDialogs/ExceptDlgMail.pas | 2 +- .../repository/ExceptionDialog/Templates/ExceptDlg.Delphi32.pas | 2 +- jcl/source/common/JclSysUtils.pas | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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..0617df0a09 100644 --- a/jcl/source/common/JclSysUtils.pas +++ b/jcl/source/common/JclSysUtils.pas @@ -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 himself. 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; From 2c67831aaf738f0ca1420a034e9cca1c30e1ff21 Mon Sep 17 00:00:00 2001 From: Artic-Circuits <25774804+Arctic-Circuits@users.noreply.github.com> Date: Fri, 10 Jan 2025 12:17:59 -0500 Subject: [PATCH 2/2] Update JclSysUtils.pas Change himself to themself --- jcl/source/common/JclSysUtils.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jcl/source/common/JclSysUtils.pas b/jcl/source/common/JclSysUtils.pas index 0617df0a09..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 their + // 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;