Updated About dialog to point to the correct EULA page and updated text

This commit is contained in:
Terry Michaels
2021-06-24 15:16:17 -05:00
committed by GitHub
parent b4641b0b5d
commit 273b2c30b7
4 changed files with 5 additions and 26 deletions
+2 -2
View File
@@ -923,9 +923,9 @@ QString FormatRichTextCopyrightNotice()
{
// copyright symbol is HTML Entity = ©
QString copyrightHtmlSymbol = "©";
QString copyrightString = QObject::tr("Open 3D Engine and related materials Copyright %1 %2 Amazon Web Services, Inc., its affiliates or licensors.<br>By accessing or using these materials, you agree to the terms of the AWS Customer Agreement.");
QString copyrightString = QObject::tr("Copyright %1 Contributors to the Open 3D Engine Project");
return copyrightString.arg(copyrightHtmlSymbol).arg(O3DE_COPYRIGHT_YEAR);
return copyrightString.arg(copyrightHtmlSymbol);
}
/////////////////////////////////////////////////////////////////////////////