From 7203fb2e640ca1fae0f163c3db8c26485a00037c Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Wed, 19 Jun 2024 18:16:56 -0400
Subject: [PATCH] Fix legacy profile missing string issue

---
 indra/newview/llpanelprofilelegacy.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llpanelprofilelegacy.cpp b/indra/newview/llpanelprofilelegacy.cpp
index e6b9428bffe..de616798401 100644
--- a/indra/newview/llpanelprofilelegacy.cpp
+++ b/indra/newview/llpanelprofilelegacy.cpp
@@ -461,7 +461,7 @@ void LLPanelProfileLegacy::processProperties(void* data, EAvatarProcessorType ty
             getChild<LLLineEditor>("www_edit")->setText(pData->profile_url);
 
             LLStringUtil::format_map_t args;
-            std::string birth_date = LLTrans::getString("AvatarBirthDateFormat");
+            std::string birth_date = LLTrans::getString("AvatarBirthDateFormatFull");
             LLStringUtil::format(birth_date, LLSD().with("datetime", static_cast<S32>(pData->born_on.secondsSinceEpoch())));
             args["[AGE]"] = LLDateUtil::ageFromDate(pData->born_on, LLDate::now());
             args["[REZDAY]"] = birth_date;
-- 
GitLab