diff --git a/indra/llinventory/llfoldertype.cpp b/indra/llinventory/llfoldertype.cpp index c41a7a4dc64aea644827bff30d7aa15402942238..5e738a3a347f567a995bc66c15c9a25482922f5e 100644 --- a/indra/llinventory/llfoldertype.cpp +++ b/indra/llinventory/llfoldertype.cpp @@ -104,7 +104,9 @@ LLFolderDictionary::LLFolderDictionary() addEntry(LLFolderType::FT_SUITCASE, new FolderEntry("suitcase", TRUE)); addEntry(LLFolderType::FT_ANIM_OVERRIDES, new FolderEntry("animover", TRUE)); - + + addEntry(LLFolderType::FT_RLV, new FolderEntry("rlv", TRUE)); + addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE)); }; diff --git a/indra/newview/rlvinventory.cpp b/indra/newview/rlvinventory.cpp index 042f5a17260156cdc7ac397dacd1f301768affdd..5e592f74cff3ca121c0f124fdb301445792f8c8e 100644 --- a/indra/newview/rlvinventory.cpp +++ b/indra/newview/rlvinventory.cpp @@ -529,7 +529,7 @@ bool RlvGiveToRLVOffer::createDestinationFolder(const std::string& strPath) else { inventory_func_type f = boost::bind(RlvGiveToRLVOffer::onCategoryCreateCallback, _1, this); - const LLUUID idTemp = gInventory.createNewCategory(gInventory.getRootFolderID(), LLFolderType::FT_RLV, RLV_ROOT_FOLDER, f); + const LLUUID idTemp = gInventory.createNewCategory(gInventory.getRootFolderID(), LLFolderType::FT_NONE, RLV_ROOT_FOLDER, f); if (idTemp.notNull()) onCategoryCreateCallback(idTemp, this); } diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index 634bcd11c4251366b8a9189902d13eb9cb0c0a41..41cd06ccef38ec642b4b909ad1338dfc8f074078 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -3868,6 +3868,8 @@ Abuse Report</string> <string name="Other Gestures">Other Gestures</string> <string name="Speech Gestures">Speech Gestures</string> <string name="Common Gestures">Common Gestures</string> + <!-- Additional inventory entries --> + <string name="RlvRoot">#RLV</string> <!-- gestures --> <string name="Male - Excuse me">Male - Excuse me</string> <string name="Male - Get lost">Male - Get lost</string>