From 8bc8b1cfd68bb088eac881853b41a5b4159e22c9 Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Thu, 9 Jul 2020 14:20:11 +0300 Subject: SL-13093 Add time info to the Date column in group notices --- indra/newview/llpanelgroupnotices.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'indra/newview/llpanelgroupnotices.cpp') diff --git a/indra/newview/llpanelgroupnotices.cpp b/indra/newview/llpanelgroupnotices.cpp index 7373c7412c..59c6151efa 100644 --- a/indra/newview/llpanelgroupnotices.cpp +++ b/indra/newview/llpanelgroupnotices.cpp @@ -201,9 +201,12 @@ std::string build_notice_date(const U32& the_time) time(&t); } - std::string dateStr = "["+LLTrans::getString("LTimeMthNum")+"]/[" - +LLTrans::getString("LTimeDay")+"]/[" - +LLTrans::getString("LTimeYear")+"]"; + std::string dateStr = "["+ LLTrans::getString("LTimeMthNum") + "]/[" + + LLTrans::getString("LTimeDay") + "]/[" + + LLTrans::getString("LTimeYear") + "] [" + + LLTrans::getString("LTimeHour") + "]:[" + + LLTrans::getString("LTimeMin") + "]:[" + + LLTrans::getString("LTimeSec") + "]"; LLSD substitution; substitution["datetime"] = (S32) t; LLStringUtil::format (dateStr, substitution); -- cgit v1.2.3