From e3b869e6f12a9d285ca3db4a2e7f4f0fa1ff8b26 Mon Sep 17 00:00:00 2001
From: Andrey Kleshchev <andreykproductengine@lindenlab.com>
Date: Mon, 27 Sep 2021 22:13:40 +0300
Subject: [PATCH] SL-16087 [D545] New clothes do not have the word 'New' in
 their names

---
 indra/newview/llwearablelist.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/newview/llwearablelist.cpp b/indra/newview/llwearablelist.cpp
index 00f8bace703..de01fbb73d9 100644
--- a/indra/newview/llwearablelist.cpp
+++ b/indra/newview/llwearablelist.cpp
@@ -241,7 +241,8 @@ LLViewerWearable* LLWearableList::createNewWearable( LLWearableType::EType type,
 	LLViewerWearable *wearable = generateNewWearable();
 	wearable->setType( type, avatarp );
 	
-	std::string name = LLWearableType::getInstance()->getTypeLabel(wearable->getType());
+    // LLWearableType has pre-translated getTypeLabel(), but it returns 'name', not 'New Name'.
+	std::string name = LLTrans::getString( LLWearableType::getInstance()->getTypeDefaultNewName(wearable->getType()) );
 	wearable->setName( name );
 
 	LLPermissions perm;
-- 
GitLab