diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-01-20 15:59:05 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-01-20 15:59:05 -0500 |
commit | fd5ee757a5c9bb014fd021139e8b701a6007c9d0 (patch) | |
tree | b74be57b620d59a57abf7693eed56debd769b766 /indra/newview/llcompilequeue.cpp | |
parent | 362f288bc6c08f5f345b0b676ca5e3e1fae53c07 (diff) | |
parent | 5ca943cd0279d35ffdf584fa0de3b795645f276c (diff) |
viewer2.0->viewer2.0 merge
Diffstat (limited to 'indra/newview/llcompilequeue.cpp')
-rw-r--r-- | indra/newview/llcompilequeue.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llcompilequeue.cpp b/indra/newview/llcompilequeue.cpp index 72074955d1..47f1b7c9f5 100644 --- a/indra/newview/llcompilequeue.cpp +++ b/indra/newview/llcompilequeue.cpp @@ -446,10 +446,20 @@ void LLFloaterCompileQueue::scriptArrived(LLVFS *vfs, const LLUUID& asset_id, if( LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE == status ) { + //TODO* CHAT: how to show this? + //LLSD args; + //args["MESSAGE"] = LLTrans::getString("CompileQueueScriptNotFound); + //LLNotificationsUtil::add("SystemMessage", args); + buffer = LLTrans::getString("CompileQueueProblemDownloading") + (": ") + data->mScriptName; } else if (LL_ERR_INSUFFICIENT_PERMISSIONS == status) { + //TODO* CHAT: how to show this? + //LLSD args; + //args["MESSAGE"] = LLTrans::getString("CompileQueueScriptNotFound); + //LLNotificationsUtil::add("SystemMessage", args); + buffer = LLTrans::getString("CompileQueueInsufficientPermFor") + (": ") + data->mScriptName; } else |