From 9f0646bcc0b24d9f3c13446399505eddc768a4ce Mon Sep 17 00:00:00 2001 From: Merov Linden Date: Tue, 25 Jun 2013 12:43:37 -0700 Subject: ACME-580, ACME-572, ACME-591 : Added a toast notification when posting to Facebook successfully --- indra/newview/llfacebookconnect.cpp | 11 ++++++++++- indra/newview/skins/default/xui/en/strings.xml | 3 +++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 64fc81cc93..fe4e7fe69e 100644 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -36,9 +36,10 @@ #include "llnotificationsutil.h" #include "llurlaction.h" #include "llimagepng.h" +#include "lltrans.h" -// Local function +// Local functions void prompt_user_for_error(U32 status, const std::string& reason, const std::string& code, const std::string& description) { // Note: 302 (redirect) is *not* an error that warrants prompting the user @@ -55,6 +56,13 @@ void prompt_user_for_error(U32 status, const std::string& reason, const std::str } } +void toast_user_for_success() +{ + LLSD args; + args["MESSAGE"] = LLTrans::getString("facebook_post_success"); + LLNotificationsUtil::add("SystemMessage", args); +} + /////////////////////////////////////////////////////////////////////////////// // class LLFacebookConnectHandler : public LLCommandHandler @@ -133,6 +141,7 @@ public: { if (isGoodStatus(status)) { + toast_user_for_success(); LL_DEBUGS("FacebookConnect") << "Post successful. content: " << content << LL_ENDL; } else diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index f7b33b0a4a..4613ae054f 100755 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -3421,6 +3421,9 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Drag items from inventory here + + Posting to Facebook was successful. + (IM Session Doesn't Exist) -- cgit v1.2.3