summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rwxr-xr-xindra/newview/llinventorybridge.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 9d9279ce90..38dcb24477 100755
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -1959,7 +1959,16 @@ std::string LLFolderBridge::getLabelSuffix() const
if (LLMarketplaceData::instance().isListed(getUUID()))
{
llinfos << "Merov : in merchant folder and listed : id = " << getUUID() << llendl;
- std::string suffix = " (" + LLMarketplaceData::instance().getListingID(getUUID()) + ")";
+ std::string suffix = LLMarketplaceData::instance().getListingID(getUUID());
+ if (suffix.empty())
+ {
+ suffix = LLTrans::getString("MarketplaceNoID");
+ }
+ suffix = " (" + suffix + ")";
+ if (LLMarketplaceData::instance().getActivationState(getUUID()))
+ {
+ suffix += " (" + LLTrans::getString("MarketplaceActive") + ")";
+ }
return LLInvFVBridge::getLabelSuffix() + suffix;
}
else
@@ -1970,7 +1979,6 @@ std::string LLFolderBridge::getLabelSuffix() const
}
else
{
- llinfos << "Merov : not in merchant folder : id = " << getUUID() << llendl;
return LLInvFVBridge::getLabelSuffix();
}
}