French translation updates, by me~

This commit is contained in:
Inusaito Sayori
2014-07-14 03:20:48 -04:00
parent c1cc9d484a
commit ca1696823c
6 changed files with 43 additions and 11 deletions

View File

@@ -2948,12 +2948,7 @@ LLFolderType::EType LLFolderBridge::getPreferredType() const
// Icons for folders are based on the preferred type
LLUIImagePtr LLFolderBridge::getIcon() const
{
LLFolderType::EType preferred_type = LLFolderType::FT_NONE;
LLViewerInventoryCategory* cat = getCategory();
if(cat)
{
preferred_type = cat->getPreferredType();
}
LLFolderType::EType preferred_type(getPreferredType()); // Singu Note: Duplicate code
return getIcon(preferred_type);
}