A few more translated tidbits. Also converted french strings.xml from BOM with windows lineendings, to non-BOM with unix lineendings.

This commit is contained in:
Shyotl
2012-01-28 22:07:13 -06:00
parent d9640ecc65
commit d0c782c7ae
6 changed files with 756 additions and 686 deletions

View File

@@ -1216,8 +1216,7 @@ void LLAgent::setAFK()
gAwayTimer.start();
if (gAFKMenu)
{
// *TODO:Translate
gAFKMenu->setLabel(std::string("Set Not Away"));
gAFKMenu->setLabel(LLTrans::getString("AvatarSetNotAway"));
}
}
}
@@ -1242,8 +1241,7 @@ void LLAgent::clearAFK()
LL_INFOS("AFK") << "Clearing Away" << LL_ENDL;
if (gAFKMenu)
{
// *TODO:Translate
gAFKMenu->setLabel(std::string("Set Away"));
gAFKMenu->setLabel(LLTrans::getString("AvatarSetAway"));
}
}
}
@@ -1265,8 +1263,7 @@ void LLAgent::setBusy()
mIsBusy = TRUE;
if (gBusyMenu)
{
// *TODO:Translate
gBusyMenu->setLabel(std::string("Set Not Busy"));
gBusyMenu->setLabel(LLTrans::getString("AvatarSetNotBusy"));
}
LLFloaterMute::getInstance()->updateButtons();
}
@@ -1280,8 +1277,7 @@ void LLAgent::clearBusy()
sendAnimationRequest(ANIM_AGENT_BUSY, ANIM_REQUEST_STOP);
if (gBusyMenu)
{
// *TODO:Translate
gBusyMenu->setLabel(std::string("Set Busy"));
gBusyMenu->setLabel(LLTrans::getString("AvatarSetBusy"));
}
LLFloaterMute::getInstance()->updateButtons();
}