summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2017-12-13 14:20:50 +0200
committerMnikolenko Productengine <mnikolenko@productengine.com>2017-12-13 14:20:50 +0200
commitb309f058084d87744534adf647226b0a209a65f9 (patch)
treeaadeef3c8b1011021dae519462df29f0dfef2b92 /indra/newview/llinventorybridge.cpp
parent9db2de69f15723518b7129dd198332520e958b85 (diff)
MAINT-8061 Consider including folder count along with object count
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r--indra/newview/llinventorybridge.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 77c77023b1..3acfaeb049 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -2224,7 +2224,9 @@ std::string LLFolderBridge::getLabelSuffix() const
{
std::ostringstream oss;
oss << count;
- suffix = " ( " + oss.str() + " Items )";
+ LLStringUtil::format_map_t args;
+ args["[ITEMS_COUNT]"] = oss.str();
+ suffix = " " + LLTrans::getString("InventoryItemsCount", args);
}
}