From 509459daf21066830f44d79f09b9c1f7ad6a41c8 Mon Sep 17 00:00:00 2001 From: Maxim Ganetsky Date: Thu, 29 Jul 2021 00:26:35 +0300 Subject: [PATCH] IDE: don't mention SVN in About dialog anymore (cherry picked from commit b4fe9ca0265b4635cb68032763368607fefc457d) --- ide/aboutfrm.pas | 2 +- ide/lazarusidestrconsts.pas | 2 +- ide/main.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ide/aboutfrm.pas b/ide/aboutfrm.pas index 1afae0885b..c3fbdc6550 100644 --- a/ide/aboutfrm.pas +++ b/ide/aboutfrm.pas @@ -176,7 +176,7 @@ begin Notebook.PageIndex:=0; Caption:=lisAboutLazarus; VersionLabel.Caption := lisVersion+' #: '+ GetLazarusVersionString; - RevisionLabel.Caption := lisSVNRevision+LazarusRevisionStr; + RevisionLabel.Caption := lisRevision+LazarusRevisionStr; BuildDateLabel.Caption := lisDate+': '+GetLocalizedBuildDate; FPCVersionLabel.Caption:= lisFPCVersion+{$I %FPCVERSION%}; PlatformLabel.Caption:=GetCompiledTargetCPU+'-'+GetCompiledTargetOS diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index a2cf2265e3..4b08b9dde3 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -1141,7 +1141,7 @@ resourcestring lisVerToClipboard = 'Copy version information to clipboard'; lisDate = 'Date'; lisFPCVersion = 'FPC Version: '; - lisSVNRevision = 'SVN Revision: '; + lisRevision = 'Revision: '; lisPrior = 'prior %s'; lisWelcomeToLazarusThereIsAlreadyAConfigurationFromVe = 'Welcome to Lazarus %s' +'%sThere is already a configuration from version %s in' diff --git a/ide/main.pp b/ide/main.pp index 9c5a529155..242580c1b3 100644 --- a/ide/main.pp +++ b/ide/main.pp @@ -1148,7 +1148,7 @@ begin end; if IsVersionRequested then begin - WriteHelp(GetLazarusVersionString+' '+lisSVNRevision+LazarusRevisionStr); + WriteHelp(GetLazarusVersionString+' '+lisRevision+LazarusRevisionStr); exit; end;