Strings fix ups

Order was a little incorrect
Minor change to hippogridmanager.cpp
This commit is contained in:
Lirusaito
2013-03-12 01:26:19 -04:00
parent e08f4316ab
commit 2ae966fe6b
2 changed files with 5 additions and 7 deletions

View File

@@ -553,7 +553,7 @@ std::string HippoGridInfo::getDirectoryFee() const
{
std::string fee;
formatFee(fee, mDirectoryFee, true);
if (fee != LLTrans::getString("hippo_label_free")) fee += "/" + LLTrans::getString("hippo_label_week");
if (mDirectoryFee != 0) fee += "/" + LLTrans::getString("hippo_label_week");
return fee;
}