diff options
author | Mike Antipov <mantipov@productengine.com> | 2010-07-14 16:25:17 +0300 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2010-07-14 16:25:17 +0300 |
commit | 14724102f352ec9f79506db173ee952ef5412cf8 (patch) | |
tree | e704d04980d2260da95185d30bb9a8ad63e0e1e7 /indra/newview/llviewerinventory.h | |
parent | 0f169e180667175ba298f8fdf1e7a45db70d89fd (diff) |
EXT-8319 FIXED Added method to localize inventory categories having predefined names, updated predefined keys for "Male - Get lost" and "Female - Get lost".
There were two issues:
* "Male - Get lost" and "Female - Get lost" gestures have by 2 spaces before "-" in their names.
* Folders were not processed to be localize. This was not implemented correctly in EXT-7051.
Reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/753/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llviewerinventory.h')
-rw-r--r-- | indra/newview/llviewerinventory.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llviewerinventory.h b/indra/newview/llviewerinventory.h index 1dd6597388..ef3586537b 100644 --- a/indra/newview/llviewerinventory.h +++ b/indra/newview/llviewerinventory.h @@ -229,6 +229,11 @@ public: bool importFileLocal(LLFILE* fp); void determineFolderType(); void changeType(LLFolderType::EType new_folder_type); + +private: + friend class LLInventoryModel; + void localizeName(); // intended to be called from the LLInventoryModel + protected: LLUUID mOwnerID; S32 mVersion; |