Flesh out llGetAgentLanguage to return "en-us" until

we have an I18N committee for internationalization.
0.6.3-post-fixes
Charles Krinke 2009-01-31 18:27:44 +00:00
parent 9e29baa565
commit 4a120e9dd5
1 changed files with 4 additions and 2 deletions

View File

@ -4929,9 +4929,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_String llGetAgentLanguage(string id)
{
// This should only return a value if the avatar is in the same region
//ckrinke 1-30-09 : This needs to parse the XMLRPC language field supplied
//by the client at login. Currently returning only en-us until our I18N
//effort gains momentum
m_host.AddScriptLPS(1);
NotImplemented("llGetAgentLanguage");
return "";
return "en-us";
}
public void llAdjustSoundVolume(double volume)