diff --git a/.hgignore b/.hgignore
index 10549b6144711a0d9797152e60471009456bee67..1b7a9019a265cfc9fb6ba03a1e7a9d6aa8ee2120 100755
--- a/.hgignore
+++ b/.hgignore
@@ -1,6 +1,5 @@
 syntax: glob
 
-
 # WinMerge temp files
 *.bak
 # Compiled python bytecode
diff --git a/.hgtags b/.hgtags
index 209f17c332e0f0a15c82deb941f2859d88b14dcc..feff45e7d87d97e9208ba30ae0b3bb7235e355f0 100755
--- a/.hgtags
+++ b/.hgtags
@@ -503,3 +503,4 @@ afd8d4756e8eda3c8f760625d1c17a2ad40ad6c8 3.7.27-release
 566874eb5ab26c003ef7fb0e22ce40c5fa0013f4 3.7.28-release
 d07f76c5b9860fb87924d00ca729f7d4532534d6 3.7.29-release
 67edc442c80b8d2fadd2a6c4a7184b469906cdbf 3.7.30-release
+797ed69e6134ef48bb922577ab2540fb2d964668 3.8.0-release
diff --git a/BuildParams b/BuildParams
index 74bd2b4923c802acf1eb756d3f1d8dffea3af509..aeea3b1246868b59c1a58f3b4d3ff6b6347b79c8 100755
--- a/BuildParams
+++ b/BuildParams
@@ -70,6 +70,12 @@ additional_packages = ""
 # the viewer_channel_suffix is prefixed by a blank and then appended to the viewer_channel
 # for the package in a setting that overrides the compiled-in value
 ################################################################
+additional_packages = "EDU"
+
+# The EDU package allows us to create a separate release channel whose expirations
+# are synchronized as much as possible with the academic year
+EDU_sourceid = ""
+EDU_viewer_channel_suffix = "edu"
 
 # Notifications - to configure email notices, add a setting like this:
 # <username>_<reponame>.email = <email-address>
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp
index b24e14c72b038f48cc5330022369bc2bb9d546de..0908613c105b2114276c47f2559103bd5ff54e7d 100755
--- a/indra/llinventory/llparcel.cpp
+++ b/indra/llinventory/llparcel.cpp
@@ -40,6 +40,8 @@
 #include "llsdutil_math.h"
 #include "message.h"
 #include "u64.h"
+#include "llregionflags.h"
+#include <boost/range/adaptor/map.hpp>
 
 static const F32 SOME_BIG_NUMBER = 1000.0f;
 static const F32 SOME_BIG_NEG_NUMBER = -1000.0f;
@@ -627,8 +629,8 @@ void LLParcel::unpackMessage(LLMessageSystem* msg)
 void LLParcel::packAccessEntries(LLMessageSystem* msg,
 								 const std::map<LLUUID,LLAccessEntry>& list)
 {
-    access_map_const_iterator cit = list.begin();
-    access_map_const_iterator end = list.end();
+    LLAccessEntry::map::const_iterator cit = list.begin();
+    LLAccessEntry::map::const_iterator end = list.end();
     
     if (cit == end)
     {
@@ -679,9 +681,28 @@ void LLParcel::unpackAccessEntries(LLMessageSystem* msg,
 }
 
 
+void LLParcel::unpackExperienceEntries( LLMessageSystem* msg, U32 type )
+{
+	LLUUID id;
+
+	S32 i;
+	S32 count = msg->getNumberOfBlocksFast(_PREHASH_List);
+	for (i = 0; i < count; i++)
+	{
+		msg->getUUIDFast(_PREHASH_List, _PREHASH_ID, id, i);
+
+		if (id.notNull())
+		{
+			mExperienceKeys[id]=type;
+		}
+	}
+}
+
+
+
 void LLParcel::expirePasses(S32 now)
 {
-    access_map_iterator itor = mAccessList.begin();
+    LLAccessEntry::map::iterator itor = mAccessList.begin();
     while (itor != mAccessList.end())
     {
         const LLAccessEntry& entry = (*itor).second;
@@ -771,7 +792,7 @@ BOOL LLParcel::addToAccessList(const LLUUID& agent_id, S32 time)
 		// Can't add owner to these lists
 		return FALSE;
 	}
-	access_map_iterator itor = mAccessList.begin();
+	LLAccessEntry::map::iterator itor = mAccessList.begin();
 	while (itor != mAccessList.end())
 	{
 		const LLAccessEntry& entry = (*itor).second;
@@ -814,7 +835,7 @@ BOOL LLParcel::addToBanList(const LLUUID& agent_id, S32 time)
 		return FALSE;
 	}
     
-    access_map_iterator itor = mBanList.begin();
+    LLAccessEntry::map::iterator itor = mBanList.begin();
     while (itor != mBanList.end())
     {
         const LLAccessEntry& entry = (*itor).second;
@@ -848,7 +869,7 @@ BOOL remove_from_access_array(std::map<LLUUID,LLAccessEntry>* list,
                               const LLUUID& agent_id)
 {
     BOOL removed = FALSE;
-    access_map_iterator itor = list->begin();
+    LLAccessEntry::map::iterator itor = list->begin();
     while (itor != list->end())
     {
         const LLAccessEntry& entry = (*itor).second;
@@ -1191,3 +1212,58 @@ LLParcel::ECategory category_ui_string_to_category(const std::string& s)
     // is a distinct option from "None" and "Other"
     return LLParcel::C_ANY;
 }
+
+LLAccessEntry::map LLParcel::getExperienceKeysByType( U32 type ) const
+{
+	LLAccessEntry::map access;
+	LLAccessEntry entry;
+	xp_type_map_t::const_iterator it = mExperienceKeys.begin();
+	for(/**/; it != mExperienceKeys.end(); ++it)
+	{
+		if(it->second == type)
+		{
+			entry.mID = it->first;
+			access[entry.mID] = entry;
+		}
+	}
+	return access;
+}
+
+void LLParcel::clearExperienceKeysByType( U32 type )
+{
+	xp_type_map_t::iterator it = mExperienceKeys.begin();
+	while(it != mExperienceKeys.end())
+	{
+		if(it->second == type)
+		{
+			mExperienceKeys.erase(it++);
+		}
+		else
+		{
+			++it;
+		}
+	}
+}
+
+void LLParcel::setExperienceKeyType( const LLUUID& experience_key, U32 type )
+{
+	if(type == EXPERIENCE_KEY_TYPE_NONE)
+	{
+		mExperienceKeys.erase(experience_key);
+	}
+	else
+	{
+		if(countExperienceKeyType(type) < PARCEL_MAX_EXPERIENCE_LIST)
+		{
+			mExperienceKeys[experience_key] = type;
+		}
+	}
+}
+
+U32 LLParcel::countExperienceKeyType( U32 type )
+{
+	return std::count_if(
+		boost::begin(mExperienceKeys | boost::adaptors::map_values), 
+		boost::end(mExperienceKeys | boost::adaptors::map_values), 
+		std::bind2nd(std::equal_to<U32>(), type));
+}
diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h
index c4363a48df5151bc3b73e9b9bfdec97a9f9b25c1..e68331b99a7dca04fc3dcd5dec8d7fa572659fa0 100755
--- a/indra/llinventory/llparcel.h
+++ b/indra/llinventory/llparcel.h
@@ -53,6 +53,9 @@ const S32 PARCEL_MAX_ACCESS_LIST = 300;
 //for access/ban lists.
 const F32 PARCEL_MAX_ENTRIES_PER_PACKET = 48.f;
 
+// Maximum number of experiences
+const S32 PARCEL_MAX_EXPERIENCE_LIST = 24;
+
 // Weekly charge for listing a parcel in the directory
 const S32 PARCEL_DIRECTORY_FEE = 30;
 
@@ -130,9 +133,11 @@ class LLSD;
 class LLAccessEntry
 {
 public:
+
+	typedef std::map<LLUUID,LLAccessEntry> map;
+
 	LLAccessEntry()
-	:	mID(),
-		mTime(0),
+	:	mTime(0),
 		mFlags(0)
 	{}
 
@@ -141,8 +146,6 @@ public:
 	U32			mFlags;		// Not used - currently should always be zero
 };
 
-typedef std::map<LLUUID,LLAccessEntry>::iterator access_map_iterator;
-typedef std::map<LLUUID,LLAccessEntry>::const_iterator access_map_const_iterator;
 
 class LLParcel
 {
@@ -320,6 +323,9 @@ public:
 	void	unpackAccessEntries(LLMessageSystem* msg,
 								std::map<LLUUID,LLAccessEntry>* list);
 
+	void	unpackExperienceEntries(LLMessageSystem* msg, U32 type);
+
+
 	void	setAABBMin(const LLVector3& min)	{ mAABBMin = min; }
 	void	setAABBMax(const LLVector3& max)	{ mAABBMax = max; }
 
@@ -665,6 +671,17 @@ public:
 	std::map<LLUUID,LLAccessEntry>	mTempBanList;
 	std::map<LLUUID,LLAccessEntry>	mTempAccessList;
 
+	typedef std::map<LLUUID, U32> xp_type_map_t;
+
+	void setExperienceKeyType(const LLUUID& experience_key, U32 type);
+	U32 countExperienceKeyType(U32 type);
+	U32 getExperienceKeyType(const LLUUID& experience_key)const;
+	LLAccessEntry::map getExperienceKeysByType(U32 type)const;
+	void clearExperienceKeysByType(U32 type);
+
+private:
+	xp_type_map_t mExperienceKeys;
+
 };
 
 
diff --git a/indra/llinventory/llparcelflags.h b/indra/llinventory/llparcelflags.h
index b1a917df73cc6118140d0f3295d7b2f57ac2cdf0..25b27a281af89dfd3f01891d2a42103f01714247 100755
--- a/indra/llinventory/llparcelflags.h
+++ b/indra/llinventory/llparcelflags.h
@@ -90,8 +90,10 @@ const U32 PF_DEFAULT =  PF_ALLOW_FLY
                         | PF_USE_ESTATE_VOICE_CHAN;
 
 // Access list flags
-const U32 AL_ACCESS  = (1 << 0);
-const U32 AL_BAN     = (1 << 1);
+const U32 AL_ACCESS				= (1 << 0);
+const U32 AL_BAN					= (1 << 1);
+const U32 AL_ALLOW_EXPERIENCE	= (1 << 3);
+const U32 AL_BLOCK_EXPERIENCE	= (1 << 4);
 //const U32 AL_RENTER  = (1 << 2);
 
 // Block access return values. BA_ALLOWED is the only success case
diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt
index 40eddcb0ab1a8312e964d7f2ba3d3a44a453890a..0a308fbf10170db13ff669e07589e79b60dcd052 100755
--- a/indra/llmessage/CMakeLists.txt
+++ b/indra/llmessage/CMakeLists.txt
@@ -42,6 +42,7 @@ set(llmessage_SOURCE_FILES
     llcurl.cpp
     lldatapacker.cpp
     lldispatcher.cpp
+    llexperiencecache.cpp
     llfiltersd2xmlrpc.cpp
     llhost.cpp
     llhttpassetstorage.cpp
@@ -133,6 +134,7 @@ set(llmessage_HEADER_FILES
     lldbstrings.h
     lldispatcher.h
     lleventflags.h
+    llexperiencecache.h
     llextendedstatus.h
     llfiltersd2xmlrpc.h
     llfollowcamparams.h
diff --git a/indra/llmessage/llexperiencecache.cpp b/indra/llmessage/llexperiencecache.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..52b60a176e45c7fb19f634c47fa842a29db58f2a
--- /dev/null
+++ b/indra/llmessage/llexperiencecache.cpp
@@ -0,0 +1,641 @@
+/** 
+ * @file llexperiencecache.cpp
+ * @brief llexperiencecache and related class definitions
+ *
+ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2012, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+#include "llexperiencecache.h"
+
+#include "llavatarname.h"
+#include "llframetimer.h"
+#include "llhttpclient.h"
+#include "llsdserialize.h"
+#include <set>
+#include <map>
+#include "boost/tokenizer.hpp"
+
+
+namespace LLExperienceCache
+{
+
+    typedef std::map<LLUUID, LLUUID> KeyMap;
+    KeyMap privateToPublicKeyMap;
+
+    void mapKeys(const LLSD& legacyKeys);
+
+	std::string sLookupURL;
+
+	typedef std::map<LLUUID, std::string> ask_queue_t;
+	ask_queue_t sAskQueue;
+
+	typedef std::map<LLUUID, F64> pending_queue_t;
+	pending_queue_t sPendingQueue;
+
+	cache_t sCache;
+	int sMaximumLookups = 10;
+
+	LLFrameTimer sRequestTimer;
+
+	// Periodically clean out expired entries from the cache
+	LLFrameTimer sEraseExpiredTimer;
+
+	// May have multiple callbacks for a single ID, which are
+	// represented as multiple slots bound to the signal.
+	// Avoid copying signals via pointers.
+	typedef std::map<LLUUID, callback_signal_t*> signal_map_t;
+	signal_map_t sSignalMap;
+
+
+
+	bool max_age_from_cache_control(const std::string& cache_control, S32 *max_age);
+	void eraseExpired();
+
+	void processExperience( const LLUUID& public_key, const LLSD& experience ) 
+	{
+		sCache[public_key]=experience;
+		LLSD & row = sCache[public_key];
+
+		if(row.has(EXPIRES))
+		{
+			row[EXPIRES] = row[EXPIRES].asReal() + LLFrameTimer::getTotalSeconds();
+		}
+
+		if(row.has(EXPERIENCE_ID))
+		{
+			sPendingQueue.erase(row[EXPERIENCE_ID].asUUID());
+		}
+
+		//signal
+		signal_map_t::iterator sig_it =	sSignalMap.find(public_key);
+		if (sig_it != sSignalMap.end())
+		{
+			callback_signal_t* signal = sig_it->second;
+			(*signal)(experience);
+
+			sSignalMap.erase(public_key);
+
+			delete signal;
+		}
+	}
+
+	void initClass( )
+	{
+	}
+
+	const cache_t& getCached()
+	{
+		return sCache;
+	}
+
+	void setMaximumLookups( int maximumLookups)
+	{
+		sMaximumLookups = maximumLookups;
+	}
+
+	void bootstrap(const LLSD& legacyKeys, int initialExpiration)
+	{
+        mapKeys(legacyKeys);
+		LLSD::array_const_iterator it = legacyKeys.beginArray();
+		for(/**/; it != legacyKeys.endArray(); ++it)
+		{
+			LLSD experience = *it;
+			if(experience.has(EXPERIENCE_ID))
+			{
+				if(!experience.has(EXPIRES))
+				{
+					experience[EXPIRES] = initialExpiration;
+				}
+				processExperience(experience[EXPERIENCE_ID].asUUID(), experience);
+			}
+			else
+			{
+				LL_WARNS("ExperienceCache") 
+					<< "Skipping bootstrap entry which is missing " << EXPERIENCE_ID 
+					<< LL_ENDL;
+			}
+		}		
+	}
+
+
+
+	bool expirationFromCacheControl(LLSD headers, F64 *expires)
+	{
+		// Allow the header to override the default
+		LLSD cache_control_header = headers["cache-control"];
+		if (cache_control_header.isDefined())
+		{
+			S32 max_age = 0;
+			std::string cache_control = cache_control_header.asString();
+			if (max_age_from_cache_control(cache_control, &max_age))
+			{
+				LL_WARNS("ExperienceCache") 
+					<< "got EXPIRES from headers, max_age " << max_age 
+					<< LL_ENDL;
+				F64 now = LLFrameTimer::getTotalSeconds();
+				*expires = now + (F64)max_age;
+				return true;
+			}
+		}
+		return false;
+	}
+
+
+	static const std::string MAX_AGE("max-age");
+	static const boost::char_separator<char> EQUALS_SEPARATOR("=");
+	static const boost::char_separator<char> COMMA_SEPARATOR(",");
+
+	bool max_age_from_cache_control(const std::string& cache_control, S32 *max_age)
+	{
+		// Split the string on "," to get a list of directives
+		typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
+		tokenizer directives(cache_control, COMMA_SEPARATOR);
+
+		tokenizer::iterator token_it = directives.begin();
+		for ( ; token_it != directives.end(); ++token_it)
+		{
+			// Tokens may have leading or trailing whitespace
+			std::string token = *token_it;
+			LLStringUtil::trim(token);
+
+			if (token.compare(0, MAX_AGE.size(), MAX_AGE) == 0)
+			{
+				// ...this token starts with max-age, so let's chop it up by "="
+				tokenizer subtokens(token, EQUALS_SEPARATOR);
+				tokenizer::iterator subtoken_it = subtokens.begin();
+
+				// Must have a token
+				if (subtoken_it == subtokens.end()) return false;
+				std::string subtoken = *subtoken_it;
+
+				// Must exactly equal "max-age"
+				LLStringUtil::trim(subtoken);
+				if (subtoken != MAX_AGE) return false;
+
+				// Must have another token
+				++subtoken_it;
+				if (subtoken_it == subtokens.end()) return false;
+				subtoken = *subtoken_it;
+
+				// Must be a valid integer
+				// *NOTE: atoi() returns 0 for invalid values, so we have to
+				// check the string first.
+				// *TODO: Do servers ever send "0000" for zero?  We don't handle it
+				LLStringUtil::trim(subtoken);
+				if (subtoken == "0")
+				{
+					*max_age = 0;
+					return true;
+				}
+				S32 val = atoi( subtoken.c_str() );
+				if (val > 0 && val < S32_MAX)
+				{
+					*max_age = val;
+					return true;
+				}
+				return false;
+			}
+		}
+		return false;
+	}
+
+
+	void importFile(std::istream& istr)
+	{
+		LLSD data;
+		S32 parse_count = LLSDSerialize::fromXMLDocument(data, istr);
+		if(parse_count < 1) return;
+
+		LLSD experiences = data["experiences"];
+
+		LLUUID public_key;
+		LLSD::map_const_iterator it = experiences.beginMap();
+		for(; it != experiences.endMap() ; ++it)
+		{
+			public_key.set(it->first);
+			sCache[public_key]=it->second;
+		}
+
+		LL_DEBUGS("ExperienceCache") << "importFile() loaded " << sCache.size() << LL_ENDL;
+	}
+
+	void exportFile(std::ostream& ostr)
+	{
+		LLSD experiences;
+
+		cache_t::const_iterator it =sCache.begin();
+		for( ; it != sCache.end() ; ++it)
+		{
+			if(!it->second.has(EXPERIENCE_ID) || it->second[EXPERIENCE_ID].asUUID().isNull() ||
+				it->second.has("DoesNotExist") || (it->second.has(PROPERTIES) && it->second[PROPERTIES].asInteger() & PROPERTY_INVALID))
+				continue;
+
+			experiences[it->first.asString()] = it->second;
+		}
+
+		LLSD data;
+		data["experiences"] = experiences;
+
+		LLSDSerialize::toPrettyXML(data, ostr);
+	}
+
+	class LLExperienceResponder : public LLHTTPClient::Responder
+	{
+	public:
+		LLExperienceResponder(const ask_queue_t& keys)
+			:mKeys(keys)
+		{
+
+		}
+
+		/*virtual*/ void httpCompleted()
+		{
+			LLSD experiences = getContent()["experience_keys"];
+			LLSD::array_const_iterator it = experiences.beginArray();
+			for( /**/ ; it != experiences.endArray(); ++it)
+			{
+				const LLSD& row = *it;
+				LLUUID public_key = row[EXPERIENCE_ID].asUUID();
+
+
+				LL_DEBUGS("ExperienceCache") << "Received result for " << public_key 
+					<< " display '" << row[LLExperienceCache::NAME].asString() << "'" << LL_ENDL ;
+
+				processExperience(public_key, row);
+			}
+
+			LLSD error_ids = getContent()["error_ids"];
+			LLSD::array_const_iterator errIt = error_ids.beginArray();
+			for( /**/ ; errIt != error_ids.endArray() ; ++errIt )
+			{
+				LLUUID id = errIt->asUUID();		
+				LLSD exp;
+				exp[EXPIRES]=DEFAULT_EXPIRATION;
+				exp[EXPERIENCE_ID] = id;
+				exp[PROPERTIES]=PROPERTY_INVALID;
+				exp[MISSING]=true;
+                exp[QUOTA] = DEFAULT_QUOTA;
+
+				processExperience(id, exp);
+				LL_WARNS("ExperienceCache") << "LLExperienceResponder::result() error result for " << id << LL_ENDL ;
+			}
+
+			LL_DEBUGS("ExperienceCache") << sCache.size() << " cached experiences" << LL_ENDL;
+		}
+
+		/*virtual*/ void httpFailure()
+		{
+ 			LL_WARNS("ExperienceCache") << "Request failed "<<getStatus()<<" "<<getReason()<< LL_ENDL;
+ 			// We're going to construct a dummy record and cache it for a while,
+ 			// either briefly for a 503 Service Unavailable, or longer for other
+ 			// errors.
+ 			F64 retry_timestamp = errorRetryTimestamp(getStatus());
+ 
+ 
+ 			// Add dummy records for all agent IDs in this request
+ 			ask_queue_t::const_iterator it = mKeys.begin();
+ 			for ( ; it != mKeys.end(); ++it)
+			{
+
+				LLSD exp = get(it->first);
+                //leave the properties alone if we already have a cache entry for this xp
+                if(exp.isUndefined())
+                {
+                    exp[PROPERTIES]=PROPERTY_INVALID;
+                }
+				exp[EXPIRES]=retry_timestamp;
+				exp[EXPERIENCE_ID] = it->first;
+				exp["key_type"] = it->second;
+				exp["uuid"] = it->first;
+				exp["error"] = (LLSD::Integer)getStatus();
+                exp[QUOTA] = DEFAULT_QUOTA;
+
+ 				LLExperienceCache::processExperience(it->first, exp);
+ 			}
+
+		}
+
+		// Return time to retry a request that generated an error, based on
+		// error type and headers.  Return value is seconds-since-epoch.
+		F64 errorRetryTimestamp(S32 status)
+		{
+
+			// Retry-After takes priority
+			LLSD retry_after = getResponseHeaders()["retry-after"];
+			if (retry_after.isDefined())
+			{
+				// We only support the delta-seconds type
+				S32 delta_seconds = retry_after.asInteger();
+				if (delta_seconds > 0)
+				{
+					// ...valid delta-seconds
+					return F64(delta_seconds);
+				}
+			}
+
+			// If no Retry-After, look for Cache-Control max-age
+			F64 expires = 0.0;
+			if (LLExperienceCache::expirationFromCacheControl(getResponseHeaders(), &expires))
+			{
+				return expires;
+			}
+
+			// No information in header, make a guess
+			if (status == 503)
+			{
+				// ...service unavailable, retry soon
+				const F64 SERVICE_UNAVAILABLE_DELAY = 600.0; // 10 min
+				return SERVICE_UNAVAILABLE_DELAY;
+			}
+			else if (status == 499)
+			{
+				// ...we were probably too busy, retry quickly
+				const F64 BUSY_DELAY = 10.0; // 10 seconds
+				return BUSY_DELAY;
+
+			}
+			else
+			{
+				// ...other unexpected error
+				const F64 DEFAULT_DELAY = 3600.0; // 1 hour
+				return DEFAULT_DELAY;
+			}
+		}
+
+	private:
+		ask_queue_t mKeys;
+	};
+
+	void requestExperiences() 
+	{
+		if(sAskQueue.empty() || sLookupURL.empty())
+			return;
+
+		F64 now = LLFrameTimer::getTotalSeconds();
+
+		const U32 EXP_URL_SEND_THRESHOLD = 3000;
+		const U32 PAGE_SIZE = EXP_URL_SEND_THRESHOLD/UUID_STR_LENGTH;
+
+		std::ostringstream ostr;
+
+		ask_queue_t keys;
+
+		ostr << sLookupURL << "?page_size=" << PAGE_SIZE;
+
+
+		int request_count = 0;
+		while(!sAskQueue.empty() && request_count < sMaximumLookups)
+		{
+			ask_queue_t::iterator it = sAskQueue.begin();
+			const LLUUID& key = it->first;
+			const std::string& key_type = it->second;
+
+			ostr << '&' << key_type << '=' << key.asString() ;
+		
+			keys[key]=key_type;
+			request_count++;
+
+			sPendingQueue[key] = now;
+			
+			if(ostr.tellp() > EXP_URL_SEND_THRESHOLD)
+			{
+				LL_DEBUGS("ExperienceCache") <<  "requestExperiences() query: " << ostr.str() << LL_ENDL;
+				LLHTTPClient::get(ostr.str(), new LLExperienceResponder(keys));
+				ostr.clear();
+				ostr.str(sLookupURL);
+				ostr << "?page_size=" << PAGE_SIZE;
+				keys.clear();
+			}
+			sAskQueue.erase(it);
+		}
+
+		if(ostr.tellp() > sLookupURL.size())
+		{
+			LL_DEBUGS("ExperienceCache") <<  "requestExperiences() query 2: " << ostr.str() << LL_ENDL;
+			LLHTTPClient::get(ostr.str(), new LLExperienceResponder(keys));
+		}
+	}
+
+	bool isRequestPending(const LLUUID& public_key)
+	{
+		bool isPending = false;
+		const F64 PENDING_TIMEOUT_SECS = 5.0 * 60.0;
+
+		pending_queue_t::const_iterator it = sPendingQueue.find(public_key);
+
+		if(it != sPendingQueue.end())
+		{
+			F64 expire_time = LLFrameTimer::getTotalSeconds() - PENDING_TIMEOUT_SECS;
+			isPending = (it->second > expire_time);
+		}
+
+		return isPending;
+	}
+
+
+	void setLookupURL( const std::string& lookup_url )
+	{
+		sLookupURL = lookup_url;
+		if(!sLookupURL.empty())
+		{
+			sLookupURL += "id/";
+		}
+	}
+
+	bool hasLookupURL()
+	{
+		return !sLookupURL.empty();
+	}
+
+	void idle()
+	{
+
+		const F32 SECS_BETWEEN_REQUESTS = 0.1f;
+		if (!sRequestTimer.checkExpirationAndReset(SECS_BETWEEN_REQUESTS))
+		{
+			return;
+		}
+
+		// Must be large relative to above
+		const F32 ERASE_EXPIRED_TIMEOUT = 60.f; // seconds
+		if (sEraseExpiredTimer.checkExpirationAndReset(ERASE_EXPIRED_TIMEOUT))
+		{
+			eraseExpired();
+		}
+
+
+		if(!sAskQueue.empty())
+		{
+			requestExperiences();
+		}
+	}
+
+	void erase( const LLUUID& key )
+	{
+		cache_t::iterator it = sCache.find(key);
+				
+		if(it != sCache.end())
+		{
+			sCache.erase(it);
+		}
+	}
+
+	void eraseExpired()
+	{
+		F64 now = LLFrameTimer::getTotalSeconds();
+		cache_t::iterator it = sCache.begin();
+		while (it != sCache.end())
+		{
+			cache_t::iterator cur = it;
+			LLSD& exp = cur->second;
+			++it;
+
+			if(exp.has(EXPIRES) && exp[EXPIRES].asReal() < now)
+			{
+                if(!exp.has(EXPERIENCE_ID))
+				{
+                    LL_WARNS("ExperienceCache") << "Removing experience with no id " << LL_ENDL ;
+                    sCache.erase(cur);
+					}
+                else
+                {
+                    LLUUID id = exp[EXPERIENCE_ID].asUUID();
+                    LLUUID private_key = exp.has(LLExperienceCache::PRIVATE_KEY) ? exp[LLExperienceCache::PRIVATE_KEY].asUUID():LLUUID::null;
+                    if(private_key.notNull() || !exp.has("DoesNotExist"))
+					{
+						fetch(id, true);
+					}
+					else
+					{
+                        LL_WARNS("ExperienceCache") << "Removing invalid experience " << id << LL_ENDL ;
+						sCache.erase(cur);
+					}
+				}
+			}
+		}
+	}
+
+	
+	bool fetch( const LLUUID& key, bool refresh/* = true*/ ) 
+	{
+		if(!key.isNull() && !isRequestPending(key) && (refresh || sCache.find(key)==sCache.end()))
+		{
+			LL_DEBUGS("ExperienceCache") << " queue request for " << EXPERIENCE_ID << " " << key << LL_ENDL ;
+			sAskQueue[key]=EXPERIENCE_ID;
+
+			return true;
+		}
+		return false;
+	}
+
+	void insert(const LLSD& experience_data )
+	{
+		if(experience_data.has(EXPERIENCE_ID))
+		{
+            processExperience(experience_data[EXPERIENCE_ID].asUUID(), experience_data);
+		}
+		else
+		{
+			LL_WARNS("ExperienceCache") << ": Ignoring cache insert of experience which is missing " << EXPERIENCE_ID << LL_ENDL;
+		}
+	}
+	static LLSD empty;
+	const LLSD& get(const LLUUID& key)
+	{
+		if(key.isNull()) return empty;
+		cache_t::const_iterator it = sCache.find(key);
+
+		if (it != sCache.end())
+		{
+			return it->second;
+		}
+
+		fetch(key);
+
+		return empty;
+	}
+	void get( const LLUUID& key, callback_slot_t slot )
+	{
+		if(key.isNull()) return;
+
+		cache_t::const_iterator it = sCache.find(key);
+		if (it != sCache.end())
+		{
+			// ...name already exists in cache, fire callback now
+			callback_signal_t signal;
+			signal.connect(slot);
+			
+			signal(it->second);
+			return;
+		}
+
+		fetch(key);
+
+		// always store additional callback, even if request is pending
+		signal_map_t::iterator sig_it = sSignalMap.find(key);
+		if (sig_it == sSignalMap.end())
+		{
+			// ...new callback for this id
+			callback_signal_t* signal = new callback_signal_t();
+			signal->connect(slot);
+			sSignalMap[key] = signal;
+		}
+		else
+		{
+			// ...existing callback, bind additional slot
+			callback_signal_t* signal = sig_it->second;
+			signal->connect(slot);
+		}
+	}
+
+}
+
+
+void LLExperienceCache::mapKeys( const LLSD& legacyKeys )
+{
+	LLSD::array_const_iterator exp = legacyKeys.beginArray();
+	for(/**/ ; exp != legacyKeys.endArray() ; ++exp)
+	{
+		if(exp->has(LLExperienceCache::EXPERIENCE_ID) && exp->has(LLExperienceCache::PRIVATE_KEY))
+		{
+            privateToPublicKeyMap[(*exp)[LLExperienceCache::PRIVATE_KEY].asUUID()]=(*exp)[LLExperienceCache::EXPERIENCE_ID].asUUID();
+		}
+	}
+}
+
+
+LLUUID LLExperienceCache::getExperienceId(const LLUUID& private_key, bool null_if_not_found)
+{
+	if (private_key.isNull())
+		return LLUUID::null;
+
+    KeyMap::const_iterator it=privateToPublicKeyMap.find(private_key);
+    if(it == privateToPublicKeyMap.end())
+	{
+		if(null_if_not_found)
+		{
+			return LLUUID::null;
+		}
+		return private_key;
+	}
+	LL_WARNS("LLExperience") << "converted private key " << private_key << " to experience_id " << it->second << LL_ENDL;
+	return it->second;
+}
diff --git a/indra/llmessage/llexperiencecache.h b/indra/llmessage/llexperiencecache.h
new file mode 100644
index 0000000000000000000000000000000000000000..e669ee888efba679f281197adfa7f36b8979ee13
--- /dev/null
+++ b/indra/llmessage/llexperiencecache.h
@@ -0,0 +1,104 @@
+/** 
+ * @file llexperiencecache.h
+ * @brief Caches information relating to experience keys
+ *
+ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2012, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+
+#ifndef LL_LLEXPERIENCECACHE_H
+#define LL_LLEXPERIENCECACHE_H
+
+#include "linden_common.h"
+#include <boost/signals2.hpp>
+
+class LLSD;
+class LLUUID;
+
+
+
+namespace LLExperienceCache
+{
+	const std::string PRIVATE_KEY	= "private_id";
+    const std::string MISSING       = "DoesNotExist";
+
+    const std::string AGENT_ID      = "agent_id";
+    const std::string GROUP_ID      = "group_id";
+	const std::string EXPERIENCE_ID	= "public_id";
+	const std::string NAME			= "name";
+	const std::string PROPERTIES	= "properties";
+	const std::string EXPIRES		= "expiration";  
+    const std::string DESCRIPTION	= "description";
+    const std::string QUOTA         = "quota";
+    const std::string MATURITY      = "maturity";
+    const std::string METADATA      = "extended_metadata";
+    const std::string SLURL         = "slurl";
+
+
+	// should be in sync with experience-api/experiences/models.py
+	const int PROPERTY_INVALID		= 1 << 0;
+	const int PROPERTY_PRIVILEGED	= 1 << 3;
+	const int PROPERTY_GRID			= 1 << 4;
+	const int PROPERTY_PRIVATE		= 1 << 5;
+	const int PROPERTY_DISABLED		= 1 << 6;  
+	const int PROPERTY_SUSPENDED	    = 1 << 7;
+
+
+	// default values
+	const static F64 DEFAULT_EXPIRATION = 600.0;
+	const static S32 DEFAULT_QUOTA = 128; // this is megabytes
+
+	// Callback types for get() below
+	typedef boost::signals2::signal<void (const LLSD& experience)>
+		callback_signal_t;
+	typedef callback_signal_t::slot_type callback_slot_t;
+	typedef std::map<LLUUID, LLSD> cache_t;
+
+
+	void setLookupURL(const std::string& lookup_url);
+	bool hasLookupURL();
+
+	void setMaximumLookups(int maximumLookups);
+
+	void idle();
+	void exportFile(std::ostream& ostr);
+	void importFile(std::istream& istr);
+	void initClass();
+	void bootstrap(const LLSD& legacyKeys, int initialExpiration);
+	
+	void erase(const LLUUID& key);
+	bool fetch(const LLUUID& key, bool refresh=false);
+	void insert(const LLSD& experience_data);
+	const LLSD& get(const LLUUID& key);
+
+	// If name information is in cache, callback will be called immediately.
+	void get(const LLUUID& key, callback_slot_t slot);
+
+	const cache_t& getCached();
+
+	// maps an experience private key to the experience id
+	LLUUID getExperienceId(const LLUUID& private_key, bool null_if_not_found=false);
+
+};
+
+#endif // LL_LLEXPERIENCECACHE_H
diff --git a/indra/llmessage/llregionflags.h b/indra/llmessage/llregionflags.h
index 40d7b04a9042c7fa6b4b3879f8007b9e6b58177c..eb0c4e6d1e0f522ce90803eeac38fabacb9a8a55 100755
--- a/indra/llmessage/llregionflags.h
+++ b/indra/llmessage/llregionflags.h
@@ -148,19 +148,20 @@ const U32 ESTATE_ACCESS_ALL = ESTATE_ACCESS_ALLOWED_AGENTS
 							  | ESTATE_ACCESS_BANNED_AGENTS
 							  | ESTATE_ACCESS_MANAGERS;
 
-// for EstateOwnerRequest, estateaccessdelta message
-const U32 ESTATE_ACCESS_APPLY_TO_ALL_ESTATES		= 1 << 0;
-const U32 ESTATE_ACCESS_APPLY_TO_MANAGED_ESTATES	= 1 << 1;
-
-const U32 ESTATE_ACCESS_ALLOWED_AGENT_ADD			= 1 << 2;
-const U32 ESTATE_ACCESS_ALLOWED_AGENT_REMOVE		= 1 << 3;
-const U32 ESTATE_ACCESS_ALLOWED_GROUP_ADD			= 1 << 4;
-const U32 ESTATE_ACCESS_ALLOWED_GROUP_REMOVE		= 1 << 5;
-const U32 ESTATE_ACCESS_BANNED_AGENT_ADD			= 1 << 6;
-const U32 ESTATE_ACCESS_BANNED_AGENT_REMOVE			= 1 << 7;
-const U32 ESTATE_ACCESS_MANAGER_ADD					= 1 << 8;
-const U32 ESTATE_ACCESS_MANAGER_REMOVE				= 1 << 9;
-const U32 ESTATE_ACCESS_NO_REPLY                                  = 1 << 10;
+// for EstateOwnerRequest, estateaccessdelta, estateexperiencedelta messages
+const U32 ESTATE_ACCESS_APPLY_TO_ALL_ESTATES		= 1U << 0;
+const U32 ESTATE_ACCESS_APPLY_TO_MANAGED_ESTATES	= 1U << 1;
+
+const U32 ESTATE_ACCESS_ALLOWED_AGENT_ADD			= 1U << 2;
+const U32 ESTATE_ACCESS_ALLOWED_AGENT_REMOVE			= 1U << 3;
+const U32 ESTATE_ACCESS_ALLOWED_GROUP_ADD			= 1U << 4;
+const U32 ESTATE_ACCESS_ALLOWED_GROUP_REMOVE			= 1U << 5;
+const U32 ESTATE_ACCESS_BANNED_AGENT_ADD				= 1U << 6;
+const U32 ESTATE_ACCESS_BANNED_AGENT_REMOVE			= 1U << 7;
+const U32 ESTATE_ACCESS_MANAGER_ADD					= 1U << 8;
+const U32 ESTATE_ACCESS_MANAGER_REMOVE				= 1U << 9;
+const U32 ESTATE_ACCESS_NO_REPLY						= 1U << 10;
+const U32 ESTATE_ACCESS_FAILED_BAN_ESTATE_MANAGER	= 1U << 11;
 
 const S32 ESTATE_MAX_MANAGERS = 10;
 const S32 ESTATE_MAX_ACCESS_IDS = 500;	// max for access, banned
@@ -171,6 +172,26 @@ const U32 SWD_OTHERS_LAND_ONLY		= (1 << 0);
 const U32 SWD_ALWAYS_RETURN_OBJECTS = (1 << 1);
 const U32 SWD_SCRIPTED_ONLY			= (1 << 2);
 
+// Controls experience key validity in the estate
+const U32 EXPERIENCE_KEY_TYPE_NONE		= 0;
+const U32 EXPERIENCE_KEY_TYPE_BLOCKED	= 1;
+const U32 EXPERIENCE_KEY_TYPE_ALLOWED	= 2;
+const U32 EXPERIENCE_KEY_TYPE_TRUSTED	= 3;
+
+const U32 EXPERIENCE_KEY_TYPE_FIRST		= EXPERIENCE_KEY_TYPE_BLOCKED;
+const U32 EXPERIENCE_KEY_TYPE_LAST		= EXPERIENCE_KEY_TYPE_TRUSTED;
+
+//
+const U32 ESTATE_EXPERIENCE_TRUSTED_ADD		= 1U << 2;
+const U32 ESTATE_EXPERIENCE_TRUSTED_REMOVE	= 1U << 3;
+const U32 ESTATE_EXPERIENCE_ALLOWED_ADD		= 1U << 4;
+const U32 ESTATE_EXPERIENCE_ALLOWED_REMOVE	= 1U << 5;
+const U32 ESTATE_EXPERIENCE_BLOCKED_ADD		= 1U << 6;
+const U32 ESTATE_EXPERIENCE_BLOCKED_REMOVE	= 1U << 7;
+
+const S32 ESTATE_MAX_EXPERIENCE_IDS = 8;
+
+
 #endif
 
 
diff --git a/indra/llmessage/message_prehash.cpp b/indra/llmessage/message_prehash.cpp
index a62b9c322704fffb15bdff35910ce7eb08bba4b5..5c6b3d5fab165b60bdf4d78f3414733731483e2f 100755
--- a/indra/llmessage/message_prehash.cpp
+++ b/indra/llmessage/message_prehash.cpp
@@ -1385,3 +1385,5 @@ char const* const _PREHASH_AppearanceVersion = LLMessageStringTable::getInstance
 char const* const _PREHASH_CofVersion = LLMessageStringTable::getInstance()->getString("CofVersion");
 char const* const _PREHASH_AppearanceHover = LLMessageStringTable::getInstance()->getString("AppearanceHover");
 char const* const _PREHASH_HoverHeight = LLMessageStringTable::getInstance()->getString("HoverHeight");
+char const* const _PREHASH_Experience = LLMessageStringTable::getInstance()->getString("Experience");
+char const* const _PREHASH_ExperienceID = LLMessageStringTable::getInstance()->getString("ExperienceID");
diff --git a/indra/llmessage/message_prehash.h b/indra/llmessage/message_prehash.h
index 573c8e466f5ab3b92f0ed12615c5621a7bdbf4b9..e696c3b0cae394faa12b8dd2ff2791cdb8682ea5 100755
--- a/indra/llmessage/message_prehash.h
+++ b/indra/llmessage/message_prehash.h
@@ -1385,4 +1385,6 @@ extern char const* const _PREHASH_AppearanceVersion;
 extern char const* const _PREHASH_CofVersion;
 extern char const* const _PREHASH_AppearanceHover;
 extern char const* const _PREHASH_HoverHeight;
+extern char const* const _PREHASH_Experience;
+extern char const* const _PREHASH_ExperienceID;
 #endif
diff --git a/indra/llprimitive/lllslconstants.h b/indra/llprimitive/lllslconstants.h
index 926ce32d75a8c51b9146e90ac49d1ea00d6f8599..b6baf9821144ebb57cd8078410fb971055705d81 100644
--- a/indra/llprimitive/lllslconstants.h
+++ b/indra/llprimitive/lllslconstants.h
@@ -239,4 +239,23 @@ const U32 LSL_STATUS_INTERNAL_ERROR     = 1999;
 // Start per-function errors below, starting at 2000:
 const U32 LSL_STATUS_WHITELIST_FAILED   = 2001;
 
+
+const S32 LSL_XP_ERROR_NONE                 = 0;
+const S32 LSL_XP_ERROR_THROTTLED            = 1;
+const S32 LSL_XP_ERROR_EXPERIENCES_DISABLED = 2;
+const S32 LSL_XP_ERROR_INVALID_PARAMETERS   = 3;
+const S32 LSL_XP_ERROR_NOT_PERMITTED        = 4;
+const S32 LSL_XP_ERROR_NO_EXPERIENCE        = 5;
+const S32 LSL_XP_ERROR_NOT_FOUND			    = 6;
+const S32 LSL_XP_ERROR_INVALID_EXPERIENCE   = 7;
+const S32 LSL_XP_ERROR_EXPERIENCE_DISABLED  = 8;
+const S32 LSL_XP_ERROR_EXPERIENCE_SUSPENDED = 9;
+const S32 LSL_XP_ERROR_UNKNOWN_ERROR        = 10;
+const S32 LSL_XP_ERROR_QUOTA_EXCEEDED       = 11;
+const S32 LSL_XP_ERROR_STORE_DISABLED       = 12;
+const S32 LSL_XP_ERROR_STORAGE_EXCEPTION    = 13;
+const S32 LSL_XP_ERROR_KEY_NOT_FOUND        = 14;
+const S32 LSL_XP_ERROR_RETRY_UPDATE         = 15;
+const S32 LSL_XP_ERROR_MATURITY_EXCEEDED    = 16;
+
 #endif
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp
index de14391d1f7529d4292378a21590b53c3005410f..7e235997d87f965318b5581b47d95c9a628b9e57 100755
--- a/indra/llui/llnotifications.cpp
+++ b/indra/llui/llnotifications.cpp
@@ -678,7 +678,7 @@ void LLNotification::respond(const LLSD& response)
 		// and then call it
 		functor(asLLSD(), response);
 	}
-	else
+	else if (mCombinedNotifications.empty())
 	{
 		// no registered responder
 		return;
@@ -700,6 +700,14 @@ void LLNotification::respond(const LLSD& response)
 		}
 	}
 
+	for (std::vector<LLNotificationPtr>::const_iterator it = mCombinedNotifications.begin(); it != mCombinedNotifications.end(); ++it)
+	{
+		if ((*it))
+		{
+			(*it)->respond(response);
+		}
+	}
+
 	update();
 }
 
@@ -1322,6 +1330,28 @@ bool LLNotifications::failedUniquenessTest(const LLSD& payload)
 			}
 		}
 		break;
+	case  LLNotification::COMBINE_WITH_NEW:
+		// Add to the existing unique notification with the data from this particular instance...
+		// This guarantees that duplicate notifications will be collapsed to the one
+		// most recently triggered
+		for (LLNotificationMap::iterator existing_it = mUniqueNotifications.find(pNotif->getName());
+			existing_it != mUniqueNotifications.end();
+			++existing_it)
+		{
+			LLNotificationPtr existing_notification = existing_it->second;
+			if (pNotif != existing_notification 
+				&& pNotif->isEquivalentTo(existing_notification))
+			{
+				// copy the notifications from the newest instance into the oldest
+				existing_notification->mCombinedNotifications.push_back(pNotif);
+				existing_notification->mCombinedNotifications.insert(existing_notification->mCombinedNotifications.end(),
+					pNotif->mCombinedNotifications.begin(), pNotif->mCombinedNotifications.end());
+
+				// pop up again
+				existing_notification->update();
+			}
+		}
+		break;
 	case LLNotification::KEEP_OLD:
 		break;
 	case LLNotification::CANCEL_OLD:
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index 3cf432f330c96ab967a04068a78db2610e2d50ca..0d673d178be2f2ff132145b231ab61a255741602 100755
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -414,6 +414,9 @@ private:
 	 using the same mechanism.
 	 */
 	bool mTemporaryResponder;
+	
+	// keep track of other notifications combined with COMBINE_WITH_NEW
+	std::vector<LLNotificationPtr> mCombinedNotifications;
 
 	void init(const std::string& template_name, const LLSD& form_elements);
 
@@ -560,6 +563,7 @@ public:
 	typedef enum e_combine_behavior
 	{
 		REPLACE_WITH_NEW,
+		COMBINE_WITH_NEW,
 		KEEP_OLD,
 		CANCEL_OLD
 
diff --git a/indra/llui/llnotificationtemplate.h b/indra/llui/llnotificationtemplate.h
index 0315ddbea8f3b807cb90821f271eacae10eeb3a0..c23fc537633f308c617a396c9bd371ace40ce775 100755
--- a/indra/llui/llnotificationtemplate.h
+++ b/indra/llui/llnotificationtemplate.h
@@ -43,6 +43,7 @@ struct LLNotificationTemplate
 		static void declareValues()
 		{
 			declare("replace_with_new", LLNotification::REPLACE_WITH_NEW);
+			declare("combine_with_new", LLNotification::COMBINE_WITH_NEW);
 			declare("keep_old", LLNotification::KEEP_OLD);
 			declare("cancel_old", LLNotification::CANCEL_OLD);
 		}
diff --git a/indra/llui/lltabcontainer.cpp b/indra/llui/lltabcontainer.cpp
index 6f858cdeb36b558bb4033d5df7d24e0ef6890208..4b0879889221666d37c5627756788070dbc2355e 100755
--- a/indra/llui/lltabcontainer.cpp
+++ b/indra/llui/lltabcontainer.cpp
@@ -2094,3 +2094,8 @@ void LLTabContainer::commitHoveredButton(S32 x, S32 y)
 		}
 	}
 }
+
+S32 LLTabContainer::getTotalTabWidth() const
+{
+    return mTotalTabWidth;
+}
diff --git a/indra/llui/lltabcontainer.h b/indra/llui/lltabcontainer.h
index 57862fc626c0374c49a863a238836b0d4963553e..057809dc421e49bff6e79ab9149ded5bc4759841 100755
--- a/indra/llui/lltabcontainer.h
+++ b/indra/llui/lltabcontainer.h
@@ -182,7 +182,8 @@ public:
 	LLPanel*	getPanelByIndex(S32 index);
 	S32			getIndexForPanel(LLPanel* panel);
 	S32			getPanelIndexByTitle(const std::string& title);
-	LLPanel*	getPanelByName(const std::string& name);
+    LLPanel*	getPanelByName(const std::string& name);
+    S32         getTotalTabWidth() const;
 	void		setCurrentTabName(const std::string& name);
 
 	void		selectFirstTab();
@@ -287,7 +288,7 @@ private:
 
 	S32								mMaxTabWidth;
 	S32								mTotalTabWidth;
-	S32								mTabHeight;
+    S32								mTabHeight;
 
 	// Padding under the text labels of tab buttons
 	S32								mLabelPadBottom;
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp
index 5f60d80858c071ac12c0dad69bc2a58ced94df9d..6db0d88998f3f8f2c012fc3c057e6f782baa14c9 100755
--- a/indra/llui/llurlentry.cpp
+++ b/indra/llui/llurlentry.cpp
@@ -38,6 +38,7 @@
 #include "lltrans.h"
 #include "lluicolortable.h"
 #include "message.h"
+#include "llexperiencecache.h"
 
 #define APP_HEADER_REGEX "((x-grid-location-info://[-\\w\\.]+/app)|(secondlife:///app))"
 
@@ -1399,3 +1400,57 @@ std::string LLUrlEntryIcon::getIcon(const std::string &url)
 	LLStringUtil::trim(mIcon);
 	return mIcon;
 }
+
+LLUrlEntryExperienceProfile::LLUrlEntryExperienceProfile()
+{
+    mPattern = boost::regex(APP_HEADER_REGEX "/experience/[\\da-f-]+/\\w+\\S*",
+        boost::regex::perl|boost::regex::icase);
+    mIcon = "Generic_Experience";
+	mMenuName = "menu_url_experience.xml";
+}
+
+std::string LLUrlEntryExperienceProfile::getLabel( const std::string &url, const LLUrlLabelCallback &cb )
+{
+    if (!gCacheName)
+    {
+        // probably at the login screen, use short string for layout
+        return LLTrans::getString("LoadingData");
+    }
+
+    std::string experience_id_string = getIDStringFromUrl(url);
+    if (experience_id_string.empty())
+    {
+        // something went wrong, just give raw url
+        return unescapeUrl(url);
+    }
+
+    LLUUID experience_id(experience_id_string);
+    if (experience_id.isNull())
+    {
+        return LLTrans::getString("ExperienceNameNull");
+    }
+
+    const LLSD& experience_details = LLExperienceCache::get(experience_id);
+    if(!experience_details.isUndefined())
+    {
+		std::string experience_name_string = experience_details[LLExperienceCache::NAME].asString();
+        return experience_name_string.empty() ? LLTrans::getString("ExperienceNameUntitled") : experience_name_string;
+    }
+
+    addObserver(experience_id_string, url, cb);
+    LLExperienceCache::get(experience_id, boost::bind(&LLUrlEntryExperienceProfile::onExperienceDetails, this, _1));
+    return LLTrans::getString("LoadingData");
+
+}
+
+void LLUrlEntryExperienceProfile::onExperienceDetails( const LLSD& experience_details )
+{
+	std::string name = experience_details[LLExperienceCache::NAME].asString();
+	if(name.empty())
+	{
+		name = LLTrans::getString("ExperienceNameUntitled");
+	}
+    callObservers(experience_details[LLExperienceCache::EXPERIENCE_ID].asString(), name, LLStringUtil::null);
+}
+
+
diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h
index 60a494974f544373efba50f40e6904a655f4b30b..dd1f257a3d85115bcffc630676e11c6687f1bcc5 100755
--- a/indra/llui/llurlentry.h
+++ b/indra/llui/llurlentry.h
@@ -308,6 +308,20 @@ private:
 	/*virtual*/ std::string getName(const LLAvatarName& avatar_name);
 };
 
+///
+/// LLUrlEntryExperienceProfile Describes a Second Life experience profile Url, e.g.,
+/// secondlife:///app/experience/0e346d8b-4433-4d66-a6b0-fd37083abc4c/profile
+/// that displays the experience name
+class LLUrlEntryExperienceProfile : public LLUrlEntryBase
+{
+public:
+    LLUrlEntryExperienceProfile();
+    /*virtual*/ std::string getLabel(const std::string &url, const LLUrlLabelCallback &cb);
+private:
+    void onExperienceDetails(const LLSD& experience_details);
+};
+
+
 ///
 /// LLUrlEntryGroup Describes a Second Life group Url, e.g.,
 /// secondlife:///app/group/00005ff3-4044-c79f-9de8-fb28ae0df991/about
diff --git a/indra/llui/llurlregistry.cpp b/indra/llui/llurlregistry.cpp
index 1143574968a57b48ed3a8069f0566f35408460a4..2085505947ab17f2e451ca131211e2f72147efa3 100755
--- a/indra/llui/llurlregistry.cpp
+++ b/indra/llui/llurlregistry.cpp
@@ -70,6 +70,7 @@ LLUrlRegistry::LLUrlRegistry()
 	registerUrl(new LLUrlEntryPlace());
 	registerUrl(new LLUrlEntryInventory());
 	registerUrl(new LLUrlEntryObjectIM());
+    registerUrl(new LLUrlEntryExperienceProfile());
 	//LLUrlEntrySL and LLUrlEntrySLLabel have more common pattern, 
 	//so it should be registered in the end of list
 	registerUrl(new LLUrlEntrySL());
diff --git a/indra/llui/tests/llurlentry_test.cpp b/indra/llui/tests/llurlentry_test.cpp
index c3f0e92cb071098476ac84d0c5ce306a1ea781d0..15f2354552f06aad590201e36c9ef74e3651ad31 100755
--- a/indra/llui/tests/llurlentry_test.cpp
+++ b/indra/llui/tests/llurlentry_test.cpp
@@ -32,9 +32,23 @@
 #include "lltut.h"
 #include "../lluicolortable.h"
 #include "../llrender/lluiimage.h"
+#include "../llmessage/llexperiencecache.h"
 
 #include <boost/regex.hpp>
 
+
+namespace LLExperienceCache
+{
+    const LLSD& get( const LLUUID& key)
+    {
+		static LLSD boo;
+        return boo;
+    }
+
+    void get( const LLUUID& key, callback_slot_t slot ){}
+
+}
+
 typedef std::map<std::string, LLControlGroup*> settings_map_t;
 settings_map_t LLUI::sSettingGroups;
 
diff --git a/indra/lscript/lscript_byteformat.h b/indra/lscript/lscript_byteformat.h
index 54031aaf05160b47505c6a09a1b8c2801321c91b..a4703b7a615c38e283f5d089ce117f3cc2ee272c 100755
--- a/indra/lscript/lscript_byteformat.h
+++ b/indra/lscript/lscript_byteformat.h
@@ -355,6 +355,10 @@ typedef enum e_lscript_state_event_type
 	LSTT_REMOTE_DATA,
 	LSTT_HTTP_RESPONSE,
 	LSTT_HTTP_REQUEST,
+	LSTT_EXPERMISSIONS,
+	LSTT_TRANSACTION_RESULT,
+	LSTT_PATH_UPDATE,
+	LSTT_EXPERMISSIONS_DENIED,
 	LSTT_EOF,
 	
 	LSTT_STATE_BEGIN = LSTT_STATE_ENTRY,
@@ -397,7 +401,11 @@ const U64 LSCRIPTStateBitField[LSTT_EOF] =
 	0x0000000040000000,		//  LSTT_OBJECT_REZ
 	0x0000000080000000,		//  LSTT_REMOTE_DATA
 	0x0000000100000000LL,	// LSTT_HTTP_RESPOSE
-	0x0000000200000000LL 	// LSTT_HTTP_REQUEST
+	0x0000000200000000LL, 	// LSTT_HTTP_REQUEST
+	0x0000000400000000LL, 	// LSTT_EXPERMISSIONS
+	0x0000000800000000LL,	// LSTT_TRANSACTION_RESULT
+	0x0000001000000000LL,   // LSTT_PATH_UPDATE
+	0x0000002000000000LL,   //LSTT_EXPERMISSIONS_DENIED
 };
 
 inline S32 get_event_handler_jump_position(U64 bit_field, LSCRIPTStateEventType type)
@@ -511,6 +519,7 @@ typedef enum e_lscript_runtime_faults
 	LSRF_TOO_MANY_LISTENS,
 	LSRF_NESTING_LISTS,
 	LSRF_CLI,
+	LSRF_INVALID_STATE,
 	LSRF_EOF
 } LSCRIPTRunTimeFaults;
 
@@ -551,10 +560,10 @@ const U32 LSCRIPTRunTimePermissionBits[SCRIPT_PERMISSION_EOF] =
 	(0x1 << 10),//	SCRIPT_PERMISSION_TRACK_CAMERA
 	(0x1 << 11),//	SCRIPT_PERMISSION_CONTROL_CAMERA
 	(0x1 << 12),//	SCRIPT_PERMISSION_TELEPORT
-	(0x1 << 13),//	SCRIPT_PERMISSION_EXPERIENCE,
-	(0x1 << 14),//	SCRIPT_PERMISSION_SILENT_ESTATE_MANAGEMENT,
-	(0x1 << 15),//	SCRIPT_PERMISSION_OVERRIDE_ANIMATIONS,
-	(0x1 << 16),//	SCRIPT_PERMISSION_RETURN_OBJECTS,
+	(0x1 << 13),//	SCRIPT_PERMISSION_EXPERIENCE
+	(0x1 << 14),//  SCRIPT_PERMISSION_SILENT_ESTATE_MANAGEMENT
+	(0x1 << 15),//  SCRIPT_PERMISSION_OVERRIDE_ANIMATIONS
+	(0x1 << 16),//	SCRIPT_PERMISSION_RETURN_OBJECTS
 };
 
 // http_request string constants
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l
index 7772c95609269cc3a19c64749ef630a776fc15d2..c2e21335e9b616efaf67915ff3a0076ce711fabc 100755
--- a/indra/lscript/lscript_compile/indra.l
+++ b/indra/lscript/lscript_compile/indra.l
@@ -132,6 +132,8 @@ int yyerror(const char *fmt, ...);
 "money"					{ count(); return(MONEY); }
 "email"					{ count(); return(EMAIL); }
 "run_time_permissions"	{ count(); return(RUN_TIME_PERMISSIONS); }
+"experience_permissions"	{ count(); return(EXPERIENCE_PERMISSIONS); }
+"experience_permissions_denied"	{ count(); return(EXPERIENCE_PERMISSIONS_DENIED); }
 "changed"				{ count(); return(INVENTORY); }
 "attach"				{ count(); return(ATTACH); }
 "dataserver"			{ count(); return(DATASERVER); }
@@ -393,7 +395,6 @@ int yyerror(const char *fmt, ...);
 "PSYS_PART_END_ALPHA"	{ count(); yylval.ival = LLPS_PART_END_ALPHA; return (INTEGER_CONSTANT); }
 "PSYS_PART_END_SCALE"	{ count(); yylval.ival = LLPS_PART_END_SCALE; return (INTEGER_CONSTANT); }
 "PSYS_PART_MAX_AGE"		{ count(); yylval.ival = LLPS_PART_MAX_AGE; return (INTEGER_CONSTANT); }
-
 "PSYS_PART_BLEND_FUNC_SOURCE"	{ count(); yylval.ival = LLPS_PART_BLEND_FUNC_SOURCE; return (INTEGER_CONSTANT); }
 "PSYS_PART_BLEND_FUNC_DEST"		{ count(); yylval.ival = LLPS_PART_BLEND_FUNC_DEST; return (INTEGER_CONSTANT); }
 "PSYS_PART_START_GLOW"	{ count(); yylval.ival = LLPS_PART_START_GLOW; return (INTEGER_CONSTANT); }
@@ -419,7 +420,6 @@ int yyerror(const char *fmt, ...);
 "PSYS_PART_BF_SOURCE_ALPHA"				{ count(); yylval.ival = LLPartData::LL_PART_BF_SOURCE_ALPHA; return(INTEGER_CONSTANT); }
 "PSYS_PART_BF_ONE_MINUS_SOURCE_ALPHA"	{ count(); yylval.ival = LLPartData::LL_PART_BF_ONE_MINUS_SOURCE_ALPHA; return(INTEGER_CONSTANT); }
 
-
 "PSYS_SRC_MAX_AGE"					{ count(); yylval.ival = LLPS_SRC_MAX_AGE; return(INTEGER_CONSTANT); }
 "PSYS_SRC_PATTERN"					{ count(); yylval.ival = LLPS_SRC_PATTERN; return(INTEGER_CONSTANT); }
 "PSYS_SRC_INNERANGLE"				{ count(); yylval.ival = LLPS_SRC_INNERANGLE; return(INTEGER_CONSTANT); }
@@ -737,6 +737,24 @@ int yyerror(const char *fmt, ...);
 "STATUS_INTERNAL_ERROR"              { count(); yylval.ival = LSL_STATUS_INTERNAL_ERROR; return(INTEGER_CONSTANT); }
 "STATUS_WHITELIST_FAILED"            { count(); yylval.ival = LSL_STATUS_WHITELIST_FAILED; return(INTEGER_CONSTANT); }
 
+"XP_ERROR_NONE"                      { count(); yylval.ival = LSL_XP_ERROR_NONE                ; return (INTEGER_CONSTANT); }
+"XP_ERROR_THROTTLED"                 { count(); yylval.ival = LSL_XP_ERROR_THROTTLED           ; return (INTEGER_CONSTANT); }
+"XP_ERROR_EXPERIENCES_DISABLED"      { count(); yylval.ival = LSL_XP_ERROR_EXPERIENCES_DISABLED; return (INTEGER_CONSTANT); }
+"XP_ERROR_INVALID_PARAMETERS"        { count(); yylval.ival = LSL_XP_ERROR_INVALID_PARAMETERS  ; return (INTEGER_CONSTANT); }
+"XP_ERROR_NOT_PERMITTED"             { count(); yylval.ival = LSL_XP_ERROR_NOT_PERMITTED       ; return (INTEGER_CONSTANT); }
+"XP_ERROR_NO_EXPERIENCE"             { count(); yylval.ival = LSL_XP_ERROR_NO_EXPERIENCE       ; return (INTEGER_CONSTANT); }
+"XP_ERROR_NOT_FOUND"                 { count(); yylval.ival = LSL_XP_ERROR_NOT_FOUND           ; return (INTEGER_CONSTANT); }
+"XP_ERROR_INVALID_EXPERIENCE"        { count(); yylval.ival = LSL_XP_ERROR_INVALID_EXPERIENCE  ; return (INTEGER_CONSTANT); }
+"XP_ERROR_EXPERIENCE_DISABLED"       { count(); yylval.ival = LSL_XP_ERROR_EXPERIENCE_DISABLED ; return (INTEGER_CONSTANT); }
+"XP_ERROR_EXPERIENCE_SUSPENDED"      { count(); yylval.ival = LSL_XP_ERROR_EXPERIENCE_SUSPENDED; return (INTEGER_CONSTANT); }
+"XP_ERROR_UNKNOWN_ERROR"             { count(); yylval.ival = LSL_XP_ERROR_UNKNOWN_ERROR       ; return (INTEGER_CONSTANT); }
+"XP_ERROR_QUOTA_EXCEEDED"            { count(); yylval.ival = LSL_XP_ERROR_QUOTA_EXCEEDED      ; return (INTEGER_CONSTANT); }
+"XP_ERROR_STORE_DISABLED"            { count(); yylval.ival = LSL_XP_ERROR_STORE_DISABLED      ; return (INTEGER_CONSTANT); }
+"XP_ERROR_STORAGE_EXCEPTION"         { count(); yylval.ival = LSL_XP_ERROR_STORAGE_EXCEPTION   ; return (INTEGER_CONSTANT); }
+"XP_ERROR_KEY_NOT_FOUND"             { count(); yylval.ival = LSL_XP_ERROR_KEY_NOT_FOUND       ; return (INTEGER_CONSTANT); }
+"XP_ERROR_RETRY_UPDATE"              { count(); yylval.ival = LSL_XP_ERROR_RETRY_UPDATE        ; return (INTEGER_CONSTANT); }
+"XP_ERROR_MATURITY_EXCEEDED"         { count(); yylval.ival = LSL_XP_ERROR_MATURITY_EXCEEDED    ; return (INTEGER_CONSTANT); }
+
 {L}({L}|{N})*		{ count(); yylval.sval = new char[strlen(yytext) + 1]; strcpy(yylval.sval, yytext); return(IDENTIFIER); }
 
 {N}+{E}					{ count(); yylval.fval = (F32)atof(yytext); return(FP_CONSTANT); }
diff --git a/indra/lscript/lscript_compile/indra.y b/indra/lscript/lscript_compile/indra.y
index a0a034d21c2251a9035825f72e2781c80ced719c..c451eee3d8f6868df5f8d41546ebd32eb55f0522 100755
--- a/indra/lscript/lscript_compile/indra.y
+++ b/indra/lscript/lscript_compile/indra.y
@@ -15,7 +15,6 @@
 	#pragma warning (disable : 4702) // warning C4702: unreachable code
 	#pragma warning( disable : 4065 )	// warning: switch statement contains 'default' but no 'case' labels
 	#endif
-
 %}
 
 %union
@@ -75,6 +74,8 @@
 %token					MONEY
 %token					EMAIL
 %token					RUN_TIME_PERMISSIONS
+%token					EXPERIENCE_PERMISSIONS
+%token					EXPERIENCE_PERMISSIONS_DENIED
 %token					INVENTORY
 %token					ATTACH
 %token					DATASERVER
@@ -180,6 +181,8 @@
 %type <event>			money
 %type <event>			email
 %type <event>			run_time_permissions
+%type <event>			experience_permissions
+%type <event>			experience_permissions_denied
 %type <event>			inventory
 %type <event>			attach
 %type <event>			dataserver
@@ -788,6 +791,16 @@ event
 		$$ = new LLScriptEventHandler(gLine, gColumn, $1, $2);
 		gAllocationManager->addAllocation($$);
 	}
+	| experience_permissions compound_statement														
+	{  
+		$$ = new LLScriptEventHandler(gLine, gColumn, $1, $2);
+		gAllocationManager->addAllocation($$);
+	}
+	| experience_permissions_denied compound_statement														
+	{  
+		$$ = new LLScriptEventHandler(gLine, gColumn, $1, $2);
+		gAllocationManager->addAllocation($$);
+	}
 	| inventory compound_statement														
 	{  
 		$$ = new LLScriptEventHandler(gLine, gColumn, $1, $2);
@@ -1040,6 +1053,28 @@ run_time_permissions
 	}
 	;
 
+experience_permissions
+	: EXPERIENCE_PERMISSIONS '(' LLKEY IDENTIFIER ')'															
+	{  
+		LLScriptIdentifier	*id1 = new LLScriptIdentifier(gLine, gColumn, $4);	
+		gAllocationManager->addAllocation(id1);
+		$$ = new LLScriptEXPEvent(gLine, gColumn, id1);
+		gAllocationManager->addAllocation($$);
+	}
+	;
+
+experience_permissions_denied
+	: EXPERIENCE_PERMISSIONS_DENIED '(' LLKEY IDENTIFIER ',' INTEGER IDENTIFIER ')'															
+	{  
+		LLScriptIdentifier	*id1 = new LLScriptIdentifier(gLine, gColumn, $4);	
+		gAllocationManager->addAllocation(id1);
+		LLScriptIdentifier	*id2 = new LLScriptIdentifier(gLine, gColumn, $7);	
+		gAllocationManager->addAllocation(id2);
+		$$ = new LLScriptEXPDeniedEvent(gLine, gColumn, id1, id2);
+		gAllocationManager->addAllocation($$);
+	}
+	;
+
 inventory
 	: INVENTORY '(' INTEGER IDENTIFIER ')'																	
 	{  
diff --git a/indra/lscript/lscript_compile/lscript_tree.cpp b/indra/lscript/lscript_compile/lscript_tree.cpp
index 8a70dd9ac14afbaaa189f54fa3fb5160f45bae8e..4215596c8b8e58ab40cea97647f621007b8423a0 100755
--- a/indra/lscript/lscript_compile/lscript_tree.cpp
+++ b/indra/lscript/lscript_compile/lscript_tree.cpp
@@ -3844,6 +3844,156 @@ S32 LLScriptNotAtTarget::getSize()
 	return 0;
 }
 
+
+void LLScriptEXPEvent::recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata)
+{
+	if (gErrorToText.getErrors())
+	{
+		return;
+	}
+	switch(pass)
+	{
+	case LSCP_PRETTY_PRINT:
+	case LSCP_EMIT_ASSEMBLY:
+		fdotabs(fp, tabs, tabsize);
+		fprintf(fp, "experience_permissions( key ");
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, " )\n");
+		break;
+	case LSCP_SCOPE_PASS1:
+	    checkForDuplicateHandler(fp, this, scope, "experience_permissions");
+		if (scope->checkEntry(mName->mName))
+		{
+			gErrorToText.writeError(fp, this, LSERROR_DUPLICATE_NAME);
+		}
+		else
+		{
+			mName->mScopeEntry = scope->addEntry(mName->mName, LIT_VARIABLE, LST_KEY);
+		}
+	    break;
+	case LSCP_RESOURCE:
+		{
+			// we're just tryng to determine how much space the variable needs
+			if (mName->mScopeEntry)
+			{
+				mName->mScopeEntry->mOffset = (S32)count;
+				mName->mScopeEntry->mSize = 4;
+				count += mName->mScopeEntry->mSize;
+			}
+		}
+		break;
+
+	case LSCP_EMIT_BYTE_CODE:
+		{
+#ifdef LSL_INCLUDE_DEBUG_INFO
+			char name[] = "experience_permissions";
+			chunk->addBytes(name, strlen(name) + 1);
+			chunk->addBytes(mName->mName, strlen(mName->mName) + 1);
+#endif
+		}
+		break;
+	case LSCP_EMIT_CIL_ASSEMBLY:
+		fdotabs(fp, tabs, tabsize);
+		fprintf(fp, "experience_permissions( valuetype [ScriptTypes]LindenLab.SecondLife.Key ");
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, " )");
+		break;
+	default:
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		break;
+	}
+}
+
+S32 LLScriptEXPEvent::getSize()
+{
+	// key = 4
+	return 4;
+}
+
+
+void LLScriptEXPDeniedEvent::recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata)
+{
+	if (gErrorToText.getErrors())
+	{
+		return;
+	}
+	switch(pass)
+	{
+	case LSCP_PRETTY_PRINT:
+	case LSCP_EMIT_ASSEMBLY:
+		fdotabs(fp, tabs, tabsize);
+		fprintf(fp, "experience_permissions_denied( key ");
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, ", integer ");
+		mReason->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, " )\n");
+		break;
+	case LSCP_SCOPE_PASS1:
+		checkForDuplicateHandler(fp, this, scope, "experience_permissions_denied");
+		if (scope->checkEntry(mName->mName))
+		{
+			gErrorToText.writeError(fp, this, LSERROR_DUPLICATE_NAME);
+		}
+		else
+		{
+			mName->mScopeEntry = scope->addEntry(mName->mName, LIT_VARIABLE, LST_KEY);
+		}
+		if (scope->checkEntry(mReason->mName))
+		{
+			gErrorToText.writeError(fp, this, LSERROR_DUPLICATE_NAME);
+		}
+		else
+		{
+			mReason->mScopeEntry = scope->addEntry(mReason->mName, LIT_VARIABLE, LST_INTEGER);
+		}
+		break;
+	case LSCP_RESOURCE:
+		{
+			// we're just trying to determine how much space the variable needs
+			if (mName->mScopeEntry)
+			{
+				mName->mScopeEntry->mOffset = (S32)count;
+				mName->mScopeEntry->mSize = 4;
+				count += mName->mScopeEntry->mSize;	
+
+				mReason->mScopeEntry->mOffset = (S32)count;
+				mReason->mScopeEntry->mSize = 4;
+				count += mReason->mScopeEntry->mSize;
+			}
+		}
+		break;
+
+	case LSCP_EMIT_BYTE_CODE:
+		{
+#ifdef LSL_INCLUDE_DEBUG_INFO
+			char name[] = "experience_permissions_denied";
+			chunk->addBytes(name, strlen(name) + 1);
+			chunk->addBytes(mName->mName, strlen(mName->mName) + 1);
+			chunk->addBytes(mReason->mName, strlen(mReason->mName) + 1);
+#endif
+		}
+		break;
+	case LSCP_EMIT_CIL_ASSEMBLY:
+		fdotabs(fp, tabs, tabsize);
+		fprintf(fp, "experience_permissions_denied( valuetype [ScriptTypes]LindenLab.SecondLife.Key ");
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, ", int32 ");
+		mReason->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		fprintf(fp, " )");
+		break;
+	default:
+		mName->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		mReason->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, entry, entrycount, NULL);
+		break;
+	}
+}
+
+S32 LLScriptEXPDeniedEvent::getSize()
+{
+	// key = 4 + integer
+	return LSCRIPTDataSize[LST_KEY]+LSCRIPTDataSize[LST_INTEGER];
+}
+
 void LLScriptAtRotTarget::recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata)
 {
 	if (gErrorToText.getErrors())
@@ -8569,6 +8719,7 @@ void LLScriptReturn::recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePa
 			}
 		}
 		prunearg = TRUE;
+		break;
 	case LSCP_TYPE:
 		// if there is a return expression, it must be promotable to the return type of the function
 		if (mExpression)
@@ -9767,7 +9918,13 @@ void LLScriptEventHandler::recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCom
 			mScopeEntry->mFunctionArgs.addType(LST_STRING);
 			mScopeEntry->mFunctionArgs.addType(LST_STRING);
 			break;
-
+		case LSTT_EXPERMISSIONS:
+			mScopeEntry->mFunctionArgs.addType(LST_KEY);
+			break;
+		case LSTT_EXPERMISSIONS_DENIED:
+			mScopeEntry->mFunctionArgs.addType(LST_KEY);
+			mScopeEntry->mFunctionArgs.addType(LST_INTEGER);
+			break;
 		default:
 			break;
 		}
diff --git a/indra/lscript/lscript_compile/lscript_tree.h b/indra/lscript/lscript_compile/lscript_tree.h
index 047c220b172479b4a7d8abd682650790983ab756..38a69cece833311401ffc5eb4c84a5a0f6801dda 100755
--- a/indra/lscript/lscript_compile/lscript_tree.h
+++ b/indra/lscript/lscript_compile/lscript_tree.h
@@ -627,6 +627,39 @@ public:
 	LLScriptIdentifier	*mRTPermissions;
 };
 
+class LLScriptEXPEvent : public LLScriptEvent
+{
+public:
+	LLScriptEXPEvent(S32 line, S32 col, LLScriptIdentifier *name)
+		: LLScriptEvent(line, col, LSTT_EXPERMISSIONS), mName(name)
+	{
+	}
+
+	~LLScriptEXPEvent() {}
+
+	void recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata);
+	S32 getSize();
+
+	LLScriptIdentifier	*mName;
+};
+
+class LLScriptEXPDeniedEvent : public LLScriptEvent
+{
+public:
+	LLScriptEXPDeniedEvent(S32 line, S32 col, LLScriptIdentifier *name, LLScriptIdentifier *reason)
+		: LLScriptEvent(line, col, LSTT_EXPERMISSIONS_DENIED), mName(name), mReason(reason)
+	{
+	}
+
+	~LLScriptEXPDeniedEvent() {}
+
+	void recurse(LLFILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata);
+	S32 getSize();
+
+	LLScriptIdentifier	*mName;
+	LLScriptIdentifier	*mReason;
+};
+
 class LLScriptChatEvent : public LLScriptEvent
 {
 public:
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 13040ea423b336904915ceac659d809d85b0dc0d..67c00576bea03c86aa2dbc431b1e152ad63b3501 100755
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -197,6 +197,8 @@ set(viewer_SOURCE_FILES
     lleventnotifier.cpp
     lleventpoll.cpp
     llexpandabletextbox.cpp
+    llexperienceassociationresponder.cpp
+    llexperiencelog.cpp
     llexternaleditor.cpp
     llface.cpp
     llfacebookconnect.cpp
@@ -238,6 +240,9 @@ set(viewer_SOURCE_FILES
     llfloatereditwater.cpp
     llfloaterenvironmentsettings.cpp
     llfloaterevent.cpp
+    llfloaterexperiencepicker.cpp
+    llfloaterexperienceprofile.cpp
+    llfloaterexperiences.cpp
     llfloaterfacebook.cpp
     llfloaterflickr.cpp
     llfloaterfonttest.cpp
@@ -418,11 +423,16 @@ set(viewer_SOURCE_FILES
     llpanelclassified.cpp
     llpanelcontents.cpp
     llpaneleditwearable.cpp
+    llpanelexperiencelisteditor.cpp
+    llpanelexperiencelog.cpp
+    llpanelexperiencepicker.cpp
+    llpanelexperiences.cpp
     llpanelface.cpp
     llpanelgenerictip.cpp
     llpanelgroup.cpp
     llpanelgroupbulk.cpp
     llpanelgroupbulkban.cpp
+    llpanelgroupexperiences.cpp
     llpanelgroupgeneral.cpp
     llpanelgroupinvite.cpp
     llpanelgrouplandmoney.cpp
@@ -803,6 +813,8 @@ set(viewer_HEADER_FILES
     lleventnotifier.h
     lleventpoll.h
     llexpandabletextbox.h
+    llexperienceassociationresponder.h
+    llexperiencelog.h
     llexternaleditor.h
     llface.h
     llfacebookconnect.h
@@ -844,6 +856,9 @@ set(viewer_HEADER_FILES
     llfloatereditwater.h
     llfloaterenvironmentsettings.h
     llfloaterevent.h
+    llfloaterexperiencepicker.h
+    llfloaterexperienceprofile.h
+    llfloaterexperiences.h
     llfloaterfacebook.h
     llfloaterflickr.h
     llfloaterfonttest.h
@@ -1017,12 +1032,17 @@ set(viewer_HEADER_FILES
     llpanelclassified.h
     llpanelcontents.h
     llpaneleditwearable.h
+    llpanelexperiencelisteditor.h
+    llpanelexperiencelog.h
+    llpanelexperiencepicker.h
+    llpanelexperiences.h
     llpanelface.h
     llpanelgenerictip.h
     llpanelgroup.h
     llpanelgroupbulk.h
     llpanelgroupbulkimpl.h
     llpanelgroupbulkban.h
+    llpanelgroupexperiences.h
     llpanelgroupgeneral.h
     llpanelgroupinvite.h
     llpanelgrouplandmoney.h
diff --git a/indra/newview/VIEWER_VERSION.txt b/indra/newview/VIEWER_VERSION.txt
index ca06baa571af4e056eb16e78a5333ce0d3b9fc28..f2807196747ffcee4ae8a36604b9cff7ebeed9ca 100644
--- a/indra/newview/VIEWER_VERSION.txt
+++ b/indra/newview/VIEWER_VERSION.txt
@@ -1 +1 @@
-3.7.31
+3.8.1
diff --git a/indra/newview/app_settings/keywords.ini b/indra/newview/app_settings/keywords.ini
index 4972472f674e2d87a931deea1a208dde39a72cc4..9699eda96bf06546795c5be7a50963e1bf92b336 100755
--- a/indra/newview/app_settings/keywords.ini
+++ b/indra/newview/app_settings/keywords.ini
@@ -52,6 +52,7 @@ remote_data     remote_data(integer event_type, key channel, key message_id, str
 http_response   http_response(key request_id, integer status, list metadata, string body):Triggered when task receives a response to one of its llHTTPRequests
 http_request	http_request(key id, string method, string body):Triggered when task receives an http request against a public URL
 
+
 # integer constants
 [word .1, .1, .5]
 TRUE			Integer constant for Boolean operations
@@ -714,6 +715,25 @@ TEXTURE_TRANSPARENT		UUID for the "White - Transparent" texture
 URL_REQUEST_GRANTED		Used with http_request when a public URL is successfully granted
 URL_REQUEST_DENIED		Used with http_request when a public URL is not available
 
+XP_ERROR_NONE					No error was detected
+XP_ERROR_THROTTLED				The call failed due to too many recent calls.
+XP_ERROR_EXPERIENCES_DISABLED	The region currently has experiences disabled.
+XP_ERROR_INVALID_PARAMETERS		One of the string arguments was too big to fit in the key-value store.
+XP_ERROR_NOT_PERMITTED			This experience is not allowed to run on the current region.
+XP_ERROR_NO_EXPERIENCE			This script is not associated with an experience.
+XP_ERROR_NOT_FOUND				The sim was unable to verify the validity of the experience. Retrying after a short wait is advised.
+XP_ERROR_INVALID_EXPERIENCE		The script is associated with an experience that no longer exists.
+XP_ERROR_EXPERIENCE_DISABLED	The experience owner has temporarily disabled the experience.
+XP_ERROR_EXPERIENCE_SUSPENDED	The experience has been suspended by Linden Customer Support.
+XP_ERROR_QUOTA_EXCEEDED			An attempted write data to the key-value store failed due to the data quota being met.
+XP_ERROR_STORE_DISABLED			The key-value store is currently disabled on this region.
+XP_ERROR_STORAGE_EXCEPTION		Unable to communicate with the key-value store.
+XP_ERROR_KEY_NOT_FOUND			The requested key does not exist.
+XP_ERROR_RETRY_UPDATE			A checked update failed due to an out of date request.
+XP_ERROR_MATURITY_EXCEEDED		The request failed due to agent content preferences.
+XP_ERROR_UNKNOWN_ERROR			Other unknown error.
+
+
 # float constants
 [word .3, .1, .5]
 PI					3.1415926535897932384626433832795
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 845cb5ae96f59872a6353f2814d876cdf644dfa8..9d9bc43bd758aa8a73edeeb09b00b437fc776d04 100755
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -47,7 +47,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>300</real>
+      <real>300.0</real>
     </map>
     <key>AckCollectTime</key>
     <map>
@@ -80,7 +80,7 @@
       <key>Type</key>
       <string>F32</string>
       <key>Value</key>
-      <real>1</real>
+      <real>1.0</real>
     </map>
     <key>AdvanceSnapshot</key>
     <map>
@@ -1651,7 +1651,7 @@
         <key>Type</key>
         <string>S32</string>
         <key>Value</key>
-        <real>100</real>
+        <integer>100</integer>
     </map>
     <key>ChatLoadGroupTimeout</key>
     <map>
@@ -4260,7 +4260,7 @@
       <key>Type</key>
       <string>F32</string>
       <key>Value</key>
-      <real>3</real>
+      <real>3.0</real>
     </map>
     <key>FullScreenAutoDetectAspectRatio</key>
     <map>
@@ -6275,7 +6275,7 @@
       <key>Type</key>
       <string>Boolean</string>
       <key>Value</key>
-      <real>0</real>
+      <integer>0</integer>
     </map>
   <key>MeshEnabled</key>
   <map>
@@ -6286,7 +6286,7 @@
     <key>Type</key>
     <string>Boolean</string>
     <key>Value</key>
-    <real>1</real>
+    <integer>1</integer>
   </map>
   <key>MeshImportUseSLM</key>
   <map>
@@ -6297,7 +6297,7 @@
     <key>Type</key>
     <string>Boolean</string>
     <key>Value</key>
-    <real>1</real>
+    <integer>1</integer>
   </map>
   <key>MeshUploadLogXML</key>
   <map>
@@ -6308,7 +6308,7 @@
     <key>Type</key>
     <string>Boolean</string>
     <key>Value</key>
-    <real>0</real>
+    <integer>0</integer>
   </map>
   <key>MeshUploadFakeErrors</key>
   <map>
@@ -6319,7 +6319,7 @@
     <key>Type</key>
     <string>S32</string>
     <key>Value</key>
-    <real>0</real>
+    <integer>0</integer>
   </map>
   <key>MeshUploadTimeOut</key>
   <map>
@@ -6330,7 +6330,7 @@
     <key>Type</key>
     <string>S32</string>
     <key>Value</key>
-    <real>600</real>
+    <integer>600</integer>
   </map>
   <key>MigrateCacheDirectory</key>
     <map>
@@ -8554,7 +8554,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>64</real>
+    <real>64.0</real>
   </map>
     <key>RenderCubeMap</key>
     <map>
@@ -8690,7 +8690,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>16</real>
+    <integer>16</integer>
   </map>
 
   <key>RenderEdgeDepthCutoff</key>
@@ -8736,7 +8736,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>4</real>
+    <real>4.0</real>
   </map>
   <key>RenderDeferredSpotShadowBias</key>
   <map>
@@ -8803,7 +8803,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>0</real>
+    <real>0.0</real>
   </map>
 
   <key>RenderDepthPrePass</key>
@@ -8997,7 +8997,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>0</real>
+    <integer>0</integer>
   </map>
   
   <key>RenderSpecularResX</key>
@@ -9009,7 +9009,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>1024</real>
+    <integer>1024</integer>
   </map>
 
   <key>RenderSpecularResY</key>
@@ -9021,7 +9021,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>256</real>
+    <integer>256</integer>
   </map>
 
   <key>RenderSpecularExponent</key>
@@ -9177,7 +9177,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>4</real>
+    <integer>4</integer>
   </map>
   <key>RenderShadowBlurDistFactor</key>
   <map>
@@ -9344,9 +9344,9 @@
       <string>Vector3</string>
       <key>Value</key>
       <array>
-        <real>1</real>
-        <real>0</real>
-        <real>0</real>
+        <real>1.0</real>
+        <real>0.0</real>
+        <real>0.0</real>
       </array>
     </map>
     <key>RenderGlowMaxExtractAlpha</key>
@@ -9947,7 +9947,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>0</real>
+    <integer>0</integer>
   </map>
   <key>RenderAutoMuteLogging</key>
   <map>
@@ -10169,7 +10169,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>250000</real>
+    <integer>250000</integer>
   </map>
   <key>MeshMetaDataDiscount</key>
   <map>
@@ -10180,7 +10180,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>384</real>
+    <integer>384</integer>
   </map>
   <key>MeshMinimumByteSize</key>
   <map>
@@ -10191,7 +10191,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>16</real>
+    <integer>16</integer>
   </map>
   <key>MeshBytesPerTriangle</key>
   <map>
@@ -10202,7 +10202,7 @@
     <key>Type</key>
     <string>U32</string>
     <key>Value</key>
-    <real>16</real>
+    <integer>16</integer>
   </map>
   <key>Mesh2MaxConcurrentRequests</key>
   <map>
@@ -10334,7 +10334,7 @@
       <key>Type</key>
       <string>U32</string>
       <key>Value</key>
-      <real>1024</real>
+      <integer>1024</integer>
     </map>
     <key>SceneLoadLowMemoryBound</key>
     <map>
@@ -10345,7 +10345,7 @@
       <key>Type</key>
       <string>U32</string>
       <key>Value</key>
-      <real>750</real>
+      <integer>750</integer>
     </map>
     <key>SceneLoadMinRadius</key>
     <map>
@@ -12138,7 +12138,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>6</real>
+      <integer>6</integer>
     </map>
     <key>UICheckboxctrlBtnSize</key>
     <map>
@@ -12149,7 +12149,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>13</real>
+      <integer>13</integer>
     </map>
     <key>UICheckboxctrlHeight</key>
     <map>
@@ -12160,7 +12160,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>16</real>
+      <integer>16</integer>
     </map>
     <key>UICheckboxctrlHPad</key>
     <map>
@@ -12171,7 +12171,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>2</real>
+      <integer>2</integer>
     </map>
     <key>UICheckboxctrlSpacing</key>
     <map>
@@ -12182,7 +12182,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>5</real>
+      <integer>5</integer>
     </map>
     <key>UICheckboxctrlVPad</key>
     <map>
@@ -12193,7 +12193,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>2</real>
+      <integer>2</integer>
     </map>
     <key>UICloseBoxFromTop</key>
     <map>
@@ -12204,7 +12204,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>5</real>
+      <integer>5</integer>
     </map>
     <key>UIExtraTriangleHeight</key>
     <map>
@@ -12215,7 +12215,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>-1</real>
+      <integer>-1</integer>
     </map>
     <key>UIExtraTriangleWidth</key>
     <map>
@@ -12226,7 +12226,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>4</real>
+      <integer>4</integer>
     </map>
     <key>UIFloaterCloseBoxSize</key>
     <map>
@@ -12237,7 +12237,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>16</real>
+      <integer>16</integer>
     </map>
     <key>UIFloaterHPad</key>
     <map>
@@ -12248,7 +12248,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>6</real>
+      <integer>6</integer>
     </map>
     <key>UIFloaterTestBool</key>
     <map>
@@ -12468,7 +12468,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>500</real>
+      <integer>500</integer>
     </map>
     <key>UIMinimizedWidth</key>
     <map>
@@ -12479,7 +12479,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>160</real>
+      <integer>160</integer>
     </map>
     <key>UIMultiSliderctrlSpacing</key>
     <map>
@@ -12490,7 +12490,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>4</real>
+      <integer>4</integer>
     </map>
     <key>UIMultiTrackHeight</key>
     <map>
@@ -13150,7 +13150,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <real>3</real>
+      <integer>3</integer>
     </map>
     <key>UseCircuitCodeTimeout</key>
     <map>
@@ -15158,9 +15158,9 @@
       <string>Color4</string>
       <key>Value</key>
       <array>
-        <real>0</real>
-        <real>0</real>
-        <real>0</real>
+        <real>0.0</real>
+        <real>0.0</real>
+        <real>0.0</real>
         <real>1.0</real>
       </array>
     </map>
@@ -15477,7 +15477,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>2</real>
+    <real>2.0</real>
   </map>
   <key>TeleportLocalDelay</key>
   <map>
@@ -15488,7 +15488,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>1</real>
+    <real>1.0</real>
   </map>
   <key>FMODExProfilerEnable</key>
   <map>
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 6dc71bc94e3bf00c4f8a174ab2d506e260658ea5..a2aee2e000ef4717bb635418b3b3aee1594763eb 100755
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -105,6 +105,7 @@
 // Linden library includes
 #include "llavatarnamecache.h"
 #include "lldiriterator.h"
+#include "llexperiencecache.h"
 #include "llimagej2c.h"
 #include "llmemory.h"
 #include "llprimitive.h"
@@ -4698,6 +4699,32 @@ void LLAppViewer::saveNameCache()
 	}
 }
 
+
+void LLAppViewer::saveExperienceCache()
+{
+	std::string filename =
+		gDirUtilp->getExpandedFilename(LL_PATH_CACHE, "experience_cache.xml");
+	LL_INFOS("ExperienceCache") << "Saving " << filename << LL_ENDL;
+	llofstream cache_stream(filename.c_str());
+	if(cache_stream.is_open())
+	{
+		LLExperienceCache::exportFile(cache_stream);
+	}
+}
+
+void LLAppViewer::loadExperienceCache()
+{
+	std::string filename =
+		gDirUtilp->getExpandedFilename(LL_PATH_CACHE, "experience_cache.xml");
+	LL_INFOS("ExperienceCache") << "Loading " << filename << LL_ENDL;
+	llifstream cache_stream(filename.c_str());
+	if(cache_stream.is_open())
+	{
+		LLExperienceCache::importFile(cache_stream);
+	}
+}
+
+
 /*!	@brief		This class is an LLFrameTimer that can be created with
 				an elapsed time that starts counting up from the given value
 				rather than 0.0.
@@ -4893,7 +4920,7 @@ void LLAppViewer::idle()
 	    // floating throughout the various object lists.
 	    //
 		idleNameCache();
-    
+		idleExperienceCache();
 		idleNetwork();
 	    	        
 
@@ -5323,6 +5350,22 @@ void LLAppViewer::idleNameCache()
 	LLAvatarNameCache::idle();
 }
 
+void LLAppViewer::idleExperienceCache()
+{
+	LLViewerRegion* region = gAgent.getRegion();
+	if (!region) return;
+	
+	std::string lookup_url=region->getCapability("GetExperienceInfo"); 
+	if(!lookup_url.empty() && *lookup_url.rbegin() != '/')
+	{
+		lookup_url += '/';
+	}
+	
+	LLExperienceCache::setLookupURL(lookup_url);
+
+	LLExperienceCache::idle();
+}
+
 //
 // Handle messages, and all message related stuff
 //
@@ -5485,6 +5528,7 @@ void LLAppViewer::disconnectViewer()
 	}
 
 	saveNameCache();
+	saveExperienceCache();
 
 	// close inventory interface, close all windows
 	LLFloaterInventory::cleanup();
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h
index e8a1ca036b8887bbf294b392b553248a8ff6c624..718871138eba3350cb37456bd653f51d504b4baf 100755
--- a/indra/newview/llappviewer.h
+++ b/indra/newview/llappviewer.h
@@ -122,6 +122,9 @@ public:
     void loadNameCache();
     void saveNameCache();
 
+	void loadExperienceCache();
+	void saveExperienceCache();
+
 	void removeMarkerFiles();
 	
 	void removeDumpDir();
@@ -230,6 +233,7 @@ private:
     void idle(); 
     void idleShutdown();
 	// update avatar SLID and display name caches
+	void idleExperienceCache();
 	void idleNameCache();
     void idleNetwork();
 
diff --git a/indra/newview/llassetuploadqueue.cpp b/indra/newview/llassetuploadqueue.cpp
index 8833c5794839c6e6c16a831d2cdf8dbd2f65b716..359ee1e221b40dfcc244d4edf3c9ac562f20008b 100755
--- a/indra/newview/llassetuploadqueue.cpp
+++ b/indra/newview/llassetuploadqueue.cpp
@@ -168,6 +168,7 @@ void LLAssetUploadQueue::request(LLAssetUploadQueueSupplier** supplier)
 	body["item_id"] = data.mItemId;
 	body["is_script_running"] = data.mIsRunning;
 	body["target"] = data.mIsTargetMono? "mono" : "lsl2";
+	body["experience"] = data.mExperienceId;
 
 	std::string url = "";
 	LLViewerObject* object = gObjectList.findObject(data.mTaskId);
@@ -191,7 +192,8 @@ void LLAssetUploadQueue::queue(const std::string& filename,
 							   const LLUUID& queue_id,
 							   U8* script_data,
 							   U32 data_size,
-							   std::string script_name)
+							   std::string script_name,
+							   const LLUUID& experience_id)
 {
 	UploadData data;
 	data.mTaskId = task_id;
@@ -203,6 +205,7 @@ void LLAssetUploadQueue::queue(const std::string& filename,
 	data.mData = script_data;
 	data.mDataSize = data_size;
 	data.mScriptName = script_name;
+	data.mExperienceId = experience_id;
 			
 	mQueue.push_back(data);
 
diff --git a/indra/newview/llassetuploadqueue.h b/indra/newview/llassetuploadqueue.h
index 434f3e5c03a98643e3fe0d9b5f08ae8f8fa4bcb1..2ceee8f7008f9f15998fafac044f752bf3227485 100755
--- a/indra/newview/llassetuploadqueue.h
+++ b/indra/newview/llassetuploadqueue.h
@@ -50,7 +50,8 @@ public:
 			   const LLUUID& queue_id,
 			   U8* data,
 			   U32 data_size,
-			   std::string script_name);
+			   std::string script_name, 
+			   const LLUUID& experience_id);
 
 	bool isEmpty() const {return mQueue.empty();}
 
@@ -69,6 +70,7 @@ private:
 		U8* mData;
 		U32 mDataSize;
 		std::string mScriptName;
+		LLUUID mExperienceId;
 	};
 
 	// Ownership of mSupplier passed to currently waiting responder
diff --git a/indra/newview/llcompilequeue.cpp b/indra/newview/llcompilequeue.cpp
index b0916d769a835caa57b8fcaa54f803e6670ed7c3..d9fd4509a5993d3f76df243a9455096f8f379146 100755
--- a/indra/newview/llcompilequeue.cpp
+++ b/indra/newview/llcompilequeue.cpp
@@ -59,6 +59,8 @@
 #include "lltrans.h"
 
 #include "llselectmgr.h"
+#include "llexperienceassociationresponder.h"
+#include "llexperiencecache.h"
 
 // *TODO: This should be separated into the script queue, and the floater views of that queue.
 // There should only be one floater class that can view any queue type
@@ -70,11 +72,13 @@
 struct LLScriptQueueData
 {
 	LLUUID mQueueID;
-	std::string mScriptName;
 	LLUUID mTaskId;
-	LLUUID mItemId;
-	LLScriptQueueData(const LLUUID& q_id, const std::string& name, const LLUUID& task_id, const LLUUID& item_id) :
-		mQueueID(q_id), mScriptName(name), mTaskId(task_id), mItemId(item_id) {}
+	LLPointer<LLInventoryItem> mItem;
+	LLHost mHost;
+	LLUUID mExperienceId;
+	std::string mExperiencename;
+	LLScriptQueueData(const LLUUID& q_id, const LLUUID& task_id, LLInventoryItem* item) :
+		mQueueID(q_id), mTaskId(task_id), mItem(new LLInventoryItem(item)) {}
 
 };
 
@@ -88,6 +92,7 @@ LLFloaterScriptQueue::LLFloaterScriptQueue(const LLSD& key) :
 	mDone(false),
 	mMono(false)
 {
+	
 }
 
 // Destroys the object
@@ -167,7 +172,7 @@ BOOL LLFloaterScriptQueue::start()
 	
 	getChild<LLScrollListCtrl>("queue output")->addSimpleElement(buffer, ADD_BOTTOM);
 
-	return nextObject();
+	return startQueue();
 }
 
 BOOL LLFloaterScriptQueue::isDone() const
@@ -232,6 +237,40 @@ BOOL LLFloaterScriptQueue::popNext()
 	return rv;
 }
 
+BOOL LLFloaterScriptQueue::startQueue()
+{
+	return nextObject();
+}
+
+class CompileQueueExperienceResponder : public LLHTTPClient::Responder
+{
+public:
+	CompileQueueExperienceResponder(const LLUUID& parent):mParent(parent)
+	{
+	}
+
+	LLUUID mParent;
+
+	/*virtual*/ void httpSuccess()
+	{	
+		sendResult(getContent());
+	}
+	/*virtual*/ void httpFailure()
+	{
+		sendResult(LLSD());
+	}
+	void sendResult(const LLSD& content)
+	{
+		LLFloaterCompileQueue* queue = LLFloaterReg::findTypedInstance<LLFloaterCompileQueue>("compile_queue", mParent);
+		if(!queue)
+			return;
+
+		queue->experienceIdsReceived(content["experience_ids"]);	
+	}
+};
+
+
+
 
 ///----------------------------------------------------------------------------
 /// Class LLFloaterCompileQueue
@@ -284,6 +323,21 @@ LLFloaterCompileQueue::~LLFloaterCompileQueue()
 { 
 }
 
+void LLFloaterCompileQueue::experienceIdsReceived( const LLSD& content )
+{
+	for(LLSD::array_const_iterator it  = content.beginArray(); it != content.endArray(); ++it)
+	{
+		mExperienceIds.insert(it->asUUID());
+	}
+	nextObject();
+}
+
+BOOL LLFloaterCompileQueue::hasExperience( const LLUUID& id ) const
+{
+	return mExperienceIds.find(id) != mExperienceIds.end();
+}
+
+
 void LLFloaterCompileQueue::handleInventory(LLViewerObject *viewer_object,
 											LLInventoryObject::object_list_t* inv)
 {
@@ -324,25 +378,52 @@ void LLFloaterCompileQueue::handleInventory(LLViewerObject *viewer_object,
 		{
 			LLInventoryItem *itemp = iter->second;
 			LLScriptQueueData* datap = new LLScriptQueueData(getKey().asUUID(),
-												 itemp->getName(),
-												 viewer_object->getID(),
-												 itemp->getUUID());
-
-			//LL_INFOS() << "ITEM NAME 2: " << names.get(i) << LL_ENDL;
-			gAssetStorage->getInvItemAsset(viewer_object->getRegion()->getHost(),
-				gAgent.getID(),
-				gAgent.getSessionID(),
-				itemp->getPermissions().getOwner(),
-				viewer_object->getID(),
-				itemp->getUUID(),
-				itemp->getAssetUUID(),
-				itemp->getType(),
-				LLFloaterCompileQueue::scriptArrived,
-				(void*)datap);
+				viewer_object->getID(), itemp);
+
+			ExperienceAssociationResponder::fetchAssociatedExperience(itemp->getParentUUID(), itemp->getUUID(), 
+				boost::bind(LLFloaterCompileQueue::requestAsset, datap, _1));
+		}
+	}
+}
+
+
+void LLFloaterCompileQueue::requestAsset( LLScriptQueueData* datap, const LLSD& experience )
+{
+	LLFloaterCompileQueue* queue = LLFloaterReg::findTypedInstance<LLFloaterCompileQueue>("compile_queue", datap->mQueueID);
+	if(!queue)
+	{
+		delete datap;
+		return;
+	}
+	if(experience.has(LLExperienceCache::EXPERIENCE_ID))
+	{
+		datap->mExperienceId=experience[LLExperienceCache::EXPERIENCE_ID].asUUID();
+		if(!queue->hasExperience(datap->mExperienceId))
+		{
+			std::string buffer = LLTrans::getString("CompileNoExperiencePerm", LLSD::emptyMap()
+				.with("SCRIPT", datap->mItem->getName())
+				.with("EXPERIENCE", experience[LLExperienceCache::NAME].asString()));
+	
+			queue->getChild<LLScrollListCtrl>("queue output")->addSimpleElement(buffer, ADD_BOTTOM);
+			queue->removeItemByItemID(datap->mItem->getUUID());
+			delete datap;
+			return;
 		}
 	}
+	//LL_INFOS() << "ITEM NAME 2: " << names.get(i) << LL_ENDL;
+	gAssetStorage->getInvItemAsset(datap->mHost,
+		gAgent.getID(),
+		gAgent.getSessionID(),
+		datap->mItem->getPermissions().getOwner(),
+		datap->mTaskId,
+		datap->mItem->getUUID(),
+		datap->mItem->getAssetUUID(),
+		datap->mItem->getType(),
+		LLFloaterCompileQueue::scriptArrived,
+		(void*)datap);
 }
 
+
 // This is the callback for when each script arrives
 // static
 void LLFloaterCompileQueue::scriptArrived(LLVFS *vfs, const LLUUID& asset_id,
@@ -382,12 +463,12 @@ void LLFloaterCompileQueue::scriptArrived(LLVFS *vfs, const LLUUID& asset_id,
 				file.read(script_data, script_size);
 
 				queue->mUploadQueue->queue(filename, data->mTaskId, 
-										   data->mItemId, is_running, queue->mMono, queue->getKey().asUUID(),
-										   script_data, script_size, data->mScriptName);
+										   data->mItem->getUUID(), is_running, queue->mMono, queue->getKey().asUUID(),
+										   script_data, script_size, data->mItem->getName(), data->mExperienceId);
 			}
 			else
 			{
-				buffer = LLTrans::getString("CompileQueueServiceUnavailable") + (": ") + data->mScriptName;
+				buffer = LLTrans::getString("CompileQueueServiceUnavailable") + (": ") + data->mItem->getName();
 			}
 		}
 	}
@@ -399,7 +480,7 @@ void LLFloaterCompileQueue::scriptArrived(LLVFS *vfs, const LLUUID& asset_id,
 			args["MESSAGE"] = LLTrans::getString("CompileQueueScriptNotFound");
 			LLNotificationsUtil::add("SystemMessage", args);
 			
-			buffer = LLTrans::getString("CompileQueueProblemDownloading") + (": ") + data->mScriptName;
+			buffer = LLTrans::getString("CompileQueueProblemDownloading") + (": ") + data->mItem->getName();
 		}
 		else if (LL_ERR_INSUFFICIENT_PERMISSIONS == status)
 		{
@@ -407,15 +488,15 @@ void LLFloaterCompileQueue::scriptArrived(LLVFS *vfs, const LLUUID& asset_id,
 			args["MESSAGE"] = LLTrans::getString("CompileQueueInsufficientPermDownload");
 			LLNotificationsUtil::add("SystemMessage", args);
 
-			buffer = LLTrans::getString("CompileQueueInsufficientPermFor") + (": ") + data->mScriptName;
+			buffer = LLTrans::getString("CompileQueueInsufficientPermFor") + (": ") + data->mItem->getName();
 		}
 		else
 		{
-			buffer = LLTrans::getString("CompileQueueUnknownFailure") + (" ") + data->mScriptName;
+			buffer = LLTrans::getString("CompileQueueUnknownFailure") + (" ") + data->mItem->getName();
 		}
 
 		LL_WARNS() << "Problem downloading script asset." << LL_ENDL;
-		if(queue) queue->removeItemByItemID(data->mItemId);
+		if(queue) queue->removeItemByItemID(data->mItem->getUUID());
 	}
 	if(queue && (buffer.size() > 0)) 
 	{
@@ -564,6 +645,23 @@ void LLFloaterCompileQueue::removeItemByItemID(const LLUUID& asset_id)
 	}
 }
 
+BOOL LLFloaterCompileQueue::startQueue()
+{
+	LLViewerRegion* region = gAgent.getRegion();
+	if (region)
+	{
+		std::string lookup_url=region->getCapability("GetCreatorExperiences"); 
+		if(!lookup_url.empty())
+		{
+			LLHTTPClient::get(lookup_url, new CompileQueueExperienceResponder(getKey().asUUID()));
+			return TRUE;
+		}
+	}
+	return nextObject();
+}
+
+
+
 void LLFloaterNotRunQueue::handleInventory(LLViewerObject* viewer_obj,
 										  LLInventoryObject::object_list_t* inv)
 {
diff --git a/indra/newview/llcompilequeue.h b/indra/newview/llcompilequeue.h
index 28f4625de87d09bc1347c7adebe5fef440c2c60c..54842bb3023c9104b158d8172d505bbd9732ec0f 100755
--- a/indra/newview/llcompilequeue.h
+++ b/indra/newview/llcompilequeue.h
@@ -81,13 +81,15 @@ protected:
 	// returns true if this is done
 	BOOL isDone() const;
 
+	virtual BOOL startQueue();
+
 	// go to the next object. If no objects left, it falls out
 	// silently and waits to be killed by the deleteIfDone() callback.
 	BOOL nextObject();
 	BOOL popNext();
 
 	void setStartString(const std::string& s) { mStartString = s; }
-	
+
 protected:
 	// UI
 	LLScrollListCtrl* mMessages;
@@ -131,6 +133,9 @@ public:
 	
 	LLAssetUploadQueue* getUploadQueue() { return mUploadQueue; }
 
+	void experienceIdsReceived( const LLSD& content );
+	BOOL hasExperience(const LLUUID& id)const;
+
 protected:
 	LLFloaterCompileQueue(const LLSD& key);
 	virtual ~LLFloaterCompileQueue();
@@ -139,16 +144,21 @@ protected:
 	virtual void handleInventory(LLViewerObject* viewer_obj,
 								LLInventoryObject::object_list_t* inv);
 
+	static void requestAsset(struct LLScriptQueueData* datap, const LLSD& experience);
+
+
 	// This is the callback for when each script arrives
 	static void scriptArrived(LLVFS *vfs, const LLUUID& asset_id,
 								LLAssetType::EType type,
 								void* user_data, S32 status, LLExtStat ext_status);
 
+	virtual BOOL startQueue();
 protected:
 	LLViewerInventoryItem::item_array_t mCurrentScripts;
 
 private:
 	LLAssetUploadQueue* mUploadQueue;
+	uuid_list_t mExperienceIds;
 };
 
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/indra/newview/llexpandabletextbox.cpp b/indra/newview/llexpandabletextbox.cpp
index a50184460b74f65cb04b42cc6b32553fdbf4ce21..f2602c8c7d046e650a569de6b91dc95d90235f33 100755
--- a/indra/newview/llexpandabletextbox.cpp
+++ b/indra/newview/llexpandabletextbox.cpp
@@ -116,7 +116,7 @@ LLExpandableTextBox::LLTextBoxEx::LLTextBoxEx(const Params& p)
 	mExpanderVisible(false)
 {
 	setIsChrome(TRUE);
-
+	setMaxTextLength(p.max_text_length);
 }
 
 void LLExpandableTextBox::LLTextBoxEx::reshape(S32 width, S32 height, BOOL called_from_parent)
diff --git a/indra/newview/llexpandabletextbox.h b/indra/newview/llexpandabletextbox.h
index 399e48bea2b0ac2119cc9cd4722371bec233d588..5dea35bb823c85135bb3c6ed5dd5538f8b0a02b2 100755
--- a/indra/newview/llexpandabletextbox.h
+++ b/indra/newview/llexpandabletextbox.h
@@ -103,7 +103,7 @@ public:
 		Optional<LLScrollContainer::Params> scroll;
 
 		Optional<S32> max_height;
-
+		
 		Optional<bool> bg_visible,
 					   expanded_bg_visible;
 
diff --git a/indra/newview/llexperienceassociationresponder.cpp b/indra/newview/llexperienceassociationresponder.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..b50c81eedcf04e777993f8c73c80b23159abc967
--- /dev/null
+++ b/indra/newview/llexperienceassociationresponder.cpp
@@ -0,0 +1,97 @@
+/** 
+ * @file llexperienceassociationresponder.cpp
+ * @brief llexperienceassociationresponder implementation. This class combines 
+ * a lookup for a script association and an experience details request. The first
+ * is always async, but the second may be cached locally.
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+#include "llexperienceassociationresponder.h"
+#include "llexperiencecache.h"
+#include "llviewerregion.h"
+#include "llagent.h"
+
+ExperienceAssociationResponder::ExperienceAssociationResponder(ExperienceAssociationResponder::callback_t callback):mCallback(callback)
+{
+    ref();
+}
+
+void ExperienceAssociationResponder::fetchAssociatedExperience( const LLUUID& object_id, const LLUUID& item_id, callback_t callback )
+{
+    LLSD request;
+    request["object-id"]=object_id;
+    request["item-id"]=item_id;
+    fetchAssociatedExperience(request, callback);
+}
+
+void ExperienceAssociationResponder::fetchAssociatedExperience(LLSD& request, callback_t callback)
+{
+    LLViewerRegion* region = gAgent.getRegion();
+    if (region)
+    {
+        std::string lookup_url=region->getCapability("GetMetadata"); 
+        if(!lookup_url.empty())
+        {
+            LLSD fields;
+            fields.append("experience");
+            request["fields"] = fields;
+            LLHTTPClient::post(lookup_url, request, new ExperienceAssociationResponder(callback));
+        }
+    }
+}
+
+void ExperienceAssociationResponder::httpFailure()
+{
+    LLSD msg;
+    msg["error"]=(LLSD::Integer)getStatus();
+    msg["message"]=getReason();
+    LL_INFOS("ExperienceAssociation") << "Failed to look up associated experience: " << getStatus() << ": " << getReason() << LL_ENDL;
+
+    sendResult(msg);
+  
+}
+void ExperienceAssociationResponder::httpSuccess()
+{
+    if(!getContent().has("experience"))
+    {
+
+        LLSD msg;
+        msg["message"]="no experience";
+        msg["error"]=-1;
+        sendResult(msg);
+        return;
+    }
+
+    LLExperienceCache::get(getContent()["experience"].asUUID(), boost::bind(&ExperienceAssociationResponder::sendResult, this, _1));
+
+}
+
+void ExperienceAssociationResponder::sendResult( const LLSD& experience )
+{
+    mCallback(experience);
+    unref();
+}
+
+
+
diff --git a/indra/newview/llexperienceassociationresponder.h b/indra/newview/llexperienceassociationresponder.h
new file mode 100644
index 0000000000000000000000000000000000000000..2bdc3d251b2c575e00f41067cc6df059959aacd7
--- /dev/null
+++ b/indra/newview/llexperienceassociationresponder.h
@@ -0,0 +1,58 @@
+#include "llhttpclient.h"
+#include "llsd.h"
+/** 
+ * @file llexperienceassociationresponder.h
+ * @brief llexperienceassociationresponder and related class definitions
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+
+#ifndef LL_LLEXPERIENCEASSOCIATIONRESPONDER_H
+#define LL_LLEXPERIENCEASSOCIATIONRESPONDER_H
+
+#include "llhttpclient.h"
+#include "llsd.h"
+
+class ExperienceAssociationResponder : public LLHTTPClient::Responder
+{
+public:
+    typedef boost::function<void(const LLSD& experience)> callback_t;
+
+    ExperienceAssociationResponder(callback_t callback);
+
+    /*virtual*/ void httpSuccess();
+    /*virtual*/ void httpFailure();
+
+    static void fetchAssociatedExperience(const LLUUID& object_it, const LLUUID& item_id, callback_t callback);
+
+private:    
+    static void fetchAssociatedExperience(LLSD& request, callback_t callback);
+    
+    void sendResult(const LLSD& experience);
+
+    callback_t mCallback;
+
+};
+
+#endif // LL_LLEXPERIENCEASSOCIATIONRESPONDER_H
diff --git a/indra/newview/llexperiencelog.cpp b/indra/newview/llexperiencelog.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..ec6134a4b36f63b5a2fb25a84bf827f7f6a20206
--- /dev/null
+++ b/indra/newview/llexperiencelog.cpp
@@ -0,0 +1,273 @@
+/** 
+ * @file llexperiencelog.cpp
+ * @brief llexperiencelog implementation
+ *
+ * $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2014, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+#include "llexperiencelog.h"
+
+#include "lldispatcher.h"
+#include "llsdserialize.h"
+#include "llviewergenericmessage.h"
+#include "llnotificationsutil.h"
+#include "lltrans.h"
+#include "llerror.h"
+#include "lldate.h"
+
+
+class LLExperienceLogDispatchHandler : public LLDispatchHandler
+{
+public:
+	virtual bool operator()(
+		const LLDispatcher* dispatcher,
+		const std::string& key,
+		const LLUUID& invoice,
+		const sparam_t& strings)
+	{
+		LLSD message;
+
+		sparam_t::const_iterator it = strings.begin();
+		if(it != strings.end()){
+			const std::string& llsdRaw = *it++;
+			std::istringstream llsdData(llsdRaw);
+			if (!LLSDSerialize::deserialize(message, llsdData, llsdRaw.length()))
+			{
+				LL_WARNS() << "LLExperienceLogDispatchHandler: Attempted to read parameter data into LLSD but failed:" << llsdRaw << LL_ENDL;
+			}
+		}
+		message["public_id"] = invoice;
+
+		// Object Name
+		if(it != strings.end())
+		{
+			message["ObjectName"] = *it++;
+		}
+
+		// parcel Name
+		if(it != strings.end())
+		{
+			message["ParcelName"] = *it++;
+		}
+		message["Count"] = 1;
+
+		LLExperienceLog::instance().handleExperienceMessage(message);
+		return true;
+	}
+};
+
+static LLExperienceLogDispatchHandler experience_log_dispatch_handler;
+
+void LLExperienceLog::handleExperienceMessage(LLSD& message)
+{
+	time_t now;
+	time(&now);
+	char daybuf[16];/* Flawfinder: ignore */
+	char time_of_day[16];/* Flawfinder: ignore */
+	strftime(daybuf, 16, "%Y-%m-%d", localtime(&now));
+	strftime(time_of_day, 16, " %H:%M:%S", localtime(&now));
+	message["Time"] = time_of_day;
+
+	std::string day = daybuf;
+
+	if(!mEvents.has(day))
+	{
+		mEvents[day] = LLSD::emptyArray();
+	}
+	LLSD& dayEvents = mEvents[day];
+	if(dayEvents.size() > 0)
+	{
+		LLSD& last = *(dayEvents.rbeginArray());
+		if( last["public_id"].asUUID() == message["public_id"].asUUID() 
+			&& last["ObjectName"].asString() == message["ObjectName"].asString() 
+			&& last["OwnerID"].asUUID() == message["OwnerID"].asUUID()
+			&& last["ParcelName"].asString() == message["ParcelName"].asString()
+			&& last["Permission"].asInteger() == message["Permission"].asInteger())
+		{
+			last["Count"] = last["Count"].asInteger() + 1;
+			last["Time"] = time_of_day;
+			mSignals(last);
+			return;
+		}
+	}
+	message["Time"] = time_of_day;
+	mEvents[day].append(message);
+	mSignals(message);
+}
+
+LLExperienceLog::LLExperienceLog()
+	: mMaxDays(7)
+	, mPageSize(25)
+	, mNotifyNewEvent(false)
+{
+}
+
+void LLExperienceLog::initialize()
+{
+	loadEvents();
+	if(!gGenericDispatcher.isHandlerPresent("ExperienceEvent"))
+	{
+		gGenericDispatcher.addHandler("ExperienceEvent", &experience_log_dispatch_handler);
+	}
+}
+
+std::string LLExperienceLog::getFilename()
+{
+	return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, "experience_events.xml");
+}
+
+
+std::string LLExperienceLog::getPermissionString( const LLSD& message, const std::string& base )
+{
+	std::ostringstream buf;
+	if(message.has("Permission"))
+	{
+		buf << base << message["Permission"].asInteger();
+		std::string entry;
+		if(LLTrans::findString(entry, buf.str()))
+		{
+			buf.str(entry);
+		}
+		else
+		{
+			buf.str();
+		}
+	}
+
+	if(buf.str().empty())
+	{
+		buf << base << "Unknown";
+
+		buf.str(LLTrans::getString(buf.str(), message));
+	}
+
+	return buf.str();
+}
+
+void LLExperienceLog::notify( LLSD& message )
+{
+	message["EventType"] = getPermissionString(message, "ExperiencePermission");
+	if(message.has("IsAttachment") && message["IsAttachment"].asBoolean())
+	{
+		LLNotificationsUtil::add("ExperienceEventAttachment", message);
+	}
+	else
+	{
+		LLNotificationsUtil::add("ExperienceEvent", message);
+	}
+	message.erase("EventType");
+}
+
+void LLExperienceLog::saveEvents()
+{
+	eraseExpired();
+	std::string filename = getFilename();
+	LLSD settings = LLSD::emptyMap().with("Events", mEvents);
+
+	settings["MaxDays"] = (int)mMaxDays;
+	settings["Notify"] = mNotifyNewEvent;
+	settings["PageSize"] = (int)mPageSize;
+
+	llofstream stream(filename.c_str());
+	LLSDSerialize::toPrettyXML(settings, stream);
+}
+
+
+void LLExperienceLog::loadEvents()
+{
+	LLSD settings = LLSD::emptyMap();
+
+	std::string filename = getFilename();
+	llifstream stream(filename.c_str());
+	LLSDSerialize::fromXMLDocument(settings, stream);
+
+	if(settings.has("MaxDays"))
+	{
+		setMaxDays((U32)settings["MaxDays"].asInteger());
+	}
+	if(settings.has("Notify"))
+	{
+		setNotifyNewEvent(settings["Notify"].asBoolean());
+	}
+	if(settings.has("PageSize"))
+	{
+		setPageSize((U32)settings["PageSize"].asInteger());
+	}
+	mEvents.clear();
+	if(mMaxDays > 0 && settings.has("Events"))
+	{
+		mEvents = settings["Events"];
+	}
+
+	eraseExpired();
+}
+
+LLExperienceLog::~LLExperienceLog()
+{
+	saveEvents();
+}
+
+void LLExperienceLog::eraseExpired()
+{
+	while(mEvents.size() > mMaxDays && mMaxDays > 0)
+	{
+		mEvents.erase(mEvents.beginMap()->first);
+	}
+}
+
+const LLSD& LLExperienceLog::getEvents() const
+{
+	return mEvents;
+}
+
+void LLExperienceLog::clear()
+{
+	mEvents.clear();
+}
+
+void LLExperienceLog::setMaxDays( U32 val )
+{
+	mMaxDays = val;
+	if(mMaxDays > 0)
+	{
+		eraseExpired();
+	}
+}
+
+LLExperienceLog::callback_connection_t LLExperienceLog::addUpdateSignal( const callback_slot_t& cb )
+{
+	return mSignals.connect(cb);
+}
+
+void LLExperienceLog::setNotifyNewEvent( bool val )
+{
+	mNotifyNewEvent = val;
+	if(!val && mNotifyConnection.connected())
+	{
+		mNotifyConnection.disconnect();
+	}
+	else if( val && !mNotifyConnection.connected())
+	{
+		mNotifyConnection = addUpdateSignal(boost::function<void(LLSD&)>(LLExperienceLog::notify));
+	}
+}
diff --git a/indra/newview/llexperiencelog.h b/indra/newview/llexperiencelog.h
new file mode 100644
index 0000000000000000000000000000000000000000..1e473e27d54accb5b1d7f278261253c12345aa2f
--- /dev/null
+++ b/indra/newview/llexperiencelog.h
@@ -0,0 +1,85 @@
+/** 
+ * @file llexperiencelog.h
+ * @brief llexperiencelog and related class definitions
+ *
+ * $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2014, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+
+#ifndef LL_LLEXPERIENCELOG_H
+#define LL_LLEXPERIENCELOG_H
+
+#include "llsingleton.h"
+
+class LLExperienceLog : public LLSingleton<LLExperienceLog>
+{
+public:
+	typedef boost::signals2::signal<void(LLSD&)> 
+		callback_signal_t;
+	typedef callback_signal_t::slot_type callback_slot_t;
+	typedef boost::signals2::connection callback_connection_t;
+	callback_connection_t addUpdateSignal(const callback_slot_t& cb);
+
+	void initialize();
+
+	U32 getMaxDays() const { return mMaxDays; }
+	void setMaxDays(U32 val);
+
+	bool getNotifyNewEvent() const { return mNotifyNewEvent; }
+	void setNotifyNewEvent(bool val);
+
+	U32 getPageSize() const { return mPageSize; }
+	void setPageSize(U32 val) { mPageSize = val; }
+
+	const LLSD& getEvents()const;
+	void clear();
+
+	virtual ~LLExperienceLog();
+
+	static void notify(LLSD& message);
+	static std::string getFilename();
+	static std::string getPermissionString(const LLSD& message, const std::string& base);
+protected:
+	LLExperienceLog();
+	void handleExperienceMessage(LLSD& message);
+
+
+	void loadEvents();
+	void saveEvents();
+	void eraseExpired();
+
+	LLSD mEvents;
+	callback_signal_t mSignals;
+	callback_connection_t mNotifyConnection;
+	U32 mMaxDays;
+	U32 mPageSize;
+	bool mNotifyNewEvent;
+
+	friend class LLExperienceLogDispatchHandler;
+	friend class LLSingleton<LLExperienceLog>;
+};
+
+
+
+
+#endif // LL_LLEXPERIENCELOG_H
diff --git a/indra/newview/llfloaterauction.cpp b/indra/newview/llfloaterauction.cpp
index 51b59a7a7499d898c5a5daf51a7190203f2dc4cf..b661fed2760f97dda952ca856ca09b048b51cadb 100755
--- a/indra/newview/llfloaterauction.cpp
+++ b/indra/newview/llfloaterauction.cpp
@@ -376,13 +376,16 @@ void LLFloaterAuction::doResetParcel()
 		msg->sendReliable(region->getHost());
 
 		// Clear the access lists
-		clearParcelAccessLists(parcelp, region);
+		clearParcelAccessList(parcelp, region, AL_ACCESS);
+		clearParcelAccessList(parcelp, region, AL_BAN);
+		clearParcelAccessList(parcelp, region, AL_ALLOW_EXPERIENCE);
+		clearParcelAccessList(parcelp, region, AL_BLOCK_EXPERIENCE);
 	}
 }
 
 
 
-void LLFloaterAuction::clearParcelAccessLists(LLParcel* parcel, LLViewerRegion* region)
+void LLFloaterAuction::clearParcelAccessList(LLParcel* parcel, LLViewerRegion* region, U32 list)
 {
 	if (!region || !parcel) return;
 
@@ -391,15 +394,12 @@ void LLFloaterAuction::clearParcelAccessLists(LLParcel* parcel, LLViewerRegion*
 
 	LLMessageSystem* msg = gMessageSystem;
 
-	// Clear access list
-	//	parcel->mAccessList.clear();
-
 	msg->newMessageFast(_PREHASH_ParcelAccessListUpdate);
 	msg->nextBlockFast(_PREHASH_AgentData);
 	msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
 	msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
 	msg->nextBlockFast(_PREHASH_Data);
-	msg->addU32Fast(_PREHASH_Flags, AL_ACCESS);
+	msg->addU32Fast(_PREHASH_Flags, list);
 	msg->addS32(_PREHASH_LocalID, parcel->getLocalID() );
 	msg->addUUIDFast(_PREHASH_TransactionID, transactionUUID);
 	msg->addS32Fast(_PREHASH_SequenceID, 1);			// sequence_id
@@ -412,27 +412,6 @@ void LLFloaterAuction::clearParcelAccessLists(LLParcel* parcel, LLViewerRegion*
 	msg->addU32Fast(_PREHASH_Flags,	0 );
 
 	msg->sendReliable( region->getHost() );
-
-	// Send message for empty ban list
-	//parcel->mBanList.clear();
-	msg->newMessageFast(_PREHASH_ParcelAccessListUpdate);
-	msg->nextBlockFast(_PREHASH_AgentData);
-	msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
-	msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
-	msg->nextBlockFast(_PREHASH_Data);
-	msg->addU32Fast(_PREHASH_Flags, AL_BAN);
-	msg->addS32(_PREHASH_LocalID, parcel->getLocalID() );
-	msg->addUUIDFast(_PREHASH_TransactionID, transactionUUID);
-	msg->addS32Fast(_PREHASH_SequenceID, 1);		// sequence_id
-	msg->addS32Fast(_PREHASH_Sections, 0);			// num_sections
-
-	// pack an empty block since there will be no data
-	msg->nextBlockFast(_PREHASH_List);
-	msg->addUUIDFast(_PREHASH_ID,  LLUUID::null );
-	msg->addS32Fast(_PREHASH_Time, 0 );
-	msg->addU32Fast(_PREHASH_Flags,	0 );
-
-	msg->sendReliable( region->getHost() );
 }
 
 
diff --git a/indra/newview/llfloaterauction.h b/indra/newview/llfloaterauction.h
index 9c0c0f7775101a7e0abf272549090b782c960cfb..c83a11ba8b9af0b2d782cb33b690a30f6bdb85fd 100755
--- a/indra/newview/llfloaterauction.h
+++ b/indra/newview/llfloaterauction.h
@@ -67,7 +67,7 @@ private:
 
 	void doResetParcel();
 	void doSellToAnyone();
-	void clearParcelAccessLists( LLParcel* parcel, LLViewerRegion* region );
+	void clearParcelAccessList( LLParcel* parcel, LLViewerRegion* region, U32 list);
 	void cleanupAndClose();
 
 private:
diff --git a/indra/newview/llfloaterexperiencepicker.cpp b/indra/newview/llfloaterexperiencepicker.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..bb54c57baf1a23ed33ee0fc4591ea2d9f9bbf50d
--- /dev/null
+++ b/indra/newview/llfloaterexperiencepicker.cpp
@@ -0,0 +1,162 @@
+/** 
+* @file llfloaterexperiencepicker.cpp
+* @brief Implementation of llfloaterexperiencepicker
+* @author dolphin@lindenlab.com
+*
+* $LicenseInfo:firstyear=2014&license=viewerlgpl$
+* Second Life Viewer Source Code
+* Copyright (C) 2014, Linden Research, Inc.
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation;
+* version 2.1 of the License only.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*
+* Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+* $/LicenseInfo$
+*/
+
+#include "llviewerprecompiledheaders.h"
+
+#include "llfloaterexperiencepicker.h"
+
+
+#include "lllineeditor.h"
+#include "llfloaterreg.h"
+#include "llscrolllistctrl.h"
+#include "llviewerregion.h"
+#include "llagent.h"
+#include "llexperiencecache.h"
+#include "llslurl.h"
+#include "llavatarnamecache.h"
+#include "llfloaterexperienceprofile.h"
+#include "llcombobox.h"
+#include "llviewercontrol.h"
+#include "lldraghandle.h"
+#include "llpanelexperiencepicker.h"
+
+LLFloaterExperiencePicker* LLFloaterExperiencePicker::show( select_callback_t callback, const LLUUID& key, BOOL allow_multiple, BOOL close_on_select, filter_list filters, LLView * frustumOrigin )
+{
+	LLFloaterExperiencePicker* floater =
+		LLFloaterReg::showTypedInstance<LLFloaterExperiencePicker>("experience_search", key);
+	if (!floater)
+	{
+		LL_WARNS() << "Cannot instantiate experience picker" << LL_ENDL;
+		return NULL;
+	}
+
+	if (floater->mSearchPanel)
+	{
+		floater->mSearchPanel->mSelectionCallback = callback;
+		floater->mSearchPanel->mCloseOnSelect = close_on_select;
+		floater->mSearchPanel->setAllowMultiple(allow_multiple);
+		floater->mSearchPanel->setDefaultFilters();
+		floater->mSearchPanel->addFilters(filters.begin(), filters.end());
+		floater->mSearchPanel->filterContent();
+	}
+
+	if(frustumOrigin)
+	{
+		floater->mFrustumOrigin = frustumOrigin->getHandle();
+	}
+
+	return floater;
+}
+
+void LLFloaterExperiencePicker::drawFrustum()
+{
+	if(mFrustumOrigin.get())
+	{
+		LLView * frustumOrigin = mFrustumOrigin.get();
+		LLRect origin_rect;
+		frustumOrigin->localRectToOtherView(frustumOrigin->getLocalRect(), &origin_rect, this);
+		// draw context cone connecting color picker with color swatch in parent floater
+		LLRect local_rect = getLocalRect();
+		if (hasFocus() && frustumOrigin->isInVisibleChain() && mContextConeOpacity > 0.001f)
+		{
+			gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
+			LLGLEnable(GL_CULL_FACE);
+			gGL.begin(LLRender::QUADS);
+			{
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeInAlpha * mContextConeOpacity);
+				gGL.vertex2i(origin_rect.mLeft, origin_rect.mTop);
+				gGL.vertex2i(origin_rect.mRight, origin_rect.mTop);
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeOutAlpha * mContextConeOpacity);
+				gGL.vertex2i(local_rect.mRight, local_rect.mTop);
+				gGL.vertex2i(local_rect.mLeft, local_rect.mTop);
+
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeOutAlpha * mContextConeOpacity);
+				gGL.vertex2i(local_rect.mLeft, local_rect.mTop);
+				gGL.vertex2i(local_rect.mLeft, local_rect.mBottom);
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeInAlpha * mContextConeOpacity);
+				gGL.vertex2i(origin_rect.mLeft, origin_rect.mBottom);
+				gGL.vertex2i(origin_rect.mLeft, origin_rect.mTop);
+
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeOutAlpha * mContextConeOpacity);
+				gGL.vertex2i(local_rect.mRight, local_rect.mBottom);
+				gGL.vertex2i(local_rect.mRight, local_rect.mTop);
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeInAlpha * mContextConeOpacity);
+				gGL.vertex2i(origin_rect.mRight, origin_rect.mTop);
+				gGL.vertex2i(origin_rect.mRight, origin_rect.mBottom);
+
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeOutAlpha * mContextConeOpacity);
+				gGL.vertex2i(local_rect.mLeft, local_rect.mBottom);
+				gGL.vertex2i(local_rect.mRight, local_rect.mBottom);
+				gGL.color4f(0.f, 0.f, 0.f, mContextConeInAlpha * mContextConeOpacity);
+				gGL.vertex2i(origin_rect.mRight, origin_rect.mBottom);
+				gGL.vertex2i(origin_rect.mLeft, origin_rect.mBottom);
+			}
+			gGL.end();
+		}
+
+		if (gFocusMgr.childHasMouseCapture(getDragHandle()))
+		{
+			mContextConeOpacity = lerp(mContextConeOpacity, gSavedSettings.getF32("PickerContextOpacity"), LLCriticalDamp::getInterpolant(mContextConeFadeTime));
+		}
+		else
+		{
+			mContextConeOpacity = lerp(mContextConeOpacity, 0.f, LLCriticalDamp::getInterpolant(mContextConeFadeTime));
+		}
+	}
+}
+
+void LLFloaterExperiencePicker::draw()
+{
+	drawFrustum();
+	LLFloater::draw();
+}
+
+LLFloaterExperiencePicker::LLFloaterExperiencePicker( const LLSD& key )
+	:LLFloater(key)
+	,mSearchPanel(NULL)
+	,mContextConeOpacity(0.f)
+	,mContextConeInAlpha(0.f)
+	,mContextConeOutAlpha(0.f)
+	,mContextConeFadeTime(0.f)
+{
+	mContextConeInAlpha = gSavedSettings.getF32("ContextConeInAlpha");
+	mContextConeOutAlpha = gSavedSettings.getF32("ContextConeOutAlpha");
+	mContextConeFadeTime = gSavedSettings.getF32("ContextConeFadeTime");
+}
+
+LLFloaterExperiencePicker::~LLFloaterExperiencePicker()
+{
+	gFocusMgr.releaseFocusIfNeeded( this );
+}
+
+BOOL LLFloaterExperiencePicker::postBuild()
+{
+	mSearchPanel = new LLPanelExperiencePicker();
+	addChild(mSearchPanel);
+	mSearchPanel->setOrigin(0, 0);
+	return LLFloater::postBuild();
+}
diff --git a/indra/newview/llfloaterexperiencepicker.h b/indra/newview/llfloaterexperiencepicker.h
new file mode 100644
index 0000000000000000000000000000000000000000..29054a57db2b47468afa48eb34d10dbdc5a8ca9d
--- /dev/null
+++ b/indra/newview/llfloaterexperiencepicker.h
@@ -0,0 +1,67 @@
+/** 
+* @file   llfloaterexperiencepicker.h
+* @brief  Header file for llfloaterexperiencepicker
+* @author dolphin@lindenlab.com
+*
+* $LicenseInfo:firstyear=2014&license=viewerlgpl$
+* Second Life Viewer Source Code
+* Copyright (C) 2014, Linden Research, Inc.
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation;
+* version 2.1 of the License only.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*
+* Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+* $/LicenseInfo$
+*/
+#ifndef LL_LLFLOATEREXPERIENCEPICKER_H
+#define LL_LLFLOATEREXPERIENCEPICKER_H
+
+#include "llfloater.h"
+
+class LLScrollListCtrl;
+class LLLineEditor;
+class LLPanelExperiencePicker;
+
+
+class LLFloaterExperiencePicker : public LLFloater
+{
+public:
+
+	typedef boost::function<void (const uuid_vec_t&)> select_callback_t;
+	// filter function for experiences, return true if the experience should be hidden.
+	typedef boost::function<bool (const LLSD&)> filter_function;
+	typedef std::vector<filter_function> filter_list;
+
+	static LLFloaterExperiencePicker* show( select_callback_t callback, const LLUUID& key, BOOL allow_multiple, BOOL close_on_select, filter_list filters, LLView * frustumOrigin);
+
+	LLFloaterExperiencePicker(const LLSD& key);
+	virtual ~LLFloaterExperiencePicker();
+
+	BOOL postBuild();
+	
+	virtual void	draw();
+private:
+
+	LLPanelExperiencePicker* mSearchPanel;
+
+	void drawFrustum();
+	LLHandle <LLView>   mFrustumOrigin;
+	F32		            mContextConeOpacity;
+	F32                 mContextConeInAlpha;
+	F32                 mContextConeOutAlpha;
+	F32                 mContextConeFadeTime;
+};
+
+#endif // LL_LLFLOATEREXPERIENCEPICKER_H
+
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..197162487d8998af379717da0d88d7a618741c44
--- /dev/null
+++ b/indra/newview/llfloaterexperienceprofile.cpp
@@ -0,0 +1,1004 @@
+/** 
+ * @file llfloaterexperienceprofile.cpp
+ * @brief llfloaterexperienceprofile and related class definitions
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+#include "llviewerprecompiledheaders.h"
+#include "llfloaterexperienceprofile.h"
+
+#include "llagent.h"
+#include "llappviewer.h"
+#include "llcheckboxctrl.h"
+#include "llcombobox.h"
+#include "llcommandhandler.h"
+#include "llexpandabletextbox.h"
+#include "llexperiencecache.h"
+#include "llfloaterreg.h"
+#include "llhttpclient.h"
+#include "lllayoutstack.h"
+#include "lllineeditor.h"
+#include "llnotificationsutil.h"
+#include "llsdserialize.h"
+#include "llslurl.h"
+#include "lltabcontainer.h"
+#include "lltextbox.h"
+#include "lltexturectrl.h"
+#include "lltrans.h"
+#include "llviewerregion.h"
+#include "llevents.h"
+#include "llfloatergroups.h"
+#include "llnotifications.h"
+#include "llfloaterreporter.h"
+
+#define XML_PANEL_EXPERIENCE_PROFILE "floater_experienceprofile.xml"
+#define TF_NAME "experience_title"
+#define TF_DESC "experience_description"
+#define TF_SLURL "LocationTextText"
+#define TF_MRKT "marketplace"
+#define TF_MATURITY "ContentRatingText"
+#define TF_OWNER "OwnerText"
+#define TF_GROUP "GroupText"
+#define TF_GRID_WIDE "grid_wide"
+#define TF_PRIVILEGED "privileged"
+#define EDIT "edit_"
+
+#define IMG_LOGO "logo"
+
+#define PNL_TOP "top panel"
+#define PNL_IMAGE "image_panel"
+#define PNL_DESC "description panel"
+#define PNL_LOC "location panel"
+#define PNL_MRKT "marketplace panel"
+#define PNL_GROUP "group_panel"
+#define PNL_PERMS "perm panel"
+
+#define BTN_ALLOW "allow_btn"
+#define BTN_BLOCK "block_btn"
+#define BTN_CANCEL "cancel_btn"
+#define BTN_CLEAR_LOCATION "clear_btn"
+#define BTN_EDIT "edit_btn"
+#define BTN_ENABLE "enable_btn"
+#define BTN_FORGET "forget_btn"
+#define BTN_PRIVATE "private_btn"
+#define BTN_REPORT "report_btn"
+#define BTN_SAVE "save_btn"
+#define BTN_SET_GROUP "Group_btn"
+#define BTN_SET_LOCATION "location_btn"
+
+
+class LLExperienceHandler : public LLCommandHandler
+{
+public:
+    LLExperienceHandler() : LLCommandHandler("experience", UNTRUSTED_THROTTLE) { }
+
+    bool handle(const LLSD& params, const LLSD& query_map,
+        LLMediaCtrl* web)
+    {
+        if(params.size() != 2 || params[1].asString() != "profile")
+            return false;
+
+        LLExperienceCache::get(params[0].asUUID(), boost::bind(&LLExperienceHandler::experienceCallback, this, _1));
+        return true;
+    }
+
+    void experienceCallback(const LLSD& experienceDetails)
+    {
+        if(!experienceDetails.has(LLExperienceCache::MISSING))
+        {
+            LLFloaterReg::showInstance("experience_profile", experienceDetails[LLExperienceCache::EXPERIENCE_ID].asUUID(), true);
+        }
+    }
+};
+
+LLExperienceHandler gExperienceHandler;
+
+
+LLFloaterExperienceProfile::LLFloaterExperienceProfile(const LLSD& data)
+    : LLFloater(data)
+    , mExperienceId(data.asUUID())
+    , mSaveCompleteAction(NOTHING)
+    , mDirty(false)
+    , mForceClose(false)
+{
+
+}
+
+
+LLFloaterExperienceProfile::~LLFloaterExperienceProfile()
+{
+
+}
+
+template<class T> 
+class HandleResponder : public LLHTTPClient::Responder
+{
+public:
+    HandleResponder(const LLHandle<T>& parent):mParent(parent){}
+    LLHandle<T> mParent;
+
+    virtual void httpFailure()
+    {
+        LL_WARNS() << "HandleResponder failed with code: " << getStatus() << ", reason: " << getReason() << LL_ENDL;
+    }
+};
+
+class ExperienceUpdateResponder : public HandleResponder<LLFloaterExperienceProfile>
+{
+public:
+    ExperienceUpdateResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder<LLFloaterExperienceProfile>(parent)
+    {
+    }
+
+    virtual void httpSuccess()
+    {
+        LLFloaterExperienceProfile* parent=mParent.get();
+        if(parent)
+        {
+            parent->onSaveComplete(getContent());
+        }
+    }
+};
+
+
+
+class ExperiencePreferencesResponder : public LLHTTPClient::Responder
+{
+public:
+    ExperiencePreferencesResponder(const LLUUID& single = LLUUID::null):mId(single)
+    {
+    }
+
+    bool sendSingle(const LLSD& content, const LLSD& permission, const char* name)
+    {
+        if(!content.has(name))
+            return false;
+
+        LLEventPump& pump = LLEventPumps::instance().obtain("experience_permission");
+        const LLSD& list = content[name];
+        LLSD::array_const_iterator it = list.beginArray();
+        while(it != list.endArray())
+        {
+            if(it->asUUID() == mId)
+            {
+                LLSD message;
+                message[it->asString()] = permission;
+                message["experience"] = mId;
+                pump.post(message);
+                return true;
+            }
+            ++it;
+        }
+        return false;
+    }
+
+    bool hasPermission(const LLSD& content, const char* name)
+    {
+        if(!content.has(name))
+            return false;
+
+        const LLSD& list = content[name];
+        LLSD::array_const_iterator it = list.beginArray();
+        while(it != list.endArray())
+        {
+            if(it->asUUID() == mId)
+            {
+                return true;
+            }
+            ++it;
+        }
+        return false;
+    }
+
+    const char* getPermission(const LLSD& content)
+    {
+        if(hasPermission(content, "experiences"))
+        {
+            return "Allow";
+        }
+        else if(hasPermission(content, "blocked"))
+        {
+            return "Block";
+        }
+        return "Forget";
+    }
+
+
+    virtual void httpSuccess()
+    {
+        if(mId.notNull())
+        {
+            post(getPermission(getContent()));
+            return;
+        }
+        LLEventPumps::instance().obtain("experience_permission").post(getContent());
+    }
+
+    void post( const char* perm )
+    {
+        LLSD experience;
+        LLSD message;
+        experience["permission"]=perm;
+        message["experience"] = mId;
+        message[mId.asString()] = experience;
+        LLEventPumps::instance().obtain("experience_permission").post(message);
+    }
+
+private:
+    LLUUID mId;
+};
+
+
+class IsAdminResponder : public HandleResponder<LLFloaterExperienceProfile>
+{
+public:
+    IsAdminResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder<LLFloaterExperienceProfile>(parent)
+    {
+    }
+    
+    virtual void httpSuccess()
+    {
+        LLFloaterExperienceProfile* parent = mParent.get();
+        if(!parent)
+            return;
+
+        bool enabled = true;
+        LLViewerRegion* region = gAgent.getRegion();
+        if (!region)
+        {
+            enabled = false;
+        }
+        else
+        {
+            std::string url=region->getCapability("UpdateExperience"); 
+            if(url.empty())
+                enabled = false;
+        }
+        if(enabled && getContent()["status"].asBoolean())
+        {
+            parent->getChild<LLLayoutPanel>(PNL_TOP)->setVisible(TRUE);
+            parent->getChild<LLButton>(BTN_EDIT)->setVisible(TRUE);
+        }
+    }
+};
+
+BOOL LLFloaterExperienceProfile::postBuild()
+{
+
+    if (mExperienceId.notNull())
+    {
+        LLExperienceCache::fetch(mExperienceId, true);
+        LLExperienceCache::get(mExperienceId, boost::bind(&LLFloaterExperienceProfile::experienceCallback, 
+            getDerivedHandle<LLFloaterExperienceProfile>(), _1)); 
+        
+        LLViewerRegion* region = gAgent.getRegion();
+        if (region)
+        {
+            std::string lookup_url=region->getCapability("IsExperienceAdmin"); 
+            if(!lookup_url.empty())
+            {
+                LLHTTPClient::get(lookup_url+"?experience_id="+mExperienceId.asString(), new IsAdminResponder(getDerivedHandle<LLFloaterExperienceProfile>()));
+            }
+        }
+    }
+
+    childSetAction(BTN_EDIT, boost::bind(&LLFloaterExperienceProfile::onClickEdit, this));
+    childSetAction(BTN_ALLOW, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Allow"));
+    childSetAction(BTN_FORGET, boost::bind(&LLFloaterExperienceProfile::onClickForget, this));
+    childSetAction(BTN_BLOCK, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Block"));
+    childSetAction(BTN_CANCEL, boost::bind(&LLFloaterExperienceProfile::onClickCancel, this));
+	childSetAction(BTN_SAVE, boost::bind(&LLFloaterExperienceProfile::onClickSave, this));
+	childSetAction(BTN_SET_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickLocation, this));
+	childSetAction(BTN_CLEAR_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickClear, this));
+	childSetAction(BTN_SET_GROUP, boost::bind(&LLFloaterExperienceProfile::onPickGroup, this));
+	childSetAction(BTN_REPORT, boost::bind(&LLFloaterExperienceProfile::onReportExperience, this));
+
+    getChild<LLTextEditor>(EDIT TF_DESC)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
+    getChild<LLUICtrl>(EDIT TF_MATURITY)->setCommitCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
+    getChild<LLLineEditor>(EDIT TF_MRKT)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+    getChild<LLLineEditor>(EDIT TF_NAME)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+    
+    childSetCommitCallback(EDIT BTN_ENABLE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+    childSetCommitCallback(EDIT BTN_PRIVATE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+
+    childSetCommitCallback(EDIT IMG_LOGO, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+
+    getChild<LLTextEditor>(EDIT TF_DESC)->setCommitOnFocusLost(TRUE);
+
+
+    LLEventPumps::instance().obtain("experience_permission").listen(mExperienceId.asString()+"-profile", 
+        boost::bind(&LLFloaterExperienceProfile::experiencePermission, getDerivedHandle<LLFloaterExperienceProfile>(this), _1));
+    
+    return TRUE;
+}
+
+void LLFloaterExperienceProfile::experienceCallback(LLHandle<LLFloaterExperienceProfile> handle,  const LLSD& experience )
+{
+    LLFloaterExperienceProfile* pllpep = handle.get();
+    if(pllpep)
+    {
+        pllpep->refreshExperience(experience);
+    }
+}
+
+
+bool LLFloaterExperienceProfile::experiencePermission( LLHandle<LLFloaterExperienceProfile> handle, const LLSD& permission )
+{
+    LLFloaterExperienceProfile* pllpep = handle.get();
+    if(pllpep)
+    {
+        pllpep->updatePermission(permission);
+    }
+    return false;
+}
+
+
+void LLFloaterExperienceProfile::onClickEdit()
+{
+    LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+
+    tabs->selectTabByName("edit_panel_experience_info");
+}
+
+
+void LLFloaterExperienceProfile::onClickCancel()
+{
+    changeToView();
+}
+
+void LLFloaterExperienceProfile::onClickSave()
+{
+    doSave(NOTHING);
+}
+
+
+void LLFloaterExperienceProfile::onClickPermission(const char* perm)
+{
+    LLViewerRegion* region = gAgent.getRegion();
+    if (!region)
+        return;
+   
+    std::string lookup_url=region->getCapability("ExperiencePreferences"); 
+    if(lookup_url.empty())
+        return;
+    LLSD permission;
+    LLSD data;
+    permission["permission"]=perm;
+
+    data[mExperienceId.asString()]=permission;
+    LLHTTPClient::put(lookup_url, data, new ExperiencePreferencesResponder(mExperienceId));
+   
+}
+
+
+void LLFloaterExperienceProfile::onClickForget()
+{
+    LLViewerRegion* region = gAgent.getRegion();
+    if (!region)
+        return;
+
+    std::string lookup_url=region->getCapability("ExperiencePreferences"); 
+    if(lookup_url.empty())
+        return;
+
+    LLHTTPClient::del(lookup_url+"?"+mExperienceId.asString(), new ExperiencePreferencesResponder(mExperienceId));
+}
+
+bool LLFloaterExperienceProfile::setMaturityString( U8 maturity, LLTextBox* child, LLComboBox* combo )
+{
+    LLStyle::Params style;
+    std::string access;
+    if(maturity <= SIM_ACCESS_PG)
+    {
+        style.image(LLUI::getUIImage(getString("maturity_icon_general")));
+        access = LLTrans::getString("SIM_ACCESS_PG");
+        combo->setCurrentByIndex(2);
+    }
+    else if(maturity <= SIM_ACCESS_MATURE)
+    {
+        style.image(LLUI::getUIImage(getString("maturity_icon_moderate")));
+        access = LLTrans::getString("SIM_ACCESS_MATURE");
+        combo->setCurrentByIndex(1);
+    }
+    else if(maturity <= SIM_ACCESS_ADULT)
+    {
+        style.image(LLUI::getUIImage(getString("maturity_icon_adult")));
+        access = LLTrans::getString("SIM_ACCESS_ADULT");
+        combo->setCurrentByIndex(0);
+    }
+    else
+    {
+        return false;
+    }
+
+    child->setText(LLStringUtil::null);
+
+    child->appendImageSegment(style);
+
+    child->appendText(access, false);
+    
+    return true;
+}
+
+
+void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience )
+{
+    mExperienceDetails = experience;
+    mPackage = experience;
+
+
+    LLLayoutPanel* imagePanel = getChild<LLLayoutPanel>(PNL_IMAGE);
+    LLLayoutPanel* descriptionPanel = getChild<LLLayoutPanel>(PNL_DESC);
+    LLLayoutPanel* locationPanel = getChild<LLLayoutPanel>(PNL_LOC);
+    LLLayoutPanel* marketplacePanel = getChild<LLLayoutPanel>(PNL_MRKT);  
+    LLLayoutPanel* topPanel = getChild<LLLayoutPanel>(PNL_TOP);  
+
+
+    imagePanel->setVisible(FALSE);
+    descriptionPanel->setVisible(FALSE);
+    locationPanel->setVisible(FALSE);
+    marketplacePanel->setVisible(FALSE);
+    topPanel->setVisible(FALSE);
+
+
+    LLTextBox* child = getChild<LLTextBox>(TF_NAME);
+    //child->setText(experience[LLExperienceCache::NAME].asString());
+	child->setText(LLSLURL("experience", experience[LLExperienceCache::EXPERIENCE_ID], "profile").getSLURLString());
+    
+    LLLineEditor* linechild = getChild<LLLineEditor>(EDIT TF_NAME);
+    linechild->setText(experience[LLExperienceCache::NAME].asString());
+    
+    std::string value = experience[LLExperienceCache::DESCRIPTION].asString();
+    LLExpandableTextBox* exchild = getChild<LLExpandableTextBox>(TF_DESC);
+    exchild->setText(value);
+    descriptionPanel->setVisible(value.length()>0);
+
+    LLTextEditor* edit_child = getChild<LLTextEditor>(EDIT TF_DESC);
+    edit_child->setText(value);
+   
+    mLocationSLURL = experience[LLExperienceCache::SLURL].asString();
+    child = getChild<LLTextBox>(TF_SLURL);
+    bool has_slurl = mLocationSLURL.length()>0;
+    locationPanel->setVisible(has_slurl);
+    mLocationSLURL = LLSLURL(mLocationSLURL).getSLURLString();
+    child->setText(mLocationSLURL);
+
+
+    child = getChild<LLTextBox>(EDIT TF_SLURL);
+    if(has_slurl)
+    {
+        child->setText(mLocationSLURL);
+    }
+    else
+    {
+        child->setText(getString("empty_slurl"));
+    }
+    
+    setMaturityString((U8)(experience[LLExperienceCache::MATURITY].asInteger()), getChild<LLTextBox>(TF_MATURITY), getChild<LLComboBox>(EDIT TF_MATURITY));
+
+    LLUUID id = experience[LLExperienceCache::AGENT_ID].asUUID();
+    child = getChild<LLTextBox>(TF_OWNER);
+    value = LLSLURL("agent", id, "inspect").getSLURLString();
+    child->setText(value);
+
+
+    id = experience[LLExperienceCache::GROUP_ID].asUUID();
+	bool id_null = id.isNull();
+    child = getChild<LLTextBox>(TF_GROUP);
+    value = LLSLURL("group", id, "inspect").getSLURLString();
+    child->setText(value);
+    getChild<LLLayoutPanel>(PNL_GROUP)->setVisible(!id_null);
+
+	setEditGroup(id);
+
+	getChild<LLButton>(BTN_SET_GROUP)->setEnabled(experience[LLExperienceCache::AGENT_ID].asUUID() == gAgent.getID());
+    
+    LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
+    S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
+    enable->set(!(properties & LLExperienceCache::PROPERTY_DISABLED)); 
+
+    enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
+    enable->set(properties & LLExperienceCache::PROPERTY_PRIVATE);  
+
+    topPanel->setVisible(TRUE);
+    child=getChild<LLTextBox>(TF_GRID_WIDE);
+    child->setVisible(TRUE);
+
+    if(properties & LLExperienceCache::PROPERTY_GRID)
+    {
+        child->setText(LLTrans::getString("Grid-Scope"));
+    }
+	else 
+	{
+        child->setText(LLTrans::getString("Land-Scope"));
+	}
+
+	if(getChild<LLButton>(BTN_EDIT)->getVisible())
+	{
+		topPanel->setVisible(TRUE);
+	}
+
+    if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
+    {
+        child = getChild<LLTextBox>(TF_PRIVILEGED);
+        child->setVisible(TRUE);
+    }
+    else
+    {
+        LLViewerRegion* region = gAgent.getRegion();
+        if (region)
+        {
+            std::string lookup_url=region->getCapability("ExperiencePreferences"); 
+            if(!lookup_url.empty())
+            {
+                LLHTTPClient::get(lookup_url+"?"+mExperienceId.asString(), new ExperiencePreferencesResponder(mExperienceId));
+            }
+        }
+    }
+            
+    value=experience[LLExperienceCache::METADATA].asString();
+    if(value.empty())
+        return;
+    
+    LLPointer<LLSDParser> parser = new LLSDXMLParser();
+
+    LLSD data;
+
+    std::istringstream is(value);
+    if(LLSDParser::PARSE_FAILURE != parser->parse(is, data, value.size()))
+    {
+        value="";
+        if(data.has(TF_MRKT))
+        {
+            value=data[TF_MRKT].asString();
+
+            child = getChild<LLTextBox>(TF_MRKT);
+            child->setText(value);
+            if(value.size())
+            {
+                marketplacePanel->setVisible(TRUE);
+            }
+            else
+            {
+                marketplacePanel->setVisible(FALSE);
+            }
+        }
+        else
+        {
+            marketplacePanel->setVisible(FALSE);
+        }
+        
+        linechild = getChild<LLLineEditor>(EDIT TF_MRKT);
+        linechild->setText(value);
+
+        if(data.has(IMG_LOGO))
+        {
+            LLTextureCtrl* logo = getChild<LLTextureCtrl>(IMG_LOGO);
+
+            LLUUID id = data[IMG_LOGO].asUUID();
+            logo->setImageAssetID(id);
+            imagePanel->setVisible(TRUE);
+
+            logo = getChild<LLTextureCtrl>(EDIT IMG_LOGO);
+            logo->setImageAssetID(data[IMG_LOGO].asUUID());
+
+            imagePanel->setVisible(id.notNull());
+        }
+    }
+    else
+    {
+        marketplacePanel->setVisible(FALSE);
+        imagePanel->setVisible(FALSE);
+    }
+
+    mDirty=false;
+    mForceClose = false;
+    getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
+}
+
+void LLFloaterExperienceProfile::setPreferences( const LLSD& content )
+{
+    S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
+    if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
+    {
+        return;
+    }
+
+    const LLSD& experiences = content["experiences"];
+    const LLSD& blocked = content["blocked"];
+
+
+    for(LLSD::array_const_iterator it = experiences.beginArray(); it != experiences.endArray() ; ++it)
+    {
+        if(it->asUUID()==mExperienceId)
+        {
+            experienceAllowed();
+            return;
+        }
+    }
+
+    for(LLSD::array_const_iterator it = blocked.beginArray(); it != blocked.endArray() ; ++it)
+    {
+        if(it->asUUID()==mExperienceId)
+        {
+            experienceBlocked();
+            return;
+        }
+    }
+
+    experienceForgotten();
+}
+
+void LLFloaterExperienceProfile::onFieldChanged()
+{
+    updatePackage();
+
+	if(!getChild<LLButton>(BTN_EDIT)->getVisible())
+	{
+		return;
+	}
+    LLSD::map_const_iterator st = mExperienceDetails.beginMap();
+    LLSD::map_const_iterator dt = mPackage.beginMap();
+
+    mDirty = false;
+    while( !mDirty && st != mExperienceDetails.endMap() && dt != mPackage.endMap())
+    {
+        mDirty = st->first != dt->first || st->second.asString() != dt->second.asString();
+        ++st;++dt;
+    }
+
+    if(!mDirty && (st != mExperienceDetails.endMap() || dt != mPackage.endMap()))
+    {
+        mDirty = true;
+    }
+
+    getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
+}
+
+
+BOOL LLFloaterExperienceProfile::canClose()
+{
+    if(mForceClose || !mDirty)
+    {
+        return TRUE;
+    }
+    else
+    {
+        // Bring up view-modal dialog: Save changes? Yes, No, Cancel
+        LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, CLOSE));
+        return FALSE;
+    }
+}
+
+bool LLFloaterExperienceProfile::handleSaveChangesDialog( const LLSD& notification, const LLSD& response, PostSaveAction action )
+{
+    S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
+    switch( option )
+    {
+    case 0:  // "Yes"
+        // close after saving
+        doSave( action );
+        break;
+
+    case 1:  // "No"
+        if(action != NOTHING)
+        {
+            mForceClose = TRUE;
+            if(action==CLOSE)
+            {
+                closeFloater();
+            }
+            else
+            {
+                changeToView();
+            }
+        }
+        break;
+
+    case 2: // "Cancel"
+    default:
+        // If we were quitting, we didn't really mean it.
+        LLAppViewer::instance()->abortQuit();
+        break;
+    }
+    return false;
+}
+
+void LLFloaterExperienceProfile::doSave( int success_action )
+{
+    mSaveCompleteAction=success_action;
+
+    LLViewerRegion* region = gAgent.getRegion();
+    if (!region)
+        return;
+
+    std::string url=region->getCapability("UpdateExperience"); 
+    if(url.empty())
+        return;
+
+	mPackage.erase(LLExperienceCache::QUOTA);
+	mPackage.erase(LLExperienceCache::EXPIRES);
+	mPackage.erase(LLExperienceCache::AGENT_ID);
+    
+    LLHTTPClient::post(url, mPackage, new ExperienceUpdateResponder(getDerivedHandle<LLFloaterExperienceProfile>()));
+}
+
+void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
+{
+    LLUUID id = getExperienceId();
+
+	if(content.has("removed"))
+	{
+		const LLSD& removed = content["removed"];
+		LLSD::map_const_iterator it = removed.beginMap();
+		for(/**/; it != removed.endMap(); ++it)
+		{
+			const std::string& field = it->first;
+			if(field == LLExperienceCache::EXPERIENCE_ID)
+			{
+				//this message should be removed by the experience api
+				continue;
+			}
+			const LLSD& data = it->second;
+			std::string error_tag = data["error_tag"].asString()+ "ExperienceProfileMessage";
+			LLSD fields;
+			if( LLNotifications::instance().getTemplate(error_tag))
+			{
+				fields["field"] = field;
+				fields["extra_info"] = data["extra_info"];
+				LLNotificationsUtil::add(error_tag, fields);
+			}
+			else
+			{
+				fields["MESSAGE"]=data["en"];
+				LLNotificationsUtil::add("GenericAlert", fields);
+			}
+		}		
+	}
+
+    if(!content.has("experience_keys"))
+    {
+        LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with bad content" << LL_ENDL;
+        return;
+    }
+
+    const LLSD& experiences = content["experience_keys"];
+
+    LLSD::array_const_iterator it = experiences.beginArray();
+    if(it == experiences.endArray())
+    {
+        LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with empty content" << LL_ENDL;
+        return;
+    }
+
+    if(!it->has(LLExperienceCache::EXPERIENCE_ID) || ((*it)[LLExperienceCache::EXPERIENCE_ID].asUUID() != id))
+    {
+        LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with unexpected experience id" << LL_ENDL;
+        return;
+    }
+ 
+    refreshExperience(*it);
+    LLExperienceCache::insert(*it);
+    LLExperienceCache::fetch(id, true);
+
+    if(mSaveCompleteAction==VIEW)
+    {
+        LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+        tabs->selectTabByName("panel_experience_info");
+    }
+    else if(mSaveCompleteAction == CLOSE)
+    {
+        closeFloater();
+    }   
+}
+
+void LLFloaterExperienceProfile::changeToView()
+{
+    if(mForceClose || !mDirty)
+    {
+        refreshExperience(mExperienceDetails);
+        LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+
+        tabs->selectTabByName("panel_experience_info");
+    }
+    else
+    {
+        // Bring up view-modal dialog: Save changes? Yes, No, Cancel
+        LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, VIEW));
+    }
+}
+
+void LLFloaterExperienceProfile::onClickLocation()
+{
+    LLViewerRegion* region = gAgent.getRegion();
+    if(region)
+    {
+        LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
+		mLocationSLURL = LLSLURL(region->getName(), gAgent.getPositionGlobal()).getSLURLString();
+        child->setText(mLocationSLURL);
+        onFieldChanged();
+    }
+}
+
+void LLFloaterExperienceProfile::onClickClear()
+{
+    LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
+	mLocationSLURL = "";
+    child->setText(getString("empty_slurl"));
+    onFieldChanged();
+}
+
+void LLFloaterExperienceProfile::updatePermission( const LLSD& permission )
+{
+    if(permission.has("experience"))
+    {
+        if(permission["experience"].asUUID() != mExperienceId)
+        {
+            return;
+        }
+
+        std::string str = permission[mExperienceId.asString()]["permission"].asString();
+        if(str == "Allow")
+        {
+            experienceAllowed();
+        }
+        else if(str == "Block")
+        {
+            experienceBlocked();
+        }
+        else if(str == "Forget")
+        {
+            experienceForgotten();
+        }
+    }
+    else
+    {
+        setPreferences(permission);
+    }
+}
+
+void LLFloaterExperienceProfile::experienceAllowed()
+{
+    LLButton* button=getChild<LLButton>(BTN_ALLOW);
+    button->setEnabled(FALSE);
+
+    button=getChild<LLButton>(BTN_FORGET);
+    button->setEnabled(TRUE);
+
+    button=getChild<LLButton>(BTN_BLOCK);
+    button->setEnabled(TRUE);
+}
+
+void LLFloaterExperienceProfile::experienceForgotten()
+{
+    LLButton* button=getChild<LLButton>(BTN_ALLOW);
+    button->setEnabled(TRUE);
+
+    button=getChild<LLButton>(BTN_FORGET);
+    button->setEnabled(FALSE);
+
+    button=getChild<LLButton>(BTN_BLOCK);
+    button->setEnabled(TRUE);
+}
+
+void LLFloaterExperienceProfile::experienceBlocked()
+{
+    LLButton* button=getChild<LLButton>(BTN_ALLOW);
+    button->setEnabled(TRUE);
+
+    button=getChild<LLButton>(BTN_FORGET);
+    button->setEnabled(TRUE);
+
+    button=getChild<LLButton>(BTN_BLOCK);
+    button->setEnabled(FALSE);
+}
+
+void LLFloaterExperienceProfile::onClose( bool app_quitting )
+{
+    LLEventPumps::instance().obtain("experience_permission").stopListening(mExperienceId.asString()+"-profile");
+    LLFloater::onClose(app_quitting);
+}
+
+void LLFloaterExperienceProfile::updatePackage()
+{
+    mPackage[LLExperienceCache::NAME] = getChild<LLLineEditor>(EDIT TF_NAME)->getText();
+    mPackage[LLExperienceCache::DESCRIPTION] = getChild<LLTextEditor>(EDIT TF_DESC)->getText();
+	if(mLocationSLURL.empty())
+    {
+        mPackage[LLExperienceCache::SLURL] = LLStringUtil::null;
+    }
+    else
+    {
+        mPackage[LLExperienceCache::SLURL] = mLocationSLURL;
+    }
+
+    mPackage[LLExperienceCache::MATURITY] = getChild<LLComboBox>(EDIT TF_MATURITY)->getSelectedValue().asInteger();
+
+    LLSD metadata;
+
+    metadata[TF_MRKT] = getChild<LLLineEditor>(EDIT TF_MRKT)->getText();
+    metadata[IMG_LOGO] = getChild<LLTextureCtrl>(EDIT IMG_LOGO)->getImageAssetID();
+
+    LLPointer<LLSDXMLFormatter> formatter = new LLSDXMLFormatter();
+
+    std::ostringstream os;
+    if(formatter->format(metadata, os))
+    {
+        mPackage[LLExperienceCache::METADATA]=os.str();
+    }
+
+    int properties = mPackage[LLExperienceCache::PROPERTIES].asInteger();
+    LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
+    if(enable->get())
+    {
+        properties &= ~LLExperienceCache::PROPERTY_DISABLED;
+    }
+    else
+    {
+        properties |= LLExperienceCache::PROPERTY_DISABLED;
+    }
+
+    enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
+    if(enable->get())
+    {
+        properties |= LLExperienceCache::PROPERTY_PRIVATE;
+    }
+    else
+    {
+        properties &= ~LLExperienceCache::PROPERTY_PRIVATE;
+    }
+
+    mPackage[LLExperienceCache::PROPERTIES] = properties;
+}
+
+void LLFloaterExperienceProfile::onPickGroup()
+{
+	LLFloater* parent_floater = gFloaterView->getParentFloater(this);
+
+	LLFloaterGroupPicker* widget = LLFloaterReg::showTypedInstance<LLFloaterGroupPicker>("group_picker", LLSD(gAgent.getID()));
+	if (widget)
+	{
+		widget->setSelectGroupCallback(boost::bind(&LLFloaterExperienceProfile::setEditGroup, this, _1));
+		if (parent_floater)
+		{
+			LLRect new_rect = gFloaterView->findNeighboringPosition(parent_floater, widget);
+			widget->setOrigin(new_rect.mLeft, new_rect.mBottom);
+			parent_floater->addDependentFloater(widget);
+		}
+	}
+}
+
+void LLFloaterExperienceProfile::setEditGroup( LLUUID group_id )
+{
+	LLTextBox* child = getChild<LLTextBox>(EDIT TF_GROUP);
+	std::string value = LLSLURL("group", group_id, "inspect").getSLURLString();
+	child->setText(value);
+	mPackage[LLExperienceCache::GROUP_ID] = group_id;
+	onFieldChanged();
+}
+
+void LLFloaterExperienceProfile::onReportExperience()
+{
+	LLFloaterReporter::showFromExperience(mExperienceId);
+}
diff --git a/indra/newview/llfloaterexperienceprofile.h b/indra/newview/llfloaterexperienceprofile.h
new file mode 100644
index 0000000000000000000000000000000000000000..78d54eb447b37383537c4b9ffceddc7920052661
--- /dev/null
+++ b/indra/newview/llfloaterexperienceprofile.h
@@ -0,0 +1,104 @@
+/** 
+ * @file llfloaterexperienceprofile.h
+ * @brief llfloaterexperienceprofile and related class definitions
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+
+#ifndef LL_LLFLOATEREXPERIENCEPROFILE_H
+#define LL_LLFLOATEREXPERIENCEPROFILE_H
+
+#include "llfloater.h"
+#include "lluuid.h"
+#include "llsd.h"
+
+class LLLayoutPanel;
+class LLTextBox;
+class LLComboBox;
+
+class LLFloaterExperienceProfile : public LLFloater
+{
+    LOG_CLASS(LLFloaterExperienceProfile);
+public:
+    enum PostSaveAction
+    {
+        NOTHING,
+        CLOSE,
+        VIEW,
+    };
+
+
+    LLFloaterExperienceProfile(const LLSD& data);
+    virtual ~LLFloaterExperienceProfile();
+
+    LLUUID getExperienceId() const { return mExperienceId; }
+    void setPreferences( const LLSD& content );
+
+
+    void refreshExperience(const LLSD& experience);
+    void onSaveComplete( const LLSD& content );
+    virtual BOOL canClose();
+
+    virtual void onClose(bool app_quitting);
+protected:
+    void onClickEdit();
+    void onClickPermission(const char* permission);
+    void onClickForget();
+    void onClickCancel();
+    void onClickSave();
+    void onClickLocation();
+	void onClickClear();
+	void onPickGroup();
+	void onFieldChanged();
+	void onReportExperience();
+
+	void setEditGroup(LLUUID group_id);
+
+    void changeToView();
+
+    void experienceForgotten();
+    void experienceBlocked();
+    void experienceAllowed();
+
+    static void experienceCallback(LLHandle<LLFloaterExperienceProfile> handle, const LLSD& experience);
+    static bool experiencePermission(LLHandle<LLFloaterExperienceProfile> handle, const LLSD& permission);
+
+    BOOL postBuild();
+    bool setMaturityString(U8 maturity, LLTextBox* child, LLComboBox* combo);
+    bool handleSaveChangesDialog(const LLSD& notification, const LLSD& response, PostSaveAction action);
+    void doSave( int success_action );
+
+    void updatePackage();
+
+    void updatePermission( const LLSD& permission );
+    LLUUID mExperienceId;
+    LLSD mExperienceDetails;
+    LLSD mPackage;
+	std::string mLocationSLURL;
+    int mSaveCompleteAction;
+    bool mDirty;
+    bool mForceClose;
+};
+
+#endif // LL_LLFLOATEREXPERIENCEPROFILE_H
diff --git a/indra/newview/llfloaterexperiences.cpp b/indra/newview/llfloaterexperiences.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..777dc382cd903dc688cce12c62447f08038a5579
--- /dev/null
+++ b/indra/newview/llfloaterexperiences.cpp
@@ -0,0 +1,340 @@
+/** 
+ * @file llfloaterexperiences.cpp
+ * @brief LLFloaterExperiences class implementation
+ *
+ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2012, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+#include "llfloaterexperiences.h"
+#include "llfloaterreg.h"
+
+#include "llagent.h"
+#include "llevents.h"
+#include "llexperiencecache.h"
+#include "llfloaterregioninfo.h"
+#include "llhttpclient.h"
+#include "llnotificationsutil.h"
+#include "llpanelexperiencelog.h"
+#include "llpanelexperiencepicker.h"
+#include "llpanelexperiences.h"
+#include "lltabcontainer.h"
+#include "lltrans.h"
+#include "llviewerregion.h"
+
+
+#define SHOW_RECENT_TAB (0)
+
+class LLExperienceListResponder : public LLHTTPClient::Responder
+{
+public:
+    typedef std::map<std::string, std::string> NameMap;
+	typedef boost::function<void(LLPanelExperiences*, const LLSD&)> Callback;
+	LLExperienceListResponder(const LLHandle<LLFloaterExperiences>& parent, NameMap& nameMap, const std::string& errorMessage="ErrorMessage"):mParent(parent),mErrorMessage(errorMessage)
+	{
+		mNameMap.swap(nameMap);
+	}
+
+	Callback mCallback;
+    LLHandle<LLFloaterExperiences> mParent;
+    NameMap mNameMap;
+	const std::string mErrorMessage;
+    /*virtual*/ void httpSuccess()
+    {
+        if(mParent.isDead())
+            return;
+
+        LLFloaterExperiences* parent=mParent.get();
+        LLTabContainer* tabs = parent->getChild<LLTabContainer>("xp_tabs");
+ 
+        NameMap::iterator it = mNameMap.begin();
+        while(it != mNameMap.end())
+        {
+            if(getContent().has(it->first))
+            {
+                LLPanelExperiences* tab = (LLPanelExperiences*)tabs->getPanelByName(it->second);
+                if(tab)
+                {
+                    const LLSD& ids = getContent()[it->first];
+                    tab->setExperienceList(ids);
+					if(!mCallback.empty())
+					{
+						mCallback(tab, getContent());
+					}
+                }
+            }
+            ++it;
+        }
+    }
+
+	/*virtual*/ void httpFailure()
+	{
+		LLSD subs;
+		subs["ERROR_MESSAGE"] = getReason();
+		LLNotificationsUtil::add(mErrorMessage, subs);
+	}
+};
+
+
+
+LLFloaterExperiences::LLFloaterExperiences(const LLSD& data)
+	:LLFloater(data)
+{
+}
+
+LLPanelExperiences* LLFloaterExperiences::addTab(const std::string& name, bool select)
+{
+	LLPanelExperiences* newPanel = LLPanelExperiences::create(name);
+    getChild<LLTabContainer>("xp_tabs")->addTabPanel(LLTabContainer::TabPanelParams().
+        panel(newPanel).
+        label(LLTrans::getString(name)).
+        select_tab(select));
+
+	return newPanel;
+}
+
+BOOL LLFloaterExperiences::postBuild()
+{
+	getChild<LLTabContainer>("xp_tabs")->addTabPanel(new LLPanelExperiencePicker());
+    addTab("Allowed_Experiences_Tab", true);
+    addTab("Blocked_Experiences_Tab", false);
+    addTab("Admin_Experiences_Tab", false);
+    addTab("Contrib_Experiences_Tab", false);
+	LLPanelExperiences* owned = addTab("Owned_Experiences_Tab", false);
+	owned->setButtonAction("acquire", boost::bind(&LLFloaterExperiences::sendPurchaseRequest, this));
+	owned->enableButton(false);
+#if SHOW_RECENT_TAB
+	addTab("Recent_Experiences_Tab", false);
+#endif //SHOW_RECENT_TAB
+	getChild<LLTabContainer>("xp_tabs")->addTabPanel(new LLPanelExperienceLog());
+    resizeToTabs();
+
+   
+    LLEventPumps::instance().obtain("experience_permission").listen("LLFloaterExperiences", 
+        boost::bind(&LLFloaterExperiences::updatePermissions, this, _1));
+     
+   	return TRUE;
+}
+
+
+void LLFloaterExperiences::clearFromRecent(const LLSD& ids)
+{
+#if SHOW_RECENT_TAB
+    LLTabContainer* tabs = getChild<LLTabContainer>("xp_tabs");
+
+    LLPanelExperiences* tab = (LLPanelExperiences*)tabs->getPanelByName("Recent_Experiences_Tab");
+    if(!tab)
+        return;
+
+    tab->removeExperiences(ids);
+#endif // SHOW_RECENT_TAB
+}
+
+void LLFloaterExperiences::setupRecentTabs()
+{
+#if SHOW_RECENT_TAB
+    LLTabContainer* tabs = getChild<LLTabContainer>("xp_tabs");
+
+    LLPanelExperiences* tab = (LLPanelExperiences*)tabs->getPanelByName("Recent_Experiences_Tab");
+    if(!tab)
+        return;
+
+    LLSD recent;
+
+    const LLExperienceCache::cache_t& experiences = LLExperienceCache::getCached();
+
+    LLExperienceCache::cache_t::const_iterator it = experiences.begin();
+    while( it != experiences.end() )
+    {
+        if(!it->second.has(LLExperienceCache::MISSING))
+        {
+            recent.append(it->first);
+        }
+        ++it;
+    }
+
+    tab->setExperienceList(recent);
+#endif // SHOW_RECENT_TAB
+}
+
+
+void LLFloaterExperiences::resizeToTabs()
+{
+    const S32 TAB_WIDTH_PADDING = 16;
+
+    LLTabContainer* tabs = getChild<LLTabContainer>("xp_tabs");
+    LLRect rect = getRect();
+    if(rect.getWidth() < tabs->getTotalTabWidth() + TAB_WIDTH_PADDING)
+    {
+        rect.mRight = rect.mLeft + tabs->getTotalTabWidth() + TAB_WIDTH_PADDING;
+    }
+    reshape(rect.getWidth(), rect.getHeight(), FALSE);
+}
+
+void LLFloaterExperiences::refreshContents()
+{
+    setupRecentTabs();
+
+    LLViewerRegion* region = gAgent.getRegion();
+
+    if (region)
+    {
+        LLExperienceListResponder::NameMap nameMap;
+        std::string lookup_url=region->getCapability("GetExperiences"); 
+        if(!lookup_url.empty())
+        {
+            nameMap["experiences"]="Allowed_Experiences_Tab";
+            nameMap["blocked"]="Blocked_Experiences_Tab";
+            LLHTTPClient::get(lookup_url, new LLExperienceListResponder(getDerivedHandle<LLFloaterExperiences>(), nameMap));
+        }
+
+        updateInfo("GetAdminExperiences","Admin_Experiences_Tab");
+        updateInfo("GetCreatorExperiences","Contrib_Experiences_Tab");
+
+		lookup_url = region->getCapability("AgentExperiences"); 
+		if(!lookup_url.empty())
+		{
+			nameMap["experience_ids"]="Owned_Experiences_Tab";
+			LLExperienceListResponder* responder = new LLExperienceListResponder(getDerivedHandle<LLFloaterExperiences>(), nameMap, "ExperienceAcquireFailed");
+			responder->mCallback = boost::bind(&LLFloaterExperiences::checkPurchaseInfo, this, _1, _2);
+			LLHTTPClient::get(lookup_url, responder);
+		}
+    }
+}
+
+void LLFloaterExperiences::onOpen( const LLSD& key )
+{
+    LLViewerRegion* region = gAgent.getRegion();
+    if(region)
+    {
+        if(region->capabilitiesReceived())
+        {
+            refreshContents();
+            return;
+        }
+        region->setCapabilitiesReceivedCallback(boost::bind(&LLFloaterExperiences::refreshContents, this));
+        return;
+    }
+}
+
+bool LLFloaterExperiences::updatePermissions( const LLSD& permission )
+{
+    LLTabContainer* tabs = getChild<LLTabContainer>("xp_tabs");
+    LLUUID experience;
+    std::string permission_string;
+    if(permission.has("experience"))
+    {
+        experience = permission["experience"].asUUID();
+        permission_string = permission[experience.asString()]["permission"].asString();
+
+    }
+    LLPanelExperiences* tab = (LLPanelExperiences*)tabs->getPanelByName("Allowed_Experiences_Tab");
+    if(tab)
+    {
+        if(permission.has("experiences"))
+        {
+            tab->setExperienceList(permission["experiences"]);
+        }
+        else if(experience.notNull())
+        {
+            if(permission_string != "Allow")
+            {
+                tab->removeExperience(experience);
+            }
+            else
+            {
+                tab->addExperience(experience);
+            }
+        }
+    }
+    
+    tab = (LLPanelExperiences*)tabs->getPanelByName("Blocked_Experiences_Tab");
+    if(tab)
+    {
+        if(permission.has("blocked"))
+        {
+            tab->setExperienceList(permission["blocked"]);
+        }
+        else if(experience.notNull())
+        {
+            if(permission_string != "Block")
+            {
+                tab->removeExperience(experience);
+            }
+            else
+            {
+                tab->addExperience(experience);
+            }
+        }
+    }
+    return false;
+}
+
+void LLFloaterExperiences::onClose( bool app_quitting )
+{
+    LLEventPumps::instance().obtain("experience_permission").stopListening("LLFloaterExperiences");
+    LLFloater::onClose(app_quitting);
+}
+
+void LLFloaterExperiences::checkPurchaseInfo(LLPanelExperiences* panel, const LLSD& content) const
+{
+	panel->enableButton(content.has("purchase"));
+
+	LLFloaterExperiences::findInstance()->updateInfo("GetAdminExperiences","Admin_Experiences_Tab");
+	LLFloaterExperiences::findInstance()->updateInfo("GetCreatorExperiences","Contrib_Experiences_Tab");
+}
+
+void LLFloaterExperiences::updateInfo(std::string experiences, std::string tab)
+{
+	LLViewerRegion* region = gAgent.getRegion();
+	if (region)
+	{
+		LLExperienceListResponder::NameMap nameMap;
+		std::string lookup_url = region->getCapability(experiences);
+		if(!lookup_url.empty())
+		{
+			nameMap["experience_ids"]=tab;
+			LLHTTPClient::get(lookup_url, new LLExperienceListResponder(getDerivedHandle<LLFloaterExperiences>(), nameMap));
+		}
+	}
+}
+
+void LLFloaterExperiences::sendPurchaseRequest() const
+{
+	LLViewerRegion* region = gAgent.getRegion();
+	std::string url = region->getCapability("AgentExperiences");
+	if(!url.empty())
+	{
+		LLSD content;
+
+		LLExperienceListResponder::NameMap nameMap;
+		nameMap["experience_ids"]="Owned_Experiences_Tab";
+		LLExperienceListResponder* responder = new LLExperienceListResponder(getDerivedHandle<LLFloaterExperiences>(), nameMap, "ExperienceAcquireFailed");
+		responder->mCallback = boost::bind(&LLFloaterExperiences::checkPurchaseInfo, this, _1, _2);
+		LLHTTPClient::post(url, content, responder);
+	}
+}
+
+LLFloaterExperiences* LLFloaterExperiences::findInstance()
+{
+	return LLFloaterReg::findTypedInstance<LLFloaterExperiences>("experiences");
+}
diff --git a/indra/newview/llfloaterexperiences.h b/indra/newview/llfloaterexperiences.h
new file mode 100644
index 0000000000000000000000000000000000000000..769283ff075f9b48f494decf6588f9de415927ef
--- /dev/null
+++ b/indra/newview/llfloaterexperiences.h
@@ -0,0 +1,60 @@
+/** 
+ * @file llfloaterexperiences.h
+ * @brief LLFloaterExperiences class definition
+ *
+ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2012, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#ifndef LL_LLFLOATEREXPERIENCES_H
+#define LL_LLFLOATEREXPERIENCES_H
+
+#include "llfloater.h"
+
+class LLPanelExperiences;
+
+class LLFloaterExperiences :
+	public LLFloater
+{
+public:
+    LLFloaterExperiences(const LLSD& data);
+    virtual void onClose(bool app_quitting);
+
+    virtual void onOpen(const LLSD& key);
+    static LLFloaterExperiences* findInstance();
+protected:
+    void clearFromRecent(const LLSD& ids);
+    void resizeToTabs();
+	/*virtual*/ BOOL	postBuild();
+    void refreshContents();
+    void setupRecentTabs();
+    LLPanelExperiences* addTab(const std::string& name, bool select);
+
+    bool updatePermissions(const LLSD& permission);
+	void sendPurchaseRequest() const;
+	void checkPurchaseInfo(LLPanelExperiences* panel, const LLSD& content)const;
+	void updateInfo(std::string experiences, std::string tab);
+
+private:
+
+};
+
+#endif //LL_LLFLOATEREXPERIENCES_H
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp
index 5ebd25d228731d9463a4251a337f5417a39db598..f9c39a02c9d5e85ec83d606fe0cc1df5daf82773 100755
--- a/indra/newview/llfloaterland.cpp
+++ b/indra/newview/llfloaterland.cpp
@@ -75,6 +75,9 @@
 #include "llviewercontrol.h"
 #include "roles_constants.h"
 #include "lltrans.h"
+#include "llpanelexperiencelisteditor.h"
+#include "llpanelexperiencepicker.h"
+#include "llexperiencecache.h"
 
 #include "llgroupactions.h"
 
@@ -110,6 +113,28 @@ public:
 	}
 };
 
+
+class LLPanelLandExperiences
+	:	public LLPanel
+{
+public:	
+	LLPanelLandExperiences(LLSafeHandle<LLParcelSelection>& parcelp);
+	virtual BOOL postBuild();
+	void refresh();
+
+	void experienceAdded(const LLUUID& id, U32 xp_type, U32 access_type);
+	void experienceRemoved(const LLUUID& id, U32 access_type);
+protected:
+	LLPanelExperienceListEditor* setupList( const char* control_name, U32 xp_type, U32 access_type );
+	void refreshPanel(LLPanelExperienceListEditor* panel, U32 xp_type);
+
+	LLSafeHandle<LLParcelSelection>&	mParcel;
+
+
+	LLPanelExperienceListEditor* mAllowed;
+	LLPanelExperienceListEditor* mBlocked;
+};
+
 // inserts maturity info(icon and text) into target textbox 
 // names_floater - pointer to floater which contains strings with maturity icons filenames
 // str_to_parse is string in format "txt1[MATURITY]txt2" where maturity icon and text will be inserted instead of [MATURITY]
@@ -248,6 +273,7 @@ LLFloaterLand::LLFloaterLand(const LLSD& seed)
 	mFactoryMap["land_audio_panel"] =	LLCallbackMap(createPanelLandAudio, this);
 	mFactoryMap["land_media_panel"] =	LLCallbackMap(createPanelLandMedia, this);
 	mFactoryMap["land_access_panel"] =	LLCallbackMap(createPanelLandAccess, this);
+	mFactoryMap["land_experiences_panel"] =	LLCallbackMap(createPanelLandExperiences, this);
 
 	sObserver = new LLParcelSelectionObserver();
 	LLViewerParcelMgr::getInstance()->addObserver( sObserver );
@@ -288,6 +314,7 @@ void LLFloaterLand::refresh()
 	mPanelMedia->refresh();
 	mPanelAccess->refresh();
 	mPanelCovenant->refresh();
+	mPanelExperiences->refresh();
 }
 
 
@@ -348,6 +375,15 @@ void* LLFloaterLand::createPanelLandAccess(void* data)
 	return self->mPanelAccess;
 }
 
+// static
+void* LLFloaterLand::createPanelLandExperiences(void* data)
+{
+	LLFloaterLand* self = (LLFloaterLand*)data;
+	self->mPanelExperiences = new LLPanelLandExperiences(self->mParcel);
+	return self->mPanelExperiences;
+}
+
+
 //---------------------------------------------------------------------------
 // LLPanelLandGeneral
 //---------------------------------------------------------------------------
@@ -2404,7 +2440,7 @@ void LLPanelLandAccess::refresh()
 			getChild<LLUICtrl>("AccessList")->setToolTipArg(LLStringExplicit("[LISTED]"), llformat("%d",count));
 			getChild<LLUICtrl>("AccessList")->setToolTipArg(LLStringExplicit("[MAX]"), llformat("%d",PARCEL_MAX_ACCESS_LIST));
 
-			for (access_map_const_iterator cit = parcel->mAccessList.begin();
+			for (LLAccessEntry::map::const_iterator cit = parcel->mAccessList.begin();
 				 cit != parcel->mAccessList.end(); ++cit)
 			{
 				const LLAccessEntry& entry = (*cit).second;
@@ -2450,7 +2486,7 @@ void LLPanelLandAccess::refresh()
 			getChild<LLUICtrl>("BannedList")->setToolTipArg(LLStringExplicit("[LISTED]"), llformat("%d",count));
 			getChild<LLUICtrl>("BannedList")->setToolTipArg(LLStringExplicit("[MAX]"), llformat("%d",PARCEL_MAX_ACCESS_LIST));
 
-			for (access_map_const_iterator cit = parcel->mBanList.begin();
+			for (LLAccessEntry::map::const_iterator cit = parcel->mBanList.begin();
 				 cit != parcel->mBanList.end(); ++cit)
 			{
 				const LLAccessEntry& entry = (*cit).second;
@@ -3039,3 +3075,103 @@ void insert_maturity_into_textbox(LLTextBox* target_textbox, LLFloater* names_fl
 	target_textbox->appendText(LLViewerParcelMgr::getInstance()->getSelectionRegion()->getSimAccessString(), false);
 	target_textbox->appendText(text_after_rating, false);
 }
+
+LLPanelLandExperiences::LLPanelLandExperiences( LLSafeHandle<LLParcelSelection>& parcelp ) 
+	: mParcel(parcelp)
+{
+
+}
+
+
+BOOL LLPanelLandExperiences::postBuild()
+{
+	mAllowed = setupList("panel_allowed", EXPERIENCE_KEY_TYPE_ALLOWED, AL_ALLOW_EXPERIENCE);
+	mBlocked = setupList("panel_blocked", EXPERIENCE_KEY_TYPE_BLOCKED, AL_BLOCK_EXPERIENCE);
+
+	// only non-grid-wide experiences
+	mAllowed->addFilter(boost::bind(LLPanelExperiencePicker::FilterWithProperty, _1, LLExperienceCache::PROPERTY_GRID));
+
+	// no privileged ones
+	mBlocked->addFilter(boost::bind(LLPanelExperiencePicker::FilterWithoutProperties, _1, LLExperienceCache::PROPERTY_PRIVILEGED|LLExperienceCache::PROPERTY_GRID));
+
+	getChild<LLLayoutPanel>("trusted_layout_panel")->setVisible(FALSE);
+	getChild<LLTextBox>("experiences_help_text")->setVisible(FALSE);
+	getChild<LLTextBox>("allowed_text_help")->setText(getString("allowed_parcel_text"));
+	getChild<LLTextBox>("blocked_text_help")->setText(getString("blocked_parcel_text"));
+	
+	return LLPanel::postBuild();
+}
+
+LLPanelExperienceListEditor* LLPanelLandExperiences::setupList( const char* control_name, U32 xp_type, U32 access_type )
+{
+	LLPanelExperienceListEditor* child = findChild<LLPanelExperienceListEditor>(control_name);
+	if(child)
+	{
+		child->getChild<LLTextBox>("text_name")->setText(child->getString(control_name));
+		child->setMaxExperienceIDs(PARCEL_MAX_EXPERIENCE_LIST);
+		child->setAddedCallback(boost::bind(&LLPanelLandExperiences::experienceAdded, this, _1, xp_type, access_type));
+		child->setRemovedCallback(boost::bind(&LLPanelLandExperiences::experienceRemoved, this, _1, access_type));
+	}
+
+	return child;
+}
+
+void LLPanelLandExperiences::experienceAdded( const LLUUID& id, U32 xp_type, U32 access_type )
+{
+	LLParcel* parcel = mParcel->getParcel();
+	if (parcel)
+	{			
+		parcel->setExperienceKeyType(id, xp_type);
+		LLViewerParcelMgr::getInstance()->sendParcelAccessListUpdate(access_type);
+		refresh();
+	}
+}
+
+void LLPanelLandExperiences::experienceRemoved( const LLUUID& id, U32 access_type )
+{
+	LLParcel* parcel = mParcel->getParcel();
+	if (parcel)
+	{			
+		parcel->setExperienceKeyType(id, EXPERIENCE_KEY_TYPE_NONE);
+		LLViewerParcelMgr::getInstance()->sendParcelAccessListUpdate(access_type);
+		refresh();
+	}
+}
+
+void LLPanelLandExperiences::refreshPanel(LLPanelExperienceListEditor* panel, U32 xp_type)
+{
+	LLParcel *parcel = mParcel->getParcel();
+
+	// Display options
+	if (panel == NULL)
+	{
+		return;
+	}
+	if (parcel == NULL)
+	{
+		// disable the panel
+		panel->setEnabled(FALSE);
+		panel->setExperienceIds(LLSD::emptyArray());
+	}
+	else
+	{
+		// enable the panel
+		panel->setEnabled(TRUE);
+		LLAccessEntry::map entries = parcel->getExperienceKeysByType(xp_type);
+		LLAccessEntry::map::iterator it = entries.begin();
+		LLSD ids = LLSD::emptyArray();
+		for (/**/; it != entries.end(); ++it)
+		{
+			ids.append(it->second.mID);
+		}
+		panel->setExperienceIds(ids);
+		panel->setReadonly(!LLViewerParcelMgr::isParcelModifiableByAgent(parcel, GP_LAND_OPTIONS));
+		panel->refreshExperienceCounter();
+	}
+}
+
+void LLPanelLandExperiences::refresh()
+{
+	refreshPanel(mAllowed, EXPERIENCE_KEY_TYPE_ALLOWED);
+	refreshPanel(mBlocked, EXPERIENCE_KEY_TYPE_BLOCKED);
+}
diff --git a/indra/newview/llfloaterland.h b/indra/newview/llfloaterland.h
index 1d9bd33720ea5df87229272efa0d00ba684e11fd..8e8b61c333a6db0f2fe8486392e7cde448e2960b 100755
--- a/indra/newview/llfloaterland.h
+++ b/indra/newview/llfloaterland.h
@@ -66,6 +66,7 @@ class LLPanelLandBan;
 class LLPanelLandRenters;
 class LLPanelLandCovenant;
 class LLParcel;
+class LLPanelLandExperiences;
 
 class LLFloaterLand
 :	public LLFloater
@@ -101,6 +102,7 @@ protected:
 	static void* createPanelLandAudio(void* data);
 	static void* createPanelLandMedia(void* data);
 	static void* createPanelLandAccess(void* data);
+	static void* createPanelLandExperiences(void* data);
 	static void* createPanelLandBan(void* data);
 
 
@@ -116,6 +118,7 @@ protected:
 	LLPanelLandMedia*		mPanelMedia;
 	LLPanelLandAccess*		mPanelAccess;
 	LLPanelLandCovenant*	mPanelCovenant;
+	LLPanelLandExperiences*	mPanelExperiences;
 
 	LLSafeHandle<LLParcelSelection>	mParcel;
 
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp
index a2af9da67024e02245c42766149a24cccac9abf9..5d1e01c1f7a864aa5e969e845738f638cfe3e558 100755
--- a/indra/newview/llfloaterregioninfo.cpp
+++ b/indra/newview/llfloaterregioninfo.cpp
@@ -92,6 +92,11 @@
 #include "llagentui.h"
 #include "llmeshrepository.h"
 #include "llfloaterregionrestarting.h"
+#include "llpanelexperiencelisteditor.h"
+#include <boost/function.hpp>
+#include "llpanelexperiencepicker.h"
+#include "llexperiencecache.h"
+#include "llpanelexperiences.h"
 
 const S32 TERRAIN_TEXTURE_COUNT = 4;
 const S32 CORNER_COUNT = 4;
@@ -126,6 +131,18 @@ public:
 		const sparam_t& strings);
 };
 
+class LLDispatchSetEstateExperience : public LLDispatchHandler
+{
+public:
+	virtual bool operator()(
+		const LLDispatcher* dispatcher,
+		const std::string& key,
+		const LLUUID& invoice,
+		const sparam_t& strings);
+
+	LLSD getIDs( sparam_t::const_iterator it, sparam_t::const_iterator end, S32 count );
+};
+
 
 /*
 void unpack_request_params(
@@ -215,6 +232,14 @@ BOOL LLFloaterRegionInfo::postBuild()
 	panel->buildFromFile("panel_region_debug.xml");
 	mTab->addTabPanel(panel);
 
+	if(!gAgent.getRegion()->getCapability("RegionExperiences").empty())
+	{
+		panel = new LLPanelRegionExperiences;
+		mInfoPanels.push_back(panel);
+		panel->buildFromFile("panel_region_experiences.xml");
+		mTab->addTabPanel(panel);
+	}
+	
 	gMessageSystem->setHandlerFunc(
 		"EstateOwnerMessage", 
 		&processEstateOwnerRequest);
@@ -445,6 +470,16 @@ LLPanelRegionTerrainInfo* LLFloaterRegionInfo::getPanelRegionTerrain()
 	return panel;
 }
 
+LLPanelRegionExperiences* LLFloaterRegionInfo::getPanelExperiences()
+{
+	LLFloaterRegionInfo* floater = LLFloaterReg::getTypedInstance<LLFloaterRegionInfo>("region_info");
+	if (!floater) return NULL;
+	LLTabContainer* tab = floater->getChild<LLTabContainer>("region_panels");
+	return (LLPanelRegionExperiences*)tab->getChild<LLPanel>("Experiences");
+}
+
+
+
 void LLFloaterRegionInfo::onTabSelected(const LLSD& param)
 {
 	LLPanel* active_panel = getChild<LLPanel>(param.asString());
@@ -1394,6 +1429,11 @@ void LLPanelEstateInfo::initDispatch(LLDispatcher& dispatch)
 	static LLDispatchSetEstateAccess set_access;
 	dispatch.addHandler(name, &set_access);
 
+
+	name.assign("setexperience");
+	static LLDispatchSetEstateExperience set_experience;
+	dispatch.addHandler(name, &set_experience);
+
 	estate_dispatch_initialized = true;
 }
 
@@ -2903,6 +2943,56 @@ bool LLDispatchSetEstateAccess::operator()(
 	return true;
 }
 
+LLSD LLDispatchSetEstateExperience::getIDs( sparam_t::const_iterator it, sparam_t::const_iterator end, S32 count )
+{
+	LLSD idList = LLSD::emptyArray();
+	LLUUID id;
+	while(count--> 0)
+	{
+		memcpy(id.mData, (*(it++)).data(), UUID_BYTES);
+		idList.append(id);
+	}
+	return idList;
+}
+
+// key = "setexperience"
+// strings[0] = str(estate_id)
+// strings[1] = str(send_to_agent_only)
+// strings[2] = str(num blocked)
+// strings[3] = str(num trusted)
+// strings[4] = str(num allowed)
+// strings[8] = bin(uuid) ...
+// ...
+bool LLDispatchSetEstateExperience::operator()(
+	const LLDispatcher* dispatcher,
+	const std::string& key,
+	const LLUUID& invoice,
+	const sparam_t& strings)
+{
+	LLPanelRegionExperiences* panel = LLFloaterRegionInfo::getPanelExperiences();
+	if (!panel) return true;
+
+	sparam_t::const_iterator it = strings.begin();
+	++it; // U32 estate_id = strtol((*it).c_str(), NULL, 10);
+	++it; // U32 send_to_agent_only = strtoul((*(++it)).c_str(), NULL, 10);
+
+	LLUUID id;
+	S32 num_blocked = strtol((*(it++)).c_str(), NULL, 10);
+	S32 num_trusted = strtol((*(it++)).c_str(), NULL, 10);
+	S32 num_allowed = strtol((*(it++)).c_str(), NULL, 10);
+
+	LLSD ids = LLSD::emptyMap()
+		.with("blocked", getIDs(it,								strings.end(), num_blocked))
+		.with("trusted", getIDs(it + (num_blocked),				strings.end(), num_trusted))
+		.with("allowed", getIDs(it + (num_blocked+num_trusted),	strings.end(), num_allowed));
+
+	panel->processResponse(ids);			
+
+	return true;
+}
+
+
+
 LLPanelEnvironmentInfo::LLPanelEnvironmentInfo()
 :	mEnableEditing(false),
 	mRegionSettingsRadioGroup(NULL),
@@ -3494,3 +3584,284 @@ void LLPanelEnvironmentInfo::onRegionSettingsApplied(bool ok)
 		LLEnvManagerNew::instance().requestRegionSettings();
 	}
 }
+
+BOOL LLPanelRegionExperiences::postBuild()
+{
+	mAllowed = setupList("panel_allowed", ESTATE_EXPERIENCE_ALLOWED_ADD, ESTATE_EXPERIENCE_ALLOWED_REMOVE);
+	mTrusted = setupList("panel_trusted", ESTATE_EXPERIENCE_TRUSTED_ADD, ESTATE_EXPERIENCE_TRUSTED_REMOVE);
+	mBlocked = setupList("panel_blocked", ESTATE_EXPERIENCE_BLOCKED_ADD, ESTATE_EXPERIENCE_BLOCKED_REMOVE);
+
+	getChild<LLLayoutPanel>("trusted_layout_panel")->setVisible(TRUE);
+	getChild<LLTextBox>("experiences_help_text")->setText(getString("estate_caption"));
+	getChild<LLTextBox>("trusted_text_help")->setText(getString("trusted_estate_text"));
+	getChild<LLTextBox>("allowed_text_help")->setText(getString("allowed_estate_text"));
+	getChild<LLTextBox>("blocked_text_help")->setText(getString("blocked_estate_text"));
+
+	return LLPanelRegionInfo::postBuild();
+}
+
+LLPanelExperienceListEditor* LLPanelRegionExperiences::setupList( const char* control_name, U32 add_id, U32 remove_id )
+{
+	LLPanelExperienceListEditor* child = findChild<LLPanelExperienceListEditor>(control_name);
+	if(child)
+	{
+		child->getChild<LLTextBox>("text_name")->setText(child->getString(control_name));
+		child->setMaxExperienceIDs(ESTATE_MAX_EXPERIENCE_IDS);
+		child->setAddedCallback(  boost::bind(&LLPanelRegionExperiences::itemChanged, this, add_id, _1));
+		child->setRemovedCallback(boost::bind(&LLPanelRegionExperiences::itemChanged, this, remove_id, _1));
+	}
+
+	return child;
+}
+
+
+void LLPanelRegionExperiences::processResponse( const LLSD& content )
+{
+	if(content.has("default"))
+	{
+		mDefaultExperience = content["default"].asUUID();
+	}
+
+	mAllowed->setExperienceIds(content["allowed"]);
+	mBlocked->setExperienceIds(content["blocked"]);
+
+	LLSD trusted = content["trusted"];
+	if(mDefaultExperience.notNull())
+	{
+		mTrusted->setStickyFunction(boost::bind(LLPanelExperiencePicker::FilterMatching, _1, mDefaultExperience));
+		trusted.append(mDefaultExperience);
+	}
+
+	mTrusted->setExperienceIds(trusted);
+	
+	mAllowed->refreshExperienceCounter();
+	mBlocked->refreshExperienceCounter();
+	mTrusted->refreshExperienceCounter();
+
+}
+
+
+class LLRegionExperienceResponder : public LLHTTPClient::Responder
+{
+public:
+	typedef boost::function<void (const LLSD&)> callback_t;
+
+	callback_t mCallback;
+
+	LLRegionExperienceResponder(callback_t callback) : mCallback(callback) { }
+
+protected:
+	/*virtual*/ void httpSuccess()
+	{
+		mCallback(getContent());
+	}
+
+	/*virtual*/ void httpFailure()
+	{
+		LL_WARNS() << "experience responder failed [status:" << getStatus() << "]: " << getContent() << LL_ENDL;
+	}
+};
+
+
+// Used for both access add and remove operations, depending on the flag
+// passed in (ESTATE_EXPERIENCE_ALLOWED_ADD, ESTATE_EXPERIENCE_ALLOWED_REMOVE, etc.)
+// static
+bool LLPanelRegionExperiences::experienceCoreConfirm(const LLSD& notification, const LLSD& response)
+{
+	S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
+	const U32 originalFlags = (U32)notification["payload"]["operation"].asInteger();
+
+	LLViewerRegion* region = gAgent.getRegion();
+	
+	LLSD::array_const_iterator end_it = notification["payload"]["allowed_ids"].endArray();
+
+	for (LLSD::array_const_iterator iter = notification["payload"]["allowed_ids"].beginArray();
+		iter != end_it;
+	     iter++)
+	{
+		U32 flags = originalFlags;
+		if (iter + 1 != end_it)
+			flags |= ESTATE_ACCESS_NO_REPLY;
+
+		const LLUUID id = iter->asUUID();
+		switch(option)
+		{
+			case 0:
+			    // This estate
+			    sendEstateExperienceDelta(flags, id);
+			    break;
+			case 1:
+			{
+				// All estates, either than I own or manage for this owner.  
+				// This will be verified on simulator. JC
+				if (!region) break;
+				if (region->getOwner() == gAgent.getID()
+				    || gAgent.isGodlike())
+				{
+					flags |= ESTATE_ACCESS_APPLY_TO_ALL_ESTATES;
+					sendEstateExperienceDelta(flags, id);
+				}
+				else if (region->isEstateManager())
+				{
+					flags |= ESTATE_ACCESS_APPLY_TO_MANAGED_ESTATES;
+					sendEstateExperienceDelta(flags, id);
+				}
+				break;
+			}
+			case 2:
+			default:
+			    break;
+		}
+	}
+	return false;
+}
+
+
+// Send the actual "estateexperiencedelta" message
+void LLPanelRegionExperiences::sendEstateExperienceDelta(U32 flags, const LLUUID& experience_id)
+{
+	strings_t str(3, std::string());
+	gAgent.getID().toString(str[0]);
+	str[1] = llformat("%u", flags);
+	experience_id.toString(str[2]);
+
+	LLPanelRegionExperiences* panel = LLFloaterRegionInfo::getPanelExperiences();
+	if (panel)
+	{
+		panel->sendEstateOwnerMessage(gMessageSystem, "estateexperiencedelta", LLFloaterRegionInfo::getLastInvoice(), str);
+	}
+}
+
+
+void LLPanelRegionExperiences::infoCallback(LLHandle<LLPanelRegionExperiences> handle, const LLSD& content)
+{	
+	if(handle.isDead())
+		return;
+
+	LLPanelRegionExperiences* floater = handle.get();
+	if (floater)
+	{
+		floater->processResponse(content);
+	}
+}
+
+
+bool LLPanelRegionExperiences::refreshFromRegion(LLViewerRegion* region)
+{
+	BOOL allow_modify = gAgent.isGodlike() || (region && region->canManageEstate());
+
+	mAllowed->loading();
+	mAllowed->setReadonly(!allow_modify);
+	// remove grid-wide experiences
+	mAllowed->addFilter(boost::bind(LLPanelExperiencePicker::FilterWithProperty, _1, LLExperienceCache::PROPERTY_GRID));
+	// remove default experience
+	mAllowed->addFilter(boost::bind(LLPanelExperiencePicker::FilterMatching, _1, mDefaultExperience));
+
+	mBlocked->loading();
+	mBlocked->setReadonly(!allow_modify);
+	// only grid-wide experiences
+	mBlocked->addFilter(boost::bind(LLPanelExperiencePicker::FilterWithoutProperty, _1, LLExperienceCache::PROPERTY_GRID));
+	// but not privileged ones
+	mBlocked->addFilter(boost::bind(LLPanelExperiencePicker::FilterWithProperty, _1, LLExperienceCache::PROPERTY_PRIVILEGED));
+	// remove default experience
+	mBlocked->addFilter(boost::bind(LLPanelExperiencePicker::FilterMatching, _1, mDefaultExperience));
+
+	mTrusted->loading();
+	mTrusted->setReadonly(!allow_modify);
+
+	std::string url = region->getCapability("RegionExperiences");
+	if (!url.empty())
+	{
+		LLHTTPClient::get(url, new LLRegionExperienceResponder(boost::bind(&LLPanelRegionExperiences::infoCallback, 
+			getDerivedHandle<LLPanelRegionExperiences>(), _1)));
+	}
+	return LLPanelRegionInfo::refreshFromRegion(region);
+}
+
+LLSD LLPanelRegionExperiences::addIds(LLPanelExperienceListEditor* panel)
+{
+	LLSD ids;
+	const uuid_list_t& id_list = panel->getExperienceIds();
+	for(uuid_list_t::const_iterator it = id_list.begin(); it != id_list.end(); ++it)
+	{
+		ids.append(*it);
+	}
+	return ids;
+}
+
+
+BOOL LLPanelRegionExperiences::sendUpdate()
+{
+	LLViewerRegion* region = gAgent.getRegion();
+	std::string url = region->getCapability("RegionExperiences");
+	if (!url.empty())
+	{
+		LLSD content;
+
+		content["allowed"]=addIds(mAllowed);
+		content["blocked"]=addIds(mBlocked);
+		content["trusted"]=addIds(mTrusted);
+
+		LLHTTPClient::post(url, content, new LLRegionExperienceResponder(boost::bind(&LLPanelRegionExperiences::infoCallback, 
+			getDerivedHandle<LLPanelRegionExperiences>(), _1)));
+	}
+
+	return TRUE;
+}
+
+void LLPanelRegionExperiences::itemChanged( U32 event_type, const LLUUID& id )
+{
+	std::string dialog_name;
+	switch (event_type)
+	{
+		case ESTATE_EXPERIENCE_ALLOWED_ADD:
+			dialog_name = "EstateAllowedExperienceAdd";
+			break;
+
+		case ESTATE_EXPERIENCE_ALLOWED_REMOVE:
+			dialog_name = "EstateAllowedExperienceRemove";
+			break;
+
+		case ESTATE_EXPERIENCE_TRUSTED_ADD:
+			dialog_name = "EstateTrustedExperienceAdd";
+			break;
+
+		case ESTATE_EXPERIENCE_TRUSTED_REMOVE:
+			dialog_name = "EstateTrustedExperienceRemove";
+			break;
+
+		case ESTATE_EXPERIENCE_BLOCKED_ADD:
+			dialog_name = "EstateBlockedExperienceAdd";
+			break;
+
+		case ESTATE_EXPERIENCE_BLOCKED_REMOVE:
+			dialog_name = "EstateBlockedExperienceRemove";
+			break;
+
+		default:
+			return;
+	}
+
+	LLSD payload;
+	payload["operation"] = (S32)event_type;
+	payload["dialog_name"] = dialog_name;
+	payload["allowed_ids"].append(id);
+
+	LLSD args;
+	args["ALL_ESTATES"] = all_estates_text();
+
+	LLNotification::Params params(dialog_name);
+	params.payload(payload)
+		.substitutions(args)
+		.functor.function(LLPanelRegionExperiences::experienceCoreConfirm);
+	if (LLPanelEstateInfo::isLindenEstate())
+	{
+		LLNotifications::instance().forceResponse(params, 0);
+	}
+	else
+	{
+		LLNotifications::instance().add(params);
+	}
+
+	onChangeAnything();
+}
diff --git a/indra/newview/llfloaterregioninfo.h b/indra/newview/llfloaterregioninfo.h
index 792f60ebc8260caa43870d2b762406457add8b26..e7b49d8553e616c08659227283cd43088819375b 100755
--- a/indra/newview/llfloaterregioninfo.h
+++ b/indra/newview/llfloaterregioninfo.h
@@ -60,6 +60,9 @@ class LLPanelRegionDebugInfo;
 class LLPanelRegionTerrainInfo;
 class LLPanelEstateInfo;
 class LLPanelEstateCovenant;
+class LLPanelExperienceListEditor;
+class LLPanelExperiences;
+class LLPanelRegionExperiences;
 
 class LLEventTimer;
 class LLEnvironmentSettings;
@@ -90,6 +93,7 @@ public:
 	static LLPanelEstateInfo* getPanelEstate();
 	static LLPanelEstateCovenant* getPanelCovenant();
 	static LLPanelRegionTerrainInfo* getPanelRegionTerrain();
+	static LLPanelRegionExperiences* getPanelExperiences();
 
 	// from LLPanel
 	virtual void refresh();
@@ -453,4 +457,34 @@ private:
 	LLComboBox*		mDayCyclePresetCombo;
 };
 
+class LLPanelRegionExperiences : public LLPanelRegionInfo
+{
+	LOG_CLASS(LLPanelEnvironmentInfo);
+
+public:
+	LLPanelRegionExperiences(){}
+	/*virtual*/ BOOL postBuild();
+	virtual BOOL sendUpdate();
+	
+	static bool experienceCoreConfirm(const LLSD& notification, const LLSD& response);
+	static void sendEstateExperienceDelta(U32 flags, const LLUUID& agent_id);
+
+	static void infoCallback(LLHandle<LLPanelRegionExperiences> handle, const LLSD& content);
+	bool refreshFromRegion(LLViewerRegion* region);
+	void sendPurchaseRequest()const;
+	void processResponse( const LLSD& content );
+private:
+	void refreshRegionExperiences();
+
+	LLPanelExperienceListEditor* setupList(const char* control_name, U32 add_id, U32 remove_id);
+	static LLSD addIds( LLPanelExperienceListEditor* panel );
+
+	void itemChanged(U32 event_type, const LLUUID& id);
+
+	LLPanelExperienceListEditor* mTrusted;
+	LLPanelExperienceListEditor* mAllowed;
+	LLPanelExperienceListEditor* mBlocked;
+	LLUUID mDefaultExperience;
+};
+
 #endif
diff --git a/indra/newview/llfloaterreporter.cpp b/indra/newview/llfloaterreporter.cpp
index ae330211dbd640d51806a894cd3fd1435d4ce83e..5e028e6d434cee9561d806610db25d7875dc036c 100755
--- a/indra/newview/llfloaterreporter.cpp
+++ b/indra/newview/llfloaterreporter.cpp
@@ -81,6 +81,7 @@
 #include "llagentui.h"
 
 #include "lltrans.h"
+#include "llexperiencecache.h"
 
 //-----------------------------------------------------------------------------
 // Globals
@@ -225,6 +226,30 @@ void LLFloaterReporter::enableControls(BOOL enable)
 	getChildView("cancel_btn")->setEnabled(enable);
 }
 
+void LLFloaterReporter::getExperienceInfo(const LLUUID& experience_id)
+{
+	mExperienceID = experience_id;
+
+	if (LLUUID::null != mExperienceID)
+	{
+		const LLSD& experience = LLExperienceCache::get(mExperienceID);
+		std::stringstream desc;
+
+		if(experience.isDefined())
+		{
+			setFromAvatarID(experience[LLExperienceCache::AGENT_ID]);
+			desc << "Experience id: " << mExperienceID;
+		}
+		else
+		{
+			desc << "Unable to retrieve details for id: "<< mExperienceID;
+		}
+		
+		LLUICtrl* details = getChild<LLUICtrl>("details_edit");
+		details->setValue(desc.str());
+	}
+}
+
 void LLFloaterReporter::getObjectInfo(const LLUUID& object_id)
 {
 	// TODO -- 
@@ -470,7 +495,7 @@ void LLFloaterReporter::showFromMenu(EReportType report_type)
 }
 
 // static
-void LLFloaterReporter::show(const LLUUID& object_id, const std::string& avatar_name)
+void LLFloaterReporter::show(const LLUUID& object_id, const std::string& avatar_name, const LLUUID& experience_id)
 {
 	LLFloaterReporter* f = LLFloaterReg::showTypedInstance<LLFloaterReporter>("reporter");
 
@@ -483,6 +508,23 @@ void LLFloaterReporter::show(const LLUUID& object_id, const std::string& avatar_
 	{
 		f->setFromAvatarID(object_id);
 	}
+	if(experience_id.notNull())
+	{
+		f->getExperienceInfo(experience_id);
+	}
+
+	// Need to deselect on close
+	f->mDeselectOnClose = TRUE;
+
+	f->openFloater();
+}
+
+
+
+void LLFloaterReporter::showFromExperience( const LLUUID& experience_id )
+{
+	LLFloaterReporter* f = LLFloaterReg::showTypedInstance<LLFloaterReporter>("reporter");
+	f->getExperienceInfo(experience_id);
 
 	// Need to deselect on close
 	f->mDeselectOnClose = TRUE;
@@ -492,9 +534,9 @@ void LLFloaterReporter::show(const LLUUID& object_id, const std::string& avatar_
 
 
 // static
-void LLFloaterReporter::showFromObject(const LLUUID& object_id)
+void LLFloaterReporter::showFromObject(const LLUUID& object_id, const LLUUID& experience_id)
 {
-	show(object_id);
+	show(object_id, LLStringUtil::null, experience_id);
 }
 
 // static
@@ -854,6 +896,7 @@ void LLFloaterReporter::setPosBox(const LLVector3d &pos)
 	getChild<LLUICtrl>("pos_field")->setValue(pos_string);
 }
 
+
 // void LLFloaterReporter::setDescription(const std::string& description, LLMeanCollisionData *mcd)
 // {
 // 	LLFloaterReporter *self = LLFloaterReg::findTypedInstance<LLFloaterReporter>("reporter");
diff --git a/indra/newview/llfloaterreporter.h b/indra/newview/llfloaterreporter.h
index d54e7f6ab0cd95bc55ee6dc24213aaf4db445778..5eb5c2066533e9e88db9580d051911a7e03f5d91 100755
--- a/indra/newview/llfloaterreporter.h
+++ b/indra/newview/llfloaterreporter.h
@@ -88,8 +88,9 @@ public:
 	// Enables all buttons
 	static void showFromMenu(EReportType report_type);
 
-	static void showFromObject(const LLUUID& object_id);
+	static void showFromObject(const LLUUID& object_id, const LLUUID& experience_id = LLUUID::null);
 	static void showFromAvatar(const LLUUID& avatar_id, const std::string avatar_name);
+	static void showFromExperience(const LLUUID& experience_id);
 
 	static void onClickSend			(void *userdata);
 	static void onClickCancel		(void *userdata);
@@ -106,7 +107,7 @@ public:
 	void setPickedObjectProperties(const std::string& object_name, const std::string& owner_name, const LLUUID owner_id);
 
 private:
-	static void show(const LLUUID& object_id, const std::string& avatar_name = LLStringUtil::null);
+	static void show(const LLUUID& object_id, const std::string& avatar_name = LLStringUtil::null, const LLUUID& experience_id = LLUUID::null);
 
 	void takeScreenshot();
 	void sendReportViaCaps(std::string url);
@@ -118,6 +119,7 @@ private:
 	void sendReportViaCaps(std::string url, std::string sshot_url, const LLSD & report);
 	void setPosBox(const LLVector3d &pos);
 	void enableControls(BOOL own_avatar);
+	void getExperienceInfo(const LLUUID& object_id);
 	void getObjectInfo(const LLUUID& object_id);
 	void callbackAvatarID(const uuid_vec_t& ids, const std::vector<LLAvatarName> names);
 	void setFromAvatarID(const LLUUID& avatar_id);
@@ -128,6 +130,7 @@ private:
 	LLUUID 			mObjectID;
 	LLUUID			mScreenID;
 	LLUUID			mAbuserID;
+	LLUUID			mExperienceID;
 	// Store the real name, not the link, for upstream reporting
 	std::string		mOwnerName;
 	BOOL			mDeselectOnClose;
diff --git a/indra/newview/llnotificationhandler.h b/indra/newview/llnotificationhandler.h
index bff4efa9eaebc8393b0ae5e2fe9f11ce439bed71..3e7f05b5e16cc47ebaadbb884824edb01ab8d831 100755
--- a/indra/newview/llnotificationhandler.h
+++ b/indra/newview/llnotificationhandler.h
@@ -169,7 +169,9 @@ public:
 	virtual ~LLScriptHandler();
 
 	virtual void onDelete(LLNotificationPtr p);
+	virtual void onChange(LLNotificationPtr p);
 	virtual bool processNotification(const LLNotificationPtr& p);
+	virtual void addToastWithNotification(const LLNotificationPtr& p);
 
 protected:
 	virtual void onDeleteToast(LLToast* toast);
diff --git a/indra/newview/llnotificationscripthandler.cpp b/indra/newview/llnotificationscripthandler.cpp
index a3b15931c673f349ebcd7e3619c1caeca8830f0f..7acb2f9e906e77b0b3bfe07f8e8254b2ff559680 100755
--- a/indra/newview/llnotificationscripthandler.cpp
+++ b/indra/newview/llnotificationscripthandler.cpp
@@ -67,6 +67,30 @@ void LLScriptHandler::initChannel()
 	mChannel.get()->init(channel_right_bound - channel_width, channel_right_bound);
 }
 
+//--------------------------------------------------------------------------
+void LLScriptHandler::addToastWithNotification(const LLNotificationPtr& notification)
+{
+	LLToastPanel* notify_box = LLToastPanel::buidPanelFromNotification(notification);
+
+	LLToast::Params p;
+	p.notif_id = notification->getID();
+	p.notification = notification;
+	p.panel = notify_box;
+	p.on_delete_toast = boost::bind(&LLScriptHandler::onDeleteToast, this, _1);
+	if(gAgent.isDoNotDisturb())
+	{ 
+		p.force_show = notification->getName() == "SystemMessage" 
+						||	notification->getName() == "GodMessage" 
+						|| notification->getPriority() >= NOTIFICATION_PRIORITY_HIGH;
+	}
+
+	LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel.get());
+	if(channel)
+	{
+		channel->addToast(p);
+	}
+}
+
 //--------------------------------------------------------------------------
 bool LLScriptHandler::processNotification(const LLNotificationPtr& notification)
 {
@@ -92,42 +116,33 @@ bool LLScriptHandler::processNotification(const LLNotificationPtr& notification)
 	}
 	else if (notification->canShowToast())
 	{
-		LLToastPanel* notify_box = LLToastPanel::buidPanelFromNotification(notification);
-
-		LLToast::Params p;
-		p.notif_id = notification->getID();
-		p.notification = notification;
-		p.panel = notify_box;
-		p.on_delete_toast = boost::bind(&LLScriptHandler::onDeleteToast, this, _1);
-		if(gAgent.isDoNotDisturb())
-		{ 
-			p.force_show = notification->getName() == "SystemMessage" 
-							||	notification->getName() == "GodMessage" 
-							|| notification->getPriority() >= NOTIFICATION_PRIORITY_HIGH;
-		}
-
-		LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel.get());
-		if(channel)
-		{
-			channel->addToast(p);
-		}
+		addToastWithNotification(notification);
 	}
 
 	return false;
 }
 
+void LLScriptHandler::onChange( LLNotificationPtr notification )
+{
+	LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel.get());
+	if (channel)
+	{
+		channel->removeToastByNotificationID(notification->getID());
+		addToastWithNotification(notification);
+	}
+}
 
 void LLScriptHandler::onDelete( LLNotificationPtr notification )
-	{
+{
 	if(notification->hasFormElements() && !notification->canShowToast())
-		{
-			LLScriptFloaterManager::getInstance()->onRemoveNotification(notification->getID());
-		}
-		else
-		{
-			mChannel.get()->removeToastByNotificationID(notification->getID());
-		}
+	{
+		LLScriptFloaterManager::getInstance()->onRemoveNotification(notification->getID());
 	}
+	else
+	{
+		mChannel.get()->removeToastByNotificationID(notification->getID());
+	}
+}
 
 
 //--------------------------------------------------------------------------
diff --git a/indra/newview/llpanelexperiencelisteditor.cpp b/indra/newview/llpanelexperiencelisteditor.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..fc4ee9862e93425d2f73586dadcab99197bacc0a
--- /dev/null
+++ b/indra/newview/llpanelexperiencelisteditor.cpp
@@ -0,0 +1,262 @@
+/**
+ * @file llpanelexperiencelisteditor.cpp
+ * @brief Editor for building a list of experiences
+ *
+ * $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+
+#include "llpanelexperiencelisteditor.h"
+
+#include "llbutton.h"
+#include "llexperiencecache.h"
+#include "llfloaterexperiencepicker.h"
+#include "llfloaterreg.h"
+#include "llhandle.h"
+#include "llscrolllistctrl.h"
+#include "llviewerregion.h"
+#include "llagent.h"
+#include "lltextbox.h"
+#include "lltrans.h"
+
+
+static LLPanelInjector<LLPanelExperienceListEditor> t_panel_experience_list_editor("panel_experience_list_editor");
+
+
+LLPanelExperienceListEditor::LLPanelExperienceListEditor()
+	:mItems(NULL)
+	,mProfile(NULL)
+	,mRemove(NULL)
+	,mReadonly(false)
+	,mMaxExperienceIDs(0)
+{
+}
+
+BOOL LLPanelExperienceListEditor::postBuild()
+{
+	mItems = getChild<LLScrollListCtrl>("experience_list");
+	mAdd = getChild<LLButton>("btn_add");
+	mRemove = getChild<LLButton>("btn_remove");
+	mProfile = getChild<LLButton>("btn_profile");
+
+	childSetAction("btn_add", boost::bind(&LLPanelExperienceListEditor::onAdd, this));
+	childSetAction("btn_remove", boost::bind(&LLPanelExperienceListEditor::onRemove, this));
+	childSetAction("btn_profile", boost::bind(&LLPanelExperienceListEditor::onProfile, this));
+
+	mItems->setCommitCallback(boost::bind(&LLPanelExperienceListEditor::checkButtonsEnabled, this));
+	
+	checkButtonsEnabled();
+	return TRUE;
+}
+
+const uuid_list_t& LLPanelExperienceListEditor::getExperienceIds() const
+{
+	return mExperienceIds;
+}
+
+void LLPanelExperienceListEditor::addExperienceIds( const uuid_vec_t& experience_ids )
+{
+	// the commented out code in this function is handled by the callback and no longer necessary!
+
+	//mExperienceIds.insert(experience_ids.begin(), experience_ids.end());
+	//onItems();
+	if(!mAddedCallback.empty())
+	{
+		for(uuid_vec_t::const_iterator it = experience_ids.begin(); it != experience_ids.end(); ++it)
+		{
+			mAddedCallback(*it);
+		}
+	}
+}
+
+
+void LLPanelExperienceListEditor::setExperienceIds( const LLSD& experience_ids )
+{
+	mExperienceIds.clear();
+	mExperienceIds.insert(experience_ids.beginArray(), experience_ids.endArray());
+	onItems();
+}
+
+void LLPanelExperienceListEditor::addExperience( const LLUUID& id )
+{
+	mExperienceIds.insert(id);
+	onItems();
+}
+void LLPanelExperienceListEditor::onAdd()
+{
+	if(!mPicker.isDead())
+	{
+		mPicker.markDead();
+	}
+
+	mKey.generateNewID();
+
+	LLFloaterExperiencePicker* picker=LLFloaterExperiencePicker::show(boost::bind(&LLPanelExperienceListEditor::addExperienceIds, this, _1), mKey, FALSE, TRUE, mFilters, mAdd);
+	mPicker = picker->getDerivedHandle<LLFloaterExperiencePicker>();
+}
+
+
+void LLPanelExperienceListEditor::onRemove()
+{
+	// the commented out code in this function is handled by the callback and no longer necessary!
+
+	std::vector<LLScrollListItem*> items= mItems->getAllSelected();
+	std::vector<LLScrollListItem*>::iterator it = items.begin();
+	for(/**/; it != items.end(); ++it)
+	{
+		if((*it) != NULL)
+		{
+			//mExperienceIds.erase((*it)->getValue());
+			mRemovedCallback((*it)->getValue());
+		}
+	}
+	mItems->selectFirstItem();
+	checkButtonsEnabled();
+	//onItems();
+}
+
+void LLPanelExperienceListEditor::onProfile()
+{
+	LLScrollListItem* item = mItems->getFirstSelected();
+	if(item)
+	{
+		LLFloaterReg::showInstance("experience_profile", item->getUUID(), true);
+	}
+}
+
+void LLPanelExperienceListEditor::checkButtonsEnabled()
+{
+	mAdd->setEnabled(!mReadonly);
+	int selected = mItems->getNumSelected();
+
+	bool remove_enabled = !mReadonly && selected>0;
+	if(remove_enabled && mSticky)
+	{
+		std::vector<LLScrollListItem*> items= mItems->getAllSelected();
+		std::vector<LLScrollListItem*>::iterator it = items.begin();
+		for(/**/; it != items.end() && remove_enabled; ++it)
+		{
+			if((*it) != NULL)
+			{
+				remove_enabled = !mSticky((*it)->getValue());
+			}
+		}
+
+
+	}
+	mRemove->setEnabled(remove_enabled);
+	mProfile->setEnabled(selected==1);
+}
+
+void LLPanelExperienceListEditor::onItems()
+{
+	mItems->deleteAllItems();
+
+	LLSD item;
+	uuid_list_t::iterator it = mExperienceIds.begin();
+	for(/**/; it != mExperienceIds.end(); ++it)
+	{
+		const LLUUID& experience = *it;
+		item["id"]=experience;
+		LLSD& columns = item["columns"];
+		columns[0]["column"] = "experience_name";
+		columns[0]["value"] = getString("loading");
+		mItems->addElement(item);
+
+		LLExperienceCache::get(experience, boost::bind(&LLPanelExperienceListEditor::experienceDetailsCallback, 
+			getDerivedHandle<LLPanelExperienceListEditor>(), _1));
+	}
+
+
+	if(mItems->getItemCount() == 0)
+	{
+		mItems->setCommentText(getString("no_results"));
+	}
+
+
+	checkButtonsEnabled();
+}
+
+void LLPanelExperienceListEditor::experienceDetailsCallback( LLHandle<LLPanelExperienceListEditor> panel, const LLSD& experience )
+{
+	if(!panel.isDead())
+	{
+		panel.get()->onExperienceDetails(experience);
+	}
+}
+
+void LLPanelExperienceListEditor::onExperienceDetails( const LLSD& experience )
+{
+	LLScrollListItem* item = mItems->getItem(experience[LLExperienceCache::EXPERIENCE_ID]);
+	if(!item)
+		return;
+	
+	std::string experience_name_string = experience[LLExperienceCache::NAME].asString();
+	if (experience_name_string.empty())
+	{
+		experience_name_string = LLTrans::getString("ExperienceNameUntitled");
+	}
+
+	item->getColumn(0)->setValue(experience_name_string);
+}
+
+LLPanelExperienceListEditor::~LLPanelExperienceListEditor()
+{
+	if(!mPicker.isDead())
+	{
+		mPicker.get()->closeFloater();
+	}
+}
+
+void LLPanelExperienceListEditor::loading()
+{
+	mItems->clear();
+	mItems->setCommentText( getString("loading"));
+}
+
+void LLPanelExperienceListEditor::setReadonly( bool val )
+{
+	mReadonly = val;
+	checkButtonsEnabled();
+}
+
+void LLPanelExperienceListEditor::refreshExperienceCounter()
+{
+	if(mMaxExperienceIDs > 0)
+	{
+		LLStringUtil::format_map_t args;
+		args["[EXPERIENCES]"] = llformat("%d", mItems->getItemCount());
+		args["[MAXEXPERIENCES]"] = llformat("%d", mMaxExperienceIDs);
+		getChild<LLTextBox>("text_count")->setText(LLTrans::getString("ExperiencesCounter", args));
+	}
+}
+
+boost::signals2::connection LLPanelExperienceListEditor::setAddedCallback( list_changed_signal_t::slot_type cb )
+{
+	return mAddedCallback.connect(cb);
+}
+
+boost::signals2::connection LLPanelExperienceListEditor::setRemovedCallback( list_changed_signal_t::slot_type cb )
+{
+	return mRemovedCallback.connect(cb);
+}
diff --git a/indra/newview/llpanelexperiencelisteditor.h b/indra/newview/llpanelexperiencelisteditor.h
new file mode 100644
index 0000000000000000000000000000000000000000..f69f0509becb191746a0e207227d2d90220ff84a
--- /dev/null
+++ b/indra/newview/llpanelexperiencelisteditor.h
@@ -0,0 +1,100 @@
+/**
+* @file llpanelexperiencelisteditor.cpp
+* @brief Editor for building a list of experiences
+*
+* $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#ifndef LL_LLPANELEXPERIENCELISTEDITOR_H
+#define LL_LLPANELEXPERIENCELISTEDITOR_H
+
+#include "llpanel.h"
+#include "lluuid.h"
+#include <set>
+
+class LLScrollListCtrl;
+class LLButton;
+class LLFloaterExperiencePicker;
+
+class LLPanelExperienceListEditor : public LLPanel
+{
+public:
+
+	typedef boost::signals2::signal<void (const LLUUID&) > list_changed_signal_t;
+	// filter function for experiences, return true if the experience should be hidden.
+	typedef boost::function<bool (const LLSD&)> experience_function;
+	typedef std::vector<experience_function> filter_list;
+	typedef LLHandle<LLFloaterExperiencePicker> PickerHandle;
+	LLPanelExperienceListEditor();
+	~LLPanelExperienceListEditor();
+	BOOL postBuild();
+
+	void loading();
+
+	const uuid_list_t& getExperienceIds()const;
+	void setExperienceIds(const LLSD& experience_ids);
+	void addExperienceIds(const uuid_vec_t& experience_ids);
+
+	void addExperience(const LLUUID& id);
+
+	boost::signals2::connection setAddedCallback(list_changed_signal_t::slot_type cb );
+	boost::signals2::connection setRemovedCallback(list_changed_signal_t::slot_type cb );
+
+	bool getReadonly() const { return mReadonly; }
+	void setReadonly(bool val);
+
+	void refreshExperienceCounter();
+
+	void addFilter(experience_function func){mFilters.push_back(func);}
+	void setStickyFunction(experience_function func){mSticky = func;}
+	U32 getMaxExperienceIDs() const { return mMaxExperienceIDs; }
+	void setMaxExperienceIDs(U32 val) { mMaxExperienceIDs = val; }
+private:
+
+	void onItems();
+	void onRemove();
+	void onAdd();
+	void onProfile();
+
+	void checkButtonsEnabled();
+	static void experienceDetailsCallback( LLHandle<LLPanelExperienceListEditor> panel, const LLSD& experience );
+	void onExperienceDetails( const LLSD& experience );
+	void processResponse( const LLSD& content );
+	uuid_list_t mExperienceIds;
+
+
+	LLScrollListCtrl*			mItems;
+	filter_list					mFilters;
+	LLButton*					mAdd;
+	LLButton*					mRemove;
+	LLButton*					mProfile;
+	PickerHandle				mPicker;
+	list_changed_signal_t		mAddedCallback;
+	list_changed_signal_t		mRemovedCallback;
+	LLUUID						mKey;
+	bool						mReadonly;
+	experience_function			mSticky;
+	U32							mMaxExperienceIDs;
+
+};
+
+#endif //LL_LLPANELEXPERIENCELISTEDITOR_H
diff --git a/indra/newview/llpanelexperiencelog.cpp b/indra/newview/llpanelexperiencelog.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..df03ef752616d4869e9ef7f2ec555d00ac784528
--- /dev/null
+++ b/indra/newview/llpanelexperiencelog.cpp
@@ -0,0 +1,264 @@
+/** 
+ * @file llpanelexperiencelog.cpp
+ * @brief llpanelexperiencelog
+ *
+ * $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2014, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+#include "llviewerprecompiledheaders.h"
+#include "llpanelexperiencelog.h"
+
+#include "llexperiencelog.h"
+#include "llexperiencecache.h"
+#include "llbutton.h"
+#include "llscrolllistctrl.h"
+#include "llcombobox.h"
+#include "llspinctrl.h"
+#include "llcheckboxctrl.h"
+#include "llfloaterreg.h"
+#include "llfloaterreporter.h"
+#include "llinventoryfunctions.h"
+
+
+#define BTN_PROFILE_XP "btn_profile_xp"
+#define BTN_REPORT_XP "btn_report_xp"
+
+static LLPanelInjector<LLPanelExperienceLog> register_experiences_panel("experience_log");
+
+
+LLPanelExperienceLog::LLPanelExperienceLog(  )
+	: mEventList(NULL)
+	, mPageSize(25)
+	, mCurrentPage(0)
+{
+	buildFromFile("panel_experience_log.xml");
+}
+
+
+BOOL LLPanelExperienceLog::postBuild( void )
+{
+	LLExperienceLog* log = LLExperienceLog::getInstance();
+	mEventList = getChild<LLScrollListCtrl>("experience_log_list");
+	mEventList->setCommitCallback(boost::bind(&LLPanelExperienceLog::onSelectionChanged, this));
+	mEventList->setDoubleClickCallback( boost::bind(&LLPanelExperienceLog::onProfileExperience, this));
+
+	getChild<LLButton>("btn_clear")->setCommitCallback(boost::bind(&LLExperienceLog::clear, log));
+	getChild<LLButton>("btn_clear")->setCommitCallback(boost::bind(&LLPanelExperienceLog::refresh, this));
+
+	getChild<LLButton>(BTN_PROFILE_XP)->setCommitCallback(boost::bind(&LLPanelExperienceLog::onProfileExperience, this));
+	getChild<LLButton>(BTN_REPORT_XP )->setCommitCallback(boost::bind(&LLPanelExperienceLog::onReportExperience, this));
+	getChild<LLButton>("btn_notify"  )->setCommitCallback(boost::bind(&LLPanelExperienceLog::onNotify, this));
+	getChild<LLButton>("btn_next"    )->setCommitCallback(boost::bind(&LLPanelExperienceLog::onNext, this));
+	getChild<LLButton>("btn_prev"    )->setCommitCallback(boost::bind(&LLPanelExperienceLog::onPrev, this));
+
+	LLCheckBoxCtrl* check = getChild<LLCheckBoxCtrl>("notify_all");
+	check->set(log->getNotifyNewEvent());
+	check->setCommitCallback(boost::bind(&LLPanelExperienceLog::notifyChanged, this));
+
+
+	LLSpinCtrl* spin = getChild<LLSpinCtrl>("logsizespinner");
+	spin->set(log->getMaxDays());
+	spin->setCommitCallback(boost::bind(&LLPanelExperienceLog::logSizeChanged, this));
+
+	mPageSize = log->getPageSize();
+	refresh();
+	mNewEvent = LLExperienceLog::instance().addUpdateSignal(boost::bind(&LLPanelExperienceLog::refresh, this));
+	return TRUE;
+}
+
+LLPanelExperienceLog* LLPanelExperienceLog::create()
+{
+	return new LLPanelExperienceLog();
+}
+
+void LLPanelExperienceLog::refresh()
+{
+	S32 selected = mEventList->getFirstSelectedIndex();
+	mEventList->deleteAllItems();
+	const LLSD events = LLExperienceLog::instance().getEvents();
+
+	if(events.size() == 0)
+	{
+		mEventList->setCommentText(getString("no_events"));
+		return;
+	}
+
+	setAllChildrenEnabled(FALSE);
+
+	LLSD item;
+	bool waiting = false;
+	LLUUID waiting_id;
+
+	int itemsToSkip = mPageSize*mCurrentPage;
+	int items = 0;
+	bool moreItems = false;
+	
+	if (!events.emptyMap())
+	{
+		LLSD::map_const_iterator day = events.endMap();
+		do
+		{
+			--day;
+			const LLSD& dayArray = day->second;
+			int size = dayArray.size();
+			if(itemsToSkip > size)
+			{
+				itemsToSkip -= size;
+				continue;
+			}
+			if(items >= mPageSize && size > 0)
+			{
+				moreItems = true;
+				break;
+			}
+			for(int i = dayArray.size() - itemsToSkip - 1; i >= 0; i--)
+			{
+				if(items >= mPageSize)
+				{
+					moreItems = true;
+					break;
+				}
+				const LLSD event = dayArray[i];
+				LLUUID id = event[LLExperienceCache::EXPERIENCE_ID].asUUID();
+				const LLSD& experience = LLExperienceCache::get(id);
+				if(experience.isUndefined()){
+					waiting = true;
+					waiting_id = id;
+				}
+				if(!waiting)
+				{
+					item["id"] = event;
+
+					LLSD& columns = item["columns"];
+					columns[0]["column"] = "time";
+					columns[0]["value"] = day->first+event["Time"].asString();
+					columns[1]["column"] = "event";
+					columns[1]["value"] = LLExperienceLog::getPermissionString(event, "ExperiencePermissionShort");
+					columns[2]["column"] = "experience_name";
+					columns[2]["value"] = experience[LLExperienceCache::NAME].asString();
+					columns[3]["column"] = "object_name";
+					columns[3]["value"] = event["ObjectName"].asString();
+					mEventList->addElement(item);
+				}
+				++items;
+			}
+		} while (day != events.beginMap());
+	}
+	if(waiting)
+	{
+		mEventList->deleteAllItems();
+		mEventList->setCommentText(getString("loading"));
+		LLExperienceCache::get(waiting_id, boost::bind(&LLPanelExperienceLog::refresh, this));
+	}
+	else
+	{
+		setAllChildrenEnabled(TRUE);
+
+		mEventList->setEnabled(TRUE);
+		getChild<LLButton>("btn_next")->setEnabled(moreItems);
+		getChild<LLButton>("btn_prev")->setEnabled(mCurrentPage>0);
+		getChild<LLButton>("btn_clear")->setEnabled(mEventList->getItemCount()>0);
+		if(selected<0)
+		{
+			selected = 0;
+		}
+		mEventList->selectNthItem(selected);
+		onSelectionChanged();
+	}
+}
+
+void LLPanelExperienceLog::onProfileExperience()
+{
+	LLSD event = getSelectedEvent();
+	if(event.isDefined())
+	{
+		LLFloaterReg::showInstance("experience_profile", event[LLExperienceCache::EXPERIENCE_ID].asUUID(), true);
+	}
+}
+
+void LLPanelExperienceLog::onReportExperience()
+{
+	LLSD event = getSelectedEvent();
+	if(event.isDefined())
+	{
+		LLFloaterReporter::showFromExperience(event[LLExperienceCache::EXPERIENCE_ID].asUUID());
+	}
+}
+
+void LLPanelExperienceLog::onNotify()
+{
+	LLSD event = getSelectedEvent();
+	if(event.isDefined())
+	{
+		LLExperienceLog::instance().notify(event);
+	}
+}
+
+void LLPanelExperienceLog::onNext()
+{
+	mCurrentPage++;
+	refresh();
+}
+
+void LLPanelExperienceLog::onPrev()
+{
+	if(mCurrentPage>0)
+	{
+		mCurrentPage--;
+		refresh();
+	}
+}
+
+void LLPanelExperienceLog::notifyChanged()
+{
+	LLExperienceLog::instance().setNotifyNewEvent(getChild<LLCheckBoxCtrl>("notify_all")->get());
+}
+
+void LLPanelExperienceLog::logSizeChanged()
+{
+	int value = (int)(getChild<LLSpinCtrl>("logsizespinner")->get());
+	bool dirty = value > 0 && value < LLExperienceLog::instance().getMaxDays();
+	LLExperienceLog::instance().setMaxDays(value);
+	if(dirty)
+	{
+		refresh();
+	}
+}
+
+void LLPanelExperienceLog::onSelectionChanged()
+{
+	bool enabled = (1 == mEventList->getNumSelected());
+	getChild<LLButton>(BTN_REPORT_XP)->setEnabled(enabled);
+	getChild<LLButton>(BTN_PROFILE_XP)->setEnabled(enabled);
+	getChild<LLButton>("btn_notify")->setEnabled(enabled);
+}
+
+LLSD LLPanelExperienceLog::getSelectedEvent()
+{
+	LLScrollListItem* item = mEventList->getFirstSelected();
+	if(item)
+	{
+		return item->getValue();
+	}
+	return LLSD();
+}
diff --git a/indra/newview/llpanelexperiencelog.h b/indra/newview/llpanelexperiencelog.h
new file mode 100644
index 0000000000000000000000000000000000000000..4135d9cac971d37e648ba2299343ace30cd6bc8f
--- /dev/null
+++ b/indra/newview/llpanelexperiencelog.h
@@ -0,0 +1,64 @@
+/** 
+ * @file llpanelexperiencelog.h
+ * @brief llpanelexperiencelog and related class definitions
+ *
+ * $LicenseInfo:firstyear=2014&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2014, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+#ifndef LL_LLPANELEXPERIENCELOG_H
+#define LL_LLPANELEXPERIENCELOG_H
+
+#include "llpanel.h"
+class LLScrollListCtrl;
+
+class LLPanelExperienceLog
+	: public LLPanel 
+{
+public:
+
+	LLPanelExperienceLog();
+
+	static LLPanelExperienceLog* create();
+
+	/*virtual*/ BOOL postBuild(void);
+
+	void refresh();
+protected:
+	void logSizeChanged();
+	void notifyChanged();
+	void onNext();
+	void onNotify();
+	void onPrev();
+	void onProfileExperience();
+	void onReportExperience();
+	void onSelectionChanged();
+
+	LLSD getSelectedEvent();
+private:
+	LLScrollListCtrl* mEventList;
+	U32 mPageSize;
+	U32 mCurrentPage;
+	boost::signals2::scoped_connection mNewEvent;
+};
+
+#endif // LL_LLPANELEXPERIENCELOG_H
diff --git a/indra/newview/llpanelexperiencepicker.cpp b/indra/newview/llpanelexperiencepicker.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..70d826a407f8d7e8e731df07a51fc45669211405
--- /dev/null
+++ b/indra/newview/llpanelexperiencepicker.cpp
@@ -0,0 +1,443 @@
+/** 
+* @file llpanelexperiencepicker.cpp
+* @brief Implementation of llpanelexperiencepicker
+* @author dolphin@lindenlab.com
+*
+* $LicenseInfo:firstyear=2014&license=viewerlgpl$
+* Second Life Viewer Source Code
+* Copyright (C) 2014, Linden Research, Inc.
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation;
+* version 2.1 of the License only.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*
+* Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+* $/LicenseInfo$
+*/
+
+#include "llviewerprecompiledheaders.h"
+
+#include "llpanelexperiencepicker.h"
+
+
+#include "lllineeditor.h"
+#include "llfloaterreg.h"
+#include "llscrolllistctrl.h"
+#include "llviewerregion.h"
+#include "llagent.h"
+#include "llexperiencecache.h"
+#include "llslurl.h"
+#include "llavatarnamecache.h"
+#include "llcombobox.h"
+#include "llviewercontrol.h"
+#include "llfloater.h"
+#include "lltrans.h"
+
+#define BTN_FIND		"find"
+#define BTN_OK			"ok_btn"
+#define BTN_CANCEL		"cancel_btn"
+#define BTN_PROFILE		"profile_btn"
+#define BTN_LEFT		"left_btn"
+#define BTN_RIGHT		"right_btn"
+#define TEXT_EDIT		"edit"
+#define TEXT_MATURITY	"maturity"
+#define LIST_RESULTS	"search_results"
+#define PANEL_SEARCH	"search_panel"
+
+const static std::string columnSpace = " ";
+
+static LLPanelInjector<LLPanelExperiencePicker> t_panel_status("llpanelexperiencepicker");
+
+class LLExperienceSearchResponder : public LLHTTPClient::Responder
+{
+public:
+	LLUUID mQueryID;
+	LLHandle<LLPanelExperiencePicker> mParent;
+
+	LLExperienceSearchResponder(const LLUUID& id, const LLHandle<LLPanelExperiencePicker>& parent) : mQueryID(id), mParent(parent) { }
+
+protected:
+	/*virtual*/ void httpSuccess()
+	{
+		if(mParent.isDead())
+			return;
+
+		LLPanelExperiencePicker* panel =mParent.get();
+		if (panel)
+		{
+			panel->processResponse(mQueryID, getContent());
+		}
+	}
+
+	/*virtual*/ void httpFailure()
+	{
+		if(mParent.isDead())
+			return;
+
+		LLPanelExperiencePicker* panel =mParent.get();
+		if (panel)
+		{
+			panel->processResponse(mQueryID, LLSD());
+		}
+		LL_WARNS() << "experience picker failed [status:" << getStatus() << "]: " << getContent() << LL_ENDL;
+	}
+};
+
+LLPanelExperiencePicker::LLPanelExperiencePicker()
+	:LLPanel()
+{
+	buildFromFile("panel_experience_search.xml");
+	setDefaultFilters();
+}
+
+LLPanelExperiencePicker::~LLPanelExperiencePicker()
+{
+}
+
+BOOL LLPanelExperiencePicker::postBuild()
+{
+	getChild<LLLineEditor>(TEXT_EDIT)->setKeystrokeCallback( boost::bind(&LLPanelExperiencePicker::editKeystroke, this, _1, _2),NULL);
+
+	childSetAction(BTN_FIND, boost::bind(&LLPanelExperiencePicker::onBtnFind, this));
+	getChildView(BTN_FIND)->setEnabled(TRUE);
+
+	LLScrollListCtrl* searchresults = getChild<LLScrollListCtrl>(LIST_RESULTS);
+	searchresults->setDoubleClickCallback( boost::bind(&LLPanelExperiencePicker::onBtnSelect, this));
+	searchresults->setCommitCallback(boost::bind(&LLPanelExperiencePicker::onList, this));
+	getChildView(LIST_RESULTS)->setEnabled(FALSE);
+	getChild<LLScrollListCtrl>(LIST_RESULTS)->setCommentText(getString("no_results"));
+
+	childSetAction(BTN_OK, boost::bind(&LLPanelExperiencePicker::onBtnSelect, this));
+	getChildView(BTN_OK)->setEnabled(FALSE);
+	childSetAction(BTN_CANCEL, boost::bind(&LLPanelExperiencePicker::onBtnClose, this));
+	childSetAction(BTN_PROFILE, boost::bind(&LLPanelExperiencePicker::onBtnProfile, this));
+	getChildView(BTN_PROFILE)->setEnabled(FALSE);
+
+	getChild<LLComboBox>(TEXT_MATURITY)->setCurrentByIndex(2);
+	getChild<LLComboBox>(TEXT_MATURITY)->setCommitCallback(boost::bind(&LLPanelExperiencePicker::onMaturity, this));
+	getChild<LLUICtrl>(TEXT_EDIT)->setFocus(TRUE);
+
+	childSetAction(BTN_LEFT, boost::bind(&LLPanelExperiencePicker::onPage, this, -1));
+	childSetAction(BTN_RIGHT, boost::bind(&LLPanelExperiencePicker::onPage, this, 1));
+
+	LLPanel* search_panel = getChild<LLPanel>(PANEL_SEARCH);
+	if (search_panel)
+	{
+		// Start searching when Return is pressed in the line editor.
+		search_panel->setDefaultBtn(BTN_FIND);
+	}
+	return TRUE;
+}
+
+void LLPanelExperiencePicker::editKeystroke( class LLLineEditor* caller, void* user_data )
+{
+	getChildView(BTN_FIND)->setEnabled(true);
+}
+
+void LLPanelExperiencePicker::onBtnFind()
+{
+	mCurrentPage=1;
+	find();
+}
+
+void LLPanelExperiencePicker::onList()
+{
+	bool enabled = isSelectButtonEnabled();
+	getChildView(BTN_OK)->setEnabled(enabled);
+
+	enabled = enabled && getChild<LLScrollListCtrl>(LIST_RESULTS)->getNumSelected() == 1;
+	getChildView(BTN_PROFILE)->setEnabled(enabled);
+}
+
+void LLPanelExperiencePicker::find()
+{
+	std::string text = getChild<LLUICtrl>(TEXT_EDIT)->getValue().asString();
+	mQueryID.generate();
+	std::ostringstream url;
+
+	LLViewerRegion* region = gAgent.getRegion();
+	std::string cap = region->getCapability("FindExperienceByName");
+	if (!cap.empty())
+	{
+		url << cap << "?page=" << mCurrentPage << "&page_size=30&query=" << LLURI::escape(text);
+		LLHTTPClient::get(url.str(), new LLExperienceSearchResponder(mQueryID, getDerivedHandle<LLPanelExperiencePicker>()));
+
+	}
+	getChild<LLScrollListCtrl>(LIST_RESULTS)->deleteAllItems();
+	getChild<LLScrollListCtrl>(LIST_RESULTS)->setCommentText(getString("searching"));
+	
+	getChildView(BTN_OK)->setEnabled(FALSE);
+	getChildView(BTN_PROFILE)->setEnabled(FALSE);
+
+	getChildView(BTN_RIGHT)->setEnabled(FALSE);
+	getChildView(BTN_LEFT)->setEnabled(FALSE);
+}
+
+
+bool LLPanelExperiencePicker::isSelectButtonEnabled()
+{
+	LLScrollListCtrl* list=getChild<LLScrollListCtrl>(LIST_RESULTS);
+	return list->getFirstSelectedIndex() >=0;
+}
+
+void LLPanelExperiencePicker::getSelectedExperienceIds( const LLScrollListCtrl* results, uuid_vec_t &experience_ids )
+{
+	std::vector<LLScrollListItem*> items = results->getAllSelected();
+	for(std::vector<LLScrollListItem*>::iterator it = items.begin(); it != items.end(); ++it)
+	{
+		LLScrollListItem* item = *it;
+		if (item->getUUID().notNull())
+		{
+			experience_ids.push_back(item->getUUID());
+		}
+	}
+}
+
+void LLPanelExperiencePicker::setAllowMultiple( bool allow_multiple )
+{
+	getChild<LLScrollListCtrl>(LIST_RESULTS)->setAllowMultipleSelection(allow_multiple);
+}
+
+
+void name_callback(const LLHandle<LLPanelExperiencePicker>& floater, const LLUUID& experience_id, const LLUUID& agent_id, const LLAvatarName& av_name)
+{
+	if(floater.isDead())
+		return;
+	LLPanelExperiencePicker* picker = floater.get();
+	LLScrollListCtrl* search_results = picker->getChild<LLScrollListCtrl>(LIST_RESULTS);
+
+	LLScrollListItem* item = search_results->getItem(experience_id);
+	if(!item)
+		return;
+
+	item->getColumn(2)->setValue(columnSpace+av_name.getDisplayName());
+
+}
+
+void LLPanelExperiencePicker::processResponse( const LLUUID& query_id, const LLSD& content )
+{
+	if(query_id != mQueryID)
+	{
+		return;
+	}
+
+	mResponse = content;
+
+	const LLSD& experiences=mResponse["experience_keys"];
+	LLSD::array_const_iterator it = experiences.beginArray();
+	for ( ; it != experiences.endArray(); ++it)
+	{
+		LLExperienceCache::insert(*it);
+	}
+
+	getChildView(BTN_RIGHT)->setEnabled(content.has("next_page_url"));
+	getChildView(BTN_LEFT)->setEnabled(content.has("previous_page_url"));
+
+	filterContent();
+
+}
+
+void LLPanelExperiencePicker::onBtnSelect()
+{
+	if(!isSelectButtonEnabled())
+	{
+		return;
+	}
+
+	if(mSelectionCallback)
+	{
+		const LLScrollListCtrl* results = getChild<LLScrollListCtrl>(LIST_RESULTS);
+		uuid_vec_t experience_ids;
+		
+		getSelectedExperienceIds(results, experience_ids);
+		mSelectionCallback(experience_ids);
+		getChild<LLScrollListCtrl>(LIST_RESULTS)->deselectAllItems(TRUE);
+		if(mCloseOnSelect)
+		{
+			mCloseOnSelect = FALSE;
+			onBtnClose();
+		}
+	}
+	else 
+	{
+		onBtnProfile();
+	}
+}
+
+void LLPanelExperiencePicker::onBtnClose()
+{
+	LLFloater* floater = getParentByType<LLFloater>();
+	if (floater)
+	{
+		floater->closeFloater();
+	}
+}
+
+void LLPanelExperiencePicker::onBtnProfile()
+{
+	LLScrollListItem* item = getChild<LLScrollListCtrl>(LIST_RESULTS)->getFirstSelected();
+	if(item)
+	{
+		LLFloaterReg::showInstance("experience_profile", item->getUUID(), true);
+	}
+}
+
+std::string LLPanelExperiencePicker::getMaturityString(int maturity)
+{
+	if(maturity <= SIM_ACCESS_PG)
+	{
+		return getString("maturity_icon_general");
+	}
+	else if(maturity <= SIM_ACCESS_MATURE)
+	{
+		return getString("maturity_icon_moderate");
+	}
+	return getString("maturity_icon_adult");
+}
+
+void LLPanelExperiencePicker::filterContent()
+{
+	LLScrollListCtrl* search_results = getChild<LLScrollListCtrl>(LIST_RESULTS);
+
+	const LLSD& experiences=mResponse["experience_keys"];
+
+	search_results->deleteAllItems();
+
+	LLSD item;
+	LLSD::array_const_iterator it = experiences.beginArray();
+	for ( ; it != experiences.endArray(); ++it)
+	{
+		const LLSD& experience = *it;
+
+		if(isExperienceHidden(experience))
+			continue;
+
+		std::string experience_name_string = experience[LLExperienceCache::NAME].asString();
+		if (experience_name_string.empty())
+		{
+			experience_name_string = LLTrans::getString("ExperienceNameUntitled");
+		}
+
+		item["id"]=experience[LLExperienceCache::EXPERIENCE_ID];
+		LLSD& columns = item["columns"];
+		columns[0]["column"] = "maturity";
+		columns[0]["value"] = getMaturityString(experience[LLExperienceCache::MATURITY].asInteger());
+		columns[0]["type"]="icon";
+		columns[0]["halign"]="right";
+		columns[1]["column"] = "experience_name";
+		columns[1]["value"] = columnSpace+experience_name_string;
+		columns[2]["column"] = "owner";
+		columns[2]["value"] = columnSpace+getString("loading");
+		search_results->addElement(item);
+		LLAvatarNameCache::get(experience[LLExperienceCache::AGENT_ID], boost::bind(name_callback, getDerivedHandle<LLPanelExperiencePicker>(), experience[LLExperienceCache::EXPERIENCE_ID], _1, _2));
+	}
+	
+	if (search_results->isEmpty())
+	{
+		LLStringUtil::format_map_t map;
+		std::string search_text = getChild<LLUICtrl>(TEXT_EDIT)->getValue().asString();
+		map["[TEXT]"] = search_text;
+		if (search_text.empty())
+		{
+			getChild<LLScrollListCtrl>(LIST_RESULTS)->setCommentText(getString("no_results"));
+		}
+		else
+		{
+			getChild<LLScrollListCtrl>(LIST_RESULTS)->setCommentText(getString("not_found", map));
+		}
+		search_results->setEnabled(false);
+		getChildView(BTN_OK)->setEnabled(false);
+		getChildView(BTN_PROFILE)->setEnabled(false);
+	}
+	else
+	{
+		getChildView(BTN_OK)->setEnabled(true);
+		search_results->setEnabled(true);
+		search_results->sortByColumnIndex(1, TRUE);
+		std::string text = getChild<LLUICtrl>(TEXT_EDIT)->getValue().asString();
+		if (!search_results->selectItemByLabel(text, TRUE, 1))
+		{
+			search_results->selectFirstItem();
+		}			
+		onList();
+		search_results->setFocus(TRUE);
+	}
+}
+
+void LLPanelExperiencePicker::onMaturity()
+{
+	if(mResponse.has("experience_keys") && mResponse["experience_keys"].beginArray() != mResponse["experience_keys"].endArray())
+	{
+		filterContent();
+	}
+}
+
+bool LLPanelExperiencePicker::isExperienceHidden( const LLSD& experience) const
+{
+	bool hide=false;
+	filter_list::const_iterator it = mFilters.begin();
+	for(/**/;it != mFilters.end(); ++it)
+	{
+		if((*it)(experience)){
+			return true;
+		}
+	}
+
+	return hide;
+}
+
+bool LLPanelExperiencePicker::FilterOverRating( const LLSD& experience )
+{
+	int maturity = getChild<LLComboBox>(TEXT_MATURITY)->getSelectedValue().asInteger();
+	return experience[LLExperienceCache::MATURITY].asInteger() > maturity;
+}
+
+bool LLPanelExperiencePicker::FilterWithProperty( const LLSD& experience, S32 prop)
+{
+	return (experience[LLExperienceCache::PROPERTIES].asInteger() & prop) != 0;
+}
+
+bool LLPanelExperiencePicker::FilterWithoutProperties( const LLSD& experience, S32 prop)
+{
+	return ((experience[LLExperienceCache::PROPERTIES].asInteger() & prop) == prop);
+}
+
+bool LLPanelExperiencePicker::FilterWithoutProperty( const LLSD& experience, S32 prop )
+{
+	return (experience[LLExperienceCache::PROPERTIES].asInteger() & prop) == 0;
+}
+
+void LLPanelExperiencePicker::setDefaultFilters()
+{
+	mFilters.clear();
+	addFilter(boost::bind(&LLPanelExperiencePicker::FilterOverRating, this, _1));
+}
+
+bool LLPanelExperiencePicker::FilterMatching( const LLSD& experience, const LLUUID& id )
+{
+	if(experience.isUUID())
+	{
+		return experience.asUUID() == id;
+	}
+	return experience[LLExperienceCache::EXPERIENCE_ID].asUUID() == id;
+}
+
+void LLPanelExperiencePicker::onPage( S32 direction )
+{
+	mCurrentPage += direction;
+	if(mCurrentPage < 1)
+	{
+		mCurrentPage = 1;
+	}
+	find();
+}
diff --git a/indra/newview/llpanelexperiencepicker.h b/indra/newview/llpanelexperiencepicker.h
new file mode 100644
index 0000000000000000000000000000000000000000..e39ffed70b21c8802eaa7fce8c9c782409c5abc7
--- /dev/null
+++ b/indra/newview/llpanelexperiencepicker.h
@@ -0,0 +1,95 @@
+/** 
+* @file   llpanelexperiencepicker.h
+* @brief  Header file for llpanelexperiencepicker
+* @author dolphin@lindenlab.com
+*
+* $LicenseInfo:firstyear=2014&license=viewerlgpl$
+* Second Life Viewer Source Code
+* Copyright (C) 2014, Linden Research, Inc.
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation;
+* version 2.1 of the License only.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*
+* Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+* $/LicenseInfo$
+*/
+#ifndef LL_LLPANELEXPERIENCEPICKER_H
+#define LL_LLPANELEXPERIENCEPICKER_H
+
+#include "llpanel.h"
+
+class LLScrollListCtrl;
+class LLLineEditor;
+
+
+class LLPanelExperiencePicker : public LLPanel
+{
+public:
+	friend class LLExperienceSearchResponder;
+	friend class LLFloaterExperiencePicker;
+
+	typedef boost::function<void (const uuid_vec_t&)> select_callback_t;
+	// filter function for experiences, return true if the experience should be hidden.
+	typedef boost::function<bool (const LLSD&)> filter_function;
+	typedef std::vector<filter_function> filter_list;
+
+	LLPanelExperiencePicker();
+	virtual ~LLPanelExperiencePicker();
+
+	BOOL postBuild();
+
+	void addFilter(filter_function func){mFilters.push_back(func);}
+	template <class IT>
+	void addFilters(IT begin, IT end){mFilters.insert(mFilters.end(), begin, end);}
+	void setDefaultFilters();
+
+	static bool FilterWithProperty(const LLSD& experience, S32 prop);
+	static bool FilterWithoutProperties(const LLSD& experience, S32 prop);
+	static bool FilterWithoutProperty(const LLSD& experience, S32 prop);
+	static bool FilterMatching(const LLSD& experience, const LLUUID& id);
+	bool FilterOverRating(const LLSD& experience);
+
+private:
+	void editKeystroke(LLLineEditor* caller, void* user_data);
+
+	void onBtnFind();
+	void onBtnSelect();
+	void onBtnClose();
+	void onBtnProfile();
+	void onList();
+	void onMaturity();
+	void onPage(S32 direction);
+
+	void getSelectedExperienceIds( const LLScrollListCtrl* results, uuid_vec_t &experience_ids );
+	void setAllowMultiple(bool allow_multiple);
+
+
+	void find();
+	bool isSelectButtonEnabled();
+	void processResponse( const LLUUID& query_id, const LLSD& content );
+
+	void filterContent();
+	bool isExperienceHidden(const LLSD& experience) const ;
+	std::string getMaturityString(int maturity);
+
+
+	select_callback_t	mSelectionCallback;
+	filter_list			mFilters;
+	LLUUID				mQueryID;
+	LLSD				mResponse;
+	bool				mCloseOnSelect;
+	S32					mCurrentPage;
+};
+
+#endif // LL_LLPANELEXPERIENCEPICKER_H
diff --git a/indra/newview/llpanelexperiences.cpp b/indra/newview/llpanelexperiences.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..3ee4b5e968fcdd931ab5289e594c7da0275d98a8
--- /dev/null
+++ b/indra/newview/llpanelexperiences.cpp
@@ -0,0 +1,218 @@
+/** 
+ * @file llpanelexperiences.cpp
+ * @brief LLPanelExperiences class implementation
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+
+#include "llviewerprecompiledheaders.h"
+
+
+#include "llpanelprofile.h"
+#include "lluictrlfactory.h"
+#include "llexperiencecache.h"
+#include "llagent.h"
+
+#include "llpanelexperiences.h"
+#include "llslurl.h"
+#include "lllayoutstack.h"
+
+
+
+static LLPanelInjector<LLPanelExperiences> register_experiences_panel("experiences_panel");
+
+
+//comparators
+static const LLExperienceItemComparator NAME_COMPARATOR;
+
+LLPanelExperiences::LLPanelExperiences(  )
+	: mExperiencesList(NULL)
+{
+    buildFromFile("panel_experiences.xml");
+}
+
+BOOL LLPanelExperiences::postBuild( void )
+{
+	mExperiencesList = getChild<LLFlatListView>("experiences_list");
+	if (hasString("loading_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("loading_experiences"));
+	}
+	else if (hasString("no_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("no_experiences"));
+	}
+	mExperiencesList->setComparator(&NAME_COMPARATOR);
+
+	return TRUE;
+}
+
+
+
+LLExperienceItem* LLPanelExperiences::getSelectedExperienceItem()
+{
+	LLPanel* selected_item = mExperiencesList->getSelectedItem();
+	if (!selected_item) return NULL;
+
+	return dynamic_cast<LLExperienceItem*>(selected_item);
+}
+
+void LLPanelExperiences::setExperienceList( const LLSD& experiences )
+{
+	if (hasString("no_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("no_experiences"));
+	}
+    mExperiencesList->clear();
+
+    LLSD::array_const_iterator it = experiences.beginArray();
+    for( /**/ ; it != experiences.endArray(); ++it)
+    {
+        LLUUID public_key = it->asUUID();
+        LLExperienceItem* item = new LLExperienceItem();
+
+        item->init(public_key);
+        mExperiencesList->addItem(item, public_key);
+    }
+
+	mExperiencesList->sort();
+}
+
+LLPanelExperiences* LLPanelExperiences::create(const std::string& name)
+{
+    LLPanelExperiences* panel= new LLPanelExperiences();
+    panel->setName(name);
+    return panel;
+}
+
+void LLPanelExperiences::removeExperiences( const LLSD& ids )
+{
+    LLSD::array_const_iterator it = ids.beginArray();
+    for( /**/ ; it != ids.endArray(); ++it)
+    {
+        removeExperience(it->asUUID());
+    }
+}
+
+void LLPanelExperiences::removeExperience( const LLUUID& id )
+{
+    mExperiencesList->removeItemByUUID(id);
+}
+
+void LLPanelExperiences::addExperience( const LLUUID& id )
+{
+    if(!mExperiencesList->getItemByValue(id))
+    {
+        LLExperienceItem* item = new LLExperienceItem();
+
+        item->init(id);
+        mExperiencesList->addItem(item, id);
+		mExperiencesList->sort();
+    }
+}
+
+void LLPanelExperiences::setButtonAction(const std::string& label, const commit_signal_t::slot_type& cb )
+{
+	if(label.empty())
+	{
+		getChild<LLLayoutPanel>("button_panel")->setVisible(false);
+	}
+	else
+	{
+		getChild<LLLayoutPanel>("button_panel")->setVisible(true);
+		LLButton* child = getChild<LLButton>("btn_action");
+		child->setCommitCallback(cb);
+		child->setLabel(getString(label));
+	}
+}
+
+void LLPanelExperiences::enableButton( bool enable )
+{
+	getChild<LLButton>("btn_action")->setEnabled(enable);
+}
+
+
+LLExperienceItem::LLExperienceItem()
+	: mName(NULL)
+{
+	buildFromFile("panel_experience_list_item.xml");
+}
+
+void LLExperienceItem::init( const LLUUID& id)
+{
+    mName = getChild<LLUICtrl>("experience_name");
+	mName->setValue(LLSLURL("experience", id, "profile").getSLURLString());
+}
+
+LLExperienceItem::~LLExperienceItem()
+{
+
+}
+
+std::string LLExperienceItem::getExperienceName() const
+{
+	if (mName)
+	{
+		return mName->getValue();
+	}
+	
+	return "";
+}
+
+void LLPanelSearchExperiences::doSearch()
+{
+
+}
+
+LLPanelSearchExperiences* LLPanelSearchExperiences::create( const std::string& name )
+{
+    LLPanelSearchExperiences* panel= new LLPanelSearchExperiences();
+    panel->getChild<LLPanel>("results")->addChild(LLPanelExperiences::create(name));
+    return panel;
+}
+
+BOOL LLPanelSearchExperiences::postBuild( void )
+{
+    childSetAction("search_button", boost::bind(&LLPanelSearchExperiences::doSearch, this));
+    return TRUE;
+}
+
+bool LLExperienceItemComparator::compare(const LLPanel* item1, const LLPanel* item2) const
+{
+	const LLExperienceItem* experience_item1 = dynamic_cast<const LLExperienceItem*>(item1);
+	const LLExperienceItem* experience_item2 = dynamic_cast<const LLExperienceItem*>(item2);
+	
+	if (!experience_item1 || !experience_item2)
+	{
+		LL_ERRS() << "item1 and item2 cannot be null" << LL_ENDL;
+		return true;
+	}
+
+	std::string name1 = experience_item1->getExperienceName();
+	std::string name2 = experience_item2->getExperienceName();
+
+	LLStringUtil::toUpper(name1);
+	LLStringUtil::toUpper(name2);
+
+	return name1 < name2;
+}
diff --git a/indra/newview/llpanelexperiences.h b/indra/newview/llpanelexperiences.h
new file mode 100644
index 0000000000000000000000000000000000000000..0370499583def14f87dce789917394f78a6bcb01
--- /dev/null
+++ b/indra/newview/llpanelexperiences.h
@@ -0,0 +1,97 @@
+/** 
+ * @file llpanelexperiences.h
+ * @brief LLPanelExperiences class definition
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#ifndef LL_LLPANELEXPERIENCES_H
+#define LL_LLPANELEXPERIENCES_H
+
+#include "llaccordionctrltab.h"
+#include "llflatlistview.h"
+#include "llpanelavatar.h"
+
+class LLExperienceItem;
+class LLPanelProfile; 
+
+
+class LLPanelSearchExperiences 
+    : public LLPanel
+{
+public:
+    LLPanelSearchExperiences(){}
+    static LLPanelSearchExperiences* create(const std::string& name);
+    /*virtual*/ BOOL postBuild(void);
+
+    void doSearch();
+};
+
+class LLPanelExperiences
+	: public LLPanel 
+{
+public:
+    LLPanelExperiences();
+
+    static LLPanelExperiences* create(const std::string& name);
+
+	/*virtual*/ BOOL postBuild(void);
+	/*virtual*/ void onClosePanel();
+
+    void setExperienceList(const LLSD& experiences);
+
+    LLExperienceItem* getSelectedExperienceItem();
+    void removeExperiences( const LLSD& ids );
+    void removeExperience( const LLUUID& id);
+    void addExperience( const LLUUID& id);
+	void setButtonAction(const std::string& label, const commit_signal_t::slot_type& cb);
+	void enableButton(bool enable);
+protected:
+
+private:
+	LLFlatListView* mExperiencesList;
+};
+
+class LLExperienceItemComparator : public LLFlatListView::ItemComparator
+{
+	LOG_CLASS(LLExperienceItemComparator);
+
+public:
+	LLExperienceItemComparator() {};
+	virtual ~LLExperienceItemComparator() {};
+	
+	virtual bool compare(const LLPanel* item1, const LLPanel* item2) const;
+};
+
+class LLExperienceItem 
+	: public LLPanel
+{
+public:
+	LLExperienceItem();
+	~LLExperienceItem();
+
+	void init(const LLUUID& experience_id);
+	std::string getExperienceName() const;
+protected:
+	LLUICtrl* mName;
+};
+#endif // LL_LLPANELEXPERIENCES_H
diff --git a/indra/newview/llpanelgroup.cpp b/indra/newview/llpanelgroup.cpp
index f4aab6bd4e64df6cc2f46ad233c53e9e258fcf1c..f67a90fd01a862baca7d369133e2985250871cf4 100755
--- a/indra/newview/llpanelgroup.cpp
+++ b/indra/newview/llpanelgroup.cpp
@@ -177,11 +177,13 @@ BOOL LLPanelGroup::postBuild()
 	LLPanelGroupTab* panel_roles = findChild<LLPanelGroupTab>("group_roles_tab_panel");
 	LLPanelGroupTab* panel_notices = findChild<LLPanelGroupTab>("group_notices_tab_panel");
 	LLPanelGroupTab* panel_land = findChild<LLPanelGroupTab>("group_land_tab_panel");
+	LLPanelGroupTab* panel_experiences = findChild<LLPanelGroupTab>("group_experiences_tab_panel");
 
 	if(panel_general)	mTabs.push_back(panel_general);
 	if(panel_roles)		mTabs.push_back(panel_roles);
 	if(panel_notices)	mTabs.push_back(panel_notices);
 	if(panel_land)		mTabs.push_back(panel_land);
+	if(panel_experiences)		mTabs.push_back(panel_experiences);
 
 	if(panel_general)
 	{
@@ -418,6 +420,7 @@ void LLPanelGroup::setGroupID(const LLUUID& group_id)
 	LLAccordionCtrlTab* tab_roles = getChild<LLAccordionCtrlTab>("group_roles_tab");
 	LLAccordionCtrlTab* tab_notices = getChild<LLAccordionCtrlTab>("group_notices_tab");
 	LLAccordionCtrlTab* tab_land = getChild<LLAccordionCtrlTab>("group_land_tab");
+	LLAccordionCtrlTab* tab_experiences = getChild<LLAccordionCtrlTab>("group_experiences_tab");
 
 	if(mButtonJoin)
 		mButtonJoin->setVisible(false);
@@ -434,10 +437,13 @@ void LLPanelGroup::setGroupID(const LLUUID& group_id)
 			tab_notices->changeOpenClose(tab_notices->getDisplayChildren());
 		if(tab_land->getDisplayChildren())
 			tab_land->changeOpenClose(tab_land->getDisplayChildren());
+		if(tab_experiences->getDisplayChildren())
+			tab_experiences->changeOpenClose(tab_land->getDisplayChildren());
 
 		tab_roles->setVisible(false);
 		tab_notices->setVisible(false);
 		tab_land->setVisible(false);
+		tab_experiences->setVisible(false);
 
 		getChild<LLUICtrl>("group_name")->setVisible(false);
 		getChild<LLUICtrl>("group_name_editor")->setVisible(true);
@@ -459,6 +465,8 @@ void LLPanelGroup::setGroupID(const LLUUID& group_id)
 				tab_notices->changeOpenClose(tab_notices->getDisplayChildren());
 			if(tab_land->getDisplayChildren())
 				tab_land->changeOpenClose(tab_land->getDisplayChildren());
+			if(tab_experiences->getDisplayChildren())
+				tab_experiences->changeOpenClose(tab_land->getDisplayChildren());
 		}
 
 		LLGroupData agent_gdatap;
@@ -467,6 +475,7 @@ void LLPanelGroup::setGroupID(const LLUUID& group_id)
 		tab_roles->setVisible(is_member);
 		tab_notices->setVisible(is_member);
 		tab_land->setVisible(is_member);
+		tab_experiences->setVisible(is_member);
 
 		getChild<LLUICtrl>("group_name")->setVisible(true);
 		getChild<LLUICtrl>("group_name_editor")->setVisible(false);
@@ -534,6 +543,7 @@ bool LLPanelGroup::apply()
 		&& apply(findChild<LLPanelGroupTab>("group_roles_tab_panel"))
 		&& apply(findChild<LLPanelGroupTab>("group_notices_tab_panel"))
 		&& apply(findChild<LLPanelGroupTab>("group_land_tab_panel"))
+		&& apply(findChild<LLPanelGroupTab>("group_experiences_tab_panel"))
 		;
 }
 
diff --git a/indra/newview/llpanelgroupexperiences.cpp b/indra/newview/llpanelgroupexperiences.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..76b68122fbbf16616a4e70947982a0b3da0ca27d
--- /dev/null
+++ b/indra/newview/llpanelgroupexperiences.cpp
@@ -0,0 +1,143 @@
+/** 
+ * @file llpanelgroupexperiences.cpp
+ * @brief List of experiences owned by a group.
+ *
+ * $LicenseInfo:firstyear=2006&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+
+#include "llpanelgroupexperiences.h"
+
+#include "lluictrlfactory.h"
+#include "roles_constants.h"
+
+#include "llhttpclient.h"
+#include "llagent.h"
+#include "llviewerregion.h"
+#include "llflatlistview.h"
+#include "llpanelexperiences.h"
+#include "llsd.h"
+
+
+static LLPanelInjector<LLPanelGroupExperiences> t_panel_group_experiences("panel_group_experiences");
+
+
+class LLGroupExperienceResponder : public LLHTTPClient::Responder
+{
+public:
+	LLHandle<LLPanelGroupExperiences> mHandle;
+
+	LLGroupExperienceResponder(LLHandle<LLPanelGroupExperiences> handle) : mHandle(handle) { }
+
+protected:
+	/*virtual*/ void httpSuccess()
+	{
+		if (mHandle.isDead())
+		{
+			return;
+		}
+
+		LLPanelGroupExperiences* panel = mHandle.get();
+		if (panel)
+		{
+			panel->setExperienceList(getContent().get("experience_ids"));
+		}
+	}
+
+	/*virtual*/ void httpFailure()
+	{
+		LL_WARNS() << "experience responder failed [status:" << getStatus() << "]: " << getContent() << LL_ENDL;
+	}
+};
+
+LLPanelGroupExperiences::LLPanelGroupExperiences()
+:	LLPanelGroupTab(), mExperiencesList(NULL)
+{
+}
+
+LLPanelGroupExperiences::~LLPanelGroupExperiences()
+{
+}
+
+BOOL LLPanelGroupExperiences::postBuild()
+{
+	mExperiencesList = getChild<LLFlatListView>("experiences_list");
+	if (hasString("loading_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("loading_experiences"));
+	}
+	else if (hasString("no_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("no_experiences"));
+	}
+
+	return LLPanelGroupTab::postBuild();
+}
+
+void LLPanelGroupExperiences::activate()
+{
+	if (getGroupID() == LLUUID::null)
+	{
+		return;
+	}
+
+	// search for experiences owned by the current group
+	std::string url = gAgent.getRegion()->getCapability("GroupExperiences"); 
+	if (!url.empty())
+	{
+		url += "?" + getGroupID().asString();
+		
+		LLHTTPClient::get(url, new LLGroupExperienceResponder(getDerivedHandle<LLPanelGroupExperiences>()));
+	}
+}
+
+void LLPanelGroupExperiences::setGroupID(const LLUUID& id)
+{
+	LLPanelGroupTab::setGroupID(id);
+
+	if(id == LLUUID::null)
+	{
+		return;
+	}
+
+	activate();
+}
+
+void LLPanelGroupExperiences::setExperienceList(const LLSD& experiences)
+{
+	if (hasString("no_experiences"))
+	{
+		mExperiencesList->setNoItemsCommentText(getString("no_experiences"));
+	}
+    mExperiencesList->clear();
+
+    LLSD::array_const_iterator it = experiences.beginArray();
+    for ( /**/ ; it != experiences.endArray(); ++it)
+    {
+        LLUUID public_key = it->asUUID();
+        LLExperienceItem* item = new LLExperienceItem();
+
+        item->init(public_key);
+        mExperiencesList->addItem(item, public_key);
+    }
+}
diff --git a/indra/newview/llpanelgroupexperiences.h b/indra/newview/llpanelgroupexperiences.h
new file mode 100644
index 0000000000000000000000000000000000000000..ae1ecc1ac505caf20dd48c5143769aced00d04e7
--- /dev/null
+++ b/indra/newview/llpanelgroupexperiences.h
@@ -0,0 +1,53 @@
+/** 
+ * @file llpanelgroupexperiences.h
+ * @brief List of experiences owned by a group.
+ *
+ * $LicenseInfo:firstyear=2006&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
+ * $/LicenseInfo$
+ */
+
+#ifndef LL_LLPANELGROUPEXPERIENCES_H
+#define LL_LLPANELGROUPEXPERIENCES_H
+
+#include "llpanelgroup.h"
+
+class LLFlatListView;
+
+class LLPanelGroupExperiences : public LLPanelGroupTab
+{
+public:
+	LLPanelGroupExperiences();
+	virtual ~LLPanelGroupExperiences();
+
+	// LLPanelGroupTab
+	virtual void activate();
+	
+	virtual BOOL postBuild();
+	
+	virtual void setGroupID(const LLUUID& id);
+	
+    void setExperienceList(const LLSD& experiences);
+
+protected:
+	LLFlatListView* mExperiencesList;
+};
+
+#endif
diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp
index 7feb20332b57a0761cf55f19daebdccb25b98c8c..1bbb22416d6b114514a11967f3177269e0c4f140 100755
--- a/indra/newview/llpreviewscript.cpp
+++ b/indra/newview/llpreviewscript.cpp
@@ -86,19 +86,22 @@
 #include "llviewercontrol.h"
 #include "llappviewer.h"
 #include "llfloatergotoline.h"
+#include "llexperiencecache.h"
+#include "llfloaterexperienceprofile.h"
+#include "llexperienceassociationresponder.h"
 
 const std::string HELLO_LSL =
 	"default\n"
 	"{\n"
-	"    state_entry()\n"
-    "    {\n"
-    "        llSay(0, \"Hello, Avatar!\");\n"
-    "    }\n"
+	"	state_entry()\n"
+	"	{\n"
+	"		llSay(0, \"Hello, Avatar!\");\n"
+	"	}\n"
 	"\n"
-	"    touch_start(integer total_number)\n"
-	"    {\n"
-	"        llSay(0, \"Touched.\");\n"
-	"    }\n"
+	"	touch_start(integer total_number)\n"
+	"	{\n"
+	"		llSay(0, \"Touched.\");\n"
+	"	}\n"
 	"}\n";
 const std::string HELP_LSL_PORTAL_TOPIC = "LSL_Portal";
 
@@ -115,6 +118,26 @@ static bool have_script_upload_cap(LLUUID& object_id)
 	return object && (! object->getRegion()->getCapability("UpdateScriptTask").empty());
 }
 
+
+class ExperienceResponder : public LLHTTPClient::Responder
+{
+public:
+	ExperienceResponder(const LLHandle<LLLiveLSLEditor>& parent):mParent(parent)
+	{
+	}
+
+	LLHandle<LLLiveLSLEditor> mParent;
+
+	/*virtual*/ void httpSuccess()
+	{
+		LLLiveLSLEditor* parent = mParent.get();
+		if(!parent)
+			return;
+
+		parent->setExperienceIds(getContent()["experience_ids"]);		
+	}
+};
+
 /// ---------------------------------------------------------------------------
 /// LLLiveLSLFile
 /// ---------------------------------------------------------------------------
@@ -193,7 +216,7 @@ private:
 protected:
 	LLLineEditor*			mSearchBox;
 	LLLineEditor*			mReplaceBox;
-        void onSearchBoxCommit();
+		void onSearchBoxCommit();
 };
 
 LLFloaterScriptSearch* LLFloaterScriptSearch::sInstance = NULL;
@@ -402,6 +425,55 @@ LLScriptEdCore::~LLScriptEdCore()
 	}
 }
 
+void LLLiveLSLEditor::experienceChanged()
+{
+	if(mScriptEd->getAssociatedExperience() != mExperiences->getSelectedValue().asUUID())
+	{
+		mScriptEd->enableSave(getIsModifiable());
+		//getChildView("Save_btn")->setEnabled(TRUE);
+		mScriptEd->setAssociatedExperience(mExperiences->getSelectedValue().asUUID());
+		updateExperiencePanel();
+	}
+}
+
+void LLLiveLSLEditor::onViewProfile( LLUICtrl *ui, void* userdata )
+{
+	LLLiveLSLEditor* self = (LLLiveLSLEditor*)userdata;
+
+	LLUUID id;
+	if(self->mExperienceEnabled->get())
+	{
+		id=self->mScriptEd->getAssociatedExperience();
+		if(id.notNull())
+		{
+			 LLFloaterReg::showInstance("experience_profile", id, true);
+		}
+	}
+
+}
+
+void LLLiveLSLEditor::onToggleExperience( LLUICtrl *ui, void* userdata )
+{
+	LLLiveLSLEditor* self = (LLLiveLSLEditor*)userdata;
+
+	LLUUID id;
+	if(self->mExperienceEnabled->get())
+	{
+		if(self->mScriptEd->getAssociatedExperience().isNull())
+		{
+			id=self->mExperienceIds.beginArray()->asUUID();
+		}
+	}
+
+	if(id != self->mScriptEd->getAssociatedExperience())
+	{
+		self->mScriptEd->enableSave(self->getIsModifiable());
+	}
+	self->mScriptEd->setAssociatedExperience(id);
+
+	self->updateExperiencePanel();
+}
+
 BOOL LLScriptEdCore::postBuild()
 {
 	mErrorList = getChild<LLScrollListCtrl>("lsl errors");
@@ -828,7 +900,7 @@ bool LLScriptEdCore::handleSaveChangesDialog(const LLSD& notification, const LLS
 	case 2: // "Cancel"
 	default:
 		// If we were quitting, we didn't really mean it.
-        LLAppViewer::instance()->abortQuit();
+		LLAppViewer::instance()->abortQuit();
 		break;
 	}
 	return false;
@@ -863,8 +935,8 @@ void LLScriptEdCore::onBtnDynamicHelp()
 		LLKeywordToken *token;
 		LLKeywords::keyword_iterator_t token_it;
 		for (token_it = mEditor->keywordsBegin(); 
-		     token_it != mEditor->keywordsEnd(); 
-		     ++token_it)
+			 token_it != mEditor->keywordsEnd(); 
+			 ++token_it)
 		{
 			token = token_it->second;
 			help_combo->add(wstring_to_utf8str(token->getToken()));
@@ -1216,6 +1288,141 @@ bool LLScriptEdCore::enableLoadFromFileMenu(void* userdata)
 	return (self && self->mEditor) ? self->mEditor->canLoadOrSaveToFile() : FALSE;
 }
 
+LLUUID LLScriptEdCore::getAssociatedExperience()const
+{
+	return mAssociatedExperience;
+}
+
+void LLLiveLSLEditor::setExperienceIds( const LLSD& experience_ids )
+{
+	mExperienceIds=experience_ids;
+	updateExperiencePanel();
+}
+
+
+void LLLiveLSLEditor::updateExperiencePanel()
+{
+	if(mScriptEd->getAssociatedExperience().isNull())
+	{
+		mExperienceEnabled->set(FALSE);
+		mExperiences->setVisible(FALSE);
+		if(mExperienceIds.size()>0)
+		{
+			mExperienceEnabled->setEnabled(TRUE);
+			mExperienceEnabled->setToolTip(getString("add_experiences"));
+		}
+		else
+		{
+			mExperienceEnabled->setEnabled(FALSE);
+			mExperienceEnabled->setToolTip(getString("no_experiences"));
+		}
+		getChild<LLButton>("view_profile")->setVisible(FALSE);
+	}
+	else
+	{
+		mExperienceEnabled->setToolTip(getString("experience_enabled"));
+		mExperienceEnabled->setEnabled(getIsModifiable());
+		mExperiences->setVisible(TRUE);
+		mExperienceEnabled->set(TRUE);
+		getChild<LLButton>("view_profile")->setToolTip(getString("show_experience_profile"));
+		buildExperienceList();
+	}
+}
+
+void LLLiveLSLEditor::buildExperienceList()
+{
+	mExperiences->clearRows();
+	bool foundAssociated=false;
+	const LLUUID& associated = mScriptEd->getAssociatedExperience();
+	LLUUID last;
+	LLScrollListItem* item;
+	for(LLSD::array_const_iterator it = mExperienceIds.beginArray(); it != mExperienceIds.endArray(); ++it)
+	{
+		LLUUID id = it->asUUID();
+		EAddPosition position = ADD_BOTTOM;
+		if(id == associated)
+		{
+			foundAssociated = true;
+			position = ADD_TOP;
+		}
+		
+		const LLSD& experience = LLExperienceCache::get(id);
+		if(experience.isUndefined())
+		{
+			mExperiences->add(getString("loading"), id, position);
+			last = id;
+		}
+		else
+		{
+			std::string experience_name_string = experience[LLExperienceCache::NAME].asString();
+			if (experience_name_string.empty())
+			{
+				experience_name_string = LLTrans::getString("ExperienceNameUntitled");
+			}
+			mExperiences->add(experience_name_string, id, position);
+		} 
+	}
+
+	if(!foundAssociated )
+	{
+		const LLSD& experience = LLExperienceCache::get(associated);
+		if(experience.isDefined())
+		{
+			std::string experience_name_string = experience[LLExperienceCache::NAME].asString();
+			if (experience_name_string.empty())
+			{
+				experience_name_string = LLTrans::getString("ExperienceNameUntitled");
+			}
+			item=mExperiences->add(experience_name_string, associated, ADD_TOP);
+		} 
+		else
+		{
+			item=mExperiences->add(getString("loading"), associated, ADD_TOP);
+			last = associated;
+		}
+		item->setEnabled(FALSE);
+	}
+
+	if(last.notNull())
+	{
+		mExperiences->setEnabled(FALSE);
+		LLExperienceCache::get(last, boost::bind(&LLLiveLSLEditor::buildExperienceList, this));  
+	}
+	else
+	{
+		mExperiences->setEnabled(TRUE);
+		getChild<LLButton>("view_profile")->setVisible(TRUE);
+	}
+}
+
+
+void LLScriptEdCore::setAssociatedExperience( const LLUUID& experience_id )
+{
+	mAssociatedExperience = experience_id;
+}
+
+
+
+void LLLiveLSLEditor::requestExperiences()
+{
+	if (!getIsModifiable())
+	{
+		return;
+	}
+
+	LLViewerRegion* region = gAgent.getRegion();
+	if (region)
+	{
+		std::string lookup_url=region->getCapability("GetCreatorExperiences"); 
+		if(!lookup_url.empty())
+		{
+			LLHTTPClient::get(lookup_url, new ExperienceResponder(getDerivedHandle<LLLiveLSLEditor>()));
+		}
+	}
+}
+
+
+
 /// ---------------------------------------------------------------------------
 /// LLScriptEdContainer
 /// ---------------------------------------------------------------------------
@@ -1234,7 +1441,7 @@ std::string LLScriptEdContainer::getTmpFileName()
 	std::string script_id = mObjectUUID.asString() + "_" + mItemUUID.asString();
 
 	// Use MD5 sum to make the file name shorter and not exceed maximum path length.
-	char script_id_hash_str[33];               /* Flawfinder: ignore */
+	char script_id_hash_str[33];			   /* Flawfinder: ignore */
 	LLMD5 script_id_hash((const U8 *)script_id.c_str());
 	script_id_hash.hex_digest(script_id_hash_str);
 
@@ -1772,6 +1979,16 @@ BOOL LLLiveLSLEditor::postBuild()
 	mScriptEd->mEditor->makePristine();
 	mScriptEd->mEditor->setFocus(TRUE);
 
+
+	mExperiences = getChild<LLComboBox>("Experiences...");
+	mExperiences->setCommitCallback(boost::bind(&LLLiveLSLEditor::experienceChanged, this));
+	
+	mExperienceEnabled = getChild<LLCheckBoxCtrl>("enable_xp");
+	
+	childSetCommitCallback("enable_xp", onToggleExperience, this);
+	childSetCommitCallback("view_profile", onViewProfile, this);
+	
+
 	return LLPreview::postBuild();
 }
 
@@ -1815,61 +2032,60 @@ void LLLiveLSLEditor::loadAsset()
 		if(object)
 		{
 			LLViewerInventoryItem* item = dynamic_cast<LLViewerInventoryItem*>(object->getInventoryObject(mItemUUID));
-			if(item 
-				&& (gAgent.allowOperation(PERM_COPY, item->getPermissions(), GP_OBJECT_MANIPULATE)
-				   || gAgent.isGodlike()))
-			{
-				mItem = new LLViewerInventoryItem(item);
-				//LL_INFOS() << "asset id " << mItem->getAssetUUID() << LL_ENDL;
-			}
 
-			if(!gAgent.isGodlike()
-			   && (item
-				   && (!gAgent.allowOperation(PERM_COPY, item->getPermissions(), GP_OBJECT_MANIPULATE)
-					   || !gAgent.allowOperation(PERM_MODIFY, item->getPermissions(), GP_OBJECT_MANIPULATE))))
-			{
-				mItem = new LLViewerInventoryItem(item);
-				mScriptEd->setScriptText(getString("not_allowed"), FALSE);
-				mScriptEd->mEditor->makePristine();
-				mScriptEd->enableSave(FALSE);
-				mAssetStatus = PREVIEW_ASSET_LOADED;
-			}
-			else if(item && mItem.notNull())
+			if(item)
 			{
-				// request the text from the object
+				ExperienceAssociationResponder::fetchAssociatedExperience(item->getParentUUID(), item->getUUID(), boost::bind(&LLLiveLSLEditor::setAssociatedExperience, getDerivedHandle<LLLiveLSLEditor>(), _1));
+				
+				bool isGodlike = gAgent.isGodlike();
+				bool copyManipulate = gAgent.allowOperation(PERM_COPY, item->getPermissions(), GP_OBJECT_MANIPULATE);
+				mIsModifiable = gAgent.allowOperation(PERM_MODIFY, item->getPermissions(), GP_OBJECT_MANIPULATE);
+				
+				if(!isGodlike && (!copyManipulate || !mIsModifiable))
+				{
+					mItem = new LLViewerInventoryItem(item);
+					mScriptEd->setScriptText(getString("not_allowed"), FALSE);
+					mScriptEd->mEditor->makePristine();
+					mScriptEd->enableSave(FALSE);
+					mAssetStatus = PREVIEW_ASSET_LOADED;
+				}
+				else if(copyManipulate || isGodlike)
+				{
+					mItem = new LLViewerInventoryItem(item);
+					// request the text from the object
 				LLSD* user_data = new LLSD();
 				user_data->with("taskid", mObjectUUID).with("itemid", mItemUUID);
-				gAssetStorage->getInvItemAsset(object->getRegion()->getHost(),
-											   gAgent.getID(),
-											   gAgent.getSessionID(),
-											   item->getPermissions().getOwner(),
-											   object->getID(),
-											   item->getUUID(),
-											   item->getAssetUUID(),
-											   item->getType(),
-											   &LLLiveLSLEditor::onLoadComplete,
-											   (void*)user_data,
-											   TRUE);
-				LLMessageSystem* msg = gMessageSystem;
-				msg->newMessageFast(_PREHASH_GetScriptRunning);
-				msg->nextBlockFast(_PREHASH_Script);
-				msg->addUUIDFast(_PREHASH_ObjectID, mObjectUUID);
-				msg->addUUIDFast(_PREHASH_ItemID, mItemUUID);
-				msg->sendReliable(object->getRegion()->getHost());
-				mAskedForRunningInfo = TRUE;
-				mAssetStatus = PREVIEW_ASSET_LOADING;
+					gAssetStorage->getInvItemAsset(object->getRegion()->getHost(),
+						gAgent.getID(),
+						gAgent.getSessionID(),
+						item->getPermissions().getOwner(),
+						object->getID(),
+						item->getUUID(),
+						item->getAssetUUID(),
+						item->getType(),
+						&LLLiveLSLEditor::onLoadComplete,
+						(void*)user_data,
+						TRUE);
+					LLMessageSystem* msg = gMessageSystem;
+					msg->newMessageFast(_PREHASH_GetScriptRunning);
+					msg->nextBlockFast(_PREHASH_Script);
+					msg->addUUIDFast(_PREHASH_ObjectID, mObjectUUID);
+					msg->addUUIDFast(_PREHASH_ItemID, mItemUUID);
+					msg->sendReliable(object->getRegion()->getHost());
+					mAskedForRunningInfo = TRUE;
+					mAssetStatus = PREVIEW_ASSET_LOADING;
+				}
 			}
-			else
+			
+			if(mItem.isNull())
 			{
 				mScriptEd->setScriptText(LLStringUtil::null, FALSE);
 				mScriptEd->mEditor->makePristine();
 				mAssetStatus = PREVIEW_ASSET_LOADED;
+				mIsModifiable = FALSE;
 			}
 
-			mIsModifiable = item && gAgent.allowOperation(PERM_MODIFY, 
-										item->getPermissions(),
-				   						GP_OBJECT_MANIPULATE);
-
+			refreshFromItem();
 			// This is commented out, because we don't completely
 			// handle script exports yet.
 			/*
@@ -1906,6 +2122,8 @@ void LLLiveLSLEditor::loadAsset()
 										  time_corrected());
 		mAssetStatus = PREVIEW_ASSET_LOADED;
 	}
+
+	requestExperiences();
 }
 
 // static
@@ -2169,7 +2387,7 @@ void LLLiveLSLEditor::saveIfNeeded(bool sync /*= true*/)
 	BOOL is_running = getChild<LLCheckBoxCtrl>( "running")->get();
 	if (!url.empty())
 	{
-		uploadAssetViaCaps(url, filename, mObjectUUID, mItemUUID, is_running);
+		uploadAssetViaCaps(url, filename, mObjectUUID, mItemUUID, is_running, mScriptEd->getAssociatedExperience());
 	}
 	else if (gAssetStorage)
 	{
@@ -2181,7 +2399,8 @@ void LLLiveLSLEditor::uploadAssetViaCaps(const std::string& url,
 										 const std::string& filename,
 										 const LLUUID& task_id,
 										 const LLUUID& item_id,
-										 BOOL is_running)
+										 BOOL is_running,
+										 const LLUUID& experience_public_id )
 {
 	LL_INFOS() << "Update Task Inventory via capability " << url << LL_ENDL;
 	LLSD body;
@@ -2189,6 +2408,7 @@ void LLLiveLSLEditor::uploadAssetViaCaps(const std::string& url,
 	body["item_id"] = item_id;
 	body["is_script_running"] = is_running;
 	body["target"] = monoChecked() ? "mono" : "lsl2";
+	body["experience"] = experience_public_id;
 	LLHTTPClient::post(url, body,
 		new LLUpdateTaskInventoryResponder(body, filename, LLAssetType::AT_LSL_TEXT));
 }
@@ -2449,3 +2669,18 @@ BOOL LLLiveLSLEditor::monoChecked() const
 	}
 	return FALSE;
 }
+
+void LLLiveLSLEditor::setAssociatedExperience( LLHandle<LLLiveLSLEditor> editor, const LLSD& experience )
+{
+	LLLiveLSLEditor* scriptEd = editor.get();
+	if(scriptEd)
+	{
+		LLUUID id;
+		if(experience.has(LLExperienceCache::EXPERIENCE_ID))
+		{
+			id=experience[LLExperienceCache::EXPERIENCE_ID].asUUID();
+		}
+		scriptEd->mScriptEd->setAssociatedExperience(id);
+		scriptEd->updateExperiencePanel();
+	}
+}
diff --git a/indra/newview/llpreviewscript.h b/indra/newview/llpreviewscript.h
index 66727bceeea963d532eb5aec0b9ab3b020cec395..5f65be73837770f13262c39119e36f827a7ec9e6 100755
--- a/indra/newview/llpreviewscript.h
+++ b/indra/newview/llpreviewscript.h
@@ -51,6 +51,7 @@ class LLVFS;
 class LLViewerInventoryItem;
 class LLScriptEdContainer;
 class LLFloaterGotoLine;
+class LLFloaterExperienceProfile;
 
 // Inner, implementation class.  LLPreviewScript and LLLiveLSLEditor each own one of these.
 class LLScriptEdCore : public LLPanel
@@ -107,12 +108,14 @@ public:
 	static void		onBtnInsertSample(void*);
 	static void		onBtnInsertFunction(LLUICtrl*, void*);
 	static void		onBtnLoadFromFile(void*);
-	static void		onBtnSaveToFile(void*);
+    static void		onBtnSaveToFile(void*);
 
 	static bool		enableSaveToFileMenu(void* userdata);
 	static bool		enableLoadFromFileMenu(void* userdata);
 
-	virtual bool	hasAccelerators() const { return true; }
+    virtual bool	hasAccelerators() const { return true; }
+	LLUUID 			getAssociatedExperience()const;
+	void            setAssociatedExperience( const LLUUID& experience_id );
 
 	void 			setScriptName(const std::string& name){mScriptName = name;};
 
@@ -146,8 +149,8 @@ private:
 	void			(*mLoadCallback)(void* userdata);
 	void			(*mSaveCallback)(void* userdata, BOOL close_after_save);
 	void			(*mSearchReplaceCallback) (void* userdata);
-	void*			mUserdata;
-	LLComboBox		*mFunctions;
+    void*			mUserdata;
+    LLComboBox		*mFunctions;
 	BOOL			mForceClose;
 	LLPanel*		mCodePanel;
 	LLScrollListCtrl* mErrorList;
@@ -159,6 +162,7 @@ private:
 	BOOL			mEnableSave;
 	BOOL			mHasScriptData;
 	LLLiveLSLFile*	mLiveFile;
+	LLUUID			mAssociatedExperience;
 
 	LLScriptEdContainer* mContainer; // parent view
 
@@ -245,7 +249,18 @@ public:
 
 	/*virtual*/ BOOL postBuild();
 	
-	void setIsNew() { mIsNew = TRUE; }
+    void setIsNew() { mIsNew = TRUE; }
+
+	static void setAssociatedExperience( LLHandle<LLLiveLSLEditor> editor, const LLSD& experience );
+	static void onToggleExperience(LLUICtrl *ui, void* userdata);
+	static void onViewProfile(LLUICtrl *ui, void* userdata);
+
+	void setExperienceIds(const LLSD& experience_ids);
+	void buildExperienceList();
+	void updateExperiencePanel();
+	void requestExperiences();
+	void experienceChanged();
+	void addAssociatedExperience(const LLSD& experience);
 	
 private:
 	virtual BOOL canClose();
@@ -256,10 +271,11 @@ private:
 	void loadAsset(BOOL is_new);
 	/*virtual*/ void saveIfNeeded(bool sync = true);
 	void uploadAssetViaCaps(const std::string& url,
-							const std::string& filename, 
+							const std::string& filename,
 							const LLUUID& task_id,
 							const LLUUID& item_id,
-							BOOL is_running);
+							BOOL is_running,
+							const LLUUID& experience_public_id);
 	void uploadAssetLegacy(const std::string& filename,
 						   LLViewerObject* object,
 						   const LLTransactionID& tid,
@@ -300,9 +316,16 @@ private:
 	S32					mPendingUploads;
 
 	BOOL getIsModifiable() const { return mIsModifiable; } // Evaluated on load assert
-	
+
 	LLCheckBoxCtrl*	mMonoCheckbox;
 	BOOL mIsModifiable;
+
+
+	LLComboBox*		mExperiences;
+	LLCheckBoxCtrl*	mExperienceEnabled;
+	LLSD			mExperienceIds;
+
+	LLHandle<LLFloater> mExperienceProfile;
 };
 
 #endif  // LL_LLPREVIEWSCRIPT_H
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp
index 8708fb87ee31870d022c3e6ee2685634f2b3f642..6d94b178dd59c659d1ba083f0158467c9ee2b1bc 100755
--- a/indra/newview/llscreenchannel.cpp
+++ b/indra/newview/llscreenchannel.cpp
@@ -541,19 +541,23 @@ void LLScreenChannel::modifyToastByNotificationID(LLUUID id, LLPanel* panel)
 {
 	std::vector<ToastElem>::iterator it = find(mToastList.begin(), mToastList.end(), id);
 	
+	LLPanel* panel_to_delete = panel;
+
 	if( it != mToastList.end() && panel)
 	{
 		LLToast* toast = it->getToast();
 		if (toast)
 		{
-		LLPanel* old_panel = toast->getPanel();
-		toast->removeChild(old_panel);
-		delete old_panel;
-		toast->insertPanel(panel);
-		toast->startTimer();
+			LLPanel* old_panel = toast->getPanel();
+			toast->removeChild(old_panel);
+			panel_to_delete = old_panel;
+			toast->insertPanel(panel);
+			toast->startTimer();
 		}
 		redrawToasts();
 	}
+
+	delete panel_to_delete;
 }
 
 //--------------------------------------------------------------------------
diff --git a/indra/newview/llsidepaneliteminfo.cpp b/indra/newview/llsidepaneliteminfo.cpp
index 126f1fb9de5119fa171f09bbdf64804e47d8cf75..a7cfc173af998ff209b9eb44f9c44ba890974bbe 100755
--- a/indra/newview/llsidepaneliteminfo.cpp
+++ b/indra/newview/llsidepaneliteminfo.cpp
@@ -44,6 +44,9 @@
 #include "llviewercontrol.h"
 #include "llviewerinventory.h"
 #include "llviewerobjectlist.h"
+#include "llexperienceassociationresponder.h"
+#include "llexperiencecache.h"
+#include "lltrans.h"
 
 
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -319,6 +322,15 @@ void LLSidepanelItemInfo::refreshFromItem(LLViewerInventoryItem* item)
 		is_obj_modify = object->permOwnerModify();
 	}
 
+    if(item->getInventoryType() == LLInventoryType::IT_LSL)
+    {
+        getChildView("LabelItemExperienceTitle")->setVisible(TRUE);
+        LLTextBox* tb = getChild<LLTextBox>("LabelItemExperience");
+        tb->setText(getString("loading_experience"));
+        tb->setVisible(TRUE);
+        ExperienceAssociationResponder::fetchAssociatedExperience(item->getParentUUID(), item->getUUID(), boost::bind(&LLSidepanelItemInfo::setAssociatedExperience, getDerivedHandle<LLSidepanelItemInfo>(), _1));
+    }
+    
 	//////////////////////
 	// ITEM NAME & DESC //
 	//////////////////////
@@ -674,6 +686,29 @@ void LLSidepanelItemInfo::refreshFromItem(LLViewerInventoryItem* item)
 	}
 }
 
+
+void LLSidepanelItemInfo::setAssociatedExperience( LLHandle<LLSidepanelItemInfo> hInfo, const LLSD& experience )
+{
+    LLSidepanelItemInfo* info = hInfo.get();
+    if(info)
+    {
+        LLUUID id;
+        if(experience.has(LLExperienceCache::EXPERIENCE_ID))
+        {
+            id=experience[LLExperienceCache::EXPERIENCE_ID].asUUID();
+        }
+        if(id.notNull())
+        {
+            info->getChild<LLTextBox>("LabelItemExperience")->setText(LLSLURL("experience", id, "profile").getSLURLString());    
+        }
+        else
+        {
+            info->getChild<LLTextBox>("LabelItemExperience")->setText(LLTrans::getString("ExperienceNameNull"));
+        }
+    }
+}
+
+
 void LLSidepanelItemInfo::startObjectInventoryObserver()
 {
 	if (!mObjectInventoryObserver)
diff --git a/indra/newview/llsidepaneliteminfo.h b/indra/newview/llsidepaneliteminfo.h
index 12aaca923ee082331a3e839989a780525ef5ae2f..2e24e58a2add2c35ca20b0332f38607fd6a9fad0 100755
--- a/indra/newview/llsidepaneliteminfo.h
+++ b/indra/newview/llsidepaneliteminfo.h
@@ -67,6 +67,8 @@ protected:
 	void refreshFromItem(LLViewerInventoryItem* item);
 
 private:
+    static void setAssociatedExperience( LLHandle<LLSidepanelItemInfo> hInfo, const LLSD& experience );
+
 	void startObjectInventoryObserver();
 	void stopObjectInventoryObserver();
 
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 42fc3001877d6456f9c527403bbedce6550e7fbb..d7bfd22cc98434908e59dd5c4b65785017d3ca4d 100755
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -48,6 +48,7 @@
 
 #include "llares.h"
 #include "llavatarnamecache.h"
+#include "llexperiencecache.h"
 #include "lllandmark.h"
 #include "llcachename.h"
 #include "lldir.h"
@@ -194,6 +195,7 @@
 #include "llevents.h"
 #include "llstartuplistener.h"
 #include "lltoolbarview.h"
+#include "llexperiencelog.h"
 
 #if LL_WINDOWS
 #include "lldxhardware.h"
@@ -1305,6 +1307,9 @@ bool idle_startup()
 		// object is created.  I think this must be done after setting the region.  JC
 		gAgent.setPositionAgent(agent_start_position_region);
 
+		display_startup();
+		LLStartUp::initExperiences();
+
 		display_startup();
 		LLStartUp::setStartupState( STATE_MULTIMEDIA_INIT );
 		
@@ -2824,6 +2829,14 @@ void LLStartUp::initNameCache()
 	LLAvatarNameCache::setUseUsernames(gSavedSettings.getBOOL("NameTagShowUsernames"));
 }
 
+
+void LLStartUp::initExperiences()
+{
+	LLAppViewer::instance()->loadExperienceCache();
+	LLExperienceCache::initClass();
+	LLExperienceLog::instance().initialize();
+}
+
 void LLStartUp::cleanupNameCache()
 {
 	LLAvatarNameCache::cleanupClass();
@@ -3525,3 +3538,4 @@ void transition_back_to_login_panel(const std::string& emsg)
 	reset_login(); // calls LLStartUp::setStartupState( STATE_LOGIN_SHOW );
 	gSavedSettings.setBOOL("AutoLogin", FALSE);
 }
+
diff --git a/indra/newview/llstartup.h b/indra/newview/llstartup.h
index e39810713a0945951bc2db4a35226dbabd039219..d434e86f827130f4216b906411468063fd1ef84e 100755
--- a/indra/newview/llstartup.h
+++ b/indra/newview/llstartup.h
@@ -103,6 +103,7 @@ public:
 	static void fontInit();
 
 	static void initNameCache();
+	static void initExperiences();
 	
 	static void cleanupNameCache();
 
diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp
index 602c701a336a75afe6c9c40e96fb65433bd9605f..98ed2f0fc4519d7410ab614c65e74c88aaf788f3 100755
--- a/indra/newview/lltoastnotifypanel.cpp
+++ b/indra/newview/lltoastnotifypanel.cpp
@@ -46,7 +46,7 @@
 const S32 BOTTOM_PAD = VPAD * 3;
 const S32 IGNORE_BTN_TOP_DELTA = 3*VPAD;//additional ignore_btn padding
 S32 BUTTON_WIDTH = 90;
-// *TODO: magic numbers(?) - copied from llnotify.cpp(250)
+// *TODO: magic numbers - copied from llnotify.cpp(250)
 const S32 MAX_LENGTH = 512 + 20 + DB_FIRST_NAME_BUF_SIZE + DB_LAST_NAME_BUF_SIZE + DB_INV_ITEM_NAME_BUF_SIZE; 
 
 
diff --git a/indra/newview/llviewerfloaterreg.cpp b/indra/newview/llviewerfloaterreg.cpp
index fc18b20758f80e981a62ab93382378533e198c86..1dad9dd506d5a2738d30d16169cb2ade0e2356a6 100755
--- a/indra/newview/llviewerfloaterreg.cpp
+++ b/indra/newview/llviewerfloaterreg.cpp
@@ -61,6 +61,9 @@
 #include "llfloatereditsky.h"
 #include "llfloatereditwater.h"
 #include "llfloaterenvironmentsettings.h"
+#include "llfloaterexperienceprofile.h"
+#include "llfloaterexperiences.h"
+#include "llfloaterexperiencepicker.h"
 #include "llfloaterevent.h"
 #include "llfloaterfacebook.h"
 #include "llfloaterflickr.h"
@@ -214,8 +217,11 @@ void LLViewerFloaterReg::registerFloaters()
 	LLFloaterReg::add("env_edit_water", "floater_edit_water_preset.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterEditWater>);
 	LLFloaterReg::add("env_edit_day_cycle", "floater_edit_day_cycle.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterEditDayCycle>);
 
-	LLFloaterReg::add("event", "floater_event.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterEvent>);
-	
+    LLFloaterReg::add("event", "floater_event.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterEvent>);
+    LLFloaterReg::add("experiences", "floater_experiences.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterExperiences>);
+	LLFloaterReg::add("experience_profile", "floater_experienceprofile.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterExperienceProfile>);
+	LLFloaterReg::add("experience_search", "floater_experience_search.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterExperiencePicker>);
+
 	LLFloaterReg::add("font_test", "floater_font_test.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterFontTest>);
 
 	LLFloaterReg::add("gestures", "floater_gesture.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterGesture>);
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp
index 509227c6835f9f99be7cc7e9de3092df46440003..3eae0f8d86ca64d9d64ab29b43e0d91db409ed42 100755
--- a/indra/newview/llviewermedia.cpp
+++ b/indra/newview/llviewermedia.cpp
@@ -196,7 +196,7 @@ private:
 		// 500 means "Internal Server error" but we decided it's okay to 
 		//     accept this and go past it in the MIME type probe
 		// 302 means the resource can be found temporarily in a different place - added this for join.secondlife.com
-		// 499 is a code specifc to join.secondlife.com (?) apparently safe to ignore
+		// 499 is a code specifc to join.secondlife.com apparently safe to ignore
 //		if(	((status >= 200) && (status < 300))	||
 //			((status >= 400) && (status < 499))	|| 
 //			(status == 500) ||
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index 5cd92c99202f50b7ef531e8179b349496b445470..459bdca8dff87f0fe1f4ed94809c4507f9e2a2b8 100755
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -117,6 +117,7 @@
 #include <boost/regex.hpp>
 
 #include "llnotificationmanager.h" //
+#include "llexperiencecache.h"
 
 #if LL_MSVC
 // disable boost::lexical_cast warning
@@ -142,6 +143,7 @@ extern bool gShiftFrame;
 bool check_offer_throttle(const std::string& from_name, bool check_only);
 bool check_asset_previewable(const LLAssetType::EType asset_type);
 static void process_money_balance_reply_extended(LLMessageSystem* msg);
+bool handle_trusted_experiences_notification(const LLSD&);
 
 //inventory offer throttle globals
 LLFrameTimer gThrottleTimer;
@@ -5694,164 +5696,192 @@ bool handle_prompt_for_maturity_level_change_and_reteleport_callback(const LLSD&
 // some of the server notifications need special handling. This is where we do that.
 bool handle_special_notification(std::string notificationID, LLSD& llsdBlock)
 {
-	U8 regionAccess = static_cast<U8>(llsdBlock["_region_access"].asInteger());
-	std::string regionMaturity = LLViewerRegion::accessToString(regionAccess);
-	LLStringUtil::toLower(regionMaturity);
-	llsdBlock["REGIONMATURITY"] = regionMaturity;
 	bool returnValue = false;
-	LLNotificationPtr maturityLevelNotification;
-	std::string notifySuffix = "_Notify";
-	if (regionAccess == SIM_ACCESS_MATURE)
-	{
-		if (gAgent.isTeen())
+	if(llsdBlock.has("_region_access"))
+	{
+		U8 regionAccess = static_cast<U8>(llsdBlock["_region_access"].asInteger());
+		std::string regionMaturity = LLViewerRegion::accessToString(regionAccess);
+		LLStringUtil::toLower(regionMaturity);
+		llsdBlock["REGIONMATURITY"] = regionMaturity;
+		LLNotificationPtr maturityLevelNotification;
+		std::string notifySuffix = "_Notify";
+		if (regionAccess == SIM_ACCESS_MATURE)
 		{
-			gAgent.clearTeleportRequest();
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
-			returnValue = true;
+			if (gAgent.isTeen())
+			{
+				gAgent.clearTeleportRequest();
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
+				returnValue = true;
 
-			notifySuffix = "_NotifyAdultsOnly";
+				notifySuffix = "_NotifyAdultsOnly";
+			}
+			else if (gAgent.prefersPG())
+			{
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+				returnValue = true;
+			}
+			else if (LLStringUtil::compareStrings(notificationID, "RegionEntryAccessBlocked") == 0)
+			{
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock);
+				returnValue = true;
+			}
 		}
-		else if (gAgent.prefersPG())
+		else if (regionAccess == SIM_ACCESS_ADULT)
 		{
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
-			returnValue = true;
+			if (!gAgent.isAdult())
+			{
+				gAgent.clearTeleportRequest();
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
+				returnValue = true;
+
+				notifySuffix = "_NotifyAdultsOnly";
+			}
+			else if (gAgent.prefersPG() || gAgent.prefersMature())
+			{
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+				returnValue = true;
+			}
+			else if (LLStringUtil::compareStrings(notificationID, "RegionEntryAccessBlocked") == 0)
+			{
+				maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock);
+				returnValue = true;
+			}
 		}
-		else if (LLStringUtil::compareStrings(notificationID, "RegionEntryAccessBlocked") == 0)
+
+		if ((maturityLevelNotification == NULL) || maturityLevelNotification->isIgnored())
 		{
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock);
-			returnValue = true;
+			// Given a simple notification if no maturityLevelNotification is set or it is ignore
+			LLNotificationsUtil::add(notificationID + notifySuffix, llsdBlock);
 		}
 	}
-	else if (regionAccess == SIM_ACCESS_ADULT)
+
+	return returnValue;
+}
+
+bool handle_trusted_experiences_notification(const LLSD& llsdBlock)
+{
+	if(llsdBlock.has("trusted_experiences"))
 	{
-		if (!gAgent.isAdult())
-		{
-			gAgent.clearTeleportRequest();
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
-			returnValue = true;
-	
-			notifySuffix = "_NotifyAdultsOnly";
-		}
-		else if (gAgent.prefersPG() || gAgent.prefersMature())
+		std::ostringstream str;
+		const LLSD& experiences = llsdBlock["trusted_experiences"];
+		LLSD::array_const_iterator it = experiences.beginArray();
+		for(/**/; it != experiences.endArray(); ++it)
 		{
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
-			returnValue = true;
+			str<<LLSLURL("experience", it->asUUID(), "profile").getSLURLString() << "\n";
 		}
-		else if (LLStringUtil::compareStrings(notificationID, "RegionEntryAccessBlocked") == 0)
+		std::string str_list = str.str();
+		if(!str_list.empty())
 		{
-			maturityLevelNotification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock);
-			returnValue = true;
+			LLNotificationsUtil::add("TrustedExperiencesAvailable", LLSD::emptyMap().with("EXPERIENCE_LIST", (LLSD)str_list));
+			return true;
 		}
 	}
-
-	if ((maturityLevelNotification == NULL) || maturityLevelNotification->isIgnored())
-	{
-		// Given a simple notification if no maturityLevelNotification is set or it is ignore
-		LLNotificationsUtil::add(notificationID + notifySuffix, llsdBlock);
-	}
-
-	return returnValue;
+	return false;
 }
 
 // some of the server notifications need special handling. This is where we do that.
 bool handle_teleport_access_blocked(LLSD& llsdBlock, const std::string & notificationID, const std::string & defaultMessage)
 {
-	U8 regionAccess = static_cast<U8>(llsdBlock["_region_access"].asInteger());
-	std::string regionMaturity = LLViewerRegion::accessToString(regionAccess);
-	LLStringUtil::toLower(regionMaturity);
-	llsdBlock["REGIONMATURITY"] = regionMaturity;
-	
 	bool returnValue = false;
-	LLNotificationPtr tp_failure_notification;
-	std::string notifySuffix;
-
-	if (notificationID == std::string("TeleportEntryAccessBlocked"))
+	if(llsdBlock.has("_region_access"))
 	{
-		notifySuffix = "_Notify";
-		if (regionAccess == SIM_ACCESS_MATURE)
-		{
-			if (gAgent.isTeen())
-			{
-				gAgent.clearTeleportRequest();
-				tp_failure_notification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
-				returnValue = true;
+		U8 regionAccess = static_cast<U8>(llsdBlock["_region_access"].asInteger());
+		std::string regionMaturity = LLViewerRegion::accessToString(regionAccess);
+		LLStringUtil::toLower(regionMaturity);
+		llsdBlock["REGIONMATURITY"] = regionMaturity;
 
-				notifySuffix = "_NotifyAdultsOnly";
-			}
-			else if (gAgent.prefersPG())
+		LLNotificationPtr tp_failure_notification;
+		std::string notifySuffix;
+
+		if (notificationID == std::string("TeleportEntryAccessBlocked"))
+		{
+			notifySuffix = "_Notify";
+			if (regionAccess == SIM_ACCESS_MATURE)
 			{
-				if (gAgent.hasRestartableFailedTeleportRequest())
+				if (gAgent.isTeen())
 				{
-					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_ChangeAndReTeleport", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_and_reteleport_callback);
+					gAgent.clearTeleportRequest();
+					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
 					returnValue = true;
+
+					notifySuffix = "_NotifyAdultsOnly";
+				}
+				else if (gAgent.prefersPG())
+				{
+					if (gAgent.hasRestartableFailedTeleportRequest())
+					{
+						tp_failure_notification = LLNotificationsUtil::add(notificationID+"_ChangeAndReTeleport", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_and_reteleport_callback);
+						returnValue = true;
+					}
+					else
+					{
+						gAgent.clearTeleportRequest();
+						tp_failure_notification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+						returnValue = true;
+					}
 				}
 				else
 				{
 					gAgent.clearTeleportRequest();
-					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
 					returnValue = true;
 				}
 			}
-			else
+			else if (regionAccess == SIM_ACCESS_ADULT)
 			{
-				gAgent.clearTeleportRequest();
-				tp_failure_notification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
-				returnValue = true;
-			}
-		}
-		else if (regionAccess == SIM_ACCESS_ADULT)
-		{
-			if (!gAgent.isAdult())
-			{
-				gAgent.clearTeleportRequest();
-				tp_failure_notification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
-				returnValue = true;
-
-				notifySuffix = "_NotifyAdultsOnly";
-			}
-			else if (gAgent.prefersPG() || gAgent.prefersMature())
-			{
-				if (gAgent.hasRestartableFailedTeleportRequest())
+				if (!gAgent.isAdult())
 				{
-					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_ChangeAndReTeleport", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_and_reteleport_callback);
+					gAgent.clearTeleportRequest();
+					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_AdultsOnlyContent", llsdBlock);
 					returnValue = true;
+
+					notifySuffix = "_NotifyAdultsOnly";
+				}
+				else if (gAgent.prefersPG() || gAgent.prefersMature())
+				{
+					if (gAgent.hasRestartableFailedTeleportRequest())
+					{
+						tp_failure_notification = LLNotificationsUtil::add(notificationID+"_ChangeAndReTeleport", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_and_reteleport_callback);
+						returnValue = true;
+					}
+					else
+					{
+						gAgent.clearTeleportRequest();
+						tp_failure_notification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+						returnValue = true;
+					}
 				}
 				else
 				{
 					gAgent.clearTeleportRequest();
-					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_Change", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
+					tp_failure_notification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
 					returnValue = true;
 				}
 			}
+		}		// End of special handling for "TeleportEntryAccessBlocked"
+		else
+		{	// Normal case, no message munging
+			gAgent.clearTeleportRequest();
+			if (LLNotifications::getInstance()->templateExists(notificationID))
+			{
+				tp_failure_notification = LLNotificationsUtil::add(notificationID, llsdBlock, llsdBlock);
+			}
 			else
 			{
-				gAgent.clearTeleportRequest();
-				tp_failure_notification = LLNotificationsUtil::add(notificationID+"_PreferencesOutOfSync", llsdBlock, llsdBlock, handle_prompt_for_maturity_level_change_callback);
-				returnValue = true;
+				llsdBlock["MESSAGE"] = defaultMessage;
+				tp_failure_notification = LLNotificationsUtil::add("GenericAlertOK", llsdBlock);
 			}
-	}
-	}		// End of special handling for "TeleportEntryAccessBlocked"
-	else
-	{	// Normal case, no message munging
-		gAgent.clearTeleportRequest();
-		if (LLNotifications::getInstance()->templateExists(notificationID))
-		{
-			tp_failure_notification = LLNotificationsUtil::add(notificationID, llsdBlock, llsdBlock);
+			returnValue = true;
 		}
-		else
+
+		if ((tp_failure_notification == NULL) || tp_failure_notification->isIgnored())
 		{
-			llsdBlock["MESSAGE"] = defaultMessage;
-			tp_failure_notification = LLNotificationsUtil::add("GenericAlertOK", llsdBlock);
+			// Given a simple notification if no tp_failure_notification is set or it is ignore
+			LLNotificationsUtil::add(notificationID + notifySuffix, llsdBlock);
 		}
-		returnValue = true;
-	}
-
-	if ((tp_failure_notification == NULL) || tp_failure_notification->isIgnored())
-	{
-		// Given a simple notification if no tp_failure_notification is set or it is ignore
-		LLNotificationsUtil::add(notificationID + notifySuffix, llsdBlock);
 	}
 
+	handle_trusted_experiences_notification(llsdBlock);
 	return returnValue;
 }
 
@@ -5881,6 +5911,9 @@ bool attempt_standard_notification(LLMessageSystem* msgsystem)
 			}
 		}
 		
+
+		handle_trusted_experiences_notification(llsdBlock);
+		
 		if (
 			(notificationID == "RegionEntryAccessBlocked") ||
 			(notificationID == "LandClaimAccessBlocked") ||
@@ -6064,8 +6097,8 @@ void process_alert_core(const std::string& message, BOOL modal)
 		std::string alert_name(message.substr(ALERT_PREFIX.length()));
 		if (!handle_special_alerts(alert_name))
 		{
-			LLNotificationsUtil::add(alert_name);
-		}
+		LLNotificationsUtil::add(alert_name);
+	}
 	}
 	else if (message.find(NOTIFY_PREFIX) == 0)
 	{
@@ -6087,10 +6120,10 @@ void process_alert_core(const std::string& message, BOOL modal)
 			LLFloaterRegionRestarting::close();
 		}
 
-		std::string new_msg =LLNotifications::instance().getGlobalString(text);
-		args["MESSAGE"] = new_msg;
-		LLNotificationsUtil::add("SystemMessage", args);
-	}
+			std::string new_msg =LLNotifications::instance().getGlobalString(text);
+			args["MESSAGE"] = new_msg;
+			LLNotificationsUtil::add("SystemMessage", args);
+		}
 	else if (modal)
 	{
 		LLSD args;
@@ -6345,6 +6378,12 @@ bool script_question_cb(const LLSD& notification, const LLSD& response)
 		return false;
 	}
 
+	LLUUID experience;
+	if(notification["payload"].has("experience"))
+	{
+		experience = notification["payload"]["experience"].asUUID();
+	}
+
 	// check whether permissions were granted or denied
 	BOOL allowed = TRUE;
 	// the "yes/accept" button is the first button in the template, making it button 0
@@ -6354,6 +6393,16 @@ bool script_question_cb(const LLSD& notification, const LLSD& response)
 		new_questions = 0;
 		allowed = FALSE;
 	}	
+	else if(experience.notNull())
+	{
+		LLSD permission;
+		LLSD data;
+		permission["permission"]="Allow";
+
+		data[experience.asString()]=permission;
+		data["experience"]=experience;
+		LLEventPumps::instance().obtain("experience_permission").post(data);
+	}
 
 	LLUUID task_id = notification["payload"]["task_id"].asUUID();
 	LLUUID item_id = notification["payload"]["item_id"].asUUID();
@@ -6380,7 +6429,27 @@ bool script_question_cb(const LLSD& notification, const LLSD& response)
 	{
 		script_question_mute(task_id,notification["payload"]["object_name"].asString());
 	}
+	if ( response["BlockExperience"] )
+	{
+		if(experience.notNull())
+		{
+			LLViewerRegion* region = gAgent.getRegion();
+			if (!region)
+			    return false;
+
+			std::string lookup_url=region->getCapability("ExperiencePreferences"); 
+			if(lookup_url.empty())
+				return false;
+			LLSD permission;
+			LLSD data;
+			permission["permission"]="Block";
 
+			data[experience.asString()]=permission;
+			LLHTTPClient::put(lookup_url, data, NULL);
+			data["experience"]=experience;
+			LLEventPumps::instance().obtain("experience_permission").post(data);
+		}
+}
 	return false;
 }
 
@@ -6413,8 +6482,24 @@ void script_question_mute(const LLUUID& task_id, const std::string& object_name)
 
 static LLNotificationFunctorRegistration script_question_cb_reg_1("ScriptQuestion", script_question_cb);
 static LLNotificationFunctorRegistration script_question_cb_reg_2("ScriptQuestionCaution", script_question_cb);
+static LLNotificationFunctorRegistration script_question_cb_reg_3("ScriptQuestionExperience", script_question_cb);
 static LLNotificationFunctorRegistration unknown_script_question_cb_reg("UnknownScriptQuestion", unknown_script_question_cb);
 
+void process_script_experience_details(const LLSD& experience_details, LLSD args, LLSD payload)
+{
+	if(experience_details[LLExperienceCache::PROPERTIES].asInteger() & LLExperienceCache::PROPERTY_GRID)
+	{
+		args["GRID_WIDE"] = LLTrans::getString("Grid-Scope");
+	}
+	else
+	{
+		args["GRID_WIDE"] = LLTrans::getString("Land-Scope");
+	}
+	args["EXPERIENCE"] = LLSLURL("experience", experience_details[LLExperienceCache::EXPERIENCE_ID].asUUID(), "profile").getSLURLString();
+
+	LLNotificationsUtil::add("ScriptQuestionExperience", args, payload);
+}
+
 void process_script_question(LLMessageSystem *msg, void **user_data)
 {
 	// *TODO: Translate owner name -> [FIRST] [LAST]
@@ -6426,6 +6511,7 @@ void process_script_question(LLMessageSystem *msg, void **user_data)
 	S32		questions;
 	std::string object_name;
 	std::string owner_name;
+	LLUUID experienceid;
 
 	// taskid -> object key of object requesting permissions
 	msg->getUUIDFast(_PREHASH_Data, _PREHASH_TaskID, taskid );
@@ -6435,6 +6521,11 @@ void process_script_question(LLMessageSystem *msg, void **user_data)
 	msg->getStringFast(_PREHASH_Data, _PREHASH_ObjectOwner, owner_name);
 	msg->getS32Fast(_PREHASH_Data, _PREHASH_Questions, questions );
 
+	if(msg->has(_PREHASH_Experience))
+	{
+		msg->getUUIDFast(_PREHASH_Experience, _PREHASH_ExperienceID, experienceid);
+	}
+
 	// Special case. If the objects are owned by this agent, throttle per-object instead
 	// of per-owner. It's common for residents to reset a ton of scripts that re-request
 	// permissions, as with tier boxes. UUIDs can't be valid agent names and vice-versa,
@@ -6521,20 +6612,21 @@ void process_script_question(LLMessageSystem *msg, void **user_data)
 			payload["owner_name"] = owner_name;
 
 			// check whether cautions are even enabled or not
-			if (gSavedSettings.getBOOL("PermissionsCautionEnabled"))
+			const char* notification = "ScriptQuestion";
+
+			if(caution && gSavedSettings.getBOOL("PermissionsCautionEnabled"))
 			{
-				if (caution)
-				{
-					args["FOOTERTEXT"] = (count > 1) ? LLTrans::getString("AdditionalPermissionsRequestHeader") + "\n\n" + script_question : "";
-				}
-				// display the caution permissions prompt
-				LLNotificationsUtil::add(caution ? "ScriptQuestionCaution" : "ScriptQuestion", args, payload);
+				args["FOOTERTEXT"] = (count > 1) ? LLTrans::getString("AdditionalPermissionsRequestHeader") + "\n\n" + script_question : "";
+				notification = "ScriptQuestionCaution";
 			}
-			else
+			else if(experienceid.notNull())
 			{
-				// fall back to default behavior if cautions are entirely disabled
-				LLNotificationsUtil::add("ScriptQuestion", args, payload);
+				payload["experience"]=experienceid;
+				LLExperienceCache::get(experienceid, boost::bind(process_script_experience_details, _1, args, payload));
+				return;
 			}
+
+			LLNotificationsUtil::add(notification, args, payload);
 		}
 	}
 }
diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp
index d9d4c34fb0a05e96057b04defa69b204cc01675a..59f57c218ee993db4c5efe6ad6de9abb25c15865 100755
--- a/indra/newview/llviewerparcelmgr.cpp
+++ b/indra/newview/llviewerparcelmgr.cpp
@@ -205,8 +205,8 @@ void LLViewerParcelMgr::dump()
 	mCurrentParcel->dump();
 	LL_INFOS() << "banning " << mCurrentParcel->mBanList.size() << LL_ENDL;
 	
-	access_map_const_iterator cit = mCurrentParcel->mBanList.begin();
-	access_map_const_iterator end = mCurrentParcel->mBanList.end();
+	LLAccessEntry::map::const_iterator cit = mCurrentParcel->mBanList.begin();
+	LLAccessEntry::map::const_iterator end = mCurrentParcel->mBanList.end();
 	for ( ; cit != end; ++cit)
 	{
 		LL_INFOS() << "ban id " << (*cit).first << LL_ENDL;
@@ -892,7 +892,7 @@ void LLViewerParcelMgr::sendParcelAccessListRequest(U32 flags)
 	if (!region) return;
 
 	LLMessageSystem *msg = gMessageSystem;
-	
+
 
 	if (flags & AL_BAN) 
 	{
@@ -902,6 +902,14 @@ void LLViewerParcelMgr::sendParcelAccessListRequest(U32 flags)
 	{
 		mCurrentParcel->mAccessList.clear();
 	}		
+	if (flags & AL_ALLOW_EXPERIENCE) 
+	{
+		mCurrentParcel->clearExperienceKeysByType(EXPERIENCE_KEY_TYPE_ALLOWED);
+	}
+	if (flags & AL_BLOCK_EXPERIENCE) 
+	{
+		mCurrentParcel->clearExperienceKeysByType(EXPERIENCE_KEY_TYPE_BLOCKED);
+	}		
 
 	// Only the headers differ
 	msg->newMessageFast(_PREHASH_ParcelAccessListRequest);
@@ -1665,7 +1673,7 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use
 			}
 
 			// Request access list information for this land
-			parcel_mgr.sendParcelAccessListRequest(AL_ACCESS | AL_BAN);
+			parcel_mgr.sendParcelAccessListRequest(AL_ACCESS | AL_BAN | AL_ALLOW_EXPERIENCE | AL_BLOCK_EXPERIENCE);
 
 			// Request dwell for this land, if it's not public land.
 			parcel_mgr.mSelectedDwell = DWELL_NAN;
@@ -1830,6 +1838,14 @@ void LLViewerParcelMgr::processParcelAccessListReply(LLMessageSystem *msg, void
 	{
 		parcel->unpackAccessEntries(msg, &(parcel->mBanList) );
 	}
+	else if (message_flags & AL_ALLOW_EXPERIENCE)
+	{
+		parcel->unpackExperienceEntries(msg, EXPERIENCE_KEY_TYPE_ALLOWED);
+	}
+	else if (message_flags & AL_BLOCK_EXPERIENCE)
+	{
+		parcel->unpackExperienceEntries(msg, EXPERIENCE_KEY_TYPE_BLOCKED);
+	}
 	/*else if (message_flags & AL_RENTER)
 	{
 		parcel->unpackAccessEntries(msg, &(parcel->mRenterList) );
@@ -1864,10 +1880,6 @@ void LLViewerParcelMgr::processParcelDwellReply(LLMessageSystem* msg, void**)
 
 void LLViewerParcelMgr::sendParcelAccessListUpdate(U32 which)
 {
-
-	LLUUID transactionUUID;
-	transactionUUID.generate();
-
 	if (!mSelected)
 	{
 		return;
@@ -1876,125 +1888,92 @@ void LLViewerParcelMgr::sendParcelAccessListUpdate(U32 which)
 	LLViewerRegion* region = LLWorld::getInstance()->getRegionFromPosGlobal( mWestSouth );
 	if (!region) return;
 
-	LLMessageSystem* msg = gMessageSystem;
-
 	LLParcel* parcel = mCurrentParcel;
 	if (!parcel) return;
 
 	if (which & AL_ACCESS)
 	{	
-		S32 count = parcel->mAccessList.size();
-		S32 num_sections = (S32) ceil(count/PARCEL_MAX_ENTRIES_PER_PACKET);
-		S32 sequence_id = 1;
-		BOOL start_message = TRUE;
-		BOOL initial = TRUE;
-
-		access_map_const_iterator cit = parcel->mAccessList.begin();
-		access_map_const_iterator end = parcel->mAccessList.end();
-		while ( (cit != end) || initial ) 
-		{	
-			if (start_message) 
-			{
-				msg->newMessageFast(_PREHASH_ParcelAccessListUpdate);
-				msg->nextBlockFast(_PREHASH_AgentData);
-				msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
-				msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
-				msg->nextBlockFast(_PREHASH_Data);
-				msg->addU32Fast(_PREHASH_Flags, AL_ACCESS);
-				msg->addS32(_PREHASH_LocalID, parcel->getLocalID() );
-				msg->addUUIDFast(_PREHASH_TransactionID, transactionUUID);
-				msg->addS32Fast(_PREHASH_SequenceID, sequence_id);
-				msg->addS32Fast(_PREHASH_Sections, num_sections);
-				start_message = FALSE;
-
-				if (initial && (cit == end))
-				{
-					// pack an empty block if there will be no data
-					msg->nextBlockFast(_PREHASH_List);
-					msg->addUUIDFast(_PREHASH_ID,  LLUUID::null );
-					msg->addS32Fast(_PREHASH_Time, 0 );
-					msg->addU32Fast(_PREHASH_Flags,	0 );
-				}
+		sendParcelAccessListUpdate(AL_ACCESS, parcel->mAccessList, region, parcel->getLocalID());
+	}
 
-				initial = FALSE;
-				sequence_id++;
+	if (which & AL_BAN)
+	{	
+		sendParcelAccessListUpdate(AL_BAN, parcel->mBanList, region, parcel->getLocalID());
+	}
 
-			}
-			
-			while ( (cit != end) && (msg->getCurrentSendTotal() < MTUBYTES)) 
-			{
+	if(which & AL_ALLOW_EXPERIENCE)
+	{
+		sendParcelAccessListUpdate(AL_ALLOW_EXPERIENCE, parcel->getExperienceKeysByType(EXPERIENCE_KEY_TYPE_ALLOWED), region, parcel->getLocalID());
+	}
+	if(which & AL_BLOCK_EXPERIENCE)
+	{
+		sendParcelAccessListUpdate(AL_BLOCK_EXPERIENCE, parcel->getExperienceKeysByType(EXPERIENCE_KEY_TYPE_BLOCKED), region, parcel->getLocalID());
+	}
+}
 
-				const LLAccessEntry& entry = (*cit).second;
-				
-				msg->nextBlockFast(_PREHASH_List);
-				msg->addUUIDFast(_PREHASH_ID,  entry.mID );
-				msg->addS32Fast(_PREHASH_Time, entry.mTime );
-				msg->addU32Fast(_PREHASH_Flags,	entry.mFlags );
-				++cit;
-			}
+void LLViewerParcelMgr::sendParcelAccessListUpdate(U32 flags, const LLAccessEntry::map& entries, LLViewerRegion* region, S32 parcel_local_id)
+{
+	S32 count = entries.size();
+	S32 num_sections = (S32) ceil(count/PARCEL_MAX_ENTRIES_PER_PACKET);
+	S32 sequence_id = 1;
+	BOOL start_message = TRUE;
+	BOOL initial = TRUE;
 
-			start_message = TRUE;
-			msg->sendReliable( region->getHost() );
-		}
-	}
+	LLUUID transactionUUID;
+	transactionUUID.generate();
 
-	if (which & AL_BAN)
-	{	
-		S32 count = parcel->mBanList.size();
-		S32 num_sections = (S32) ceil(count/PARCEL_MAX_ENTRIES_PER_PACKET);
-		S32 sequence_id = 1;
-		BOOL start_message = TRUE;
-		BOOL initial = TRUE;
-
-		access_map_const_iterator cit = parcel->mBanList.begin();
-		access_map_const_iterator end = parcel->mBanList.end();
-		while ( (cit != end) || initial ) 
-		{
-			if (start_message) 
-			{
-				msg->newMessageFast(_PREHASH_ParcelAccessListUpdate);
-				msg->nextBlockFast(_PREHASH_AgentData);
-				msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
-				msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
-				msg->nextBlockFast(_PREHASH_Data);
-				msg->addU32Fast(_PREHASH_Flags, AL_BAN);
-				msg->addS32(_PREHASH_LocalID, parcel->getLocalID() );
-				msg->addUUIDFast(_PREHASH_TransactionID, transactionUUID);
-				msg->addS32Fast(_PREHASH_SequenceID, sequence_id);
-				msg->addS32Fast(_PREHASH_Sections, num_sections);
-				start_message = FALSE;
-
-				if (initial && (cit == end))
-				{
-					// pack an empty block if there will be no data
-					msg->nextBlockFast(_PREHASH_List);
-					msg->addUUIDFast(_PREHASH_ID,  LLUUID::null );
-					msg->addS32Fast(_PREHASH_Time, 0 );
-					msg->addU32Fast(_PREHASH_Flags,	0 );
-				}
 
-				initial = FALSE;
-				sequence_id++;
+	LLMessageSystem* msg = gMessageSystem;
 
-			}
-			
-			while ( (cit != end) && (msg->getCurrentSendTotal() < MTUBYTES)) 
+	LLAccessEntry::map::const_iterator cit = entries.begin();
+	LLAccessEntry::map::const_iterator  end = entries.end();
+	while ( (cit != end) || initial ) 
+	{
+		if (start_message) 
+		{
+			msg->newMessageFast(_PREHASH_ParcelAccessListUpdate);
+			msg->nextBlockFast(_PREHASH_AgentData);
+			msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
+			msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
+			msg->nextBlockFast(_PREHASH_Data);
+			msg->addU32Fast(_PREHASH_Flags, flags);
+			msg->addS32(_PREHASH_LocalID,  parcel_local_id);
+			msg->addUUIDFast(_PREHASH_TransactionID, transactionUUID);
+			msg->addS32Fast(_PREHASH_SequenceID, sequence_id);
+			msg->addS32Fast(_PREHASH_Sections, num_sections);
+			start_message = FALSE;
+
+			if (initial && (cit == end))
 			{
-				const LLAccessEntry& entry = (*cit).second;
-				
+				// pack an empty block if there will be no data
 				msg->nextBlockFast(_PREHASH_List);
-				msg->addUUIDFast(_PREHASH_ID,  entry.mID );
-				msg->addS32Fast(_PREHASH_Time, entry.mTime );
-				msg->addU32Fast(_PREHASH_Flags,	entry.mFlags );
-				++cit;
+				msg->addUUIDFast(_PREHASH_ID,  LLUUID::null );
+				msg->addS32Fast(_PREHASH_Time, 0 );
+				msg->addU32Fast(_PREHASH_Flags,	0 );
 			}
 
-			start_message = TRUE;
-			msg->sendReliable( region->getHost() );
+			initial = FALSE;
+			sequence_id++;
+
 		}
+
+		while ( (cit != end) && (msg->getCurrentSendTotal() < MTUBYTES)) 
+		{
+			const LLAccessEntry& entry = (*cit).second;
+
+			msg->nextBlockFast(_PREHASH_List);
+			msg->addUUIDFast(_PREHASH_ID,  entry.mID );
+			msg->addS32Fast(_PREHASH_Time, entry.mTime );
+			msg->addU32Fast(_PREHASH_Flags,	entry.mFlags );
+			++cit;
+		}
+
+		start_message = TRUE;
+		msg->sendReliable( region->getHost() );
 	}
 }
 
+
 void LLViewerParcelMgr::deedLandToGroup()
 {
 	std::string group_name;
diff --git a/indra/newview/llviewerparcelmgr.h b/indra/newview/llviewerparcelmgr.h
index b5b269abdfec91a1171df87261e7c9b24eaec624..bb6bbf33083127c29b7e04d8cf7d1c65b7d70ae5 100755
--- a/indra/newview/llviewerparcelmgr.h
+++ b/indra/newview/llviewerparcelmgr.h
@@ -218,7 +218,7 @@ public:
 
 	// Takes an Access List flag, like AL_ACCESS or AL_BAN
 	void	sendParcelAccessListUpdate(U32 which);
-
+	
 	// Takes an Access List flag, like AL_ACCESS or AL_BAN
 	void	sendParcelAccessListRequest(U32 flags);
 
@@ -291,6 +291,8 @@ public:
 	static BOOL isParcelModifiableByAgent(const LLParcel* parcelp, U64 group_proxy_power);
 
 private:
+	static void sendParcelAccessListUpdate(U32 flags, const std::map<LLUUID, class LLAccessEntry>& entries, LLViewerRegion* region, S32 parcel_local_id);
+	static void sendParcelExperienceUpdate( const U32 flags, uuid_vec_t experience_ids, LLViewerRegion* region, S32 parcel_local_id );
 	static bool releaseAlertCB(const LLSD& notification, const LLSD& response);
 
 	// If the user is claiming land and the current selection 
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 92e07c52a541b945b9ef6c4f9d72a8bb8308e278..ec28461201bdcc72f19f0787b1974b4b96c90feb 100755
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -2733,8 +2733,21 @@ void LLViewerRegionImpl::buildCapabilityNames(LLSD& capabilityNames)
 	AISCommand::getCapabilityNames(capabilityNames);
 
 	capabilityNames.append("GetDisplayNames");
+	capabilityNames.append("GetExperiences");
+	capabilityNames.append("AgentExperiences");
+	capabilityNames.append("FindExperienceByName");
+	capabilityNames.append("GetExperienceInfo");
+	capabilityNames.append("GetAdminExperiences");
+	capabilityNames.append("GetCreatorExperiences");
+	capabilityNames.append("ExperiencePreferences");
+	capabilityNames.append("GroupExperiences");
+	capabilityNames.append("UpdateExperience");
+	capabilityNames.append("IsExperienceAdmin");
+	capabilityNames.append("IsExperienceContributor");
+	capabilityNames.append("RegionExperiences");
 	capabilityNames.append("GetMesh");
 	capabilityNames.append("GetMesh2");
+	capabilityNames.append("GetMetadata");
 	capabilityNames.append("GetObjectCost");
 	capabilityNames.append("GetObjectPhysicsData");
 	capabilityNames.append("GetTexture");
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 9113b900d06ace96f8f057c86151bd10e2024ff6..f7534487701d8c773d37986860b94686ecc6b5d5 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -43,6 +43,7 @@
 #include "llanimationstates.h"
 #include "llavatarnamecache.h"
 #include "llavatarpropertiesprocessor.h"
+#include "llexperiencecache.h"
 #include "llphysicsmotion.h"
 #include "llviewercontrol.h"
 #include "llcallingcard.h"		// IDEVO for LLAvatarTracker
@@ -2148,7 +2149,7 @@ void LLVOAvatar::idleUpdate(LLAgent &agent, const F64 &time)
 		idleUpdateBelowWater();	// wind effect uses this
 		idleUpdateWindEffect();
 	}
-	
+		
 	idleUpdateNameTag( root_pos_last );
 	idleUpdateRenderCost();
 }
diff --git a/indra/newview/roles_constants.h b/indra/newview/roles_constants.h
index 8fd7978fa16c53220760445e449ec1a9f51cb438..24792dd7318a82bdc8c3f5a35179b354c229a33f 100644
--- a/indra/newview/roles_constants.h
+++ b/indra/newview/roles_constants.h
@@ -145,6 +145,9 @@ const U64 GP_SESSION_JOIN				= 0x1LL << 16;	//can join session
 const U64 GP_SESSION_VOICE				= 0x1LL << 27;	//can hear/talk
 const U64 GP_SESSION_MODERATOR			= 0x1LL << 37;	//can mute people's session
 
+const U64 GP_EXPERIENCE_ADMIN			= 0x1LL << 49;	// has admin rights to any experiences owned by this group
+const U64 GP_EXPERIENCE_CREATOR 		= 0x1LL << 50;	// can sign scripts for experiences owned by this group
+
 // Group Banning
 const U64 GP_GROUP_BAN_ACCESS			= 0x1LL << 51;	// Allows access to ban / un-ban agents from a group.
 
diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml
index 9c2d55e7b4cfcd41a753912713a42fe3daca61d8..408ee39f9b0d3e9fbd51e02078412197ed642899 100755
--- a/indra/newview/skins/default/textures/textures.xml
+++ b/indra/newview/skins/default/textures/textures.xml
@@ -222,6 +222,7 @@ with the same filename but different name
   <texture name="ForwardArrow_Off" file_name="icons/ForwardArrow_Off.png" preload="false" />
   <texture name="ForwardArrow_Press" file_name="icons/ForwardArrow_Press.png" preload="false" />
 
+  <texture name="Generic_Experience" file_name="Blank.png" preload="false" />
   <texture name="Generic_Group" file_name="icons/Generic_Group.png" preload="false" />
   <texture name="Generic_Group_Large" file_name="icons/Generic_Group_Large.png" preload="false" />
   <texture name="icon_group.tga" file_name="icons/Generic_Group.png" preload="false" />
diff --git a/indra/newview/skins/default/xui/de/floater_about_land.xml b/indra/newview/skins/default/xui/de/floater_about_land.xml
index 44922fbe784036d9c15a63eaccb2ff49fb41ae17..60f25704dda22bd015de7051afa27ca13b244795 100755
--- a/indra/newview/skins/default/xui/de/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/de/floater_about_land.xml
@@ -309,9 +309,6 @@ Nur große Parzellen können in der Suche aufgeführt werden.
 			<panel.string name="push_restrict_region_text">
 				Kein Stoßen (regional)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				Avatare auf anderen Parzellen können
-			</panel.string>
 			<text name="allow_label">
 				Anderen Einwohnern gestatten:
 			</text>
@@ -337,22 +334,6 @@ Nur große Parzellen können in der Suche aufgeführt werden.
 			<check_box label="Sicher (kein Schaden)" name="check safe" tool_tip="Falls aktiviert, wird Land auf Option „Sicher“ eingestellt, Kampfschäden sind deaktiviert. Ansonsten sind Kampfschäden aktiviert."/>
 			<check_box label="Kein Stoßen" name="PushRestrictCheck" tool_tip="Verhindert Stoßen durch Skripte. Durch Aktivieren dieser Option verhindern Sie störendes Verhalten auf Ihrem Land."/>
 			<check_box label="Ort in Suche anzeigen (30 L$/Woche)" name="ShowDirectoryCheck" tool_tip="Diese Parzelle in Suchergebnissen anzeigen."/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Alle Kategorien" name="item0"/>
-				<combo_box.item label="Lindenort" name="item1"/>
-				<combo_box.item label="Adult" name="item2"/>
-				<combo_box.item label="Kunst &amp; Kultur" name="item3"/>
-				<combo_box.item label="Business" name="item4"/>
-				<combo_box.item label="Bildung" name="item5"/>
-				<combo_box.item label="Spielen" name="item6"/>
-				<combo_box.item label="Treffpunkt" name="item7"/>
-				<combo_box.item label="Anfängergerecht" name="item8"/>
-				<combo_box.item label="Parks und Natur" name="item9"/>
-				<combo_box.item label="Wohngebiet" name="item10"/>
-				<combo_box.item label="Shopping" name="item11"/>
-				<combo_box.item label="Vermietung" name="item13"/>
-				<combo_box.item label="Sonstige" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Alle Kategorien" name="item0"/>
 				<combo_box.item label="Lindenort" name="item1"/>
@@ -449,15 +430,9 @@ Nur große Parzellen können in der Suche aufgeführt werden.
 			<panel.string name="access_estate_defined">
 				(Durch Grundbesitz festgelegt)
 			</panel.string>
-			<panel.string name="allow_public_access">
-				Öffentlichen Zugang erlauben ([MATURITY]) (Hinweis: Bei Deaktivierung dieser Option werden Bannlinien generiert)
-			</panel.string>
 			<panel.string name="estate_override">
 				Eine oder mehrere dieser Optionen gelten auf Grundbesitzebene
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				Zugang zu dieser Parzelle
-			</text>
 			<check_box label="Öffentlichen Zugang gestatten (bei Deaktivierung dieser Option werden Bannlinien generiert)" name="public_access"/>
 			<text name="Only Allow" width="400">
 				Zugang nur Einwohnern gestatten, die:
@@ -489,5 +464,6 @@ Nur große Parzellen können in der Suche aufgeführt werden.
 				<button label="Entfernen" label_selected="Entfernen" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="ERLEBNISSE" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_experience_search.xml b/indra/newview/skins/default/xui/de/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0fda5086ffb322b65171b5847d857f29e809e382
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="ERLEBNIS AUSWÄHLEN"/>
diff --git a/indra/newview/skins/default/xui/de/floater_experienceprofile.xml b/indra/newview/skins/default/xui/de/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a553a5b6f04a805b70b19fb4e4ec709124552645
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(keines)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Erlebnisprofil"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Bearbeiten" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Einstufung:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Standort:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Eigentümer:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Gruppe:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Zulassen" name="allow_btn"/>
+							<button label="Vergessen" name="forget_btn"/>
+							<button label="Blockieren" name="block_btn"/>
+							<text name="privileged">
+								Dieses Erlebnis ist für alle Einwohner aktiviert.
+							</text>
+							<button label="Missbrauch melden" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Name:"/>
+					<text name="edit_experience_desc_label" value="Beschreibung:"/>
+					<button label="Gruppe" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Einstufung:
+					</text>
+					<icons_combo_box label="Moderat" name="edit_ContentRatingText" tool_tip="Bei Erhöhung der Inhaltseinstufung eines Erlebnisses wird die Berechtigung für alle Einwohner zurückgesetzt, die das Erlebnis zugelassen haben.">
+						<icons_combo_box.item label="Adult" name="Adult" value="42"/>
+						<icons_combo_box.item label="Moderat" name="Mature" value="21"/>
+						<icons_combo_box.item label="Allgemein" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Standort:
+					</text>
+					<button label="Aktuellen Standort verwenden" name="location_btn"/>
+					<button label="Standort löschen" name="clear_btn"/>
+					<check_box label="Erlebnis aktivieren" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Aus Suche ausschließen" name="edit_private_btn"/>
+					<text name="changes" value="Es kann mehrere Minuten dauern, bis Erlebnisänderungen in allen Regionen umgesetzt werden."/>
+					<button label="Zurück" name="cancel_btn"/>
+					<button label="Speichern" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/de/floater_experiences.xml b/indra/newview/skins/default/xui/de/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..932592a63b6e06ba780755133ead6cb8c5791213
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="ERLEBNISSE"/>
diff --git a/indra/newview/skins/default/xui/de/floater_facebook.xml b/indra/newview/skins/default/xui/de/floater_facebook.xml
index 25b11536eb811ce00b365a531ea71343f4b0367f..32d6d02c7a20fa705b3ac2dbb130e2fc01ecd4c2 100644
--- a/indra/newview/skins/default/xui/de/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/de/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="AUF FACEBOOK POSTEN">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="STATUS" name="panel_facebook_status"/>
-			<panel label="FOTO" name="panel_facebook_photo"/>
-			<panel label="EINCHECKEN" name="panel_facebook_place"/>
-			<panel label="FREUNDE" name="panel_facebook_friends"/>
-			<panel label="KONTO" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Fehler
-			</text>
-			<text name="connection_loading_text">
-				Laden...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="STATUS" name="panel_facebook_status"/>
+		<panel label="FOTO" name="panel_facebook_photo"/>
+		<panel label="EINCHECKEN" name="panel_facebook_place"/>
+		<panel label="FREUNDE" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Fehler
+	</text>
+	<text name="connection_loading_text">
+		Laden...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/de/floater_inventory_view_finder.xml
index d63426d684455550351203013570035a93c8633c..0820e75029ac1ee4ed51493ba615d47bdfd8296b 100755
--- a/indra/newview/skins/default/xui/de/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/de/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Kleidung" name="check_clothing"/>
 	<check_box label="Gesten" name="check_gesture"/>
 	<check_box label="Landmarken" name="check_landmark"/>
-	<check_box label="Netze" name="check_mesh"/>
 	<check_box label="Notizkarten" name="check_notecard"/>
+	<check_box label="Netze" name="check_mesh"/>
 	<check_box label="Objekte" name="check_object"/>
 	<check_box label="Skripts" name="check_script"/>
 	<check_box label="Sounds" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- ODER -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Neuer als" name="newer"/>
+		<radio_item label="Älter als" name="older"/>
+	</radio_group>
 	<spinner label="Stunden zuvor" label_width="80" name="spin_hours_ago"/>
 	<spinner label="Tage zuvor" name="spin_days_ago"/>
 	<button label="Schließen" label_selected="Schließen" name="Close"/>
diff --git a/indra/newview/skins/default/xui/de/floater_lagmeter.xml b/indra/newview/skins/default/xui/de/floater_lagmeter.xml
index 45ff37c14753d6f2fc886de9e23c5b8f58fe9cf5..2c8b76ace79b1e319fb3affd0f44265fd7b2b9de 100644
--- a/indra/newview/skins/default/xui/de/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/de/floater_lagmeter.xml
@@ -4,7 +4,7 @@
 		Lag-Anzeige
 	</floater.string>
 	<floater.string name="max_width_px">
-		350
+		360
 	</floater.string>
 	<floater.string name="min_title_msg">
 		Lag
@@ -25,10 +25,10 @@
 		Normal, Fenster im Hintergrund
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Client-Frame-Rate unter [CLIENT_FRAME_RATE_CRITICAL]
+		Client-Framerate unter [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		Client-Frame-Rate zwischen [CLIENT_FRAME_RATE_CRITICAL] und [CLIENT_FRAME_RATE_WARNING]
+		Client-Framerate zwischen [CLIENT_FRAME_RATE_CRITICAL] und [CLIENT_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		Normal
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		Paketverlust der Verbindung übersteigt [NETWORK_PACKET_LOSS_CRITICAL]%
+		Paketverlust der Verbindung übersteigt [NETWORK_PACKET_LOSS_CRITICAL] %
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		Paketverlust der Verbindung liegt bei [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]%
+		Paketverlust der Verbindung liegt bei [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL] %
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		Normal
@@ -76,10 +76,10 @@
 		Ping-Zeit der Verbindung liegt bei [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		Möglicherweise schlechte Verbindung oder zu hoher Wert für „Bandbreite“.
+		Möglicherweise schlechte Verbindung oder zu hoher Bandbreitenwert.
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		Möglicherweise schlechte Verbindung oder File-Sharing-Anwendung.
+		Möglicherweise schlechte Verbindung oder Filesharing-Anwendung.
 	</floater.string>
 	<floater.string name="server_text_msg">
 		Server
@@ -94,10 +94,10 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		Simulator-Frame-Rate liegt unter [SERVER_FRAME_RATE_CRITICAL]
+		Simulator-Framerate liegt unter [SERVER_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		Simulator-Frame-Rate liegt zwischen [SERVER_FRAME_RATE_CRITICAL] und [SERVER_FRAME_RATE_WARNING]
+		Simulator-Framerate liegt zwischen [SERVER_FRAME_RATE_CRITICAL] und [SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
 		Normal
@@ -112,13 +112,13 @@
 		Mögliche Ursache: Zu viel Netzwerktraffic
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		Mögliche Ursache: Zu viele Personen in Bewegung in der Region
+		Mögliche Ursache: Zu viele Personen in der Region in Bewegung
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
 		Mögliche Ursache: Zu viele Bildberechnungen
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		Mögliche Ursache: Zu hohe Simulator-Last
+		Mögliche Ursache: Zu hohe Simulatorlast
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -147,5 +147,5 @@
 	<text name="server_text">
 		Normal
 	</text>
-	<button label="&gt;&gt; " name="minimize" tool_tip="Fenstergröße ändern"/>
+	<button label="&gt;&gt;" name="minimize" tool_tip="Fenstergröße ändern"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml
index 3b42a8b741438a9406dc0e700c07e80d3fcd1328..ae2dd4db678b0e7fdf48179d4a3ab211a83ab219 100755
--- a/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		SKRIPT: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Markierung löschen, um aktuelles Erlebnis zu entfernen
+	</floater.string>
+	<floater.string name="no_experiences">
+		Sie sind zu keinen Erlebnissen berechtigt
+	</floater.string>
+	<floater.string name="add_experiences">
+		Auswählen, um Erlebnis hinzuzufügen
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Klicken, um Erlebnisprofil aufzurufen
+	</floater.string>
+	<floater.string name="loading">
+		Laden...
+	</floater.string>
 	<button label="Zurücksetzen" label_selected="Zurücksetzen" name="Reset"/>
 	<check_box initial_value="true" label="Läuft" name="running"/>
 	<check_box initial_value="true" label="Mono" name="mono"/>
+	<check_box label="Erlebnis verwenden:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_openobject.xml b/indra/newview/skins/default/xui/de/floater_openobject.xml
index c3e7052283810d787cba438f1295aaf907586f45..5aa4477f2e1fa97d8f14b7eb7d972c2ae4224db4 100755
--- a/indra/newview/skins/default/xui/de/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/de/floater_openobject.xml
@@ -4,5 +4,5 @@
 		[DESC]:
 	</text>
 	<button label="In Inventar kopieren" label_selected="In Inventar kopieren" name="copy_to_inventory_button" width="120"/>
-	<button label="Kopieren und anziehen" label_selected="Kopieren und anziehen" left_pad="6" name="copy_and_wear_button" width="136"/>
+	<button label="Kopieren und zum Outfit hinzufügen" label_selected="Kopieren und zum Outfit hinzufügen" left_pad="6" name="copy_and_wear_button" width="136"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_report_abuse.xml b/indra/newview/skins/default/xui/de/floater_report_abuse.xml
index 34cb3d1cc21f825561e35bd7c44eb55f7bdda452..6999679b3f3ee93aa012e0533b42258f33d82215 100755
--- a/indra/newview/skins/default/xui/de/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/de/floater_report_abuse.xml
@@ -77,7 +77,7 @@ Objekt:
 		<combo_box.item label="Land &gt; Unbefugte Nutzung &gt; Objekte oder Texturen" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Land &gt; Unbefugte Nutzung &gt; Partikel" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Land &gt; Unbefugte Nutzung &gt; Bäume/Pflanzen" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Wetten/Glücksspiel" name="Wagering_gambling"/>
+		<combo_box.item label="Verstoß gegen die Spielerichtlinie" name="Wagering_gambling"/>
 		<combo_box.item label="Sonstige" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/de/floater_snapshot.xml b/indra/newview/skins/default/xui/de/floater_snapshot.xml
index 51614f1e8d1222ac57aef2b946c13e37e722a030..f0152ad8cdf3e16b522a0c035408c246cc9ef8fa 100755
--- a/indra/newview/skins/default/xui/de/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/de/floater_snapshot.xml
@@ -39,13 +39,7 @@
 	<string name="local_failed_str">
 		Fehler beim Speichern auf dem Computer.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Erweiterte Optionen"/>
-	<text name="image_res_text">
-		[WIDTH]px (Breite) x [HEIGHT]px (Höhe)
-	</text>
-	<text name="file_size_label">
-		[SIZE] KB
-	</text>
+	<button label="AKTUALISIEREN" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
 		<text name="layer_type_label">
 			Aufnehmen:
@@ -65,4 +59,10 @@
 			<combo_box.item label="Kein Filter" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] px (Breite) x [HEIGHT] px (Höhe)
+	</text>
+	<text name="file_size_label">
+		[SIZE] KB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/floater_top_objects.xml b/indra/newview/skins/default/xui/de/floater_top_objects.xml
index f8130c6379322cf42fb8353333634f3856988ae5..d01b4640c2e76cd2fb315f15a2311d7941714eb7 100755
--- a/indra/newview/skins/default/xui/de/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/de/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Nicht gefunden.
 	</floater.string>
+	<floater.string name="URLs">
+		URLs
+	</floater.string>
+	<floater.string name="memory">
+		Speicher (KB)
+	</floater.string>
 	<text name="title_text">
 		Wird geladen...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Eigentümer" name="owner"/>
 		<scroll_list.columns label="Position" name="location" width="125"/>
 		<scroll_list.columns label="Parzelle" name="parcel"/>
-		<scroll_list.columns label="Uhrzeit" name="time"/>
+		<scroll_list.columns label="Datum" name="time"/>
 		<scroll_list.columns label="URLs" name="URLs"/>
 		<scroll_list.columns label="Speicher (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/de/floater_twitter.xml b/indra/newview/skins/default/xui/de/floater_twitter.xml
index a79a5d3cac759f8c749b6a45642ed5c557924365..483641c26080dab6e4a1d24993f48e1781f35d0d 100644
--- a/indra/newview/skins/default/xui/de/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/de/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="ERSTELLEN" name="panel_twitter_photo"/>
-			<panel label="KONTO" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Fehler
-			</text>
-			<text name="connection_loading_text">
-				Laden...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="ERSTELLEN" name="panel_twitter_photo"/>
+		<panel label="KONTO" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Fehler
+	</text>
+	<text name="connection_loading_text">
+		Laden...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/de/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/de/menu_inventory_gear_default.xml
index 48dec3e856cb60f9f07f9ef5612d56cc830bb903..7438fc5aa2e8f944a85bf80aa053111f9c44bc0f 100755
--- a/indra/newview/skins/default/xui/de/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/de/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Nach aktuellesten Objekten sortieren" name="sort_by_recent"/>
 	<menu_item_check label="Ordner immer nach Namen sortieren" name="sort_folders_by_name"/>
 	<menu_item_check label="Systemordner nach oben" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Filter anzeigen" name="show_filters"/>
+	<menu_item_call label="Filter anzeigen..." name="show_filters"/>
 	<menu_item_call label="Filter zurücksetzen" name="reset_filters"/>
 	<menu_item_call label="Alle Ordner schließen" name="close_folders"/>
 	<menu_item_call label="Fundbüro ausleeren" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/de/menu_url_experience.xml b/indra/newview/skins/default/xui/de/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..45c118cb6d18e03dbe73b2a69704f207f82efe90
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="SLurl in die Zwischenablage kopieren" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/de/menu_viewer.xml b/indra/newview/skins/default/xui/de/menu_viewer.xml
index 50a6dafa91ac29805f203bae46fd7a2f44220e0e..a328ca39f8e6c0a0726c2c4228fc38966faf6dc7 100755
--- a/indra/newview/skins/default/xui/de/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/de/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Neues Inventarfenster" name="NewInventoryWindow"/>
 		<menu_item_call label="Orte..." name="Places"/>
 		<menu_item_call label="Auswahlen..." name="Picks"/>
+		<menu_item_call label="Erlebnisse..." name="Experiences"/>
 		<menu_item_call label="Kamerasteuerungen..." name="Camera Controls"/>
 		<menu label="Bewegung" name="Movement">
 			<menu_item_call label="Hinsetzen" name="Sit Down Here"/>
@@ -48,7 +49,7 @@
 		<menu_item_check label="Freunde" name="My Friends"/>
 		<menu_item_check label="Gruppen" name="My Groups"/>
 		<menu_item_check label="Leute in der Nähe" name="Active Speakers"/>
-		<menu_item_call label="Blockierliste" name="Block List"/>
+		<menu_item_check label="Blockierliste" name="Block List"/>
 		<menu_item_check label="Nicht stören" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Welt" name="World">
diff --git a/indra/newview/skins/default/xui/de/mime_types.xml b/indra/newview/skins/default/xui/de/mime_types.xml
index de93107e94b3ed60c2606768afce604481912551..ee05e47a6359c6139850039e7c50b1acb8f2c330 100755
--- a/indra/newview/skins/default/xui/de/mime_types.xml
+++ b/indra/newview/skins/default/xui/de/mime_types.xml
@@ -44,6 +44,14 @@
 			Audio an diesem Ort wiedergeben
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Keine Inhalte
+		</label>
+		<tooltip name="none_tooltip">
+			Keine Medien gefunden
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Echtzeit-Streaming
@@ -119,11 +127,6 @@
 			Macromedia Director
 		</label>
 	</mimetype>
-	<mimetype name="application/x-shockwave-flash">
-		<label name="application/x-shockwave-flash_label">
-			Flash
-		</label>
-	</mimetype>
 	<mimetype name="audio/mid">
 		<label name="audio/mid_label">
 			Audio (MIDI)
diff --git a/indra/newview/skins/default/xui/de/mime_types_linux.xml b/indra/newview/skins/default/xui/de/mime_types_linux.xml
index e4b5c53292107c8af7bdfc771acdd16d045df471..ffe819d15773dcb2b797354fb510b0526223e257 100755
--- a/indra/newview/skins/default/xui/de/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/de/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Das Audio dieses Standorts abspielen
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Keine Inhalte
+		</label>
+		<tooltip name="none_tooltip">
+			Keine Medien gefunden
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Echtzeit-Streaming
diff --git a/indra/newview/skins/default/xui/de/mime_types_mac.xml b/indra/newview/skins/default/xui/de/mime_types_mac.xml
index e4b5c53292107c8af7bdfc771acdd16d045df471..ffe819d15773dcb2b797354fb510b0526223e257 100755
--- a/indra/newview/skins/default/xui/de/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/de/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Das Audio dieses Standorts abspielen
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Keine Inhalte
+		</label>
+		<tooltip name="none_tooltip">
+			Keine Medien gefunden
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Echtzeit-Streaming
diff --git a/indra/newview/skins/default/xui/de/notifications.xml b/indra/newview/skins/default/xui/de/notifications.xml
index 2fa5005d15fa4c16db2136248f1f97a34df7fb6a..09cba36e25a43a7ff2e27207e5fb9609580e32fa 100755
--- a/indra/newview/skins/default/xui/de/notifications.xml
+++ b/indra/newview/skins/default/xui/de/notifications.xml
@@ -73,6 +73,10 @@ Fehlerdetails: The notification called &apos;[_NAME]&apos; was not found in noti
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Ja"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Beim Aktualisieren von [APP_NAME] ist ein Fehler aufgetreten.  Bitte [http://get.secondlife.com laden Sie die aktuellste Version des Viewers herunter].
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -582,6 +586,9 @@ Sie können die Grafikqualität unter Einstellungen &gt; Grafik wieder erhöhen.
 	<notification name="RegionNoTerraforming">
 		Die Region [REGION] erlaubt kein Terraforming.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		Sie sind nicht zum Terraformen der Parzelle „[PARCEL]“ berechtigt.
+	</notification>
 	<notification name="CannotCopyWarning">
 		Sie sind nicht berechtigt, die folgenden Objekte zu kopieren:
 [ITEMS]
@@ -1839,6 +1846,30 @@ Tausende Regionen werden verändert und der Spaceserver wird dadurch stark belas
 		Verwalter nur für diesen Grundbesitz oder für [ALL_ESTATES] entfernen?
 		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/>
 	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateAllowedExperienceAdd">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] zur Erlaubnisliste hinzufügen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateAllowedExperienceRemove">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] aus der Erlaubnisliste entfernen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateBlockedExperienceAdd">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] zur Blockierliste hinzufügen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateBlockedExperienceRemove">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] aus der Blockierliste entfernen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateTrustedExperienceAdd">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] zur Schlüsselliste hinzufügen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
+	<notification label="Grundbesitz auswählen" name="EstateTrustedExperienceRemove">
+		Nur für diesen Grundbesitz oder für [ALL_ESTATES] aus der Schlüsselliste entfernen?
+		<usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/>
+	</notification>
 	<notification label="Rauswurf bestätigen" name="EstateKickUser">
 		Benutzer [EVIL_USER] von diesem Grundbesitz werfen?
 		<usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/>
@@ -1913,6 +1944,10 @@ Tausende Regionen werden verändert und der Spaceserver wird dadurch stark belas
 		Wir haben technische Probleme mit Ihrem Teleport, da Ihre Einstellungen nicht mit dem Server synchronisiert sind.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Betreten der Region nicht gestattet. „[REGION_NAME]“ ist eine Region für Geschicklichkeitsspiele. Der Zugang ist Einwohnern vorbehalten, die bestimmte Kriterien erfüllen. Weitere Details finden Sie unter [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		Sie erhalten keine Benachrichtigungen mehr, wenn Sie eine Region der Inhaltseinstufung „[RATING]“ besuchen. Sie können Ihre Inhaltseinstellungen von der Menüleiste aus ändern („Ich“ &gt; „Einstellungen“ &gt; „Allgemein“).
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2220,6 +2255,9 @@ Möchten Sie es mit dem ausgewählten Objekt ersetzen?
 			<button ignore="Nie ersetzen" name="No" text="Abbrechen"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		Sie können keinen Ordner tragen, der mehr als [AMOUNT] Elemente enthält.  Sie können diesen Höchstwert unter „Erweitert“ &gt; „Debug-Einstellungen anzeigen“ &gt; „WearFolderLimit“ ändern.
+	</notification>
 	<notification label="Warnung für Nicht-stören-Modus" name="DoNotDisturbModePay">
 		Sie haben den Nicht-stören-Modus aktiviert. Sie erhalten keine Artikel, die im Gegenzug für diese Zahlung angeboten werden.
 
@@ -2828,7 +2866,7 @@ Wenn Sie in dieser Region bleiben, werden Sie abgemeldet.
 
 [MESSAGE]
 
-Von Objekt: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, Eigentümer: [NAME]?
+Von Objekt: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, Eigentümer: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Zur Seite"/>
 			<button name="Cancel" text="Abbrechen"/>
@@ -2854,6 +2892,72 @@ Ist das OK?
 			<button name="Mute" text="Ignorieren"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Fehler beim Erwerb eines neuen Erlebnisses:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Eine Änderung der Erlebnisgruppe wurde ignoriert, weil der Eigentümer nicht Mitglied der ausgewählten Gruppe ist.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		Das nicht bearbeitbare Feld „[field]“ wurde beim Aktualisieren des Erlebnisprofils ignoriert.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Änderungen des Felds „[field]“ ignoriert; Feld kann nur vom Eigentümer des Erlebnisses eingestellt werden.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Sie können die Inhaltseinstufung eines Erlebnisses nicht auf eine höhere Stufe setzen als die des Eigentümers.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Die folgenden Elemente verhinderten die Aktualisierung des Namens und/oder der Beschreibung im Erlebnisprofil: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Sie wurden aus der Region [region_name] teleportiert, weil Sie das Erlebnis secondlife:///app/experience/[public_id]/profile entfernt haben und nicht mehr berechtigt sind, sich in dieser Region aufzuhalten.
+		<form name="form">
+			<ignore name="ignore" text="Wegen Entfernen eines Erlebnisses aus Region hinausgeworfen"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		Sie durften die Region [region_name] betreten, weil Sie am Schlüsselerlebnis secondlife:///app/experience/[public_id]/profile teilgenommen haben. Wenn Sie dieses Erlebnis entfernen, werden Sie u. U. aus der Region hinausgeworfen.
+		<form name="form">
+			<ignore name="ignore" text="Betreten der Region durch ein Erlebnis gestattet"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		Sie haben keinen Zugang zu diesem Ziel. Sie erhalten u. U. Zugang zur Region, wenn Sie unten ein Erlebnis akzeptieren:
+
+[EXPERIENCE_LIST]
+
+Möglicherweise sind noch weitere Schlüsselerlebnisse verfügbar.
+	</notification>
+	<notification name="ExperienceEvent">
+		Ein Objekt erhielt vom Erlebnis secondlife:///app/experience/[public_id]/profile die Erlaubnis zum Durchführen der folgenden Aktion: [EventType].
+    Eigentümer: secondlife:///app/agent/[OwnerID]/inspect
+    Objektname: [ObjectName]
+    Parzellenname: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		Ein Anhang erhielt vom Erlebnis secondlife:///app/experience/[public_id]/profile die Erlaubnis zum Durchführen der folgenden Aktion: [EventType].
+    Eigentümer: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		„&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;“, ein Objekt, das „[NAME]“ gehört, lädt Sie zur Teilnahme an diesem Erlebnis mit [GRID_WIDE] ein:
+
+[EXPERIENCE]
+
+Nach Erteilung der Genehmigung wird diese Nachricht für dieses Erlebnis nicht erneut angezeigt, es sei denn, Sie widerrufen die Genehmigung im Erlebnisprofil.
+
+Mit diesem Erlebnis verknüpfte Skripts können in Regionen, in denen dieses Erlebnis aktiv ist, Folgendes tun: 
+
+[QUESTIONS]Sind Sie damit einverstanden?
+		<form name="form">
+			<button name="BlockExperience" text="Erlebnis blockieren"/>
+			<button name="Mute" text="Objekt blockieren"/>
+			<button name="Yes" text="Ja"/>
+			<button name="No" text="Nein"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Achtung: Das Objekt „&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;“ fordert uneingeschränkten Zugriff auf Ihr Linden-Dollar-Konto an. Wenn Sie Zugriff gewähren, kann dieses Objekt jederzeit und ohne weitere Warnung Ihr Konto belasten bzw. ganz leeren.
   
@@ -3173,6 +3277,10 @@ Sie haben eine [RESOLUTION]-gebackene Textur für „[BODYREGION]“ nach [TIME]
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( [EXISTENCE] Sekunden am Leben)
 Sie haben lokal eine [RESOLUTION]-gebackene Textur für „[BODYREGION]“ nach [TIME] Sekunden aktualisiert.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Textur kann nicht hochgeladen werden.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Wir können keine Vorschau dieser Textur anzeigen, da sie nicht kopier- und/oder übertragungsfähig ist.
diff --git a/indra/newview/skins/default/xui/de/panel_experience_info.xml b/indra/newview/skins/default/xui/de/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7231719561f69d62b3864afba6111f3a3fa22b32
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Erlebnisprofil"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Standort:
+					</text>
+					<text name="LocationTextText">
+						irgendwo
+					</text>
+					<button label="Teleportieren" name="teleport_btn"/>
+					<button label="Karte" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Marketplace-Laden:
+					</text>
+					<text name="LocationTextText">
+						irgendwo
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Einstufung:
+					</text>
+					<text name="ContentRatingText">
+						Adult
+					</text>
+					<text name="Owner">
+						Eigentümer:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Bearbeiten" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/de/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b87c81448549fb9761bca4514855a1f2844e94cf
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		wird geladen...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Zulässige Erlebnisse:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Blockierte Erlebnisse:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Schlüsselerlebnisse:
+	</panel.string>
+	<panel.string name="no_results">
+		(leer)
+	</panel.string>
+	<text name="text_name">
+		Erlebnisliste
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Name" name="experience_name"/>
+	</scroll_list>
+	<button label="Hinzufügen..." name="btn_add"/>
+	<button label="Entfernen" name="btn_remove"/>
+	<button label="Profil..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_experience_list_item.xml b/indra/newview/skins/default/xui/de/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cfffa27a20a4a1d240f02d9f37aad7d2ab78d7e4
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Dummy-Name
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_experience_log.xml b/indra/newview/skins/default/xui/de/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..393bbbbf8e5ba707178156358e6654b7bbed690b
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Keine Events."/>
+	<string name="loading" value="Laden..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Zeit" name="time"/>
+				<columns label="Event" name="event"/>
+				<columns label="Erlebnis" name="experience_name"/>
+				<columns label="Objekt" name="object_name"/>
+			</scroll_list>
+			<button label="Benachrichtigen" name="btn_notify"/>
+			<button label="Profil" name="btn_profile_xp"/>
+			<button label="Melden" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Alle Events benachrichtigen   Tage" name="notify_all"/>
+			<button label="Entfernen" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_experience_search.xml b/indra/newview/skins/default/xui/de/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e556335213aea6f7998c5397a018c91f0d301905
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		„[TEXT]“ nicht gefunden
+	</string>
+	<string name="no_results">
+		Keine Ergebnisse
+	</string>
+	<string name="searching">
+		Suchen...
+	</string>
+	<string name="loading">
+		Laden...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Los" name="find"/>
+		<icons_combo_box label="Moderat" name="maturity">
+			<icons_combo_box.item label="Adult" name="Adult" value="42"/>
+			<icons_combo_box.item label="Moderat" name="Mature" value="21"/>
+			<icons_combo_box.item label="Allgemein" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Name" name="experience_name"/>
+			<columns label="Eigentümer" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Abbrechen" name="cancel_btn"/>
+		<button label="Profil anzeigen" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_experiences.xml b/indra/newview/skins/default/xui/de/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6c1630d973d3fa3ed5041366879e5a5860e4b216
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Erlebnisse werden geladen..."/>
+	<string name="no_experiences" value="Keine Erlebnisse."/>
+	<string name="acquire" value="Erlebnis erwerben"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_facebook_friends.xml b/indra/newview/skins/default/xui/de/panel_facebook_friends.xml
index 9712d681c795fb5a00d6c361093922f64e4b6b89..f6a8fda23e0865c54985503472876d8faef00c7c 100644
--- a/indra/newview/skins/default/xui/de/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/de/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Sie haben gegenwärtig keine Facebook-Freunde, die gleichzeitig Einwohner von Second Life sind. Laden Sie Ihre Facebook-Freunde ein, Second Life beizutreten!"/>
-	<string name="facebook_friends_no_connected" value="Sie sind gegenwärtig nicht mit Facebook verbunden. Um eine Verbindung herzustellen und diese Funktion zu aktivieren, gehen Sie zur Registerkarte „Konto“."/>
+	<string name="facebook_friends_no_connected" value="Sie sind gegenwärtig nicht mit Facebook verbunden. Um eine Verbindung herzustellen und diese Funktion zu aktivieren, gehen Sie zur Registerkarte „Status“."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="SL-Freunde"/>
 		<accordion_tab name="tab_suggested_friends" title="Diese Personen als SL-Freunde hinzufügen"/>
diff --git a/indra/newview/skins/default/xui/de/panel_facebook_photo.xml b/indra/newview/skins/default/xui/de/panel_facebook_photo.xml
index a1aabcd29ca33d591b8b9516b85d5083cf7f9f01..bc489311295b24cc5ad40c2edfdb2dee0c8f3d2b 100644
--- a/indra/newview/skins/default/xui/de/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/de/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
-				<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Bildfilter">
-				<combo_box.item label="Kein Filter" name="NoFilter"/>
-			</combo_box>
-			<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
-			<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
-			<text name="caption_label">
-				Kommentar (optional):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Posten" name="post_photo_btn"/>
-			<button label="Abbrechen" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
+		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Bildfilter">
+		<combo_box.item label="Kein Filter" name="NoFilter"/>
+	</combo_box>
+	<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
+	<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
+	<text name="caption_label">
+		Kommentar (optional):
+	</text>
+	<button label="Posten" name="post_photo_btn"/>
+	<button label="Abbrechen" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_facebook_place.xml b/indra/newview/skins/default/xui/de/panel_facebook_place.xml
index 0f556565b4fca4b2bd1818b5f7297f4c8133568f..102be805025c62a7d2c0feb1f74ea75f57b07aff 100644
--- a/indra/newview/skins/default/xui/de/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/de/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Details zu Ihrem aktuellen Standort:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Posten" name="post_place_btn"/>
-			<button label="Abbrechen" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Details zu Ihrem aktuellen Standort:
+	</text>
+	<check_box initial_value="false" label="Draufsicht des Standorts einschließen" name="add_place_view_cb"/>
+	<button label="Posten" name="post_place_btn"/>
+	<button label="Abbrechen" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_facebook_status.xml b/indra/newview/skins/default/xui/de/panel_facebook_status.xml
index 437243c36094731d6fb2748144cf6193ef8adca5..23c9d3b75fc11d5f9c446751a7532b40692e2df5 100644
--- a/indra/newview/skins/default/xui/de/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/de/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				Was machst du gerade?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Posten" name="post_status_btn"/>
-			<button label="Abbrechen" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Sie sind mit Facebook verbunden als:"/>
+	<string name="facebook_disconnected" value="Nicht mit Facebook verbunden"/>
+	<text name="account_caption_label">
+		Nicht mit Facebook verbunden.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Verbinden..." name="connect_btn"/>
+		<button label="Trennen" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Anweisungen zum Posten auf Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		Was machst du gerade?
+	</text>
+	<button label="Posten" name="post_status_btn"/>
+	<button label="Abbrechen" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_flickr_photo.xml b/indra/newview/skins/default/xui/de/panel_flickr_photo.xml
index 1627f405c5add9c6741de5fb9d8cd2c594c8c928..38b5302fefbc47a56b303817c6cf4c76c83483d3 100644
--- a/indra/newview/skins/default/xui/de/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/de/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
-				<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Bildfilter">
-				<combo_box.item label="Kein Filter" name="NoFilter"/>
-			</combo_box>
-			<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
-			<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
-			<text name="title_label">
-				Titel:
-			</text>
-			<text name="description_label">
-				Beschreibung:
-			</text>
-			<check_box initial_value="true" label="SL-Standort am Ende der Beschreibung hinzufügen" name="add_location_cb"/>
-			<text name="tags_label">
-				Markierungen:
-			</text>
-			<text name="tags_help_label">
-				Markierungen durch Leerzeichen trennen.
+	<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
+		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Bildfilter">
+		<combo_box.item label="Kein Filter" name="NoFilter"/>
+	</combo_box>
+	<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
+	<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
+	<text name="title_label">
+		Titel:
+	</text>
+	<text name="description_label">
+		Beschreibung:
+	</text>
+	<check_box initial_value="true" label="SL-Standort am Ende der Beschreibung hinzufügen" name="add_location_cb"/>
+	<text name="tags_label">
+		Markierungen:
+	</text>
+	<text name="tags_help_label">
+		Markierungen durch Leerzeichen trennen.
 Für Markierungen, die aus mehreren Wörtern bestehen, &quot;&quot; verwenden.
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Flickr-Inhaltseinstufung">
-				<combo_box.item label="Sichere Flickr-Einstufung" name="SafeRating"/>
-				<combo_box.item label="Moderate Flickr-Einstufung" name="ModerateRating"/>
-				<combo_box.item label="Beschränkte Flickr-Einstufung" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Hochladen" name="post_photo_btn"/>
-			<button label="Abbrechen" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Flickr-Inhaltseinstufung">
+		<combo_box.item label="Sichere Flickr-Einstufung" name="SafeRating"/>
+		<combo_box.item label="Moderate Flickr-Einstufung" name="ModerateRating"/>
+		<combo_box.item label="Beschränkte Flickr-Einstufung" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Hochladen" name="post_photo_btn"/>
+	<button label="Abbrechen" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/de/panel_group_info_sidetray.xml
index 1775394ecd74531633478cf96a8552ecdc8b6ba0..92c2a4b83a75ccf702ca6989d1eeabb0dd5534b6 100755
--- a/indra/newview/skins/default/xui/de/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/de/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Rollen und Mitglieder"/>
 				<accordion_tab name="group_notices_tab" title="Mitteilungen"/>
 				<accordion_tab name="group_land_tab" title="Land/Kapital"/>
+				<accordion_tab name="group_experiences_tab" title="Erlebnisse"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/de/panel_postcard_settings.xml b/indra/newview/skins/default/xui/de/panel_postcard_settings.xml
index e6d3b7de66222f86bcb200fea20e2677fedaab77..93b4121db53b7e50f88f11e3dbc84571c0a1e12d 100755
--- a/indra/newview/skins/default/xui/de/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/de/panel_postcard_settings.xml
@@ -9,7 +9,7 @@
 	</combo_box>
 	<spinner label="Breite x Höhe" name="postcard_snapshot_width"/>
 	<check_box label="Seitenverhältnis beibehalten" name="postcard_keep_aspect_check"/>
-	<slider label="Qualität" name="image_quality_slider"/>
+	<slider label="Qualität:" name="image_quality_slider"/>
 	<text name="image_quality_level">
 		([QLVL])
 	</text>
diff --git a/indra/newview/skins/default/xui/de/panel_preferences_setup.xml b/indra/newview/skins/default/xui/de/panel_preferences_setup.xml
index 24e5033bfc7e9090095a3961a545c2b2a0d4a8c9..e6c90f21d1897cb781c4a8c53844a1158b05b136 100755
--- a/indra/newview/skins/default/xui/de/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/de/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Meinen Browser verwenden (IE, Firefox, Safari)" name="external" tool_tip="Standard Webbrowser des Systems verwenden, um die Hilfe, Weblinks usw. anzuzeigen. Bei Vollbildmodus nicht empfohlen." value="true"/>
-		<radio_item label="Integrierten Browser verwenden" name="internal" tool_tip="Integrierten Webbrowser verwenden, um die Hilfe, Weblinks usw. anzuzeigen. Dieser Browser öffnet als neues Fenster innerhalb von [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Meinen Browser (Chrome, Firefox, IE) für alle Links verwenden" name="internal" tool_tip="Standard-Browser für Hilfe, Weblinks usw. verwenden. Im Vollbildmodus nicht empfohlen." value="0"/>
+		<radio_item label="Integrierten Browser nur für Linden Lab-/Second Life-Links verwenden" name="external" tool_tip="Verwenden Sie den Standard-Webbrowser Ihres Systems für Hilfe, Weblinks usw. Der integrierte Browser wird nur für Linden Lab-/Second Life-Links verwendet." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Plugins aktivieren" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Cookies annehmen" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/de/panel_region_experiences.xml b/indra/newview/skins/default/xui/de/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6e193aba19f09b1fa88359bd8fbebb04ead26e39
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Erlebnisse" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Jedes Erlebnis kann ein Schlüsselerlebnis sein.
+
+Schlüsselerlebnisse können in diesem Grundbesitz ausgeführt werden.
+
+Wenn der Grundbesitz keinen öffentlichen Zugang gestattet, können Einwohner, die an einem Schlüsselerlebnis teilnehmen, den Grundbesitz betreten und sich dort aufhalten, solange sie an einem Schlüsselerlebnis beteiligt sind.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Nur Erlebnisse mit Landumfang können zulässig sein.
+
+Zulässige Erlebnisse können in diesem Grundbesitz ausgeführt werden.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Nur Erlebnisse mit Gridumfang können blockiert werden.
+      
+Blockierte Erlebnisse können in diesem Grundbesitz nicht ausgeführt werden.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Änderungen wirken sich auf alle Regionen des Grundbesitzes aus.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Nur Erlebnisse mit Landumfang können zulässig sein.
+      
+Zulässige Erlebnisse können in dieser Parzelle ausgeführt werden, sofern sie nicht vom Grundbesitz blockiert sind.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Jedes Einwohnererlebnis kann blockiert werden.
+      
+Blockierte Erlebnisse können in dieser Parzelle nicht ausgeführt werden.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_script_experience.xml b/indra/newview/skins/default/xui/de/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..192e6619251a2fd163cf0698c3efdcd9e9a80036
--- /dev/null
+++ b/indra/newview/skins/default/xui/de/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="ERLEBNIS">
+	<button label="Erlebnis" name="Expand Experience"/>
+	<check_box label="Verwendet Erlebnis" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Erlebnis auswählen..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Sie tragen zu keinen Erlebnissen bei.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/de/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/de/panel_snapshot_inventory.xml
index d13f56ed3d5386aeb8a9e3762e8896e39beef717..2b8c4e6cd1c391eb7b9d9a8031447f87f204496c 100755
--- a/indra/newview/skins/default/xui/de/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/de/panel_snapshot_inventory.xml
@@ -3,18 +3,18 @@
 	<text name="title">
 		Inventar
 	</text>
-	<text name="hint_lbl">
-		Das Speichern eines Bilds in Ihrem Inventar kostet [UPLOAD_COST] L$. Um das Bild als Textur zu speichern, wählen Sie eines der quadratischen Formate aus.
-	</text>
 	<combo_box label="Auflösung" name="texture_size_combo">
-		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
 		<combo_box.item label="Klein (128x128)" name="Small(128x128)"/>
 		<combo_box.item label="Mittel (256x256)" name="Medium(256x256)"/>
 		<combo_box.item label="Groß (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Benutzerdefiniert" name="Custom"/>
 	</combo_box>
 	<spinner label="Breite x Höhe" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Seitenverhältnis beibehalten" name="inventory_keep_aspect_check"/>
+	<text name="hint_lbl">
+		Das Speichern eines Bilds in Ihrem Inventar kostet [UPLOAD_COST] L$. Um das Bild als Textur zu speichern, wählen Sie eines der quadratischen Formate aus.
+	</text>
 	<button label="Abbrechen" name="cancel_btn"/>
 	<button label="Speichern" name="save_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_snapshot_local.xml b/indra/newview/skins/default/xui/de/panel_snapshot_local.xml
index 53e78ba2900f8c98fcf468e466116a53e81c1192..9182c14063ddce7eb930fd7f56f36f25884062cf 100755
--- a/indra/newview/skins/default/xui/de/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/de/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Festplatte
+		Datenträger
 	</text>
 	<combo_box label="Auflösung" name="local_size_combo">
 		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
@@ -15,15 +15,15 @@
 	</combo_box>
 	<spinner label="Breite x Höhe" name="local_snapshot_width"/>
 	<check_box label="Seitenverhältnis beibehalten" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Format:
+	</text>
 	<combo_box label="Format" name="local_format_combo">
 		<combo_box.item label="PNG (verlustfrei)" name="PNG"/>
 		<combo_box.item label="JPEG" name="JPEG"/>
 		<combo_box.item label="BMP (verlustfrei)" name="BMP"/>
 	</combo_box>
-	<slider label="Qualität" name="image_quality_slider"/>
-	<text name="image_quality_level">
-		([QLVL])
-	</text>
+	<slider label="Qualität:" name="image_quality_slider"/>
 	<button label="Abbrechen" name="cancel_btn"/>
 	<flyout_button label="Speichern" name="save_btn" tool_tip="Bild als Datei speichern">
 		<flyout_button.item label="Speichern" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/de/panel_snapshot_options.xml b/indra/newview/skins/default/xui/de/panel_snapshot_options.xml
index 7ec22adc4c1e056acf79c7ef9ba595303f055764..82e2b56f3f781d64748762df862cf654785e4b9d 100755
--- a/indra/newview/skins/default/xui/de/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/de/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Ins Profil hochladen" name="save_to_profile_btn"/>
+	<button label="Auf Datenträger speichern" name="save_to_computer_btn"/>
+	<button label="In Inventar speichern ([AMOUNT] L$)" name="save_to_inventory_btn"/>
+	<button label="In Profil hochladen" name="save_to_profile_btn"/>
+	<button label="Auf Facebook hochladen" name="send_to_facebook_btn"/>
+	<button label="Auf Twitter hochladen" name="send_to_twitter_btn"/>
+	<button label="Auf Flickr hochladen" name="send_to_flickr_btn"/>
 	<button label="Per E-Mail senden" name="save_to_email_btn"/>
-	<button label="Im Inventar speichern" name="save_to_inventory_btn"/>
-	<button label="Auf Festplatte speichern" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Senden an:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/de/panel_snapshot_postcard.xml
index ead56f2885264221f3982659136e95402c787569..3f5bbda724198feb8ce20aaa50470fc2b8b20597 100755
--- a/indra/newview/skins/default/xui/de/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/de/panel_snapshot_postcard.xml
@@ -13,9 +13,9 @@
 		E-Mail
 	</text>
 	<tab_container name="postcard_tabs">
-		<panel name="panel_postcard_message" label="Nachricht"/>
-		<panel name="panel_postcard_settings" label="Einstellungen"/>
+		<panel label="Nachricht" name="panel_postcard_message"/>
+		<panel label="Einstellungen" name="panel_postcard_settings"/>
 	</tab_container>
-	<button name="cancel_btn" label="Abbrechen"/>
-	<button name="send_btn" label="Absenden"/>
+	<button label="Abbrechen" name="cancel_btn"/>
+	<button label="Senden" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/de/panel_snapshot_profile.xml
index 0f21edd1b69b7e7a8cbd25566e0d3537c93bc279..8c856b87a2a4da5d565c5d915d5e332bab3c1ff5 100755
--- a/indra/newview/skins/default/xui/de/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/de/panel_snapshot_profile.xml
@@ -4,11 +4,11 @@
 		Profil
 	</text>
 	<combo_box label="Auflösung" name="profile_size_combo">
-	<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
-	<combo_box.item label="640x480" name="640x480"/>
-	<combo_box.item label="800x600" name="800x600"/>
-	<combo_box.item label="1024x768" name="1024x768"/>
-	<combo_box.item label="Benutzerdefiniert" name="Custom"/>
+		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="Benutzerdefiniert" name="Custom"/>
 	</combo_box>
 	<spinner label="Breite x Höhe" name="profile_snapshot_width"/>
 	<check_box label="Seitenverhältnis beibehalten" name="profile_keep_aspect_check"/>
diff --git a/indra/newview/skins/default/xui/de/panel_twitter_photo.xml b/indra/newview/skins/default/xui/de/panel_twitter_photo.xml
index 89c4b98ffc13165cc1054711d21835af92f30f18..e63725398383f2d3c98c104aa275f1120761d564 100644
--- a/indra/newview/skins/default/xui/de/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/de/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Was ist los?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="SL-Standort hinzufügen" name="add_location_cb"/>
-			<check_box initial_value="true" label="Foto hinzufügen" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
-				<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Bildfilter">
-				<combo_box.item label="Kein Filter" name="NoFilter"/>
-			</combo_box>
-			<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
-			<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Tweeten" name="post_photo_btn"/>
-			<button label="Abbrechen" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Was ist los?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="SL-Standort hinzufügen" name="add_location_cb"/>
+	<check_box initial_value="true" label="Foto hinzufügen" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Bildauflösung">
+		<combo_box.item label="Aktuelles Fenster" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Bildfilter">
+		<combo_box.item label="Kein Filter" name="NoFilter"/>
+	</combo_box>
+	<button label="Aktualisieren" name="new_snapshot_btn" tool_tip="Zum Aktualisieren klicken"/>
+	<button label="Vorschau" name="big_preview_btn" tool_tip="Klicken, um Vorschau ein-/auszuschalten"/>
+	<button label="Tweeten" name="post_photo_btn"/>
+	<button label="Abbrechen" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/de/role_actions.xml b/indra/newview/skins/default/xui/de/role_actions.xml
index d834fc57ca886fa0a3f64c4d0a3bd45648ccdde5..e3fbe2a630ac4cbb2f83a7b7e9d8c3b6300fa93d 100755
--- a/indra/newview/skins/default/xui/de/role_actions.xml
+++ b/indra/newview/skins/default/xui/de/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Gruppen-Voice-Chat beitreten" longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können Gruppen-Voice-Chat beitreten. HINWEIS: Sie benötigen die Fähigkeit „Gruppen-Chat beitreten“, um Zugang zu dieser Voice-Chat-Sitzung zu erhalten." name="join voice chat" value="27"/>
 		<action description="Gruppen-Chat moderieren" longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können den Zugang zu und die Teilnahme an Gruppen-Chat- und Voice-Chat-Sitzungen steuern." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Diese Fähigkeiten enthalten die Berechtigung, die Erlebnisse zu ändern, die dieser Gruppe gehören." name="experience_tools_experience">
+		<action description="Erlebnis-Administrator" longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können die Metadaten für ein Erlebnis ändern." name="experience admin" value="49"/>
+		<action description="Erlebnis-Contributor" longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können Skripts für ein Erlebnis beitragen." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/de/sidepanel_item_info.xml b/indra/newview/skins/default/xui/de/sidepanel_item_info.xml
index 1b67eaf03b433bd63719ec8a5908bc87453e268d..d0bd23138d8c1679029b1f172f84d661c367957e 100755
--- a/indra/newview/skins/default/xui/de/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/de/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Objektprofil">
+	<panel.string name="loading_experience">
+		(laden)
+	</panel.string>
 	<panel.string name="unknown">
 		(unbekannt)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Erworben:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Erlebnis:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Sie können:
diff --git a/indra/newview/skins/default/xui/de/strings.xml b/indra/newview/skins/default/xui/de/strings.xml
index d4ce7b3fc3ccb8d4b7d78a2678e5ac9b3a78d0a9..7cb7b31886a72233060c79c38cdf95546d935ec1 100755
--- a/indra/newview/skins/default/xui/de/strings.xml
+++ b/indra/newview/skins/default/xui/de/strings.xml
@@ -449,6 +449,9 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
 	<string name="TooltipMustSingleDrop">
 		Sie können nur ein einzelnes Objekt hierher ziehen
 	</string>
+	<string name="TooltipTooManyWearables">
+		Sie können keinen Ordner tragen, der mehr als [AMOUNT] Elemente enthält.  Sie können diesen Höchstwert unter „Erweitert“ &gt; „Debug-Einstellungen anzeigen“ &gt; „WearFolderLimit“ ändern.
+	</string>
 	<string name="TooltipPrice" value="[AMOUNT] L$"/>
 	<string name="TooltipOutboxDragToWorld">
 		Sie können Artikel nicht in Ihrer Händler-Outbox rezzen
@@ -1060,9 +1063,7 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
 	<string name="AgentNameSubst">
 		(Sie)
 	</string>
-	<string name="JoinAnExperience">
-		Bei einem Erlebnis mitmachen
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Beim Verwalten von Grundbesitzzugangslisten Warnhinweise unterdrücken
 	</string>
@@ -1873,6 +1874,9 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
 	<string name="CompileQueueUnknownFailure">
 		Unbekannter Fehler beim Herunterladen
 	</string>
+	<string name="CompileNoExperiencePerm">
+		Skript „[SCRIPT]“ mit Erlebnis „[EXPERIENCE]“ wird übersprungen.
+	</string>
 	<string name="CompileQueueTitle">
 		Rekompilierung
 	</string>
@@ -5264,6 +5268,87 @@ Setzen Sie den Editorpfad in Anführungszeichen
 	<string name="UserDictionary">
 		[Benutzer]
 	</string>
+	<string name="experience_tools_experience">
+		Erlebnis
+	</string>
+	<string name="ExperienceNameNull">
+		(kein Erlebnis)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(unbenanntes Erlebnis)
+	</string>
+	<string name="Land-Scope">
+		Landumfang
+	</string>
+	<string name="Grid-Scope">
+		Gridumfang
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		ZULÄSSIG
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		BLOCKIERT
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		CONTRIBUTOR
+	</string>
+	<string name="Admin_Experiences_Tab">
+		ADMIN
+	</string>
+	<string name="Recent_Experiences_Tab">
+		AKTUELL
+	</string>
+	<string name="Owned_Experiences_Tab">
+		EIGENE
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], max. [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		Ihre Steuerungen übernehmen
+	</string>
+	<string name="ExperiencePermission3">
+		Animationen Ihres Avatars auslösen
+	</string>
+	<string name="ExperiencePermission4">
+		an Ihren Avatar anhängen
+	</string>
+	<string name="ExperiencePermission9">
+		Ihre Kamera vorfolgen
+	</string>
+	<string name="ExperiencePermission10">
+		Ihre Kamera steuern
+	</string>
+	<string name="ExperiencePermission11">
+		Sie teleportieren
+	</string>
+	<string name="ExperiencePermission12">
+		automatisch Erlebnisberechtigungen akzeptieren
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		unbekannten Vorgang durchführen: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Steuerungen übernehmen
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Animationen auslösen
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Anhängen
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Kamera verfolgen
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Kamera steuern
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Teleportieren
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Berechtigung
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		Unterhaltungen werden nicht protokolliert. Um ein Protokoll zu starten, wählen Sie „Speichern: nur Protokoll“ oder „Speichern: Protokoll und Transkripte“ unter „Einstellungen“ &gt; „Chat“.
 	</string>
diff --git a/indra/newview/skins/default/xui/de/teleport_strings.xml b/indra/newview/skins/default/xui/de/teleport_strings.xml
index 8062633df69c40f3daf867ffb726cce09dae2c6f..e590db0dba4cd3f0555b4fd35de0ee9660e0d043 100755
--- a/indra/newview/skins/default/xui/de/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/de/teleport_strings.xml
@@ -49,6 +49,9 @@ Ihre Teleport-Anfrage kann nicht sofort bearbeitet werden. Versuchen Sie es in e
 		<message name="MustGetAgeRegion">
 			Sie müssen mindestens 18 Jahre alt sein, um diese Region betreten zu können.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Betreten der Region nicht gestattet. „[REGION_NAME]“ ist eine Region für Geschicklichkeitsspiele. Der Zutritt ist Einwohnern vorbehalten, die bestimmte Kriterien erfüllen. Weitere Details finden Sie unter [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/en/floater_about_land.xml b/indra/newview/skins/default/xui/en/floater_about_land.xml
index a660e812ccf0bb966d61d34711af1928bc6abbd8..62ab8ed19317edd864c2845510da5e13cadef6cf 100755
--- a/indra/newview/skins/default/xui/en/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/en/floater_about_land.xml
@@ -2096,5 +2096,17 @@ Only large parcels can be listed in search.
              width="100" />
              </panel>
         </panel>
+       <panel
+          border="true"
+          follows="all"
+          label="EXPERIENCES"
+          layout="topleft"
+          left="0"
+          top="0"
+          help_topic="land_experiences_tab"
+          name="land_experiences_panel"
+            class="land_experiences_panel"
+          filename="panel_region_experiences.xml">
+       </panel>
     </tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/en/floater_experience_search.xml b/indra/newview/skins/default/xui/en/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..15a4b5665eb5063e26e2e807fdb57266578d7e2c
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/floater_experience_search.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<floater
+  positioning="cascading"
+  legacy_header_height="18"
+  can_resize="true"
+  height="350"
+  layout="topleft"
+  min_height="200"
+  min_width="400"
+  name="experiencepicker"
+  help_topic="experiencepicker"
+  title="CHOOSE EXPERIENCE"
+  width="350">
+</floater>
diff --git a/indra/newview/skins/default/xui/en/floater_experienceprofile.xml b/indra/newview/skins/default/xui/en/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2dfba1ac448e8f71123e97f54715d565a2860946
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/floater_experienceprofile.xml
@@ -0,0 +1,688 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+
+<floater
+  positioning="cascading"
+  can_close="true"
+  enabled="true"
+  can_resize="true"
+  help_topic="floater_experienceprofile"
+  title="EXPERIENCE PROFILE"
+  save_rect="true"
+  min_width="325"
+  min_height="325"
+  width="358"
+  height="650">
+  <floater.string
+    name="empty_slurl">
+    (none)
+  </floater.string>
+  <floater.string
+    name="maturity_icon_general">
+    "Parcel_PG_Light"
+  </floater.string>
+  <floater.string
+    name="maturity_icon_moderate">
+    "Parcel_M_Light"
+  </floater.string>
+  <floater.string
+    name="maturity_icon_adult">
+    "Parcel_R_Light"
+  </floater.string>
+  <text
+    follows="top|left|right"
+    font="SansSerifHugeBold"
+    height="26"
+    layout="topleft"
+    left_pad="4"
+    name="edit_title"
+    top="2"
+    value="Experience Profile"
+    use_ellipses="true"
+    left="6"
+    right="-3"/>
+  <tab_container
+    hide_tabs="true"
+    follows="all"
+    height="615"
+    layout="topleft"
+    left="5"
+    min_height="250"
+    top_pad="3"
+    width="348"
+    name="tab_container">
+    <panel
+      background_visible="true"
+      follows="all"
+      height="540"
+      layout="topleft"
+      left="0"
+      min_height="250"
+      top="0"
+      width="348"
+      name="panel_experience_info">
+      <scroll_container
+        color="DkGray2"
+        follows="all"
+        height="520"
+        layout="topleft"
+        left="9"
+        name="xp_scroll"
+        opaque="true"
+        top_pad="10"
+        width="330">
+        <panel
+          bg_alpha_color="DkGray2"
+          follows="top|left|right"
+          height="550"
+          layout="topleft"
+          left="0"
+          name="scrolling_panel"
+          top="0"
+          width="315"
+          min_width="315">
+          <layout_stack
+            follows="all"
+            height="550"
+            layout="topleft"
+            left="0"
+            animate="false"
+            top="0"
+            orientation="vertical"
+            width="315">
+            <layout_panel
+              follows="all"
+              height="29"
+              layout="topleft"
+              left="0"
+              top="0"
+              auto_resize="false"
+              visible="false"
+              width="315"
+              name="top panel">
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                font="SansSerif"
+                height="19"
+                top="10"
+                layout="topleft"
+                left="10"
+                right="-123"
+                visible="false"
+                name="grid_wide"/>
+              <button
+                follows="top|right"
+                height="23"
+                label="Edit"
+                layout="topleft"
+                name="edit_btn"
+                width="100"
+                visible="false"
+                top_pad="-23"
+                right="-14"/>
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="197"
+              layout="topleft"
+              left="0"
+              top="0"
+              auto_resize="false"
+              visible="false"
+              width="315"
+              name="image_panel">
+              <texture_picker
+                enabled="false"
+                fallback_image="default_land_picture.j2c"
+                follows="left|top"
+                height="197"
+                layout="topleft"
+                left="10"
+                name="logo"
+                top="10"
+                width="290" />
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="19"
+              layout="topleft"
+              left="0"
+              top="5"
+              width="313"
+              auto_resize="false">
+              <text
+                follows="left|top|right"
+                font="SansSerifLarge"
+                height="14"
+                layout="topleft"
+                left="10"
+                name="experience_title"
+                top="0"
+                use_ellipses="true"
+                value=""
+                width="288"/>
+            </layout_panel>
+            <layout_panel
+              follows=""
+              height="50"
+              layout="topleft"
+              left="0"
+              top="0"
+              auto_resize="false"
+              width="315"
+              visible="false"
+              name="description panel">
+              <expandable_text
+                follows="left|top|right"
+                font="SansSerif"
+                height="50"
+                layout="topleft"
+                left="7"
+                name="experience_description"
+                top="0"
+                value=""
+                width="293"
+                textbox.max_length="2048"/>
+            </layout_panel>
+            <layout_panel
+              follows=""
+              height="18"
+              layout="topleft"
+              left="0"
+              top="0"
+              auto_resize="false"
+              width="315"
+              visible="true"
+              name="maturity panel">
+              <text
+                type="string"
+                length="1"
+                follows="left|top"
+                height="16"
+                layout="topleft"
+                left="10"
+                name="ContentRating"
+                width="75">
+                Rating:
+              </text>
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                height="18"
+                layout="topleft"
+                left_pad="2"
+                valign="center"
+                name="ContentRatingText"
+                top_delta="-3"
+                width="188">
+              </text>
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="46"
+              layout="topleft"
+              left="0"
+              top="5"
+              width="313"
+              visible="false"
+              auto_resize="false"
+              name="location panel">
+              <text
+                type="string"
+                length="1"
+                follows="left|top"
+                height="16"
+                layout="topleft"
+                left="10"
+                name="Location"
+                width="290">
+                Location:
+              </text>
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                height="18"
+                layout="topleft"
+                left="10"
+                valign="center"
+                use_ellipses="true"
+                name="LocationTextText"
+                width="288">
+              </text>
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="53"
+              layout="topleft"
+              left="0"
+              top="5"
+              width="313"
+              visible="false"
+              auto_resize="false"
+              name="marketplace panel">
+              <text
+                type="string"
+                length="1"
+                follows="left|top"
+                height="16"
+                layout="topleft"
+                left="10"
+                width="290">
+                Marketplace store:
+              </text>
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                height="18"
+                layout="topleft"
+                left="10"
+                valign="center"
+                use_ellipses="true"
+                name="marketplace"
+                width="288">
+              </text>
+            </layout_panel>
+            <layout_panel
+              follows="left|top|right"
+              height="18"
+              left="0"
+              top="0"
+              auto_resize="false"
+              width="315">
+              <text
+                type="string"
+                length="1"
+                follows="left|top"
+                height="16"
+                layout="topleft"
+                left="10"
+                name="Owner"
+                width="75">
+                Owner:
+              </text>
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                height="18"
+                layout="topleft"
+                left_pad="2"
+                valign="center"
+                name="OwnerText"
+                use_ellipses="true"
+                top_delta="-2"
+                width="188">
+              </text>
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="18"
+              layout="topleft"
+              left="0"
+              top="5"
+              width="313"
+              visible="false"
+              auto_resize="false"
+              name="group_panel">
+              <text
+                type="string"
+                length="1"
+                follows="left|top"
+                height="16"
+                layout="topleft"
+                left="10"
+                name="Group"
+                width="75">
+                Group:
+              </text>
+              <text
+                type="string"
+                length="1"
+                follows="left|top|right"
+                height="18"
+                layout="topleft"
+                left_pad="2"
+                valign="center"
+                name="GroupText"
+                use_ellipses="true"
+                top_delta="-2"
+                width="188">
+              </text>
+            </layout_panel>
+            <layout_panel
+              follows="all"
+              height="75"
+              layout="topleft"
+              left="0"
+              top="5"
+              width="313"
+              auto_resize="false"
+              visible="true"
+              name="perm panel">
+              <button
+                follows="bottom|left"
+                height="23"
+                label="Allow"
+                layout="topleft"
+                name="allow_btn"
+                width="94"
+                top_pad="3"
+                left="10"
+                enabled="false"/>
+              <button
+                follows="bottom|left"
+                height="23"
+                label="Forget"
+                layout="topleft"
+                name="forget_btn"
+                width="94"
+                top_pad="-23"
+                left_pad="3"
+                enabled="false"/>
+              <button
+                follows="bottom|left"
+                height="23"
+                label="Block"
+                layout="topleft"
+                name="block_btn"
+                width="94"
+                top_pad="-23"
+                left_pad="3"
+                enabled="false"/>
+              <text
+                type="string"
+                halign="center"
+                length="1"
+                follows="left|top|right"
+                height="16"
+                layout="topleft"
+                left="10"
+                name="privileged"
+                visible="false"
+                width="288">
+                This experience is enabled for all residents.
+              </text>
+              <button
+                follows="bottom|left"
+                height="23"
+                label="Report Abuse"
+                layout="topleft"
+                name="report_btn"
+                width="94"
+                top_pad="3"
+                left="107"
+                enabled="true"/>
+            </layout_panel>
+          </layout_stack>
+        </panel>
+      </scroll_container>
+    </panel>
+    <panel
+      background_visible="true"
+      follows="all"
+      layout="topleft"
+      height="540"
+      left="0"
+      top="0"
+      width="348"
+      name="edit_panel_experience_info">
+      <scroll_container
+        color="DkGray2"
+        follows="all"
+        height="520"
+        layout="topleft"
+        left="9"
+        name="edit_xp_scroll"
+        opaque="true"
+        top_pad="10"
+        width="330">
+        <panel
+          bg_alpha_color="DkGray2"
+          follows="top|left|right"
+          height="590"
+          layout="topleft"
+          left="0"
+          name="edit_scrolling_panel"
+          top="0"
+          width="310">
+          <texture_picker
+            enabled="true"
+            fallback_image="default_land_picture.j2c"
+            follows="left|top"
+            height="197"
+            layout="topleft"
+            left="10"
+            name="edit_logo"
+            top="10"
+            width="290" />
+          <text
+            follows="left|top|right"
+            height="14"
+            layout="topleft"
+            left="10"
+            name="edit_experience_title_label"
+            use_ellipses="true"
+            value="Name:"
+            right="-10"/>
+          <line_editor
+            follows="left|top|right"
+            height="19"
+            layout="topleft"
+            left="10"
+            name="edit_experience_title"
+            max_length_bytes="63"
+            text_color="black"
+            right="-10"/>
+          <text
+            follows="left|top|right"
+            height="14"
+            layout="topleft"
+            left="10"
+            top_pad="10"
+            name="edit_experience_desc_label"
+            use_ellipses="true"
+            value="Description:"
+            right="-10"/>
+          <text_editor
+            follows="left|top|right"
+            height="57"
+            layout="topleft"
+            left="11"
+            name="edit_experience_description"
+            max_length="2048"
+            text_color="black"
+            right="-11"
+            word_wrap="true"/>
+          <button
+            top_pad="10"
+            left="10"
+            width="125"
+            height="23"
+            name="Group_btn"
+            label="Group"
+            />
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="14"
+            layout="topleft"
+            left_pad="10"
+            top_pad="-18"
+            use_ellipses="true"
+            name="edit_GroupText"
+            right="-10" />
+          <text
+            top_pad="10"
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="16"
+            layout="topleft"
+            left="10"
+            name="edit_ContentRating"
+            right="-10">
+            Rating:
+          </text>
+          <icons_combo_box
+            follows="right|top"
+            height="20"
+            label="Moderate"
+            layout="topleft"
+            right="-10"
+            top_pad="-19"
+            tool_tip="Increasing the maturity rating on an experience will reset permission for all residents which have allowed the experience."
+            name="edit_ContentRatingText"
+            width="105">
+            <icons_combo_box.drop_down_button
+              image_overlay="Parcel_M_Light"
+              image_overlay_alignment="left"
+              imgoverlay_label_space="3"
+              pad_left="3"/>
+            <icons_combo_box.item
+              label="Adult"
+              name="Adult"
+              value="42">
+              <item.columns
+                halign="center"
+                type="icon"
+                value="Parcel_R_Light"
+                width="20"/>
+            </icons_combo_box.item>
+            <icons_combo_box.item
+              label="Moderate"
+              name="Mature"
+              value="21">
+              <item.columns
+                halign="center"
+                type="icon"
+                value="Parcel_M_Light"
+                width="20"/>
+            </icons_combo_box.item>
+            <icons_combo_box.item
+              label="General"
+              name="PG"
+              value="13">
+              <item.columns
+                halign="center"
+                type="icon"
+                value="Parcel_PG_Light"
+                width="20"/>
+            </icons_combo_box.item>
+          </icons_combo_box>
+          <text
+            type="string"
+            length="1"
+            follows="left|top"
+            height="14"
+            layout="topleft"
+            left="10"
+            top_pad="10"
+            name="edit_Location"
+            right="90">
+            Location:
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="14"
+            layout="topleft"
+            left_pad="5"
+            top_pad="-14"
+            use_ellipses="true"
+            name="edit_LocationTextText"
+            right="-10" />
+          <button
+            left="10"
+            width="125"
+            height="23"
+            name="location_btn"
+            label="Set to Current"
+            />
+          <button
+            top_pad="-23"
+            follows="top|right"
+            right="-10"
+            width="125"
+            name="clear_btn"
+            label="Clear Location"/>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="14"
+            top_pad="10"
+            layout="topleft"
+            left="10"
+            right="-10">
+            Marketplace store:
+          </text>
+          <line_editor
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="19"
+            layout="topleft"
+            left="10"
+            max_length_bytes="255"
+            valign="center"
+            name="edit_marketplace"
+            right="-10"/>
+          <check_box width="140"
+                     height="21"
+                     left="10"
+                     layout="topleft"
+                     follows="top|left"
+                     tool_tip=""
+                     label="Enable Experience"
+                     name="edit_enable_btn"/>
+          <check_box width="125"
+                     height="21"
+                     top_pad="-21"
+                     right="-10"
+                     visible="false"
+                     layout="topleft"
+                     follows="top|left|right"
+                     label="Hide In Search"
+                     name="edit_private_btn"/>
+          <text
+            follows="left|top|right"
+            height="25"
+            layout="topleft"
+            left="10"
+            top_pad="10"
+            name="changes"
+            use_ellipses="true"
+            word_wrap="true"
+            value="Experience changes may take several minutes to be seen on all regions."
+            right="-10"/>
+          <button
+            follows="top|left"
+            height="23"
+            label="Back"
+            layout="topleft"
+            name="cancel_btn"
+            width="125"
+            top_pad="15"
+            left="10"
+            visible="true"/>
+          <button
+            follows="top|right"
+            height="23"
+            label="Save"
+            layout="topleft"
+            name="save_btn"
+            top_pad="-23"
+            width="125"
+            right="-10"
+            visible="true"/>
+        </panel>
+      </scroll_container>
+    </panel>
+  </tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/en/floater_experiences.xml b/indra/newview/skins/default/xui/en/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..70e75079071170946d55f38192a8231d06c5d994
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/floater_experiences.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+
+<floater
+  can_close="true"
+  can_resize="true"
+  height="400"
+  width="500"
+  min_height="300"
+  min_width="500"
+  layout="topleft"
+  help_topic="floater_experiences"
+  name="floater_experiences"
+  save_rect="true"
+  single_instance="true"
+  reuse_instance="false"
+  bg_opaque_color="0 0.5 0 0.3"
+  title="EXPERIENCES">
+  <tab_container
+    top="3"
+    left="3"
+    layout="topleft"
+    right="-3"
+    follows="all"
+    height="394"
+    name="xp_tabs">
+  </tab_container>
+
+</floater>
diff --git a/indra/newview/skins/default/xui/en/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/en/floater_live_lsleditor.xml
index 5cd7cd196dd469b2af1870022d4717f3a46fe35e..e8826034f611219053767c1927d720ab4a400ccc 100755
--- a/indra/newview/skins/default/xui/en/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/en/floater_live_lsleditor.xml
@@ -1,71 +1,118 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
 <floater
- legacy_header_height="18"
- bevel_style="none"
- border_style="line"
- can_resize="true"
- height="580"
- layout="topleft"
- min_height="271"
- min_width="290"
- name="script ed float"
- help_topic="script_ed_float"
- save_rect="true"
- title="SCRIPT: NEW SCRIPT"
- width="508">
-    <floater.string
-     name="not_allowed">
-        You can not view or edit this script, since it has been set as &quot;no copy&quot;. You need full permissions to view or edit a script inside an object.
-    </floater.string>
-    <floater.string
-     name="script_running">
-        Running
-    </floater.string>
-    <floater.string
-     name="Title">
-        SCRIPT: [NAME]
-    </floater.string>
-    <panel
-     bevel_style="none"
+  legacy_header_height="18"
+  bevel_style="none"
+  border_style="line"
+  can_resize="true"
+  height="582"
+  layout="topleft"
+  min_height="271"
+  min_width="328"
+  name="script ed float"
+  help_topic="script_ed_float"
+  save_rect="true"
+  title="SCRIPT: NEW SCRIPT"
+  width="508">
+  <floater.string
+    name="not_allowed">
+    You can not view or edit this script, since it has been set as &quot;no copy&quot;. You need full permissions to view or edit a script inside an object.
+  </floater.string>
+  <floater.string
+    name="script_running">
+    Running
+  </floater.string>
+  <floater.string
+    name="Title">
+    SCRIPT: [NAME]
+  </floater.string>
+  <floater.string
+    name="experience_enabled">
+    Uncheck to remove the current experience
+  </floater.string>
+  <floater.string
+    name="no_experiences">
+    You are not authorized for any experiences
+  </floater.string>
+  <floater.string
+    name="add_experiences">
+    Select to add an experience
+  </floater.string>
+  <floater.string
+    name="show_experience_profile">
+    Click to view the experience profile
+  </floater.string>
+  <floater.string
+    name="loading">
+    Loading...
+  </floater.string>
+  <panel
+    bevel_style="none"
      
-     border_style="line"
-     follows="left|top|right|bottom"
-     height="522"
-     layout="topleft"
-     left="10"
-     name="script ed panel"
-     top="20"
-     width="497" />
-    <button
-     follows="left|bottom"
-     height="23"
-     label="Reset"
-     label_selected="Reset"
-     layout="topleft"
-     name="Reset"
-     left="10"
-     width="85" />
-    <check_box
+    border_style="line"
+    follows="left|top|right|bottom"
+    height="499"
+    layout="topleft"
+    left="10"
+    name="script ed panel"
+    top="16"
+    width="501" />
+  <button
+    follows="left|bottom"
+    height="23"
+    label="Reset"
+    label_selected="Reset"
+    layout="topleft"
+    name="Reset"
+    left="10"
+    width="85" />
+  <check_box
     left_delta="90"
     top_delta="3"
-     enabled="false"
-     follows="left|bottom"
-     font="SansSerif"
-     height="18"
-     initial_value="true"
-     label="Running"
-     layout="topleft"
-     name="running"
-     width="205" />
-    <check_box
+    enabled="false"
+    follows="left|bottom"
+    font="SansSerif"
+    height="18"
+    initial_value="true"
+    label="Running"
+    layout="topleft"
+    name="running"
+    width="205" />
+  <check_box
     left_delta="140"
-     enabled="true"
-     follows="left|bottom"
-     font="SansSerif"
-     height="18"
-     initial_value="true"
-     label="Mono"
-     layout="topleft"
-     name="mono"
-     width="100" />
+    enabled="true"
+    follows="left|bottom"
+    font="SansSerif"
+    height="18"
+    initial_value="true"
+    label="Mono"
+    layout="topleft"
+    name="mono"
+    width="100" />
+  <check_box width="130"
+             height="21"
+             enabled="false"
+             left="9"
+             top_pad="10"
+             layout="topleft"
+             follows="bottom|left"
+             label="Use Experience:"
+             name="enable_xp"/>
+  <combo_box
+    label=""
+    top_pad="-21"
+    left="149"
+    right="467"
+    layout="topleft"
+    follows="left|bottom|right"
+    visible="false"
+    name="Experiences..."/>
+  <button label="&gt;"
+          name="view_profile"
+          height="23"
+          width="23"
+          right="496"
+          layout="topleft"
+          top_pad="-23"
+          follows="right"
+          visible="false"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/en/menu_url_experience.xml b/indra/newview/skins/default/xui/en/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f4d50e1603f435c0dd9d821e5311751562f0d685
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/menu_url_experience.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<context_menu
+ layout="topleft"
+ name="Url Popup">
+    <menu_item_call
+     label="Copy SLurl to clipboard"
+     layout="topleft"
+     name="url_copy">
+        <menu_item_call.on_click
+         function="Url.CopyUrl" />
+    </menu_item_call>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml
index b75d614dccb99e738dac6e7bce0082944a57f55e..68ca55735a3838d01b323c5642c660824b4727df 100755
--- a/indra/newview/skins/default/xui/en/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/en/menu_viewer.xml
@@ -66,6 +66,13 @@
          function="Floater.ToggleOrBringToFront"
          parameter="picks" />
       </menu_item_call>
+      <menu_item_call
+        label="Experiences..."
+        name="Experiences">
+        <menu_item_call.on_click
+          function="Floater.ToggleOrBringToFront"
+          parameter="experiences"/>
+      </menu_item_call>
       <menu_item_separator/>
       <menu_item_call
        label="Camera Controls..."
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml
index 28565a85c69705f651f346a5872c43c88abb2cb9..cfe56e6a95f6b9c68a68cdb87e704de389713e92 100755
--- a/indra/newview/skins/default/xui/en/notifications.xml
+++ b/indra/newview/skins/default/xui/en/notifications.xml
@@ -4466,6 +4466,90 @@ Remove estate manager for this estate only or for [ALL_ESTATES]?
      yestext="This Estate"/>
   </notification>
 
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateAllowedExperienceAdd"
+   type="alert">
+    Add to allowed list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>
+
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateAllowedExperienceRemove"
+   type="alert">
+    Remove from allowed list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>
+
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateBlockedExperienceAdd"
+   type="alert">
+    Add to blocked list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>
+
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateBlockedExperienceRemove"
+   type="alert">
+    Remove from blocked list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>
+
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateTrustedExperienceAdd"
+   type="alert">
+    Add to key list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>
+
+  <notification
+   icon="alert.tga"
+   label="Select estate"
+   name="EstateTrustedExperienceRemove"
+   type="alert">
+    Remove from key list for this estate only or for [ALL_ESTATES]?
+    <tag>confirm</tag>
+    <usetemplate
+     canceltext="Cancel"
+     name="yesnocancelbuttons"
+     notext="All Estates"
+     yestext="This Estate"/>
+  </notification>  
+
   <notification
    icon="alert.tga"
    label="Confirm Kick"
@@ -7172,6 +7256,154 @@ Is this OK?
     </form>
   </notification>
 
+  <notification
+    icon="alertmodal.tga"
+    name="ExperienceAcquireFailed"
+    type="alertmodal">
+Unable to acquire a new experience:
+    [ERROR_MESSAGE]
+    <tag>fail</tag>
+    <usetemplate
+      name="okbutton"
+      yestext="OK"/>
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="NotInGroupExperienceProfileMessage"
+    persist="false"
+    type="notify">
+    A change to the experience group was ignored because the owner is not a member of the selected group.
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="UneditableExperienceProfileMessage"
+    persist="false"
+    type="notify">
+    The uneditable field '[field]' was ignored when updating the experience profile.
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="RestrictedToOwnerExperienceProfileMessage"
+    persist="false"
+    type="notify">
+    Ignored changes to the field '[field]' which can only be set by the experience owner.
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="MaturityRatingExceedsOwnerExperienceProfileMessage"
+    persist="false"
+    type="notify">
+    You may not set the maturity rating of an experience higher than that of the owner.
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="RestrictedTermExperienceProfileMessage"
+    persist="false"
+    type="notify">
+    The following terms prevented the update of the experience profile name and/or description: [extra_info]
+  </notification>
+  
+  <notification
+    icon="notify.tga"
+    name="TeleportedHomeExperienceRemoved"
+    persist="false"
+    type="notify">
+    You have been teleported from the region [region_name] for removing the experience secondlife:///app/experience/[public_id]/profile and are no longer permitted in the region.
+    <form name="form">
+      <ignore name="ignore"
+              text="Kicked from region for removing an experience"/>
+    </form>
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="TrustedExperienceEntry"
+    persist="false"
+    type="notify">
+    You have been allowed into the region [region_name] by participating in the key experience secondlife:///app/experience/[public_id]/profile removing this experience may kick you from the region.
+    <form name="form">
+      <ignore name="ignore"
+              text="Allowed into a region by an experience"/>
+    </form>
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="TrustedExperiencesAvailable"
+    persist="false"
+    type="notify">
+You do not have access to this destination. You may be allowed into the region by Accepting an experience below:
+
+[EXPERIENCE_LIST]
+
+Other Key Experiences may be available.
+  </notification>
+    
+
+  <notification
+    icon="notify.tga"
+    name="ExperienceEvent"
+    persist="false"
+    type="notifytip">
+    An object was allowed to [EventType] by the secondlife:///app/experience/[public_id]/profile experience.
+    Owner: secondlife:///app/agent/[OwnerID]/inspect
+    Object Name: [ObjectName]
+    Parcel Name: [ParcelName]
+  </notification>
+
+  <notification
+    icon="notify.tga"
+    name="ExperienceEventAttachment"
+    persist="false"
+    type="notifytip">
+    An attachment was allowed to [EventType] by the secondlife:///app/experience/[public_id]/profile experience.
+    Owner: secondlife:///app/agent/[OwnerID]/inspect
+  </notification>
+  
+  <notification
+   icon="notify.tga"
+   name="ScriptQuestionExperience"
+   persist="false"
+   type="notify">
+&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, an object owned by &apos;[NAME]&apos;, requests your participation in the [GRID_WIDE] experience:
+
+[EXPERIENCE]
+
+Once permission is granted you will not see this message again for this experience unless it is revoked from the experience profile.
+
+Scripts associated with this experience will be able to do the following on regions where the experience is active: 
+
+[QUESTIONS]Is this OK?
+
+  <unique combine="combine_with_new">
+    <context>experience</context>
+  </unique>
+  <tag>confirm</tag>
+    <form name="form">
+      <button
+       index="3"
+       name="BlockExperience"
+       text="Block Experience"/>
+      <button
+        index="2"
+        name="Mute"
+        text="Block Object"/>
+      <button
+       index="0"
+       name="Yes"
+       text="Yes"/>
+      <button
+       index="1"
+       name="No"
+       text="No"/>
+    </form>
+  </notification>
+
   <notification
    icon="notify.tga"
    name="ScriptQuestionCaution"
diff --git a/indra/newview/skins/default/xui/en/panel_experience_info.xml b/indra/newview/skins/default/xui/en/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..70d8a4fc64672dfa657e1206adbba8e160cca41f
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experience_info.xml
@@ -0,0 +1,377 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<panel
+  background_visible="true"
+  follows="all"
+  height="570"
+  layout="topleft"
+  left="5"
+  min_height="350"
+  top="5"
+  width="348"
+  name="panel_experience_info">
+  <text
+    follows="top|left|right"
+    font="SansSerifHugeBold"
+    height="26"
+    layout="topleft"
+    left_pad="4"
+    name="title"
+    text_color="White"
+    top="2"
+    value="Experience Profile"
+    use_ellipses="true"
+    left="3"
+    right="-3"/>
+  <scroll_container
+    color="DkGray2"
+    follows="all"
+    height="532"
+    layout="topleft"
+    left="9"
+    name="xp_scroll"
+    opaque="true"
+    top_pad="10"
+    width="330">
+    <panel
+      bg_alpha_color="DkGray2"
+      follows="top|left"
+      height="480"
+      layout="topleft"
+      left="0"
+      min_height="480"
+      name="scrolling_panel"
+      top="0"
+      width="315"
+      min_width="315">
+      <layout_stack
+        follows="all"
+        height="480"
+        layout="topleft"
+        left="0"
+        top="0"
+        orientation="vertical"
+        width="315">
+        <layout_panel
+          follows="all"
+          height="197"
+          layout="topleft"
+          left="0"
+          top="0"
+          auto_resize="false"
+          visible="true"
+          width="315"
+          name="image_panel">
+          <texture_picker
+            enabled="false"
+            fallback_image="default_land_picture.j2c"
+            follows="left|top"
+            height="197"
+            layout="topleft"
+            left="10"
+            name="logo"
+            top="10"
+            width="290" />
+        </layout_panel>
+        <layout_panel
+          follows="all"
+          height="19"
+          layout="topleft"
+          left="0"
+          top="5"
+          width="313"
+          auto_resize="false"
+            >
+          <text
+            follows="left|top|right"
+            font="SansSerifLarge"
+            height="14"
+            layout="topleft"
+            left="10"
+            name="experience_title"
+            text_color="white"
+            top="0"
+            use_ellipses="true"
+            value="Kyle's Superhero RPG"
+            width="288"/>
+        </layout_panel>
+        <layout_panel
+          follows=""
+          height="50"
+          layout="topleft"
+          left="0"
+          top="0"
+          auto_resize="false"
+          width="315"
+          name="description panel">
+          <expandable_text
+            follows="left|top|right"
+            font="SansSerif"
+            height="50"
+            layout="topleft"
+            left="7"
+            name="experience_description"
+            top="0"
+            value=""
+            width="293"/>
+        </layout_panel>
+        <layout_panel
+          follows="all"
+          height="69"
+          layout="topleft"
+          left="0"
+          top="5"
+          width="313"
+          visible="true"
+          auto_resize="false"
+          name="location panel"
+            >
+          <text
+            type="string"
+            length="1"
+            follows="left|top"
+            height="16"
+            layout="topleft"
+            left="10"
+            name="Location"
+            width="290">
+            Location:
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="18"
+            layout="topleft"
+            left="10"
+            valign="center"
+            name="LocationTextText"
+            width="288">
+            someplace
+          </text>
+          <button
+            follows="bottom|left"
+            height="23"
+            label="Teleport"
+            layout="topleft"
+            name="teleport_btn"
+            width="151"
+            left="10"/>
+          <button
+            follows="bottom|left"
+            height="23"
+            label="Map"
+            layout="topleft"
+            name="map_btn"
+            top_pad="-23"
+            width="101"
+            left_pad="5"/>
+        </layout_panel>
+        <layout_panel
+          follows="all"
+          height="53"
+          layout="topleft"
+          left="0"
+          top="5"
+          width="313"
+          visible="true"
+          auto_resize="false"
+          name="marketplace panel"
+          
+            >
+          <text
+            type="string"
+            length="1"
+            follows="left|top"
+            height="16"
+            layout="topleft"
+            left="10"
+            name="Location"
+            width="290">
+            Marketplace store:
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="18"
+            layout="topleft"
+            left="10"
+            valign="center"
+            name="LocationTextText"
+            width="288">
+            someplace
+          </text>
+        </layout_panel>
+        <layout_panel
+          follows="left|top|right"
+          height="69"
+          left="0"
+          top="0"
+          auto_resize="false"
+          width="315"
+            >
+          <text
+            type="string"
+            length="1"
+            follows="left|top"
+            height="16"
+            layout="topleft"
+            left="10"
+            name="ContentRating"
+            width="100">
+            Rating:
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="18"
+            layout="topleft"
+            left_pad="2"
+            valign="center"
+            name="ContentRatingText"
+            top_delta="-2"
+            width="188">
+            Adult
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top"
+            height="16"
+            layout="topleft"
+            left="10"
+            name="Owner"
+            width="100">
+            Owner:
+          </text>
+          <text
+            type="string"
+            length="1"
+            follows="left|top|right"
+            height="18"
+            layout="topleft"
+            left_pad="2"
+            valign="center"
+            name="OwnerText"
+            top_delta="-2"
+            width="188">
+            Kyle
+          </text>
+          <button
+            follows="bottom|left"
+            height="23"
+            label="Edit"
+            layout="topleft"
+            name="edit_btn"
+            top_pad="0"
+            width="151"
+            left="10"/>
+          <!--
+        
+
+          <expandable_text
+            allow_scroll="false"
+            bg_visible="false"
+            follows="left|top|right"
+            h_pad="0"
+            height="35"
+            width="280"
+            layout="topleft"
+            font="SansSerifBig"
+            font.style="BOLD"
+            left="10"
+            top_pad="10"
+            name="pick_name"
+            read_only="false"
+            text_color="white"
+            v_pad="0"
+            use_ellipses="true"
+            value="It's an experience" />
+
+          <text
+            follows="left|top"
+            height="16"
+            layout="topleft"
+            left="10"
+            top_pad="10"
+            value="Maturity level:"
+            width="130" />
+          <icon
+            follows="top|left"
+            height="16"
+            image_name="unknown"
+            layout="topleft"
+            left_pad="10"
+            name="maturity_icon"
+            top_pad="-18"
+            width="18" />
+          <text
+            follows="top|left"
+            height="16"
+            layout="topleft"
+            left_pad="5"
+            name="maturity_value"
+            top_pad="-14"
+            value="unknown"
+            width="118" />
+          <panel
+            follows="left|top|right"
+            name="location_panel"
+            left="10"
+            width="280"
+            visible="false"
+            top_pad="10"
+            height="42">
+            <text
+              follows="left|top|right"
+              height="16"
+              layout="topleft"
+              left="00"
+              top="0"
+              value="Location:"
+              width="280" />
+
+            <text
+              follows="left|top|right"
+              height="16"
+              layout="topleft"
+              left="0"
+              top_pad="10"
+              value="Location:"
+              width="280" />
+          </panel>
+
+          <panel
+            follows="left|top|right"
+            name="location_panel"
+            left="10"
+            width="280"
+            top_pad="10"
+            height="42">
+            <text
+              follows="left|top|right"
+              height="16"
+              layout="topleft"
+              left="00"
+              top="0"
+              value="Location:"
+              width="280" />
+
+            <text
+              follows="left|top|right"
+              height="16"
+              layout="topleft"
+              left="0"
+              top_pad="10"
+              value="Location:"
+              width="280" />
+          </panel>
+
+-->
+        </layout_panel>
+      </layout_stack>
+    </panel>
+  </scroll_container>
+
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/en/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c76b958eda0c2d6d40a42fd846ffc99ecc4a3d29
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experience_list_editor.xml
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<panel
+  layout="topleft"
+  left="0"
+  top="0"
+  width="300"
+  height="100"
+  min_height="100"
+  follows="all"
+  border="true"
+  name="experince_list_editor">
+  <panel.string
+    name="loading">
+    loading...
+  </panel.string>
+   <panel.string
+      name="panel_allowed">
+      Allowed Experiences:
+   </panel.string>
+   <panel.string
+      name="panel_blocked">
+      Blocked Experiences:
+   </panel.string>
+   <panel.string
+      name="panel_trusted">
+      Key Experiences:
+   </panel.string>
+  <panel.string
+    name="no_results">
+    (empty)
+  </panel.string>
+   <text
+      layout="topleft"
+      name="text_name"
+      left="3"
+      right="120"
+      height="12"
+      follows="left|top">
+      Experience List
+   </text>
+   <text
+      layout="topleft"
+      name="text_count"
+      left="125"
+      top_pad="-12"
+      right="-1"
+      height="12"
+      follows="top|left">
+   </text>
+  <scroll_list
+    draw_heading="false"
+    left="3"
+    width="225"
+    height="75"
+    follows="all"
+    name="experience_list">
+    <columns
+      width="225"
+      user_resize="false"
+      name="experience_name"
+      label="Name"/>
+  </scroll_list>
+  <button
+    layout="topleft"
+    follows="top|right"
+    top_pad="-77" 
+    left_pad="3"
+    width="65"
+    name="btn_add"
+    label="Add..."/>
+  <button
+    layout="topleft"
+    follows="top|right"
+    width="64"
+    name="btn_remove"
+    label="Remove"/>
+  <button
+    layout="topleft"
+    follows="top|right"
+    width="64"
+    name="btn_profile"
+    label="Profile..."/>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_experience_list_item.xml b/indra/newview/skins/default/xui/en/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a9777c51e70023a8b75145460edc57a7e402401e
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experience_list_item.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+
+<panel
+  layout="topleft"
+  top="100"
+  left="5"
+  width="100"
+  height="19"
+  label="Experiences"
+  follows="top|right|left">
+  <text
+    left="3"
+    top="3"
+    height="16"
+    width="177"
+    follows="all"
+    name="experience_name"
+    >
+    Dummy Name
+  </text>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_experience_log.xml b/indra/newview/skins/default/xui/en/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6869a135d8d22a2995f9caf28e10e62f774ce427
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experience_log.xml
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+
+<panel
+  layout="topleft"
+  top="3"
+  left="3"
+  width="500"
+  height="300"
+  label="EVENTS"
+  bg_opaque_color="0 0.5 0 0.3"
+  follows="all">
+  <string
+    name="no_events"
+    value="No events."/>
+  <string
+    name="loading"
+    value="loading..."/>
+  <layout_stack
+    layout="topleft"
+    top="0"
+    left="4" 
+    right="-1"
+    bottom="-4"
+    orientation="vertical"
+    follows="all">
+    <layout_panel
+      layout="topleft"
+      top="0"
+      left="1"
+      right="-1"
+      height="250"
+      follows="all">
+      <scroll_list
+        draw_heading="true"
+        left="1"
+        right="-86"
+        height="250"
+        follows="all"
+        name="experience_log_list">
+        <columns
+          width="100"
+          user_resize="true"
+          name="time"
+          label="Time"/>
+        <columns
+          width="100"
+          user_resize="true"
+          name="event"
+          label="Event"/>
+        <columns
+          width="100"
+          user_resize="true"
+          name="experience_name"
+          label="Experience"/>
+        <columns
+          width="100"
+          user_resize="true"
+          name="object_name"
+          label="Object"/>
+      </scroll_list>
+      
+      <button
+        layout="topleft"
+        follows="top|right"
+        name="btn_notify"
+        label="Notify"
+        top_pad="-225"
+        left_pad="5"
+        right="-1"
+        enabled="false"/>
+      
+      <button
+        layout="topleft"
+        follows="top|right"
+        name="btn_profile_xp"
+        label="Profile"
+        top_pad="5"
+        right="-1"
+        enabled="false"/>
+
+      <button
+        layout="topleft"
+        follows="top|right"
+        name="btn_report_xp"
+        label="Report"
+        top_pad="5"
+        right="-1"
+        enabled="false"/>
+    </layout_panel>
+    <layout_panel
+      layout="topleft"
+      top="0"
+      left="1"
+      right="-1"
+      height="30"
+      min_height="30"
+      follows="all"
+      name="button_panel"
+      visible="true">
+      <check_box
+        top="0"
+        follows="top|left"
+        height="26"
+        label="Notify All Events   Days"
+        width="140"
+        name="notify_all" />
+
+      <spinner
+        top="5"
+        control_name="LogDays"
+        decimal_digits="0"
+        follows="left|top"
+        height="23"
+        increment="1"
+        initial_value="7"
+        label_width="30"
+        layout="topleft"
+        left_pad="5"
+        max_val="14"
+        min_val="0"
+        name="logsizespinner"
+        width="40" />
+      <button
+        top="5"
+        left="280"
+        layout="topleft"
+        follows="top|left"
+        name="btn_clear"
+        label="Clear"
+        width="80"
+        enabled="false"/>
+      <button
+        top="5"
+        layout="topleft"
+        left_pad="5"
+        width="20"
+        follows="top|left"
+        name="btn_prev"
+        label="&lt;"
+        enabled="false"/>
+      <button
+        top="5"
+        layout="topleft"
+        follows="top|left"
+        name="btn_next"
+        label="&gt;"
+        left_pad="5"
+        width="20"
+        enabled="false"/>
+    </layout_panel>
+  </layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_experience_search.xml b/indra/newview/skins/default/xui/en/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..99ad3e7fe3e33fbeab5837889d41403e47967173
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experience_search.xml
@@ -0,0 +1,182 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<panel
+  layout="topleft"
+  top="18"
+  left="0"
+  width="350"
+  height="330"
+  label="SEARCH"
+  follows="all">
+
+  <string
+    name="not_found">
+    &apos;[TEXT]&apos; not found
+  </string>
+  <string
+    name="no_results">
+    No results
+  </string>
+  <string
+    name="searching">
+    Searching...
+  </string>
+  <string
+    name="loading">
+    Loading...
+  </string>
+  <string
+    name="maturity_icon_general">
+    "Parcel_PG_Light"
+  </string>
+  <string
+    name="maturity_icon_moderate">
+    "Parcel_M_Light"
+  </string>
+  <string
+    name="maturity_icon_adult">
+    "Parcel_R_Light"
+  </string>
+  <panel
+    follows="all"
+    left="5"
+    right="-3"
+    bottom="-2"
+    top="0"
+    name="search_panel">
+    <text
+      left="0"
+      follows="top|left|right"
+      right="-1">
+      Enter part of the name:
+    </text>
+    <line_editor
+      left="0"
+      follows="left|top|right"
+      name="edit"
+      height="18"
+      right="-60"/>
+    <button label="Go"
+            follows="top|right"
+            top_pad="-18"
+            left_pad="2"
+            right="-1"
+            height="18"
+            name="find"/>
+    <text
+      top_pad="6"
+      left="0"
+      follows="top|left"
+      width="180">
+      Max Content Rating:
+    </text>
+    <icons_combo_box
+      follows="left|top"
+      height="20"
+      label="Moderate"
+      layout="topleft"
+      name="maturity"
+      top_pad="-13"
+      left_pad="0"
+      right="-1">
+      <icons_combo_box.drop_down_button
+        image_overlay="Parcel_M_Light"
+        image_overlay_alignment="left"
+        imgoverlay_label_space="3"
+        pad_left="3"/>
+      <icons_combo_box.item
+        label="Adult"
+        name="Adult"
+        value="42">
+        <item.columns
+          halign="center"
+          type="icon"
+          value="Parcel_R_Light"
+          width="20"/>
+      </icons_combo_box.item>
+      <icons_combo_box.item
+        label="Moderate"
+        name="Mature"
+        value="21">
+        <item.columns
+          halign="center"
+          type="icon"
+          value="Parcel_M_Light"
+          width="20"/>
+      </icons_combo_box.item>
+      <icons_combo_box.item
+        label="General"
+        name="PG"
+        value="13">
+        <item.columns
+          halign="center"
+          type="icon"
+          value="Parcel_PG_Light"
+          width="20"/>
+      </icons_combo_box.item>
+    </icons_combo_box>
+    <scroll_list
+      draw_heading="true"
+      left="0"
+      right="-1"
+      height="239"
+      top_pad="4"
+      follows="all" 
+      column_padding="5"
+      name="search_results">
+      <columns
+        halign="center"
+        width="24"
+        name="maturity"
+        label=""/>
+      <columns
+        user_resize="true"
+        name="experience_name"
+        label="Name"/>
+      <columns
+        user_resize="true"
+        name="owner"
+        label="Owner"/>
+    </scroll_list>
+
+    <button
+      follows="left|bottom"
+      height="23"
+      label="OK"
+      label_selected="OK"
+      name="ok_btn"
+      top_pad="3"
+      left="0"
+      width="95" />
+    <button
+      follows="left|bottom"
+      height="23"
+      label="Cancel"
+      name="cancel_btn"
+      width="95"
+      left_pad="3" />
+     <button
+        follows="left|bottom"
+        height="23"
+        label="View Profile"
+        name="profile_btn"
+        width="95"
+        left_pad="3" />
+     <button
+        follows="left|bottom"
+        height="23"
+        label="&lt;"
+        name="left_btn"
+        width="23"
+        left_pad="3"
+        enabled="false"/>
+     <button
+        follows="left|bottom"
+        height="23"
+        label="&gt;"
+        name="right_btn"
+        width="23"
+        left_pad="3"
+        enabled="false" />
+     
+  </panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_experiences.xml b/indra/newview/skins/default/xui/en/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7691e684c0b625e3e93dc2267a3ca097c95160f6
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_experiences.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+
+<panel
+  layout="topleft"
+  top="3"
+  left="3"
+  width="200"
+  height="300"
+  label="Experiences"
+  bg_opaque_color="0 0.5 0 0.3"
+  follows="all">
+  <string
+    name="loading_experiences"
+    value="Loading experiences..."/>
+  <string
+    name="no_experiences"
+    value="No experiences."/>
+  <string
+    name="acquire"
+    value="Acquire an Experience" />
+  <layout_stack
+    layout="topleft"
+    top="0"
+    left="4" 
+    right="-1"
+    bottom="-4"
+    orientation="vertical"
+    follows="all">
+    <layout_panel
+      layout="topleft"
+      top="0"
+      left="1"
+      right="-1"
+      height="250"
+      follows="all">
+      <flat_list_view
+        name="experiences_list"
+        layout="topleft"
+        top="0"
+        left="1"
+        right="-1"
+        bottom="-1"
+        follows="all">
+      </flat_list_view>
+    </layout_panel>
+    <layout_panel
+      layout="topleft"
+      top="0"
+      left="1"
+      right="-1"
+      height="24"
+      min_height="24"
+      follows="all"
+      name="button_panel"
+      visible="false">
+      <button
+        layout="topleft"
+        left="2"
+        top="0"
+        follows="top|left"
+        name="btn_action"
+        enabled="true"/>
+    </layout_panel>
+  </layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/en/panel_group_info_sidetray.xml
index b3326d8da62349ac4c02834098fa8ddbbae205f3..95312edfb9cf693f9618cff42b6778882084df3b 100755
--- a/indra/newview/skins/default/xui/en/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/en/panel_group_info_sidetray.xml
@@ -176,6 +176,22 @@ background_visible="true"
                      name="group_land_tab_panel"
                      top="0" />
          </accordion_tab>
+         <accordion_tab
+             expanded="false"
+             layout="topleft"
+             name="group_experiences_tab"
+             title="Experiences"
+             fit_panel="false">
+           <panel
+               border="false"
+               class="panel_group_experiences"
+               filename="panel_experiences.xml"
+               follows="left|top|right"
+               layout="topleft"
+               left="0"
+               name="group_experiences_tab_panel"
+               top="0" />
+         </accordion_tab>
          </accordion>
    </layout_panel>
   </layout_stack>
diff --git a/indra/newview/skins/default/xui/en/panel_region_experiences.xml b/indra/newview/skins/default/xui/en/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bced46f7dc037644db713648308118e72dd47cfb
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_region_experiences.xml
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<panel
+  border="true"
+  follows="all"
+  height="320"
+  help_topic="panel_region_experience_tab"
+  label="Experiences"
+  name="Experiences"
+  layout="topleft"
+  left="0"
+  top="320"
+  width="480">
+   <panel.string
+      name="trusted_estate_text">
+Any Experience may be Key.
+
+Key Experiences have permission to run on this estate.
+
+Additionally, if the estate does not allow public access, Residents participating in any Key Experience may enter the estate and can remain as long as they are in a Key Experience.
+   </panel.string>
+   <panel.string
+      name="allowed_estate_text">
+Only Experiences that are Land-Scope may be Allowed.
+
+Allowed Experiences have permission to run on this estate.
+   </panel.string>
+   <panel.string
+      name="blocked_estate_text">
+Only Grid-Scope Experiences may be Blocked.
+      
+Blocked Experiences may not run on this estate.
+   </panel.string>
+   <panel.string 
+      name="estate_caption">
+      Changes to settings on this tab will affect all regions in the estate.
+   </panel.string>
+   <panel.string
+      name="allowed_parcel_text">Only Experiences that are Land-Scope may be Allowed.
+      
+Allowed Experiences have permission to run on this parcel if they are not Blocked by the estate.
+   </panel.string>
+   <panel.string
+      name="blocked_parcel_text">Any Resident Experience may be Blocked.
+      
+Blocked Experiences may not run on this parcel.
+   </panel.string>
+   <panel.string
+      name="parcel_caption">
+   </panel.string>
+   <text
+      type="string"
+      length="1"
+      follows="left|top"
+      height="32"
+      layout="topleft"
+      left="10"
+      name="experiences_help_text"
+      top="14"
+      word_wrap="true"/>
+  <layout_stack
+    left="5"
+    layout="topleft"
+    follows="all"
+    right="-5"
+    height="260"
+    orientation="vertical">
+    <layout_panel
+       follows="all"
+      height="93"
+      min_height="50"
+      width="530"
+      visible="false"
+      name="trusted_layout_panel">
+      <panel follows="all"
+             width="330"
+             name="panel_trusted"
+             class="panel_experience_list_editor"
+             filename="panel_experience_list_editor.xml" />
+      <text
+        layout="topleft"
+        name="trusted_text_help"
+        length="1"
+        top="5"
+        left_pad="5"
+        width="200"
+        height="200"
+        follows="top|right"
+        word_wrap="true">
+      </text>
+    </layout_panel>
+    <layout_panel
+      height="93"
+       min_height="50"
+       follows="all"
+      width="530">
+      <panel
+        width="330"
+        name="panel_allowed"
+        class="panel_experience_list_editor"
+        filename="panel_experience_list_editor.xml"/>
+      <text
+        layout="topleft"
+        name="allowed_text_help"
+        length="1"
+        top="5"
+        left_pad="5"
+        width="200"
+        height="200"
+        follows="top|right"
+        word_wrap="true">
+      </text>
+    </layout_panel>
+    <layout_panel
+      height="93"
+       min_height="50"
+       follows="all"
+      width="530">
+      <panel
+        width="330"
+        name="panel_blocked"
+        class="panel_experience_list_editor"
+        filename="panel_experience_list_editor.xml"/>
+      <text
+        layout="topleft"
+        name="blocked_text_help"
+        length="1"
+        top="5"
+        left_pad="5"
+        width="200"
+        height="200"
+        follows="top|right"
+        word_wrap="true">
+      </text>
+    </layout_panel>
+  </layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_script_ed.xml b/indra/newview/skins/default/xui/en/panel_script_ed.xml
index eb1b954e612e3de1c8d87a3a297422696726db6e..c56a5e17cdd53c46a2c7f7a3ca5009b2f59ed335 100755
--- a/indra/newview/skins/default/xui/en/panel_script_ed.xml
+++ b/indra/newview/skins/default/xui/en/panel_script_ed.xml
@@ -1,75 +1,75 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
 <panel
- bevel_style="none"
- border_style="line"
- follows="left|top|right|bottom"
+  bevel_style="none"
+  border_style="line"
+  follows="left|top|right|bottom"
  height="522"
- layout="topleft"
- left="0"
- name="script panel"
- width="497">
-    <panel.string
-     name="loading">
-        Loading...
-    </panel.string>
-    <panel.string
-     name="can_not_view">
-        You can not view or edit this script, since it has been set as &quot;no copy&quot;. You need full permissions to view or edit a script inside an object.
-    </panel.string>
-    <panel.string
-     name="public_objects_can_not_run">
-        Public Objects cannot run scripts
-    </panel.string>
-    <panel.string
-     name="script_running">
-        Running
-    </panel.string>
-    <panel.string
-     name="Title">
-        Script: [NAME]
-    </panel.string>
-    <panel.string
-     name="external_editor_not_set">
-        Select an editor by setting the environment variable LL_SCRIPT_EDITOR or the ExternalEditor setting.
-    </panel.string>
-    <menu_bar
-     bg_visible="false"
-     follows="left|top"
-     height="18"
-     layout="topleft"
-     left="0"
-     mouse_opaque="false"
-     name="script_menu"
-     width="476">
-        <menu
-         top="0"
-         height="62"
-         label="File"
-         layout="topleft"
-         left="0"
-         mouse_opaque="false"
-         name="File"
-         width="138">
-            <menu_item_call
-             label="Save"
-             layout="topleft"
-             name="Save" />
-          <menu_item_separator
-           layout="topleft" />
-          <menu_item_call
-           label="Revert All Changes"
-           layout="topleft"
-           name="Revert All Changes" />
-          <menu_item_separator
-           layout="topleft" />
-          <menu_item_call
-           label="Load from file..."
-           layout="topleft"
-           name="LoadFromFile" />
-          <menu_item_call
-           label="Save to file..."
-           layout="topleft"
-           name="SaveToFile" />
+  layout="topleft"
+  left="0"
+  name="script panel"
+  width="497">
+  <panel.string
+    name="loading">
+    Loading...
+  </panel.string>
+  <panel.string
+    name="can_not_view">
+    You can not view or edit this script, since it has been set as &quot;no copy&quot;. You need full permissions to view or edit a script inside an object.
+  </panel.string>
+  <panel.string
+    name="public_objects_can_not_run">
+    Public Objects cannot run scripts
+  </panel.string>
+  <panel.string
+    name="script_running">
+    Running
+  </panel.string>
+  <panel.string
+    name="Title">
+    Script: [NAME]
+  </panel.string>
+  <panel.string
+    name="external_editor_not_set">
+    Select an editor by setting the environment variable LL_SCRIPT_EDITOR or the ExternalEditor setting.
+  </panel.string>
+  <menu_bar
+    bg_visible="false"
+    follows="left|top"
+    height="18"
+    layout="topleft"
+    left="0"
+    mouse_opaque="false"
+    name="script_menu"
+    width="476">
+    <menu
+      top="0"
+      height="62"
+      label="File"
+      layout="topleft"
+      left="0"
+      mouse_opaque="false"
+      name="File"
+      width="138">
+      <menu_item_call
+        label="Save"
+        layout="topleft"
+        name="Save" />
+      <menu_item_separator
+        layout="topleft" />
+      <menu_item_call
+        label="Revert All Changes"
+        layout="topleft"
+        name="Revert All Changes" />
+      <menu_item_separator
+        layout="topleft" />
+      <menu_item_call
+        label="Load from file..."
+        layout="topleft"
+        name="LoadFromFile" />
+      <menu_item_call
+        label="Save to file..."
+        layout="topleft"
+        name="SaveToFile" />
           <menu_item_separator
            layout="topleft" />
           <menu_item_call
@@ -80,95 +80,95 @@
              function="Floater.Toggle"
              parameter="script_colors"/>
           </menu_item_call>
-        </menu>
-        <menu
-         top="0"
-         height="198"
-         label="Edit"
-         layout="topleft"
-         mouse_opaque="false"
-         name="Edit"
-         width="139">
-            <menu_item_call
-             enabled="false"
-             label="Undo"
-             layout="topleft"
-             name="Undo" />
-            <menu_item_call
-             enabled="false"
-             label="Redo"
-             layout="topleft"
-             name="Redo" />
-            <menu_item_separator
-             layout="topleft" />
-            <menu_item_call
-             enabled="false"
-             label="Cut"
-             layout="topleft"
-             name="Cut" />
-            <menu_item_call
-             enabled="false"
-             label="Copy"
-             layout="topleft"
-             name="Copy" />
-            <menu_item_call
-             enabled="false"
-             label="Paste"
-             layout="topleft"
-             name="Paste" />
-            <menu_item_separator
-             layout="topleft"
-             name="separator2" />
-            <menu_item_call
-             label="Select All"
-             layout="topleft"
-             name="Select All" />
-            <menu_item_call
-             enabled="false"
-             label="Deselect"
-             layout="topleft"
-             name="Deselect" />
-            <menu_item_separator
-             layout="topleft"
-             name="separator3" />
-            <menu_item_call
-             label="Search / Replace..."
-             layout="topleft"
-             name="Search / Replace..." />
+    </menu>
+    <menu
+      top="0"
+      height="198"
+      label="Edit"
+      layout="topleft"
+      mouse_opaque="false"
+      name="Edit"
+      width="139">
+      <menu_item_call
+        enabled="false"
+        label="Undo"
+        layout="topleft"
+        name="Undo" />
+      <menu_item_call
+        enabled="false"
+        label="Redo"
+        layout="topleft"
+        name="Redo" />
+      <menu_item_separator
+        layout="topleft" />
+      <menu_item_call
+        enabled="false"
+        label="Cut"
+        layout="topleft"
+        name="Cut" />
+      <menu_item_call
+        enabled="false"
+        label="Copy"
+        layout="topleft"
+        name="Copy" />
+      <menu_item_call
+        enabled="false"
+        label="Paste"
+        layout="topleft"
+        name="Paste" />
+      <menu_item_separator
+        layout="topleft"
+        name="separator2" />
+      <menu_item_call
+        label="Select All"
+        layout="topleft"
+        name="Select All" />
+      <menu_item_call
+        enabled="false"
+        label="Deselect"
+        layout="topleft"
+        name="Deselect" />
+      <menu_item_separator
+        layout="topleft"
+        name="separator3" />
+      <menu_item_call
+        label="Search / Replace..."
+        layout="topleft"
+        name="Search / Replace..." />
             <menu_item_call
              label="Go to line..."
              layout="topleft"
              name="Go to line..." />
-        </menu>
-        <menu
-         top="0"
-         height="34"
-         label="Help"
-         layout="topleft"
-         mouse_opaque="false"
-         name="Help"
-         width="112">
-            <menu_item_call
-             label="Help..."
-             layout="topleft"
-             name="Help..." />
-            <menu_item_call
-             label="Keyword Help..."
-             layout="topleft"
-             name="Keyword Help..." />
-        </menu>
-    </menu_bar>
+    </menu>
+    <menu
+      top="0"
+      height="34"
+      label="Help"
+      layout="topleft"
+      mouse_opaque="false"
+      name="Help"
+      width="112">
+      <menu_item_call
+        label="Help..."
+        layout="topleft"
+        name="Help..." />
+      <menu_item_call
+        label="Keyword Help..."
+        layout="topleft"
+        name="Keyword Help..." />
+    </menu>
+  </menu_bar>
     <script_editor
-     left="0"
-     type="string"
-     length="1"
-     follows="left|top|right|bottom"
-     font="Monospace"
+    left="0"
+    type="string"
+    length="1"
+    follows="left|top|right|bottom"
+    font="Monospace"
      height="376"
-     ignore_tab="false"
-     layout="topleft"
+    ignore_tab="false"
+    layout="topleft"
      max_length="262144"
-     name="Script Editor"
+    name="Script Editor"
      width="487"
      text_color="ScriptText"
      default_color="ScriptText"
@@ -177,51 +177,51 @@
      text_readonly_color="ScriptText"
      bg_readonly_color="ScriptBackground"
      cursor_color="ScriptCursorColor"
-     enable_tooltip_paste="true"
+    enable_tooltip_paste="true"
      word_wrap="true"
      show_context_menu="true">
-        Loading...
+    Loading...
     </script_editor>
-    <scroll_list
+  <scroll_list
     top_pad="10"
     left="0"
-     follows="left|right|bottom"
-     height="60"
-     layout="topleft"
-     name="lsl errors"
+    follows="left|right|bottom"
+    height="60"
+    layout="topleft"
+    name="lsl errors"
      width="487" />
-    <text
-     follows="left|bottom"
-     height="12"
-     layout="topleft"
+  <text
+    follows="left|bottom"
+    height="12"
+    layout="topleft"
      left="0"
-     name="line_col"
-     width="128" />
-    <combo_box
-     follows="left|bottom"
-     height="23"
-     label="Insert..."
-     layout="topleft"
-     name="Insert..."
+    name="line_col"
+    width="128" />
+  <combo_box
+    follows="left|bottom"
+    height="23"
+    label="Insert..."
+    layout="topleft"
+    name="Insert..."
      width="128" />
-    <button
-     follows="right|bottom"
-     height="23"
-     label="Save"
-     label_selected="Save"
-     layout="topleft"
-     top_pad="-35"
+  <button
+    follows="right|bottom"
+    height="23"
+    label="Save"
+    label_selected="Save"
+    layout="topleft"
+    top_pad="-35"
      right="487"
-     name="Save_btn"
-     width="81" />
-    <button
-     enabled="false"
-     follows="right|bottom"
-     height="23"
-     label="Edit..."
-     layout="topleft"
-     top_pad="-23"
+    name="Save_btn"
+    width="81" />
+  <button
+    enabled="false"
+    follows="right|bottom"
+    height="23"
+    label="Edit..."
+    layout="topleft"
+    top_pad="-23"
      right="400"
-     name="Edit_btn"
-     width="81" />
+    name="Edit_btn"
+    width="81" />
 </panel>
diff --git a/indra/newview/skins/default/xui/en/panel_script_experience.xml b/indra/newview/skins/default/xui/en/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e79863875137bff434e361b0ba4503c45cfdca12
--- /dev/null
+++ b/indra/newview/skins/default/xui/en/panel_script_experience.xml
@@ -0,0 +1,97 @@
+<panel
+  name="script_experience"
+  title="EXPERIENCE"
+  width="400"
+  follows="top|left|right"
+  top="0"
+  left="0"
+  layout="topleft">
+  <!-- <floater.string name="EXPERIENCE">EXPERIENCE!!!!</floater.string>
+ 
+  <floater.string name="Script:">Script:</floater.string>
+  <floater.string name="Associated with:">Associated with:</floater.string>
+  <floater.string name="You can contribute:">You can contribute:</floater.string>
+  <floater.string name="Associate with:">Associate with:</floater.string>
+  <floater.string name="Yes">Yes</floater.string>
+  <floater.string name="No">No</floater.string>
+  <floater.string name="(none)"></floater.string>
+  <floater.string name="Choose Experience...">Choose Experience...</floater.string>
+  <floater.string name="You are not a contributor to any experiences.">You are not a contributor to any experiences.</floater.string>
+  -->
+  
+  <button name="Expand Experience" width="200"
+          height="35"
+          is_toggle="true"
+          tab_stop="false"
+          pad_left="35"
+          top="0"
+          left="3"
+          label="Experience"
+          halign="left"
+          handle_right_mouse="false"
+          follows="top|left|right"
+          image_unselected="MarketplaceBtn_Off"
+          image_selected="MarketplaceBtn_Selected">
+  </button>
+  <check_box
+	  follows="top|right" height="25" label="Uses Experience" left="215" width="0" top="0" name="enable_xp"
+	  />
+  <layout_stack
+    follows="top|left|right"
+    
+    width="384"
+    height="140"
+    name="xp_details"
+    left="4"
+    top="45"
+    orientation="horizontal"
+    layout="topleft"
+    visible="false">
+    <layout_panel  width="120"
+                   height="140">
+      <text >
+        Script:
+      </text>
+      <text bottom_delta="25">
+        Associated with:
+      </text>
+      <text bottom_delta="25">
+        You can contribute:
+      </text>
+      <text bottom_delta="25">
+        Associate with:
+      </text>
+    </layout_panel>
+
+    <layout_panel width="250"
+                  height="140">
+      <text >
+        EasySit Animator 1.2.4
+      </text>
+      <text bottom_delta="25"
+           text_color="HTMLLinkColor" font.style="UNDERLINE">
+        Kyle's Superhero RPG
+      </text>
+      <text bottom_delta="25">
+        Yes
+      </text>
+      <combo_box left="0" bottom_delta="33"
+                 label="Choose Experience..."
+                 name="Experiences..."
+                 follows="top|left|right"
+        />
+    </layout_panel>
+  </layout_stack>
+  <text
+    follows="top|left|right"
+	  width="400"
+	  height="15"
+	  bottom_delta="-12"
+	  left="0"
+    halign="center"
+    name="No Experiences"
+    visible="false"
+    text_color="AlertCautionTextColor">
+    You are not a contributor to any experiences.
+  </text>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/role_actions.xml b/indra/newview/skins/default/xui/en/role_actions.xml
index 1044cbfd2e1d24a5b15ab1db6958b38c4f374e5b..c2e7c706d67dd0f961693ec07d2c1fe9c81a3fa7 100755
--- a/indra/newview/skins/default/xui/en/role_actions.xml
+++ b/indra/newview/skins/default/xui/en/role_actions.xml
@@ -190,4 +190,16 @@
 		     longdescription="Members in a Role with this Ability can control access and participation in group voice and text chat sessions."
 		     name="moderate group chat" value="37" />
 	</action_set>
+  <action_set
+    description="These Abilities include power to modify experiences owned by this group."
+    name="experience_tools_experience">
+    <action description="Experience Admin"
+            longdescription="Members in a role with this ability can edit the meta-data for an experience."
+            name="experience admin"
+            value ="49" />
+    <action description="Experience Contributor"
+            longdescription="Members in a role with this ability can contribute scripts for an experience."
+            name="experience contributor"
+            value ="50" />
+  </action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/en/sidepanel_item_info.xml b/indra/newview/skins/default/xui/en/sidepanel_item_info.xml
index 9be01c5d4f812a25df768f22d7c1e67d07ed011b..fd14b13ed6fe6dea56649d5e9fd2321b3d4fe352 100755
--- a/indra/newview/skins/default/xui/en/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/en/sidepanel_item_info.xml
@@ -1,444 +1,476 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
 <panel
-     follows="all"
-	 height="570"
-	 layout="topleft"
-	 name="item properties"
-	 help_topic="item_properties"
-	 title="Item Profile"
-	 width="333">
-	<panel.string
-		 name="unknown">
-        (unknown)
-	</panel.string>
-    <panel.string
-         name="unknown_multiple">
-        (unknown / multiple)
-    </panel.string>
-	<panel.string
-		 name="public">
-        (public)
-    </panel.string>
-	<panel.string
-    	 name="you_can">
-        You can:
-    </panel.string>
-	<panel.string
-    	 name="owner_can">
-        Owner can:
-    </panel.string>
-	<panel.string
-    	 name="acquiredDate">
-        [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local]
-	</panel.string>
-	<panel.string
-		 name="origin_inventory">
-        (Inventory)
-	</panel.string>
-	<panel.string
-		 name="origin_inworld">
-        (Inworld)
-	</panel.string>
-	<icon
-     	 follows="top|right"
-     	 height="18"
-     	 image_name="Lock"
-	     layout="topleft"
-		 right="-15"
-	     mouse_opaque="true"
-	     name="IconLocked"
-	     top="8"
-	     width="18" />
-    <button
-     follows="top|left"
-     height="24"
-     image_hover_unselected="BackButton_Over"
-     image_pressed="BackButton_Press"
-     image_unselected="BackButton_Off"
-     layout="topleft"
-     left="12"
-     name="back_btn"
-     tab_stop="false"
-     top="2"
-     width="30"
-     use_draw_context_alpha="false" />
-    <text
-     follows="top|left|right"
-     font="SansSerifHugeBold"
-     height="26"
-     layout="topleft"
-     left_pad="3"
-     name="title"
-     text_color="LtGray"
-     top="2"
-     use_ellipses="true"
-     value="Item Profile"
-     width="275" />
-    	    <text
-     follows="top|left|right"
-     height="13"
-     layout="topleft"
-     left="45"
-     name="origin"
-     text_color="LtGray_50"
-     use_ellipses="true"
-     value="(Inventory)"
-     width="275" />
-    <scroll_container
-     color="DkGray2"
-     follows="all"
-     layout="topleft"
-     left="9"
-     name="item_profile_scroll"
-     opaque="true"
-     height="493"
-     width="313"
-     top="45">
-        <panel
-             follows="left|top|right"
-             height="390"
-             help_topic=""
-             label=""
-             layout="topleft"
-             left="0"
-             name="item_profile"
-             top="0"
-             width="295">
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="10"
-                 layout="topleft"
-                 left="5"
-                 name="LabelItemNameTitle"
-                 top="10"
-                 width="78">
-                Name:
-            </text>
-            <line_editor
-                 border_style="line"
-                 border_thickness="1"
-                 follows="left|top|right"
-                 height="20"
-                 layout="topleft"
-                 left_delta="78"
-                 max_length_bytes="63"
-                 name="LabelItemName"
-                 top_delta="0"
-                 width="210" />
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="10"
-                 layout="topleft"
-                 left="5"
-                 name="LabelItemDescTitle"
-                 top_pad="10"
-                 width="78">
-                Description:
-            </text>
-            <line_editor
-                 border_style="line"
-                 border_thickness="1"
-                 follows="left|top|right"
-                 height="23"
-                 layout="topleft"
-                 left_delta="78"
-                 max_length_bytes="127"
-                 name="LabelItemDesc"
-                 top_delta="-5"
-                 width="210" />
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="23"
-                 layout="topleft"
-                 left="5"
-                 name="LabelCreatorTitle"
-              top_pad="10"
-                 width="78">
-                Creator:
-            </text>
-                <avatar_icon
-         follows="top|left"
-         height="20"
-         default_icon_name="Generic_Person"
-         layout="topleft"
-         left_pad="0"
-         top_delta="-6"
-         mouse_opaque="true"
-         width="20" />
-            <text
-                 type="string"
-         follows="left|right|top"
-         font="SansSerifSmall"
-         height="15"
-         layout="topleft"
-         left_pad="5"
-                 name="LabelCreatorName"
-       top_delta="6"
-       use_ellipses="true"
-       width="165">
-          </text>
-          <button
-          follows="top|right"
-          height="16"
+  follows="all"
+  height="570"
+  layout="topleft"
+  name="item properties"
+  help_topic="item_properties"
+  title="Item Profile"
+  width="333">
+  <panel.string
+	name="loading_experience">
+    (loading)
+  </panel.string>
+  <panel.string
+    name="unknown">
+    (unknown)
+  </panel.string>
+  <panel.string
+    name="unknown_multiple">
+    (unknown / multiple)
+  </panel.string>
+  <panel.string
+    name="public">
+    (public)
+  </panel.string>
+  <panel.string
+    name="you_can">
+    You can:
+  </panel.string>
+  <panel.string
+    name="owner_can">
+    Owner can:
+  </panel.string>
+  <panel.string
+    name="acquiredDate">
+    [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local]
+  </panel.string>
+  <panel.string
+    name="origin_inventory">
+    (Inventory)
+  </panel.string>
+  <panel.string
+    name="origin_inworld">
+    (Inworld)
+  </panel.string>
+  <icon
+    follows="top|right"
+    height="18"
+    image_name="Lock"
+    layout="topleft"
+    right="-15"
+    mouse_opaque="true"
+    name="IconLocked"
+    top="8"
+    width="18" />
+  <button
+    follows="top|left"
+    height="24"
+    image_hover_unselected="BackButton_Over"
+    image_pressed="BackButton_Press"
+    image_unselected="BackButton_Off"
+    layout="topleft"
+    left="12"
+    name="back_btn"
+    tab_stop="false"
+    top="2"
+    width="30"
+    use_draw_context_alpha="false" />
+  <text
+    follows="top|left|right"
+    font="SansSerifHugeBold"
+    height="26"
+    layout="topleft"
+    left_pad="3"
+    name="title"
+    text_color="LtGray"
+    top="2"
+    use_ellipses="true"
+    value="Item Profile"
+    width="275" />
+  <text
+    follows="top|left|right"
+    height="13"
+    layout="topleft"
+    left="45"
+    name="origin"
+    text_color="LtGray_50"
+    use_ellipses="true"
+    value="(Inventory)"
+    width="275" />
+  <scroll_container
+    color="DkGray2"
+    follows="all"
+    layout="topleft"
+    left="9"
+    name="item_profile_scroll"
+    opaque="true"
+    height="493"
+    width="313"
+    top="45">
+    <panel
+      follows="left|top|right"
+      height="390"
+      help_topic=""
+      label=""
+      layout="topleft"
+      left="0"
+      name="item_profile"
+      top="0"
+      width="295">
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="10"
+        layout="topleft"
+        left="5"
+        name="LabelItemNameTitle"
+        top="10"
+        width="78">
+        Name:
+      </text>
+      <line_editor
+        border_style="line"
+        border_thickness="1"
+        follows="left|top|right"
+        height="20"
+        layout="topleft"
+        left_delta="78"
+        max_length_bytes="63"
+        name="LabelItemName"
+        top_delta="0"
+        width="210" />
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="10"
+        layout="topleft"
+        left="5"
+        name="LabelItemDescTitle"
+        top_pad="10"
+        width="78">
+        Description:
+      </text>
+      <line_editor
+        border_style="line"
+        border_thickness="1"
+        follows="left|top|right"
+        height="23"
+        layout="topleft"
+        left_delta="78"
+        max_length_bytes="127"
+        name="LabelItemDesc"
+        top_delta="-5"
+        width="210" />
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="23"
+        layout="topleft"
+        left="5"
+        name="LabelCreatorTitle"
+        top_pad="10"
+        width="78">
+        Creator:
+      </text>
+      <avatar_icon
+        follows="top|left"
+        height="20"
+        default_icon_name="Generic_Person"
+        layout="topleft"
+        left_pad="0"
+        top_delta="-6"
+        mouse_opaque="true"
+        width="20" />
+      <text
+        type="string"
+        follows="left|right|top"
+        font="SansSerifSmall"
+        height="15"
+        layout="topleft"
+        left_pad="5"
+        name="LabelCreatorName"
+        top_delta="6"
+        use_ellipses="true"
+        width="165">
+      </text>
+      <button
+        follows="top|right"
+        height="16"
+        image_selected="Inspector_I"
+        image_unselected="Inspector_I"
+        layout="topleft"
+        right="-5"
+        name="BtnCreator"
+        top_delta="-6"
+        width="16" />
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="23"
+        layout="topleft"
+        left="5"
+        name="LabelOwnerTitle"
+        top_pad="10"
+        width="78">
+        Owner:
+      </text>
+      <avatar_icon
+        follows="top|left"
+        height="20"
+        default_icon_name="Generic_Person"
+        layout="topleft"
+        left_pad="0"
+        top_delta="-6"
+        mouse_opaque="true"
+        width="20" />
+      <text
+        type="string"
+        follows="left|right|top"
+        font="SansSerifSmall"
+        height="15"
+        layout="topleft"
+        left_pad="5"
+        name="LabelOwnerName"
+        top_delta="6"
+        use_ellipses="true"
+        width="165">
+      </text>
+      <button
+        follows="top|right"
+        height="16"
         image_selected="Inspector_I"
         image_unselected="Inspector_I"
+        layout="topleft"
+        right="-5"
+        name="BtnOwner"
+        top_delta="-3"
+        width="16" />
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="23"
+        layout="topleft"
+        left="5"
+        name="LabelAcquiredTitle"
+        top_pad="10"
+        width="78">
+        Acquired:
+      </text>
+      <text
+        type="string"
+        length="1"
+        follows="left|top|right"
+        height="23"
+        layout="topleft"
+        left_delta="78"
+        name="LabelAcquiredDate"
+        top_delta="0"
+        width="210">
+      </text>
+      <text
+        type="string"
+        length="1"
+        follows="left|top"
+        height="10"
+        layout="topleft"
+        left="5"
+        name="LabelItemExperienceTitle"
+        top_pad="0"
+        width="78"
+        visible="true">
+        Experience:
+      </text>
+      <text
+        type="string"
+        length="1"
+        follows="left|top|right"
+        height="10"
+        layout="topleft"
+        left_delta="78"
+        name="LabelItemExperience"
+        top_delta="0"
+        width="210"
+        visible="true"
+        />
+      <panel
+        border="false"
+        follows="left|top|right"
+        layout="topleft"
+        mouse_opaque="false"
+        name="perms_inv"
+        left="0"
+        top_pad="25"
+        height="155"
+        width="313">
+        <text
+          type="string"
+          length="1"
+          left="10"
+          top_pad="13"
+          text_color="EmphasisColor"
+          height="15"
+          follows="left|top|right"
+          layout="topleft"
+          name="perm_modify"
+          width="200">
+          You can:
+        </text>
+        <check_box
+          height="18"
+          label="Modify"
+          layout="topleft"
+          left="20"
+          name="CheckOwnerModify"
+          top_pad="0"
+          width="90" />
+        <check_box
+          height="18"
+          label="Copy"
+          layout="topleft"
+          left_pad="0"
+          name="CheckOwnerCopy"
+          width="90" />
+        <check_box
+          height="18"
+          label="Transfer"
+          layout="topleft"
+          left_pad="0"
+          name="CheckOwnerTransfer"
+          width="106" />
+        <text
+          type="string"
+          length="1"
+          follows="left|top"
+          height="16"
+          layout="topleft"
+          left="10"
+          name="AnyoneLabel"
+          top_pad="8"
+          width="100">
+          Anyone:
+        </text>
+        <check_box
+          height="18"
+          label="Copy"
           layout="topleft"
-          right="-5"
-          name="BtnCreator"
-          top_delta="-6"
-          width="16" />
-          <text
+          left_pad="0"
+          name="CheckEveryoneCopy"
+          top_delta="-2"
+          width="150" />
+        <text
           type="string"
           length="1"
           follows="left|top"
-          height="23"
+          height="16"
           layout="topleft"
-            left="5"
-          name="LabelOwnerTitle"
-            top_pad="10"
-          width="78">
-            Owner:
-          </text>
-          <avatar_icon
-            follows="top|left"
-            height="20"
-            default_icon_name="Generic_Person"
-            layout="topleft"
-            left_pad="0"
-            top_delta="-6"
-            mouse_opaque="true"
-            width="20" />
-          <text
+          left="10"
+          name="GroupLabel"
+          top_pad="8"
+          width="100">
+          Group:
+        </text>
+        <check_box
+          height="18"
+          label="Share"
+          layout="topleft"
+          left_pad="0"
+          top_delta="-2"
+          name="CheckShareWithGroup"
+          tool_tip="Allow all members of the set group to share your modify permissions for this object. You must Deed to enable role restrictions."
+          width="150" />
+        <text
           type="string"
-            follows="left|right|top"
-            font="SansSerifSmall"
-            height="15"
-            layout="topleft"
-            left_pad="5"
-          name="LabelOwnerName"
-          top_delta="6"
-       use_ellipses="true"
-			 width="165">
-          </text>
-             <button
-                 follows="top|right"
-                 height="16"
-         image_selected="Inspector_I"
-         image_unselected="Inspector_I"
-                 layout="topleft"
-                 right="-5"
-                 name="BtnOwner"
-                 top_delta="-3"
-                 width="16" />
-             <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="23"
-                 layout="topleft"
-                 left="5"
-                 name="LabelAcquiredTitle"
-    top_pad="10"
-                 width="78">
-                Acquired:
-             </text>
-             <text
-                 type="string"
-                 length="1"
-                 follows="left|top|right"
-                 height="23"
-                 layout="topleft"
-                 left_delta="78"
-                 name="LabelAcquiredDate"
-                 top_delta="0"
-                 width="210">
-          </text>
-         <panel
-             border="false"
-             follows="left|top|right"
-             layout="topleft"
-             mouse_opaque="false"
-             name="perms_inv"
-             left="0"
-             top_pad="25"
-             height="155"
-             width="313">
-          <text
-                 type="string"
-                 length="1"
-                 left="10"
-                 top_pad="13"
-                 text_color="EmphasisColor"
-             height="15"
-                 follows="left|top|right"
-                 layout="topleft"
-                 name="perm_modify"
-                 width="200">
-                    You can:
-                </text>
-            <check_box
-                 height="18"
-                 label="Modify"
-                 layout="topleft"
-                 left="20"
-                 name="CheckOwnerModify"
-                 top_pad="0"
-                 width="90" />
-            <check_box
-                 height="18"
-                 label="Copy"
-                 layout="topleft"
-                 left_pad="0"
-                 name="CheckOwnerCopy"
-                 width="90" />
-            <check_box
-                 height="18"
-                 label="Transfer"
-                 layout="topleft"
-                 left_pad="0"
-                 name="CheckOwnerTransfer"
-                 width="106" />
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="16"
-                 layout="topleft"
-                 left="10"
-                 name="AnyoneLabel"
-                 top_pad="8"
-                 width="100">
-                Anyone:
-            </text>
-            <check_box
-                 height="18"
-                 label="Copy"
-                 layout="topleft"
-                 left_pad="0"
-                 name="CheckEveryoneCopy"
-                 top_delta="-2"
-                 width="150" />
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="16"
-                 layout="topleft"
-                 left="10"
-                 name="GroupLabel"
-                 top_pad="8"
-                 width="100">
-                Group:
-            </text>
-            <check_box
-                 height="18"
-                 label="Share"
-                 layout="topleft"
-                 left_pad="0"
-                 top_delta="-2"
-                 name="CheckShareWithGroup"
-                 tool_tip="Allow all members of the set group to share your modify permissions for this object. You must Deed to enable role restrictions."
-                 width="150" />
-            <text
-                 type="string"
-                 length="1"
-                 follows="left|top"
-                 height="16"
-                 layout="topleft"
-                 left="10"
-                 name="NextOwnerLabel"
-                 top_pad="8"
-                 width="200"
-                 word_wrap="true">
-                Next owner:
-            </text>
-            <check_box
-                 height="18"
-                 label="Modify"
-                 layout="topleft"
-                 left="20"
-                 top_pad="0"
-                 name="CheckNextOwnerModify"
-                 width="90" />
-            <check_box
-                 height="18"
-                 label="Copy"
-                 layout="topleft"
-                 left_pad="0"
-                 name="CheckNextOwnerCopy"
-                 width="90" />
-            <check_box
-                 height="18"
-                 label="Transfer"
-                 layout="topleft"
-                 left_pad="0"
-                 name="CheckNextOwnerTransfer"
-                 tool_tip="Next owner can give away or resell this object"
-                 width="106" />
-            </panel>
+          length="1"
+          follows="left|top"
+          height="16"
+          layout="topleft"
+          left="10"
+          name="NextOwnerLabel"
+          top_pad="8"
+          width="200"
+          word_wrap="true">
+          Next owner:
+        </text>
         <check_box
-                 height="18"
-                 label="For Sale"
-                 layout="topleft"
-                 left="20"
-                 name="CheckPurchase"
-                 top_pad="20"
-                 width="100" />
-            <combo_box
-                 height="23"
-                 left_pad="0"
-                 layout="topleft"
-                 follows="left|top"
-                 name="ComboBoxSaleType"
-                 width="170">
-              <combo_box.item
-                   name="Copy"
-                   label="Copy"
-                   value="2" />
-              <combo_box.item
-                   name="Contents"
-                   label="Contents"
-                   value="3" />
-              <combo_box.item
-                   name="Original"
-                   label="Original"
-                   value="1" />
-            </combo_box>
-            <spinner
-                    follows="left|top"
-                    decimal_digits="0"
-                    increment="1"
-                    control_name="Edit Cost"
-                    name="Edit Cost"
-                    label="Price: L$"
-                    label_width="75"
-                    left="120"
-                    width="170"
-                    min_val="0"
-                    height="23"
-                    max_val="999999999"
-                    top_pad="10"/>
-        </panel>
-    </scroll_container>
-    <panel
-		 height="30"
-		 layout="topleft"
-		 name="button_panel"
-		 left="5"
-		 top_pad="0"
-		 width="313">
-	    <button
-		     height="23"
-		     label="Cancel"
-		     layout="topleft"
-		     name="cancel_btn"
-		     right="-1"
-		     width="100" />
-	    </panel>
-	</panel>
+          height="18"
+          label="Modify"
+          layout="topleft"
+          left="20"
+          top_pad="0"
+          name="CheckNextOwnerModify"
+          width="90" />
+        <check_box
+          height="18"
+          label="Copy"
+          layout="topleft"
+          left_pad="0"
+          name="CheckNextOwnerCopy"
+          width="90" />
+        <check_box
+          height="18"
+          label="Transfer"
+          layout="topleft"
+          left_pad="0"
+          name="CheckNextOwnerTransfer"
+          tool_tip="Next owner can give away or resell this object"
+          width="106" />
+      </panel>
+      <check_box
+        height="18"
+        label="For Sale"
+        layout="topleft"
+        left="20"
+        name="CheckPurchase"
+        top_pad="20"
+        width="100" />
+      <combo_box
+        height="23"
+        left_pad="0"
+        layout="topleft"
+        follows="left|top"
+        name="ComboBoxSaleType"
+        width="170">
+        <combo_box.item
+             name="Copy"
+             label="Copy"
+             value="2" />
+        <combo_box.item
+             name="Contents"
+             label="Contents"
+             value="3" />
+        <combo_box.item
+             name="Original"
+             label="Original"
+             value="1" />
+      </combo_box>
+      <spinner
+        follows="left|top"
+        decimal_digits="0"
+        increment="1"
+        control_name="Edit Cost"
+        name="Edit Cost"
+        label="Price: L$"
+        label_width="75"
+        left="120"
+        width="170"
+        min_val="0"
+        height="23"
+        max_val="999999999"
+        top_pad="10"/>
+    </panel>
+
+  </scroll_container>
+  <panel
+    height="30"
+    layout="topleft"
+    name="button_panel"
+    left="5"
+    top_pad="0"
+    width="313"
+    follows="top|right|left">
+    <button
+      follows="top|right"
+      height="23"
+      label="Cancel"
+      layout="topleft"
+      name="cancel_btn"
+      right="-1"
+      width="100" />
+  </panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml
index f77678e5f89f377fcda86a640ac8799e7879fe5b..ca38a9bc3fd6b5b9baf472bfce2470069af5457c 100755
--- a/indra/newview/skins/default/xui/en/strings.xml
+++ b/indra/newview/skins/default/xui/en/strings.xml
@@ -489,7 +489,7 @@ Please try logging in again in a minute.</string>
 	
 	<string name="NotConnected">Not Connected</string>
 	<string name="AgentNameSubst">(You)</string> <!-- Substitution for agent name -->
-	<string name="JoinAnExperience">Join an experience</string> <!-- not used -->
+	<string name="JoinAnExperience"></string> <!-- intentionally left blank -->
 	<string name="SilentlyManageEstateAccess">Suppress alerts when managing estate access lists</string>
 	<string name="OverrideYourAnimations">Replace your default animations</string>
 	<string name="ScriptReturnObjects">Return objects on your behalf</string>
@@ -520,8 +520,6 @@ Please try logging in again in a minute.</string>
 	<string name="load_file_verb">Load</string>
 	<string name="targa_image_files">Targa Images</string>
 	<string name="bitmap_image_files">Bitmap Images</string>
-	<string name="png_image_files">PNG Images</string>
-	<string name="save_texture_image_files">Targa or PNG Images</string>
 	<string name="avi_movie_file">AVI Movie File</string>
 	<string name="xaf_animation_file">XAF Anim File</string>
 	<string name="xml_file">XML File</string>
@@ -2499,7 +2497,8 @@ The [[MARKETPLACE_CREATE_STORE_URL] Marketplace store] is returning errors.
 	<string name="CompileQueueProblemDownloading">Problem downloading</string>
 	<string name="CompileQueueInsufficientPermDownload">Insufficient permissions to download a script.</string>
 	<string name="CompileQueueInsufficientPermFor">Insufficient permissions for</string>
-	<string name="CompileQueueUnknownFailure">Unknown failure to download</string>
+   <string name="CompileQueueUnknownFailure">Unknown failure to download</string>
+   <string name="CompileNoExperiencePerm">Skipping script [SCRIPT] with Experience [EXPERIENCE].</string>
 	<string name="CompileQueueTitle">Recompilation Progress</string>
 	<string name="CompileQueueStart">recompile</string>
 	<string name="ResetQueueTitle">Reset Progress</string>
@@ -4033,6 +4032,36 @@ Try enclosing path to the editor with double quotes.
   <!-- Spell check settings floater -->
   <string name="UserDictionary">[User]</string>
   
+  <!-- Experience Tools strings -->
+  <string name="experience_tools_experience">Experience</string>
+  <string name="ExperienceNameNull">(no experience)</string>
+  <string name="ExperienceNameUntitled">(untitled experience)</string>
+  <string name="Land-Scope">Land-Scope</string>
+  <string name="Grid-Scope">Grid-Scope</string>
+  <string name="Allowed_Experiences_Tab">ALLOWED</string>
+  <string name="Blocked_Experiences_Tab">BLOCKED</string>
+  <string name="Contrib_Experiences_Tab">CONTRIBUTOR</string>
+  <string name="Admin_Experiences_Tab">ADMIN</string>
+  <string name="Recent_Experiences_Tab">RECENT</string>
+  <string name="Owned_Experiences_Tab">OWNED</string>
+  <string name="ExperiencesCounter">([EXPERIENCES], max [MAXEXPERIENCES])</string>
+  <string name="ExperiencePermission1">take over your controls</string>
+  <string name="ExperiencePermission3">trigger animations on your avatar</string>
+  <string name="ExperiencePermission4">attach to your avatar</string>
+  <string name="ExperiencePermission9">track your camera</string>
+  <string name="ExperiencePermission10">control your camera</string>
+  <string name="ExperiencePermission11">teleport you</string>
+  <string name="ExperiencePermission12">automatically accept experience permissions</string>
+  <string name="ExperiencePermissionShortUnknown">perform an unknown operation: [Permission]</string>
+  <string name="ExperiencePermissionShort1">Take Controls</string>
+  <string name="ExperiencePermissionShort3">Trigger Animations</string>
+  <string name="ExperiencePermissionShort4">Attach</string>
+  <string name="ExperiencePermissionShort9">Track Camera</string>
+  <string name="ExperiencePermissionShort10">Control Camera</string>
+  <string name="ExperiencePermissionShort11">Teleport</string>
+  <string name="ExperiencePermissionShort12">Permission</string>
+  <string name="ExperiencePermissionShortUnknown">Unknown: [Permission]</string>
+  
   <!-- Conversation log messages -->
   <string name="logging_calls_disabled_log_empty">
     Conversations are not being logged. To begin keeping a log, choose "Save: Log only" or "Save: Log and transcripts" under Preferences > Chat.
diff --git a/indra/newview/skins/default/xui/es/floater_about_land.xml b/indra/newview/skins/default/xui/es/floater_about_land.xml
index f8c40d798a455cdc44755d277fcc25f1215cca2f..10907344aee4b14022df31b3582bc9cf78e8b880 100755
--- a/indra/newview/skins/default/xui/es/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/es/floater_about_land.xml
@@ -308,9 +308,6 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda.
 			<panel.string name="push_restrict_region_text">
 				Sin &apos;empujones&apos; (prevalece lo marcado en la región)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				Los avatares de otras parcelas pueden ver
-			</panel.string>
 			<text name="allow_label">
 				Permitir a otros Residentes:
 			</text>
@@ -336,22 +333,6 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda.
 			<check_box label="Seguro (sin daño)" name="check safe" tool_tip="Si se marca, convierte el terreno en &apos;seguro&apos;, desactivando el daño en combate. Si no, se activa el daño en combate."/>
 			<check_box label="Sin &apos;empujones&apos;" name="PushRestrictCheck" tool_tip="Previene scripts que empujen. Marcando esta opción prevendrá que en su terreno haya comportamientos destructivos."/>
 			<check_box label="Mostrar el sitio en la búsqueda (30 L$/semana)" name="ShowDirectoryCheck" tool_tip="Let people see this parcel in search results"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Cualquier categoría" name="item0"/>
-				<combo_box.item label="Localización Linden" name="item1"/>
-				<combo_box.item label="Adulto" name="item2"/>
-				<combo_box.item label="Arte y Cultura" name="item3"/>
-				<combo_box.item label="Negocios" name="item4"/>
-				<combo_box.item label="Educativo" name="item5"/>
-				<combo_box.item label="Juegos de azar" name="item6"/>
-				<combo_box.item label="Entretenimiento" name="item7"/>
-				<combo_box.item label="Para recién llegados" name="item8"/>
-				<combo_box.item label="Parques y Naturaleza" name="item9"/>
-				<combo_box.item label="Residencial" name="item10"/>
-				<combo_box.item label="Compras" name="item11"/>
-				<combo_box.item label="Terreno en alquiler" name="item13"/>
-				<combo_box.item label="Otra" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Cualquier categoría" name="item0"/>
 				<combo_box.item label="Localización Linden" name="item1"/>
@@ -451,15 +432,9 @@ los media:
 			<panel.string name="access_estate_defined">
 				(Definido por el Estado)
 			</panel.string>
-			<panel.string name="allow_public_access">
-				Permitir el acceso público ([MATURITY]) (Nota: Si no seleccionas esta opción, se crearán líneas de prohibición)
-			</panel.string>
 			<panel.string name="estate_override">
 				Una o más de esta opciones está configurada a nivel del estado
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				Acceso a esta parcela
-			</text>
 			<check_box label="Permitir el acceso público (si no seleccionas esta opción, se crearán líneas de prohibición)" name="public_access"/>
 			<text name="Only Allow">
 				Permitir únicamente el acceso a los Residentes que:
@@ -491,5 +466,6 @@ los media:
 				<button label="Quitar" label_selected="Quitar" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="EXPERIENCIAS" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/floater_experience_search.xml b/indra/newview/skins/default/xui/es/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..315b3363faecb761321cd9a44ce85de64ec2cda5
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="ELEGIR EXPERIENCIA"/>
diff --git a/indra/newview/skins/default/xui/es/floater_experienceprofile.xml b/indra/newview/skins/default/xui/es/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c37208647aafc73cf0ff0ded9633e87f86ef68b0
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(ninguno)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Perfil de experiencia"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Editar" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Calificación:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Ubicación:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Propietario:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Grupo:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Permitir" name="allow_btn"/>
+							<button label="Olvidar" name="forget_btn"/>
+							<button label="Bloquear" name="block_btn"/>
+							<text name="privileged">
+								Esta experiencia está habilitada para todos los residentes.
+							</text>
+							<button label="Denunciar una infracción" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Nombre:"/>
+					<text name="edit_experience_desc_label" value="Descripción:"/>
+					<button label="Grupo" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Calificación:
+					</text>
+					<icons_combo_box label="Moderado" name="edit_ContentRatingText" tool_tip="Al aumentar el nivel de calificación de una experiencia se restablecen los permisos de todos los residentes que han permitido la experiencia.">
+						<icons_combo_box.item label="Adulto" name="Adult" value="42"/>
+						<icons_combo_box.item label="Moderado" name="Mature" value="21"/>
+						<icons_combo_box.item label="General" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Ubicación:
+					</text>
+					<button label="Configurar en mi posición" name="location_btn"/>
+					<button label="Borrar lugar" name="clear_btn"/>
+					<check_box label="Habilitar experiencia" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Ocultar en la búsqueda" name="edit_private_btn"/>
+					<text name="changes" value="Los cambios de una experiencia pueden tardar varios minutos en mostrarse en todas las regiones.+"/>
+					<button label="Anterior" name="cancel_btn"/>
+					<button label="Guardar" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/es/floater_experiences.xml b/indra/newview/skins/default/xui/es/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1a95aa3da86bf63da51754b703a2583cf18f3805
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="EXPERIENCIAS"/>
diff --git a/indra/newview/skins/default/xui/es/floater_facebook.xml b/indra/newview/skins/default/xui/es/floater_facebook.xml
index 3b0e05b1930e1c82983a74d91e68e224a321368a..4bccc6ee579d8036dfa43f3a9a40497f5b78b877 100644
--- a/indra/newview/skins/default/xui/es/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/es/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="PUBLICAR EN FACEBOOK">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="ESTADO" name="panel_facebook_status"/>
-			<panel label="FOTO" name="panel_facebook_photo"/>
-			<panel label="ESTOY AQUÍ" name="panel_facebook_place"/>
-			<panel label="AMIGOS" name="panel_facebook_friends"/>
-			<panel label="CUENTA" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Error
-			</text>
-			<text name="connection_loading_text">
-				Cargando...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="ESTADO" name="panel_facebook_status"/>
+		<panel label="FOTO" name="panel_facebook_photo"/>
+		<panel label="ESTOY AQUÍ" name="panel_facebook_place"/>
+		<panel label="AMIGOS" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Error
+	</text>
+	<text name="connection_loading_text">
+		Cargando...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/es/floater_inventory_view_finder.xml
index 600403450401966a1cc71969c526fda765056fa2..5d16ccd2719b821301183e813edf2a9bb5bad204 100755
--- a/indra/newview/skins/default/xui/es/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/es/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Ropa" name="check_clothing"/>
 	<check_box label="Gestos" name="check_gesture"/>
 	<check_box label="Hitos" name="check_landmark"/>
-	<check_box label="Redes" name="check_mesh"/>
 	<check_box label="Notas" name="check_notecard"/>
+	<check_box label="Redes" name="check_mesh"/>
 	<check_box label="Objetos" name="check_object"/>
 	<check_box label="Scripts" name="check_script"/>
 	<check_box label="Sonidos" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- o -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Posteriores a" name="newer"/>
+		<radio_item label="Anteriores a" name="older"/>
+	</radio_group>
 	<spinner label="horas atrás" name="spin_hours_ago"/>
 	<spinner label="días atrás" name="spin_days_ago"/>
 	<button bottom_delta="-30" label="Cerrar" label_selected="Cerrar" name="Close"/>
diff --git a/indra/newview/skins/default/xui/es/floater_lagmeter.xml b/indra/newview/skins/default/xui/es/floater_lagmeter.xml
index 227689a1947d9a71f5f4d1cb9da78ef726a041fc..64a2124cd6219139e2764ac5ae61c28381cf6e3f 100644
--- a/indra/newview/skins/default/xui/es/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/es/floater_lagmeter.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<floater name="floater_lagmeter" title="MEDIDOR DEL LAG">
+<floater name="floater_lagmeter" title="MEDIDOR DE LAG">
 	<floater.string name="max_title_msg">
-		Medidor del lag
+		Medidor de lag
 	</floater.string>
 	<floater.string name="max_width_px">
 		360
@@ -25,25 +25,25 @@
 		Normal, ventana en segundo plano
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Frames del cliente valorados por debajo de [CLIENT_FRAME_RATE_CRITICAL]
+		Velocidad de fotogramas del cliente inferior a [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		Frames del cliente valorados entre [CLIENT_FRAME_RATE_CRITICAL] y [CLIENT_FRAME_RATE_WARNING]
+		Velocidad de fotogramas del cliente entre [CLIENT_FRAME_RATE_CRITICAL] y [CLIENT_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		Normal
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		Posible causa: distancia de dibujo fijada muy alta
+		Causa posible: la distancia de dibujo configurada es demasiado grande
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		Posible causa: imágenes cargándose
+		Causa posible: se están cargando las imágenes
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		Posible causa: demasiadas imágenes en la memoria
+		Causa posible: demasiadas imágenes en la memoria
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		Posible causa: demasiados objetos complejos en la escena
+		Causa posible: la escena contiene demasiados objetos complejos
 	</floater.string>
 	<floater.string name="network_text_msg">
 		Red
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		La conexión deja caer más del [NETWORK_PACKET_LOSS_CRITICAL]% de los paquetes
+		La conexión pierde más de un [NETWORK_PACKET_LOSS_CRITICAL] % de paquetes
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		La conexión deja caer [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% de los paquetes
+		La conexión pierde entre un [NETWORK_PACKET_LOSS_WARNING] % y un [NETWORK_PACKET_LOSS_CRITICAL] % de paquetes
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		Normal
@@ -70,16 +70,16 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		El tiempo de conexión -ping- supera los [NETWORK_PING_CRITICAL] ms
+		Tiempo de ping de la conexión superior a [NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
-		El tiempo de conexión -ping- es de [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
+		Tiempo de ping de la conexión de [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		Quizá una mala conexión o un ancho de banda fijado demasiado alto.
+		Posible conexión deficiente o la preferencia &apos;Bandwidth&apos; tiene un valor demasiado alto.
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		Quizá una mala conexión o una aplicación de archivos compartidos.
+		Posible conexión deficiente o aplicación de archivos compartidos.
 	</floater.string>
 	<floater.string name="server_text_msg">
 		Servidor
@@ -94,31 +94,31 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		Frecuencia (framerate) por debajo de [SERVER_FRAME_RATE_CRITICAL]
+		Velocidad de fotogramas del simulador inferior a [SERVER_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		Frecuencia (framerate) entre [SERVER_FRAME_RATE_CRITICAL] y [SERVER_FRAME_RATE_WARNING]
+		Velocidad de fotogramas del simulador entre [SERVER_FRAME_RATE_CRITICAL] y [SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
 		Normal
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
-		Posible causa: demasiados objetos físicos
+		Causa posible: demasiados objetos físicos
 	</floater.string>
 	<floater.string name="server_scripts_cause_msg">
-		Posible causa: demasiados objetos con script
+		Causa posible: demasiados objetos programados
 	</floater.string>
 	<floater.string name="server_net_cause_msg">
-		Posible causa: demasiado tráfico en la red
+		Causa posible: tráfico excesivo en la red
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		Posible causa: demasiada gente moviéndose en la región
+		Causa posible: demasiadas personas moviéndose en la región
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
-		Posible causa: demasiados cálculos de imáganes
+		Causa posible: demasiados cálculos de imagen
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		Posible causa: carga del simulador muy pesada
+		Causa posible: carga del simulador excesiva
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -126,7 +126,7 @@
 	<floater.string name="bigger_label">
 		&lt;&lt;
 	</floater.string>
-	<button label="" label_selected="" name="client_lagmeter" tool_tip="Estado del lag del cliente"/>
+	<button label="" label_selected="" name="client_lagmeter" tool_tip="Estado de lag del cliente"/>
 	<text name="client">
 		Cliente
 	</text>
@@ -134,7 +134,7 @@
 		Normal
 	</text>
 	<text left="30" name="client_lag_cause" right="-10"/>
-	<button label="" label_selected="" name="network_lagmeter" tool_tip="Estado del lag de la red"/>
+	<button label="" label_selected="" name="network_lagmeter" tool_tip="Estado de lag de la red"/>
 	<text name="network">
 		Red
 	</text>
@@ -142,7 +142,7 @@
 		Normal
 	</text>
 	<text left="30" name="network_lag_cause" right="-10"/>
-	<button label="" label_selected="" name="server_lagmeter" tool_tip="Estado del lag del servidor"/>
+	<button label="" label_selected="" name="server_lagmeter" tool_tip="Estado de lag del servidor"/>
 	<text name="server">
 		Servidor
 	</text>
diff --git a/indra/newview/skins/default/xui/es/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/es/floater_live_lsleditor.xml
index 4ff54bccb5b1dcc9b5b695dac2b6835091d21c80..9672f910eaeb3225246af2ea78aa791234f1b15f 100755
--- a/indra/newview/skins/default/xui/es/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/es/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		SCRIPT: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Anular la selección para quitar la experiencia actual
+	</floater.string>
+	<floater.string name="no_experiences">
+		No tienes autorización para ninguna experiencia
+	</floater.string>
+	<floater.string name="add_experiences">
+		Seleccionar para agregar una experiencia
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Pulsar para ver el perfil de la experiencia
+	</floater.string>
+	<floater.string name="loading">
+		Cargando...
+	</floater.string>
 	<button label="Reiniciar" label_selected="Reiniciar" name="Reset"/>
 	<check_box initial_value="true" label="Ejecutándose" left="4" name="running"/>
 	<check_box initial_value="true" label="Mono" left="106" name="mono"/>
+	<check_box label="Usar experiencia(s):" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/floater_openobject.xml b/indra/newview/skins/default/xui/es/floater_openobject.xml
index b8b688df60815ab070915a5e8fbb472408f4f16e..e350479e01ba23f6a0f37a7b326e2befcbb4dff2 100755
--- a/indra/newview/skins/default/xui/es/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/es/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="Copiar al inventario" label_selected="Copiar al inventario" name="copy_to_inventory_button"/>
-	<button label="Copiar y vestirse" label_selected="Copiar y vestirse" name="copy_and_wear_button"/>
+	<button label="Copiar en el inventario" label_selected="Copiar en el inventario" name="copy_to_inventory_button"/>
+	<button label="Copiar y añadir al vestuario" label_selected="Copiar y añadir al vestuario" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/floater_report_abuse.xml b/indra/newview/skins/default/xui/es/floater_report_abuse.xml
index fe37f125b8f9cc56ee2d760b40388892ee89edec..8d8906c617ed83dd0e164ccffd8ae354c89188c2 100755
--- a/indra/newview/skins/default/xui/es/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/es/floater_report_abuse.xml
@@ -76,7 +76,7 @@
 		<combo_box.item label="Terreno &gt; Invasión &gt; Objetos o texturas" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Terreno &gt; Invasión &gt; Partículas" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Terreno &gt; Invasión &gt; Árboles/Plantas" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Apostar" name="Wagering_gambling"/>
+		<combo_box.item label="Incumplimiento de la política de juegos" name="Wagering_gambling"/>
 		<combo_box.item label="Otra" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/es/floater_snapshot.xml b/indra/newview/skins/default/xui/es/floater_snapshot.xml
index 5e02bc52b7325197a6791825dc3e4740431c767a..c2c996aa8ae138e4146536884eae54116c35af75 100755
--- a/indra/newview/skins/default/xui/es/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/es/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Error al guardar en el equipo.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Opciones avanzadas"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[SIZE] kB
-	</text>
+	<button label="ACTUALIZAR" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			OPCIONES AVANZADAS
-		</text>
 		<text name="layer_type_label">
 			Captura:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Sin filtro" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] px (ancho) × [HEIGHT] px (alto)
+	</text>
+	<text name="file_size_label">
+		[SIZE] kB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/floater_top_objects.xml b/indra/newview/skins/default/xui/es/floater_top_objects.xml
index bb53f116c2526c1ea4a7cc7d26e69e543d6eb1f1..4eaa552fda1bffba955bd3070f4fdb85bc97c78b 100755
--- a/indra/newview/skins/default/xui/es/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/es/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		No se ha encontrado ninguno.
 	</floater.string>
+	<floater.string name="URLs">
+		URL
+	</floater.string>
+	<floater.string name="memory">
+		Memoria (KB)
+	</floater.string>
 	<text name="title_text">
 		Cargando...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Propietario" name="owner"/>
 		<scroll_list.columns label="Posición" name="location"/>
 		<scroll_list.columns label="Parcela" name="parcel"/>
-		<scroll_list.columns label="Tiempo" name="time"/>
+		<scroll_list.columns label="Fecha" name="time"/>
 		<scroll_list.columns label="URLs" name="URLs"/>
 		<scroll_list.columns label="Memoria (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/es/floater_twitter.xml b/indra/newview/skins/default/xui/es/floater_twitter.xml
index 050ee1a3917f399be8985627fa32d162d056dc4c..92f4fc5bba86313f0e2ef6ca79496e6fe5786669 100644
--- a/indra/newview/skins/default/xui/es/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/es/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="REDACTAR" name="panel_twitter_photo"/>
-			<panel label="CUENTA" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Error
-			</text>
-			<text name="connection_loading_text">
-				Cargando...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="REDACTAR" name="panel_twitter_photo"/>
+		<panel label="CUENTA" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Error
+	</text>
+	<text name="connection_loading_text">
+		Cargando...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/es/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/es/menu_inventory_gear_default.xml
index 0e9644629e5b38471e125da3d2a3468dc486e253..c24910066b0da3585b6d07eefe21d514843c75c0 100755
--- a/indra/newview/skins/default/xui/es/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/es/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Ordenar por los más recientes" name="sort_by_recent"/>
 	<menu_item_check label="Ordenar las carpetas siempre alfabéticamente" name="sort_folders_by_name"/>
 	<menu_item_check label="Las carpetas del sistema, arriba" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Ver los filtros" name="show_filters"/>
+	<menu_item_call label="Ver los filtros..." name="show_filters"/>
 	<menu_item_call label="Restablecer los filtros" name="reset_filters"/>
 	<menu_item_call label="Cerrar todas las carpetas" name="close_folders"/>
 	<menu_item_call label="Vaciar Objetos Perdidos" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/es/menu_url_experience.xml b/indra/newview/skins/default/xui/es/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a18cb0e8e807fae1db4e37c2c3dab616348af9a7
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="Copiar la SLurl al portapapeles" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/es/menu_viewer.xml b/indra/newview/skins/default/xui/es/menu_viewer.xml
index 9596a8277efa4f8df750f73a63d9e69ce92efec1..797cf303879d53285e00a38c48cbc9478c1e92b7 100755
--- a/indra/newview/skins/default/xui/es/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/es/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Nueva ventana del inventario" name="NewInventoryWindow"/>
 		<menu_item_call label="Lugares..." name="Places"/>
 		<menu_item_call label="Destacados..." name="Picks"/>
+		<menu_item_call label="Experiencias..." name="Experiences"/>
 		<menu_item_call label="Controles de la cámara..." name="Camera Controls"/>
 		<menu label="Movimiento" name="Movement">
 			<menu_item_call label="Sentarte" name="Sit Down Here"/>
@@ -47,7 +48,7 @@
 		<menu_item_check label="Amigos" name="My Friends"/>
 		<menu_item_check label="Grupos" name="My Groups"/>
 		<menu_item_check label="Gente cerca" name="Active Speakers"/>
-		<menu_item_call label="Lista de ignorados" name="Block List"/>
+		<menu_item_check label="Lista de ignorados" name="Block List"/>
 		<menu_item_check label="No molestar" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Mundo" name="World">
diff --git a/indra/newview/skins/default/xui/es/mime_types.xml b/indra/newview/skins/default/xui/es/mime_types.xml
index 85ff4cfb488020e287e03275afe07b04b2c7a3df..eb212344ce094766e237d821a8aab273ebef1d61 100755
--- a/indra/newview/skins/default/xui/es/mime_types.xml
+++ b/indra/newview/skins/default/xui/es/mime_types.xml
@@ -27,7 +27,7 @@
 			No hay contenido
 		</label>
 		<tooltip name="none_tooltip">
-			Aquí no hay multimedia
+			Aquí no hay contenido multimedia
 		</tooltip>
 	</widgetset>
 	<widgetset name="image">
diff --git a/indra/newview/skins/default/xui/es/mime_types_linux.xml b/indra/newview/skins/default/xui/es/mime_types_linux.xml
index 77d05934f42563401bd773bc9115d16bd295d493..e5887e7d962cdadd9c2aa97fd8d586df75241d5f 100755
--- a/indra/newview/skins/default/xui/es/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/es/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Oír el audio de este sitio
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			No hay contenido
+		</label>
+		<tooltip name="none_tooltip">
+			Aquí no hay contenido multimedia
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Streaming en &apos;Real Time&apos;
diff --git a/indra/newview/skins/default/xui/es/mime_types_mac.xml b/indra/newview/skins/default/xui/es/mime_types_mac.xml
index 77d05934f42563401bd773bc9115d16bd295d493..e5887e7d962cdadd9c2aa97fd8d586df75241d5f 100755
--- a/indra/newview/skins/default/xui/es/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/es/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Oír el audio de este sitio
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			No hay contenido
+		</label>
+		<tooltip name="none_tooltip">
+			Aquí no hay contenido multimedia
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Streaming en &apos;Real Time&apos;
diff --git a/indra/newview/skins/default/xui/es/notifications.xml b/indra/newview/skins/default/xui/es/notifications.xml
index 01407dc69ebaf30a316a55409a9dcdb2804f4d32..cc0d46bfe04fbb625791401c1d96171288f5cec5 100755
--- a/indra/newview/skins/default/xui/es/notifications.xml
+++ b/indra/newview/skins/default/xui/es/notifications.xml
@@ -73,6 +73,10 @@ Detalles del error: la notificación de nombre &apos;[_NAME]&apos; no se ha enco
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sí"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Ha habido un error actualizando [APP_NAME].  Por favor, [http://get.secondlife.com descarga la última versión] del Visor.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -570,6 +574,9 @@ La calidad gráfica puede ajustarse en Preferencias &gt; Gráficos.
 	<notification name="RegionNoTerraforming">
 		En la región [REGION] no se permite modificar el terreno.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		No tienes permiso para modificar el terreno de la parcela [PARCEL].
+	</notification>
 	<notification name="CannotCopyWarning">
 		No tienes permiso para copiar los elementos siguientes:
 [ITEMS] y, si los das, los perderás del inventario. ¿Seguro que quieres ofrecerlos?
@@ -1834,6 +1841,30 @@ Se cambiarán miles de regiones, y se provocará un colapso en el espacio del se
 		¿Remover al administrador del estado sólo para este estado o para [ALL_ESTATES]?
 		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
 	</notification>
+	<notification label="Seleccionar estado" name="EstateAllowedExperienceAdd">
+		¿Añadir a la lista de permitidos solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
+	<notification label="Seleccionar estado" name="EstateAllowedExperienceRemove">
+		¿Quitar de la lista de permitidos solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
+	<notification label="Seleccionar estado" name="EstateBlockedExperienceAdd">
+		¿Añadir a la lista de bloqueados solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
+	<notification label="Seleccionar estado" name="EstateBlockedExperienceRemove">
+		¿Quitar de la lista de bloqueados solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
+	<notification label="Seleccionar estado" name="EstateTrustedExperienceAdd">
+		¿Añadir a la lista de claves solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
+	<notification label="Seleccionar estado" name="EstateTrustedExperienceRemove">
+		¿Quitar de la lista de claves solamente en este estado o en [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/>
+	</notification>
 	<notification label="Confirmar la expulsión" name="EstateKickUser">
 		¿Echar a [EVIL_USER] de este estado?
 		<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/>
@@ -1908,6 +1939,10 @@ Se cambiarán miles de regiones, y se provocará un colapso en el espacio del se
 		Estamos experimentando dificultades técnicas con el teleporte porque tus preferencias no están sincronizadas con el servidor.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		No puedes entrar en la región. &apos;[REGION_NAME]&apos; es una región de juegos de habilidad, y debes cumplir determinados criterios para poder entrar en ella. Consulta los detalles en las [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life P+F de juegos de habilidad].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		No recibirás más notificaciones cuando vayas a visitar una región con un contenido [RATING]. En el futuro, puedes cambiar tus preferencias de contenido en Yo &gt; Preferencias &gt; General en la barra de menús.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2214,6 +2249,9 @@ Linden Lab
 			<button ignore="Nunca reemplazar" name="No" text="Cancelar"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		No puedes tener una carpeta de prendas que contenga más de [AMOUNT] elementos. Puedes cambiar este límite en Avanzado &gt; Mostrar las configuraciones del depurador &gt; WearFolderLimit.
+	</notification>
 	<notification label="Advertencia del modo No molestar" name="DoNotDisturbModePay">
 		Tienes activado No molestar. No podrás recibir ningún objeto ofrecido a cambio de este pago.
 
@@ -2822,7 +2860,7 @@ Si permaneces en esta región serás desconectado.
 
 [MESSAGE]
 
-Del objeto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, propietario: [NAME]?
+Del objeto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, propietario: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Cargar"/>
 			<button name="Cancel" text="Cancelar"/>
@@ -2848,6 +2886,72 @@ Del objeto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, propietario: [NAME]?
 			<button name="Mute" text="Ignorar"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		No se puede adquirir una experiencia nueva:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Se ha omitido un cambio en el grupo de la experiencia porque el propietario no es miembro del grupo seleccionado.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		El campo no modificable &apos;[field]&apos; se ha omitido al actualizar el perfil de la experiencia.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Cambios omitidos en el campo &apos;[field]&apos; que solo puede configurar el propietario de la experiencia.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		No puedes definir un nivel de calificación de una experiencia superior al establecido por el propietario.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Las condiciones siguientes han impedido la actualización del nombre o la descripción del perfil de la experiencia: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Te has teleportado desde la región [region_name] porque al quitar la experiencia secondlife:///app/experience/[public_id]/profile ya no tienes permiso para entrar en la región.
+		<form name="form">
+			<ignore name="ignore" text="Expulsado de la región por quitar una experiencia"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		La participación en la experiencia clave secondlife:///app/experience/[public_id]/profile te otorga permiso para entrar en la región [region_name]. Si quitas esta experiencia, puede que te expulsen de la región.
+		<form name="form">
+			<ignore name="ignore" text="Admitido en una región por una experiencia"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		No tienes permiso de acceso a este destino. Puedes obtener el permiso para entrar en la región si aceptas una de las siguientes experiencias:
+
+[EXPERIENCE_LIST]
+
+Pueden estar disponibles otras experiencias clave.
+	</notification>
+	<notification name="ExperienceEvent">
+		La experiencia secondlife:///app/experience/[public_id]/profile permitió la siguiente operación con un objeto: [EventType].
+    Propietario: secondlife:///app/agent/[OwnerID]/inspect
+    Nombre del objeto: [ObjectName]
+    Nombre de la parcela: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		La experiencia secondlife:///app/experience/[public_id]/profile permitió la siguiente operación con un anexo: [EventType].
+    Propietario: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, un objeto de propiedad de &apos;[NAME]&apos;, solicita tu participación en la experiencia [GRID_WIDE]:
+
+[EXPERIENCE]
+
+Una vez concedido el permiso, este mensaje no volverá a aparecer para la experiencia salvo que se revoque en el perfil de la experiencia.
+
+Los scripts asociados a esta experiencia podrán hacer lo siguiente en las regiones donde la experiencia esté activa: 
+
+[QUESTIONS]¿Lo aceptas?
+		<form name="form">
+			<button name="BlockExperience" text="Bloquear experiencia"/>
+			<button name="Mute" text="Bloquear objeto"/>
+			<button name="Yes" text="Sí"/>
+			<button name="No" text="No"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Atención: El objeto &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; solicita un acceso pleno a tu cuenta de dólares Linden. Si le autorizas el acceso, podrá retirar fondos de tu cuenta en cualquier momento o vaciarla por completo, cuando lo desee y sin más advertencias.
   
@@ -3159,6 +3263,10 @@ Has actualizado una textura obtenida mediante bake de [RESOLUTION] para &apos;[B
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( [EXISTENCE] segundos con vida )
 Has actualizado de manera local una textura obtenida mediante bake de [RESOLUTION] para &apos;[BODYREGION]&apos; después de [TIME] segundos.
+	</notification>
+	<notification name="CannotUploadTexture">
+		No se puede subir la textura.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		No se puede mostrar una vista previa de esta textura porque es de tipo &apos;no copiable&apos; y/o &apos;no transferible&apos;.
diff --git a/indra/newview/skins/default/xui/es/panel_experience_info.xml b/indra/newview/skins/default/xui/es/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..85fc94ebdc32cd12554b8b24f2e868b0e82fba2c
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Perfil de experiencia"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Ubicación:
+					</text>
+					<text name="LocationTextText">
+						algún lugar
+					</text>
+					<button label="Teleportarte" name="teleport_btn"/>
+					<button label="Mapa" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Tienda del Mercado:
+					</text>
+					<text name="LocationTextText">
+						algún lugar
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Calificación:
+					</text>
+					<text name="ContentRatingText">
+						Adulto
+					</text>
+					<text name="Owner">
+						Propietario:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Editar" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/es/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5cc1462605dffb4b6e3a89e06361c9d355c238ee
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		cargando...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Experiencias permitidas:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Experiencias bloqueadas:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Experiencias clave:
+	</panel.string>
+	<panel.string name="no_results">
+		(vacío)
+	</panel.string>
+	<text name="text_name">
+		Lista de experiencias
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Nombre" name="experience_name"/>
+	</scroll_list>
+	<button label="Añadir..." name="btn_add"/>
+	<button label="Eliminar" name="btn_remove"/>
+	<button label="Perfil..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_experience_list_item.xml b/indra/newview/skins/default/xui/es/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bd2e146223b96df0c34a19df7db5420dbc9ce682
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Nombre ficticio
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_experience_log.xml b/indra/newview/skins/default/xui/es/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..54d0f0fc4472ce3e1a111a2a2beb0bf8917eaa1b
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="No hay eventos."/>
+	<string name="loading" value="cargando..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Hora" name="time"/>
+				<columns label="Evento" name="event"/>
+				<columns label="Experiencia" name="experience_name"/>
+				<columns label="Objeto" name="object_name"/>
+			</scroll_list>
+			<button label="Notificar" name="btn_notify"/>
+			<button label="Perfil" name="btn_profile_xp"/>
+			<button label="Denunciar" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Notificar todos los eventos   Días" name="notify_all"/>
+			<button label="Limpiar" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_experience_search.xml b/indra/newview/skins/default/xui/es/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bb05ada5b99e50237e72b85ec1eaa50e6b006341
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		&apos;[TEXT]&apos; no encontrado
+	</string>
+	<string name="no_results">
+		No hay resultados
+	</string>
+	<string name="searching">
+		Buscando...
+	</string>
+	<string name="loading">
+		Cargando...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Ir" name="find"/>
+		<icons_combo_box label="Moderado" name="maturity">
+			<icons_combo_box.item label="Adulto" name="Adult" value="42"/>
+			<icons_combo_box.item label="Moderado" name="Mature" value="21"/>
+			<icons_combo_box.item label="General" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Nombre" name="experience_name"/>
+			<columns label="Propietario" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Cancelar" name="cancel_btn"/>
+		<button label="Ver el perfil" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_experiences.xml b/indra/newview/skins/default/xui/es/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..182981fcb03d8fdfd084302240343ba5abbdd6d5
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Cargando experiencias..."/>
+	<string name="no_experiences" value="No hay experiencias."/>
+	<string name="acquire" value="Adquirir una experiencia"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_facebook_friends.xml b/indra/newview/skins/default/xui/es/panel_facebook_friends.xml
index 6913e87abab574a5a955b88b1764bf7f468ee085..5557c0a73c843bd080763d03b2805530072f5ae7 100644
--- a/indra/newview/skins/default/xui/es/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/es/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Actualmente no tienes amigos en Facebook que también sean residentes de Second Life. Invita a tus amigos de Facebook a que se unan a Second Life."/>
-	<string name="facebook_friends_no_connected" value="Actualmente no estás conectado a Facebook. Selecciona la pestaña Cuenta para conectarte y habilitar esta función."/>
+	<string name="facebook_friends_no_connected" value="Actualmente no estás conectado a Facebook. Selecciona la pestaña Estado para conectarte y habilitar esta función."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="Amigos de SL"/>
 		<accordion_tab name="tab_suggested_friends" title="Agregar estas personas como amigos de SL"/>
diff --git a/indra/newview/skins/default/xui/es/panel_facebook_photo.xml b/indra/newview/skins/default/xui/es/panel_facebook_photo.xml
index f9e7265d348f4d3140584440308d70aad5bf3ca1..5a533f8bcb11697024ec4d3485b09811921b5d9f 100644
--- a/indra/newview/skins/default/xui/es/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/es/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
-				<combo_box.item label="Ventana actual" name="CurrentWindow"/>
-				<combo_box.item label="640 × 480" name="640x480"/>
-				<combo_box.item label="800 × 600" name="800x600"/>
-				<combo_box.item label="1024 × 768" name="1024x768"/>
-				<combo_box.item label="1200 × 630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
-				<combo_box.item label="Sin filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
-			<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
-			<text name="caption_label">
-				Comentario (opcional):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Publicar" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
+		<combo_box.item label="Ventana actual" name="CurrentWindow"/>
+		<combo_box.item label="640 × 480" name="640x480"/>
+		<combo_box.item label="800 × 600" name="800x600"/>
+		<combo_box.item label="1024 × 768" name="1024x768"/>
+		<combo_box.item label="1200 × 630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
+		<combo_box.item label="Sin filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
+	<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
+	<text name="caption_label">
+		Comentario (opcional):
+	</text>
+	<button label="Publicar" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_facebook_place.xml b/indra/newview/skins/default/xui/es/panel_facebook_place.xml
index 639825818a250150be90027117cb08c5dffd3019..5139bd1d0bee42dfb6eacea95f83a0dfc5d5d4d5 100644
--- a/indra/newview/skins/default/xui/es/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/es/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Cuenta algo del lugar donde te encuentras:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Publicar" name="post_place_btn"/>
-			<button label="Cancelar" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Cuenta algo del lugar donde te encuentras:
+	</text>
+	<check_box initial_value="false" label="Incluir una vista general del lugar" name="add_place_view_cb"/>
+	<button label="Publicar" name="post_place_btn"/>
+	<button label="Cancelar" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_facebook_status.xml b/indra/newview/skins/default/xui/es/panel_facebook_status.xml
index dfaf4089fc3736662163f391093b1b616b9d0ec2..e6f137b75079efc9a2239b49648b11013e1eced4 100644
--- a/indra/newview/skins/default/xui/es/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/es/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				¿En qué estás pensando?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Publicar" name="post_status_btn"/>
-			<button label="Cancelar" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Estás conectado a Facebook como:"/>
+	<string name="facebook_disconnected" value="No conectado a Facebook"/>
+	<text name="account_caption_label">
+		No conectado a Facebook.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Conectar..." name="connect_btn"/>
+		<button label="Desconectar" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Aprende a publicar en Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		¿En qué estás pensando?
+	</text>
+	<button label="Publicar" name="post_status_btn"/>
+	<button label="Cancelar" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_flickr_photo.xml b/indra/newview/skins/default/xui/es/panel_flickr_photo.xml
index 465e80667b53e30f3c6ab2bf1102161839e8a920..fe80199355b63b853a783f2fd449e2933cdd5222 100644
--- a/indra/newview/skins/default/xui/es/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/es/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
-				<combo_box.item label="Ventana actual" name="CurrentWindow"/>
-				<combo_box.item label="640 × 480" name="640x480"/>
-				<combo_box.item label="800 × 600" name="800x600"/>
-				<combo_box.item label="1024 × 768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
-				<combo_box.item label="Sin filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
-			<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
-			<text name="title_label">
-				Título:
-			</text>
-			<text name="description_label">
-				Descripción:
-			</text>
-			<check_box initial_value="true" label="Incluir la ubicación de SL al final de la descripción" name="add_location_cb"/>
-			<text name="tags_label">
-				Etiquetas:
-			</text>
-			<text name="tags_help_label">
-				Separa las etiquetas con espacios
+	<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
+		<combo_box.item label="Ventana actual" name="CurrentWindow"/>
+		<combo_box.item label="640 × 480" name="640x480"/>
+		<combo_box.item label="800 × 600" name="800x600"/>
+		<combo_box.item label="1024 × 768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
+		<combo_box.item label="Sin filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
+	<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
+	<text name="title_label">
+		Título:
+	</text>
+	<text name="description_label">
+		Descripción:
+	</text>
+	<check_box initial_value="true" label="Incluir la ubicación de SL al final de la descripción" name="add_location_cb"/>
+	<text name="tags_label">
+		Etiquetas:
+	</text>
+	<text name="tags_help_label">
+		Separa las etiquetas con espacios
 Usa &quot;&quot; para las etiquetas con varias palabras
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Calificación de contenido de Flickr">
-				<combo_box.item label="Calificación segura de Flickr" name="SafeRating"/>
-				<combo_box.item label="Calificación moderada de Flickr" name="ModerateRating"/>
-				<combo_box.item label="Calificación restringida de Flickr" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Subir" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Calificación de contenido de Flickr">
+		<combo_box.item label="Calificación segura de Flickr" name="SafeRating"/>
+		<combo_box.item label="Calificación moderada de Flickr" name="ModerateRating"/>
+		<combo_box.item label="Calificación restringida de Flickr" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Subir" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/es/panel_group_info_sidetray.xml
index 18eaa834da8bafa5b7886e3145d701c34e4e9a24..8d8f3a9bbb46e32b3f0eea79201cbe58ca7ce828 100755
--- a/indra/newview/skins/default/xui/es/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/es/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Miembros y Roles"/>
 				<accordion_tab name="group_notices_tab" title="Avisos"/>
 				<accordion_tab name="group_land_tab" title="Terreno/Bienes"/>
+				<accordion_tab name="group_experiences_tab" title="Experiencias"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/es/panel_postcard_settings.xml b/indra/newview/skins/default/xui/es/panel_postcard_settings.xml
index 39313194479076ff03365a8d5c12cc271493373c..75bcd67f1ff21d13b562c69b0b8f5a56d1e2ff29 100755
--- a/indra/newview/skins/default/xui/es/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/es/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Personalizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="Ancho" name="postcard_snapshot_width"/>
-			<spinner label="Altura" name="postcard_snapshot_height"/>
-			<check_box label="Mantener las proporciones" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Calidad de la imagen" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ancho × alto" name="postcard_snapshot_width"/>
+	<check_box label="Mantener las proporciones" name="postcard_keep_aspect_check"/>
+	<slider label="Calidad:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
index 508bfbcd3262ac6375e1132d3fa297c1287577f7..7ccad84b55f05ce0f37b954af841e6a4c8f10b9e 100755
--- a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Usar mi navegador (IE, Firefox, Safari)" name="external" tool_tip="Usa tu navegador por defecto para ayuda, enlaces web, etc. No es aconsejable si estás a pantalla completa." value="true"/>
-		<radio_item label="Usar el navegador incorporado" name="internal" tool_tip="Usa el navegador incorporado para ayuda, enlaces web, etc. Este navegador se abre en una nueva ventana dentro de [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Usar mi navegador (Chrome, Firefox, IE) para todos los enlaces" name="internal" tool_tip="Usa el navegador predeterminado para obtener ayuda, visitar enlaces web, etc. No es aconsejable si estás a pantalla completa." value="0"/>
+		<radio_item label="Usar el navegador integrado solo para los enlaces de Second Life" name="external" tool_tip="Usa el navegador predeterminado del sistema para obtener ayuda, visitar enlaces web, etc. El navegador integrado solo se utilizará para los enlaces de LindenLab/SecondLife." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Activar plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Aceptar las &apos;cookies&apos;" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/es/panel_region_experiences.xml b/indra/newview/skins/default/xui/es/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4b7f82d3fb7439577ae2583bd8d960b745c3c230
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiencias" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Cualquier experiencia puede ser clave.
+
+Las experiencias clave tienen permiso de ejecución en este estado.
+
+Además, si el estado no admite el acceso público, los residentes que participen en una experiencia clave pueden entrar en el estado y permanecer en él mientras se encuentren en dicha experiencia.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Solo se permiten las experiencias activas en el terreno.
+
+Las experiencias permitidas tienen permiso de ejecución en este estado.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Solo pueden bloquearse las experiencias activas en el Grid.
+      
+Las experiencias bloqueadas no pueden ejecutarse en este estado.
+	</panel.string>
+	<panel.string name="estate_caption">
+		En esta pestaña, los cambios en la configuración afectarán a todas las regiones del estado.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Solo se permiten las experiencias activas en el terreno.
+      
+Las experiencias permitidas tienen permiso de ejecución en esta parcela si no las ha bloqueado el estado.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Puede bloquearse cualquier experiencia de los residentes.
+      
+Las experiencias bloqueadas no pueden ejecutarse en esta parcela.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_script_experience.xml b/indra/newview/skins/default/xui/es/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2629a9fa69a6ae2ae1f319bc4b52c2c704fbd8bb
--- /dev/null
+++ b/indra/newview/skins/default/xui/es/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="EXPERIENCIA">
+	<button label="Experiencia" name="Expand Experience"/>
+	<check_box label="Usa las experiencias" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Elegir experiencia..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		No eres colaborador de ninguna experiencia.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/es/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/es/panel_snapshot_inventory.xml
index 12c74b5cd1838e80ea89f4bf3fba55e97487210e..c9eea9a58e93f1aae1757f174c6ec9a57fb6c448 100755
--- a/indra/newview/skins/default/xui/es/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/es/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Guardar en mi inventario
+		Inventario
 	</text>
 	<text name="hint_lbl">
 		Guardar una imagen en el inventario cuesta [UPLOAD_COST] L$. Para guardar una imagen como una textura, selecciona uno de los formatos cuadrados.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Grande (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Personalizado" name="Custom"/>
 	</combo_box>
-	<spinner label="Ancho" name="inventory_snapshot_width"/>
-	<spinner label="Altura" name="inventory_snapshot_height"/>
+	<spinner label="Ancho × alto" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Mantener las proporciones" name="inventory_keep_aspect_check"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<button label="Guardar" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/es/panel_snapshot_local.xml b/indra/newview/skins/default/xui/es/panel_snapshot_local.xml
index 08c45d2e7645a2d648abaa164d3ffdda4f51df1b..d0ea34d6124147af04cb8cf73c2a13895ee4255f 100755
--- a/indra/newview/skins/default/xui/es/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/es/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Guardar en mi ordenador
+		Disco
 	</text>
 	<combo_box label="Resolución" name="local_size_combo">
 		<combo_box.item label="Ventana actual" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="Personalizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="Ancho" name="local_snapshot_width"/>
-			<spinner label="Altura" name="local_snapshot_height"/>
-			<check_box label="Mantener las proporciones" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Formato" name="local_format_combo">
-				<combo_box.item label="PNG (sin pérdida)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (sin pérdida)" name="BMP"/>
-			</combo_box>
-			<slider label="Calidad de la imagen" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ancho × alto" name="local_snapshot_width"/>
+	<check_box label="Mantener las proporciones" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Formato:
+	</text>
+	<combo_box label="Formato" name="local_format_combo">
+		<combo_box.item label="PNG (sin pérdida)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (sin pérdida)" name="BMP"/>
+	</combo_box>
+	<slider label="Calidad:" name="image_quality_slider"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<flyout_button label="Guardar" name="save_btn" tool_tip="Guardar la imagen en un archivo">
 		<flyout_button.item label="Guardar" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/es/panel_snapshot_options.xml b/indra/newview/skins/default/xui/es/panel_snapshot_options.xml
index f4bfc0e0b5a5db5ab37172f8c8af51bd0cb7516e..c1955f1fde9918e6aac9de51112a82d408f46f00 100755
--- a/indra/newview/skins/default/xui/es/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/es/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Publicar en los comentarios de Mi perfil" name="save_to_profile_btn"/>
-	<button label="Correo-e" name="save_to_email_btn"/>
-	<button label="Guardar en Mi inventario ([AMOUNT] L$)" name="save_to_inventory_btn"/>
-	<button label="Guardar en mi ordenador" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Enviar a:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="Guardar en disco" name="save_to_computer_btn"/>
+	<button label="Guardar en inventario (L$[AMOUNT])" name="save_to_inventory_btn"/>
+	<button label="Subir al perfil" name="save_to_profile_btn"/>
+	<button label="Subir a Facebook" name="send_to_facebook_btn"/>
+	<button label="Subir a Twitter" name="send_to_twitter_btn"/>
+	<button label="Subir a Flickr" name="send_to_flickr_btn"/>
+	<button label="Enviar por correo electrónico" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/es/panel_snapshot_postcard.xml
index 649d547ba0c3d0160780ad9af85737f394f56b8b..357b432c4c7420076156f193da8fe9b7a44c2598 100755
--- a/indra/newview/skins/default/xui/es/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/es/panel_snapshot_postcard.xml
@@ -10,8 +10,12 @@
 		Enviando...
 	</string>
 	<text name="title">
-		Correo-e
+		Correo electrónico
 	</text>
-	<button label="Mensaje" name="message_btn"/>
-	<button label="Ajustes" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Mensaje" name="panel_postcard_message"/>
+		<panel label="Opciones" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Cancelar" name="cancel_btn"/>
+	<button label="Enviar" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/es/panel_snapshot_profile.xml
index 6a0bc22d685983e4febb7f83d63af28c1b8bbf98..9fc925835f1da52550a38837921ab4c8c949dcbc 100755
--- a/indra/newview/skins/default/xui/es/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/es/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Publicar en los comentarios de Mi perfil
+		Perfil
 	</text>
 	<combo_box label="Resolución" name="profile_size_combo">
 		<combo_box.item label="Ventana actual" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Personalizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="Ancho" name="profile_snapshot_width"/>
-			<spinner label="Altura" name="profile_snapshot_height"/>
-			<check_box label="Mantener las proporciones" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Título:
-			</text>
-			<check_box initial_value="true" label="Incluir ubicación" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ancho × alto" name="profile_snapshot_width"/>
+	<check_box label="Mantener las proporciones" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Título:
+	</text>
+	<check_box initial_value="true" label="Incluir ubicación" name="add_location_cb"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<button label="Publicar" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/panel_twitter_photo.xml b/indra/newview/skins/default/xui/es/panel_twitter_photo.xml
index be1896b33b6f3ae5da1664e76ccd7ba25f1721a4..0ae790514a93be1d53d8157e9486ef515d79c682 100644
--- a/indra/newview/skins/default/xui/es/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/es/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				¿Qué está ocurriendo?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="Incluir ubicación de SL" name="add_location_cb"/>
-			<check_box initial_value="true" label="Incluir una foto" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
-				<combo_box.item label="Ventana actual" name="CurrentWindow"/>
-				<combo_box.item label="640 × 480" name="640x480"/>
-				<combo_box.item label="800 × 600" name="800x600"/>
-				<combo_box.item label="1024 × 768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
-				<combo_box.item label="Sin filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
-			<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Tuitear" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		¿Qué está ocurriendo?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="Incluir ubicación de SL" name="add_location_cb"/>
+	<check_box initial_value="true" label="Incluir una foto" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Resolución de imagen">
+		<combo_box.item label="Ventana actual" name="CurrentWindow"/>
+		<combo_box.item label="640 × 480" name="640x480"/>
+		<combo_box.item label="800 × 600" name="800x600"/>
+		<combo_box.item label="1024 × 768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagen">
+		<combo_box.item label="Sin filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualizar" name="new_snapshot_btn" tool_tip="Pulsa para actualizar"/>
+	<button label="Vista previa" name="big_preview_btn" tool_tip="Pulsa para alternar entre vista previa sí/no"/>
+	<button label="Tuitear" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/es/role_actions.xml b/indra/newview/skins/default/xui/es/role_actions.xml
index 5e0c21992d58f240715fe0c7455de7a1a2c87992..3928ca2ab78c6fe1d45cc316745e36a44a225c23 100755
--- a/indra/newview/skins/default/xui/es/role_actions.xml
+++ b/indra/newview/skins/default/xui/es/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Abrir chat de voz del grupo" longdescription="Quien tenga un rol con esta capacidad puede abrir sesiones de chat de voz del grupo. NOTA: para acceder al chat de voz debe tenerse la capacidad &apos;Abrir chat de grupo&apos;." name="join voice chat" value="27"/>
 		<action description="Moderar el chat de grupo" longdescription="Quien tenga esta capacidad puede controlar el acceso y la participación en los chats de texto y de voz del grupo." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Estas capacidades incluyen la posibilidad de modificar las experiencias propiedad del grupo." name="experience_tools_experience">
+		<action description="Admin. de la experiencia" longdescription="Los miembros con un rol que tenga esta capacidad pueden editar los metadatos de una experiencia." name="experience admin" value="49"/>
+		<action description="Colaborador de la experiencia" longdescription="Los miembros con un rol que tenga esta capacidad pueden incluir scripts en una experiencia." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/es/sidepanel_item_info.xml b/indra/newview/skins/default/xui/es/sidepanel_item_info.xml
index 176247f90e4b4a75093ebb3dd312dc4f199bbab7..94c8011768b6b3523d31f0c8c5f7993104639d3c 100755
--- a/indra/newview/skins/default/xui/es/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/es/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Perfil del elemento">
+	<panel.string name="loading_experience">
+		(cargando)
+	</panel.string>
 	<panel.string name="unknown">
 		(desconocidas)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Obtenido:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Experiencia:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Tú puedes:
diff --git a/indra/newview/skins/default/xui/es/strings.xml b/indra/newview/skins/default/xui/es/strings.xml
index bd339513b39982456617f98e6999d960a908ea0d..cabb5ee67b00877388f17aad1b083013b13266de 100755
--- a/indra/newview/skins/default/xui/es/strings.xml
+++ b/indra/newview/skins/default/xui/es/strings.xml
@@ -440,6 +440,9 @@ Intenta iniciar sesión de nuevo en unos instantes.
 	<string name="TooltipMustSingleDrop">
 		Aquí se puede arrastrar sólo un ítem
 	</string>
+	<string name="TooltipTooManyWearables">
+		No puedes tener una carpeta de prendas que contenga más de [AMOUNT] elementos.  Puedes cambiar este límite en Avanzado &gt; Mostrar las configuraciones del depurador &gt; WearFolderLimit.
+	</string>
 	<string name="TooltipPrice" value="[AMOUNT] L$:"/>
 	<string name="TooltipOutboxDragToWorld">
 		No puedes colocar objetos en tu buzón de salida de comerciante
@@ -1042,9 +1045,7 @@ Intenta iniciar sesión de nuevo en unos instantes.
 	<string name="AgentNameSubst">
 		(Tú)
 	</string>
-	<string name="JoinAnExperience">
-		Únete a una experiencia
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Suprimir alertas al gestionar las listas de acceso a un estado
 	</string>
@@ -1849,6 +1850,9 @@ Intenta iniciar sesión de nuevo en unos instantes.
 	<string name="CompileQueueUnknownFailure">
 		Fallo desconocido en la descarga
 	</string>
+	<string name="CompileNoExperiencePerm">
+		Omitiendo el script [SCRIPT] con la experiencia [EXPERIENCE].
+	</string>
 	<string name="CompileQueueTitle">
 		Recompilando
 	</string>
@@ -5174,6 +5178,87 @@ Inténtalo incluyendo la ruta de acceso al editor entre comillas
 	<string name="UserDictionary">
 		[Usuario]
 	</string>
+	<string name="experience_tools_experience">
+		Experiencia
+	</string>
+	<string name="ExperienceNameNull">
+		(sin experiencia)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(experiencia sin título)
+	</string>
+	<string name="Land-Scope">
+		Activa en el terreno
+	</string>
+	<string name="Grid-Scope">
+		Activa en el Grid
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		PERMITIDO
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		BLOQUEADO
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		COLABORADOR
+	</string>
+	<string name="Admin_Experiences_Tab">
+		ADMIN.
+	</string>
+	<string name="Recent_Experiences_Tab">
+		RECIENTE
+	</string>
+	<string name="Owned_Experiences_Tab">
+		PROPIEDAD
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], máx. [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		hacerte con tus controles
+	</string>
+	<string name="ExperiencePermission3">
+		activar animaciones en tu avatar
+	</string>
+	<string name="ExperiencePermission4">
+		anexar a tu avatar
+	</string>
+	<string name="ExperiencePermission9">
+		seguimiento de la cámara
+	</string>
+	<string name="ExperiencePermission10">
+		controlar tu cámara
+	</string>
+	<string name="ExperiencePermission11">
+		teleportarte
+	</string>
+	<string name="ExperiencePermission12">
+		aceptar automáticamente permisos de experiencias
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		ha realizado una operación desconocida: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Ponerte al mando
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Activar animaciones
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Anexar
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Seguir la cámara
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Controlar la cámara
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Teleportarte
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Otorgar permisos
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		No se están registrando las conversaciones. Para empezar a grabar un registro, elige &quot;Guardar: Solo registro&quot; o &quot;Guardar: Registro y transcripciones&quot; en Preferencias &gt; Chat.
 	</string>
diff --git a/indra/newview/skins/default/xui/es/teleport_strings.xml b/indra/newview/skins/default/xui/es/teleport_strings.xml
index 94975a83f8a1593e89b348c197fa5dcf27be685b..a9b351b39c4036a3825b1ad61689ea511ca3dcea 100755
--- a/indra/newview/skins/default/xui/es/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/es/teleport_strings.xml
@@ -47,6 +47,9 @@ Para repetir el tutorial, visita la isla de bienvenida pública.
 		<message name="MustGetAgeRegion">
 			Solo pueden acceder a esta región los mayores de 18 años.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			No puedes entrar en la región. &apos;[REGION_NAME]&apos; es una región de juegos de habilidad, y debes cumplir determinados criterios para poder entrar en ella. Consulta los detalles en las [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life P+F de juegos de habilidad].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/fr/floater_about_land.xml b/indra/newview/skins/default/xui/fr/floater_about_land.xml
index 25c49b97b55804f6e4c5f2b645957515224f36be..3de282e8d51fdf475daf5add257720a95ad313d7 100755
--- a/indra/newview/skins/default/xui/fr/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/fr/floater_about_land.xml
@@ -312,9 +312,6 @@ Seules les parcelles de grande taille peuvent apparaître dans la recherche.
 			<panel.string name="push_restrict_region_text">
 				Pas de bousculades (les règles de la région priment)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				Les avatars sur les autres parcelles peuvent voir
-			</panel.string>
 			<text name="allow_label">
 				Autoriser les autres résidents à :
 			</text>
@@ -340,22 +337,6 @@ Seules les parcelles de grande taille peuvent apparaître dans la recherche.
 			<check_box label="Sécurisé (pas de dégâts)" name="check safe" tool_tip="Si cette option est cochée, le terrain est sécurisé et il n&apos;y pas de risques de dommages causés par des combats. Si elle est décochée, des dommages causés par les combats peuvent avoir lieu."/>
 			<check_box label="Pas de bousculades" name="PushRestrictCheck" tool_tip="Empêche l&apos;utilisation de scripts causant des bousculades. Cette option est utile pour empêcher les comportements abusifs sur votre terrain."/>
 			<check_box label="Voir le lieu dans la recherche (30 L$/sem.)" name="ShowDirectoryCheck" tool_tip="Afficher la parcelle dans les résultats de recherche"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Toutes catégories" name="item0"/>
-				<combo_box.item label="Appartenant aux Lindens" name="item1"/>
-				<combo_box.item label="Adult" name="item2"/>
-				<combo_box.item label="Art et Culture" name="item3"/>
-				<combo_box.item label="Affaires" name="item4"/>
-				<combo_box.item label="Éducation" name="item5"/>
-				<combo_box.item label="Jeux" name="item6"/>
-				<combo_box.item label="Favoris" name="item7"/>
-				<combo_box.item label="Accueil pour les nouveaux" name="item8"/>
-				<combo_box.item label="Parcs et Nature" name="item9"/>
-				<combo_box.item label="Résidentiel" name="item10"/>
-				<combo_box.item label="Shopping" name="item11"/>
-				<combo_box.item label="Location" name="item13"/>
-				<combo_box.item label="Autre" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Toutes catégories" name="item0"/>
 				<combo_box.item label="Appartenant aux Lindens" name="item1"/>
@@ -456,15 +437,9 @@ musique :
 			<panel.string name="access_estate_defined">
 				(défini par le domaine
 			</panel.string>
-			<panel.string name="allow_public_access">
-				Autoriser l&apos;accès public ([MATURITY]) (Remarque : des lignes d&apos;interdiction seront créées si cette case n&apos;est pas cochée)
-			</panel.string>
 			<panel.string name="estate_override">
 				Au moins une de ces options est définie au niveau du domaine.
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				Accès à cette parcelle
-			</text>
 			<check_box label="Autoriser l&apos;accès public (des lignes d&apos;interdiction seront créées si cette case n&apos;est pas cochée)" name="public_access"/>
 			<text name="Only Allow">
 				Conditions d&apos;accès des résidents :
@@ -496,5 +471,6 @@ musique :
 				<button label="Supprimer" label_selected="Supprimer" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="EXPÉRIENCES" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_experience_search.xml b/indra/newview/skins/default/xui/fr/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b7a175a0666a0806af7fc5c7030d7fb5eaf71265
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="CHOISIR UNE EXPÉRIENCE"/>
diff --git a/indra/newview/skins/default/xui/fr/floater_experienceprofile.xml b/indra/newview/skins/default/xui/fr/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..080c6e4ddef9e4716ba9431866854d0982de8300
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(aucun)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Profil de l&apos;expérience"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Modifier" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Catégorie :
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Endroit :
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Propriétaire :
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Groupe :
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Autoriser" name="allow_btn"/>
+							<button label="Oublier" name="forget_btn"/>
+							<button label="Bloquer" name="block_btn"/>
+							<text name="privileged">
+								Cette expérience est activée pour tous les résidents.
+							</text>
+							<button label="Signaler une infraction" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Nom :"/>
+					<text name="edit_experience_desc_label" value="Description :"/>
+					<button label="Groupe" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Catégorie :
+					</text>
+					<icons_combo_box label="Modéré" name="edit_ContentRatingText" tool_tip="Si vous augmentez la catégorie de contenu pour une expérience, les permissions seront réinitialisées pour tous les résidents ayant autorisé l&apos;expérience.">
+						<icons_combo_box.item label="Adulte" name="Adult" value="42"/>
+						<icons_combo_box.item label="Modéré" name="Mature" value="21"/>
+						<icons_combo_box.item label="Général" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Endroit :
+					</text>
+					<button label="Définir sur l&apos;emplacement actuel" name="location_btn"/>
+					<button label="Effacer l&apos;emplacement" name="clear_btn"/>
+					<check_box label="Activer l&apos;expérience" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Cacher dans les résultats de recherche" name="edit_private_btn"/>
+					<text name="changes" value="Il peut falloir plusieurs minutes pour que l&apos;expérience soit visible dans toutes les régions."/>
+					<button label="Retour" name="cancel_btn"/>
+					<button label="Enregistrer" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_experiences.xml b/indra/newview/skins/default/xui/fr/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d130129a2518edbab01c503b89f40ee443766169
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="EXPÉRIENCES"/>
diff --git a/indra/newview/skins/default/xui/fr/floater_facebook.xml b/indra/newview/skins/default/xui/fr/floater_facebook.xml
index 12a3c9ae614c5df69a6d385e65a1cbb0fd725677..f5097e7a8800614b321a4fda7b6a214ca1f70c01 100644
--- a/indra/newview/skins/default/xui/fr/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/fr/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="PUBLIER SUR FACEBOOK">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="STATUT" name="panel_facebook_status"/>
-			<panel label="PHOTO" name="panel_facebook_photo"/>
-			<panel label="INDIQUER VOTRE PRÉSENCE" name="panel_facebook_place"/>
-			<panel label="AMIS" name="panel_facebook_friends"/>
-			<panel label="COMPTE" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Erreur
-			</text>
-			<text name="connection_loading_text">
-				Chargement...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="STATUT" name="panel_facebook_status"/>
+		<panel label="PHOTO" name="panel_facebook_photo"/>
+		<panel label="INDIQUER VOTRE PRÉSENCE" name="panel_facebook_place"/>
+		<panel label="AMIS" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Erreur
+	</text>
+	<text name="connection_loading_text">
+		Chargement...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/fr/floater_inventory_view_finder.xml
index 7567817f3a8084a8a3d64a08f8a15cf5f1aabe1d..fdc4000746af25e01422f80759391887f1b8d7fd 100755
--- a/indra/newview/skins/default/xui/fr/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/fr/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Habits" name="check_clothing"/>
 	<check_box label="Gestes" name="check_gesture"/>
 	<check_box label="Repères" name="check_landmark"/>
-	<check_box label="Maillages" name="check_mesh"/>
 	<check_box label="Notes" name="check_notecard"/>
+	<check_box label="Maillages" name="check_mesh"/>
 	<check_box label="Objets" name="check_object"/>
 	<check_box label="Scripts" name="check_script"/>
 	<check_box label="Sons" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		Ou il y a...
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Ultérieure à" name="newer"/>
+		<radio_item label="Antérieure à" name="older"/>
+	</radio_group>
 	<spinner label="Heures" name="spin_hours_ago"/>
 	<spinner label="Jours" name="spin_days_ago"/>
 	<button label="Fermer" label_selected="Fermer" name="Close"/>
diff --git a/indra/newview/skins/default/xui/fr/floater_lagmeter.xml b/indra/newview/skins/default/xui/fr/floater_lagmeter.xml
index 39a861d8bd2b5b175d98426efacc4d2512c9f5f8..c93ca5aacbb70c147bd6620e5eb2f13228fd43d1 100644
--- a/indra/newview/skins/default/xui/fr/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/fr/floater_lagmeter.xml
@@ -25,7 +25,7 @@
 		Normal, fenêtre en arrière-plan
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Taux de défilement [CLIENT_FRAME_RATE_CRITICAL]
+		Taux de défilement client ci-dessous [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
 		Taux de défilement entre [CLIENT_FRAME_RATE_CRITICAL] et [CLIENT_FRAME_RATE_WARNING]
@@ -34,16 +34,16 @@
 		Normal
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		Cause possible : limite d&apos;affichage trop élevée
+		Cause possible : la limite d&apos;affichage est trop élevée
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		Cause possible : images en cours de chargement
+		Cause possible : images en cours de chargement
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		Cause possible : trop d&apos;images en mémoire
+		Cause possible : trop d&apos;images en mémoire
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		Cause possible : trop d&apos;objets complexes
+		Cause possible : trop d&apos;objets complexes dans la scène
 	</floater.string>
 	<floater.string name="network_text_msg">
 		Réseau
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		La connexion perd plus de [NETWORK_PACKET_LOSS_CRITICAL] % de paquets
+		La connexion perd plus de [NETWORK_PACKET_LOSS_CRITICAL] % de paquets
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		La connexion perd entre [NETWORK_PACKET_LOSS_WARNING] % et [NETWORK_PACKET_LOSS_CRITICAL] % de paquets
+		La connexion perd entre [NETWORK_PACKET_LOSS_WARNING] % et [NETWORK_PACKET_LOSS_CRITICAL] % de paquets
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		Normal
@@ -70,7 +70,7 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		Connexion ping > [NETWORK_PING_CRITICAL] ms
+		Temps de connexion ping &gt;[NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
 		Connexion ping entre [NETWORK_PING_WARNING] et [NETWORK_PING_CRITICAL] ms
@@ -94,31 +94,31 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		Défilement du simulateur &lt; [SERVER_FRAME_RATE_CRITICAL]
+		Taux de défilement du simulateur au-dessous de [SERVER_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		Défilement simulateur entre [SERVER_FRAME_RATE_CRITICAL] et [SERVER_FRAME_RATE_WARNING]
+		Taux de défilement du simulateur entre [SERVER_FRAME_RATE_CRITICAL] et [SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
 		Normal
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
-		Cause possible : trop d&apos;objets physiques
+		Cause possible : trop d&apos;objets physiques
 	</floater.string>
 	<floater.string name="server_scripts_cause_msg">
-		Cause possible : trop d&apos;objets scriptés
+		Cause possible : trop d&apos;objets scriptés
 	</floater.string>
 	<floater.string name="server_net_cause_msg">
-		Cause possible : trop de trafic réseau
+		Cause possible : trop de trafic réseau
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		Cause possible : trop de personnes en mouvement
+		Cause possible : trop de personnes en mouvement dans la région
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
-		Cause possible : trop de calculs d&apos;images
+		Cause possible : trop de calculs d&apos;images
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		Cause possible : charge simulateur trop lourde
+		Cause possible : charge simulateur trop lourde
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -126,21 +126,21 @@
 	<floater.string name="bigger_label">
 		&lt;&lt;
 	</floater.string>
-	<button name="client_lagmeter" tool_tip="Statut du lag client"/>
+	<button name="client_lagmeter" tool_tip="Statut du lag au niveau du client"/>
 	<text name="client">
 		Client
 	</text>
 	<text name="client_text">
 		Normal
 	</text>
-	<button name="network_lagmeter" tool_tip="Statut du lag réseau"/>
+	<button name="network_lagmeter" tool_tip="Statut du lag au niveau du réseau"/>
 	<text name="network">
 		Réseau
 	</text>
 	<text name="network_text">
 		Normal
 	</text>
-	<button name="server_lagmeter" tool_tip="Statut du lag serveur"/>
+	<button name="server_lagmeter" tool_tip="Statut du lag au niveau du serveur"/>
 	<text name="server">
 		Serveur
 	</text>
diff --git a/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml
index 7647452e910498769ddcf5f29c0d3c12078729c0..d69c311a8ea34fd19586d83828d3c145503af8ec 100755
--- a/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		SCRIPT : [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Supprimer la coche pour supprimer l&apos;expérience actuelle
+	</floater.string>
+	<floater.string name="no_experiences">
+		Vous n&apos;êtes autorisé(e) pour aucune expérience.
+	</floater.string>
+	<floater.string name="add_experiences">
+		Sélectionner pour ajouter une expérience
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Cliquer pour afficher le profil de l&apos;expérience
+	</floater.string>
+	<floater.string name="loading">
+		Chargement...
+	</floater.string>
 	<button label="Réinitialiser" label_selected="Réinitialiser" name="Reset"/>
 	<check_box initial_value="true" label="Exécution en cours" name="running"/>
 	<check_box initial_value="true" label="Mono" name="mono"/>
+	<check_box label="Utiliser la ou les expériences :" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_openobject.xml b/indra/newview/skins/default/xui/fr/floater_openobject.xml
index 4e046ff3f398f3c8a48379870abcb59881100885..ee969169d2888766e96801dabef11b2252d31df2 100755
--- a/indra/newview/skins/default/xui/fr/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/fr/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="Copier vers l&apos;inventaire" label_selected="Copier vers l&apos;inventaire" name="copy_to_inventory_button" width="132"/>
-	<button label="Copier et porter" label_selected="Copier et porter" left="152" name="copy_and_wear_button"/>
+	<button label="Copier dans l&apos;inventaire" label_selected="Copier dans l&apos;inventaire" name="copy_to_inventory_button" width="132"/>
+	<button label="Copier et ajouter à la tenue" label_selected="Copier et ajouter à la tenue" left="152" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_report_abuse.xml b/indra/newview/skins/default/xui/fr/floater_report_abuse.xml
index 153be444e59272d67d6ad4f6736c95a10b3587df..638f0d68ff92a6e1500520e23e3daf5ddae9ff4f 100755
--- a/indra/newview/skins/default/xui/fr/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/fr/floater_report_abuse.xml
@@ -76,7 +76,7 @@
 		<combo_box.item label="Terrain &gt; Empiètement &gt; Objets ou textures" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Terrain &gt; Empiètement &gt; Particules" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Terrain &gt; Empiètement &gt; Arbres/plantes" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Paris ou jeux d&apos;argent" name="Wagering_gambling"/>
+		<combo_box.item label="Violation du règlement pour les jeux" name="Wagering_gambling"/>
 		<combo_box.item label="Autre" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/fr/floater_snapshot.xml b/indra/newview/skins/default/xui/fr/floater_snapshot.xml
index ab2256e356218d8fcecab4438faadb717d06a72f..8eb05dd945149f6bb5bc91c82ac97b2fcc8ce1bc 100755
--- a/indra/newview/skins/default/xui/fr/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/fr/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Échec d&apos;enregistrement sur l&apos;ordinateur.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Options avancées"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[SIZE] Ko
-	</text>
+	<button label="ACTUALISER" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			OPTIONS AVANCÉES
-		</text>
 		<text name="layer_type_label">
 			Capturer :
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Aucun filtre" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] px (largeur) x [HEIGHT] px (hauteur)
+	</text>
+	<text name="file_size_label">
+		[SIZE] Ko
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/floater_top_objects.xml b/indra/newview/skins/default/xui/fr/floater_top_objects.xml
index eb084d91841350610ab3049bec2b34ed9c7925ca..2c411933a88cfe557c97fcc3aff540a3224dfed5 100755
--- a/indra/newview/skins/default/xui/fr/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/fr/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Aucun résultat.
 	</floater.string>
+	<floater.string name="URLs">
+		URL
+	</floater.string>
+	<floater.string name="memory">
+		Mémoire (Ko)
+	</floater.string>
 	<text name="title_text">
 		Chargement...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Propriétaire" name="owner"/>
 		<scroll_list.columns label="Lieu" name="location"/>
 		<scroll_list.columns label="Parcelle" name="parcel"/>
-		<scroll_list.columns label="Temps" name="time"/>
+		<scroll_list.columns label="Date" name="time"/>
 		<scroll_list.columns label="URL" name="URLs"/>
 		<scroll_list.columns label="Mémoire (Ko)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/fr/floater_twitter.xml b/indra/newview/skins/default/xui/fr/floater_twitter.xml
index 9ca2b0d48d39185ba115fd39d4271e348d49faad..608b02dced33e3ca375ebb276ef27e500132a0f8 100644
--- a/indra/newview/skins/default/xui/fr/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/fr/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="COMPOSER" name="panel_twitter_photo"/>
-			<panel label="COMPTE" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Erreur
-			</text>
-			<text name="connection_loading_text">
-				Chargement...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="COMPOSER" name="panel_twitter_photo"/>
+		<panel label="COMPTE" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Erreur
+	</text>
+	<text name="connection_loading_text">
+		Chargement...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/fr/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/fr/menu_inventory_gear_default.xml
index 364872c875d2ec89e04f3e06031767d0474292b2..c21caae0b258e6e887f2146ec22273fbeff1ed6f 100755
--- a/indra/newview/skins/default/xui/fr/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/fr/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Trier en commençant par le plus récent" name="sort_by_recent"/>
 	<menu_item_check label="Toujours trier les dossiers par nom" name="sort_folders_by_name"/>
 	<menu_item_check label="Dossiers système en premier" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Afficher les filtres" name="show_filters"/>
+	<menu_item_call label="Afficher les filtres..." name="show_filters"/>
 	<menu_item_call label="Réinitialiser les filtres" name="reset_filters"/>
 	<menu_item_call label="Fermer tous les dossiers" name="close_folders"/>
 	<menu_item_call label="Vider les objets trouvés" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/fr/menu_url_experience.xml b/indra/newview/skins/default/xui/fr/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..90c0ce6765568c9ffacdb5f71d4b4a5d9e8eff11
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="Copier la SLurl dans le presse-papier" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/fr/menu_viewer.xml b/indra/newview/skins/default/xui/fr/menu_viewer.xml
index 2c30fe07b45b51fb2230ac9386bd1888b7b9c990..9a4d721bc37add783c837d6b27c855d6216e2f8b 100755
--- a/indra/newview/skins/default/xui/fr/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/fr/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Nouvelle fenêtre d&apos;inventaire" name="NewInventoryWindow"/>
 		<menu_item_call label="Endroits..." name="Places"/>
 		<menu_item_call label="Favoris..." name="Picks"/>
+		<menu_item_call label="Expériences..." name="Experiences"/>
 		<menu_item_call label="Contrôles de la caméra..." name="Camera Controls"/>
 		<menu label="Déplacement" name="Movement">
 			<menu_item_call label="M&apos;asseoir" name="Sit Down Here"/>
@@ -48,7 +49,7 @@
 		<menu_item_check label="Amis" name="My Friends"/>
 		<menu_item_check label="Groupes" name="My Groups"/>
 		<menu_item_check label="Personnes près de vous" name="Active Speakers"/>
-		<menu_item_call label="Liste des ignorés" name="Block List"/>
+		<menu_item_check label="Liste des ignorés" name="Block List"/>
 		<menu_item_check label="Ne pas déranger" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Monde" name="World">
diff --git a/indra/newview/skins/default/xui/fr/mime_types_linux.xml b/indra/newview/skins/default/xui/fr/mime_types_linux.xml
index 3a7ff979ee5826ce3ed64052a7c91fc3e1e859e9..93d1406ba5eb9606afd11d653b5df170c96cbf6c 100755
--- a/indra/newview/skins/default/xui/fr/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/fr/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Lire le contenu audio qui se trouve ici
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Aucun contenu
+		</label>
+		<tooltip name="none_tooltip">
+			Aucun média ici
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Flux en temps réel
diff --git a/indra/newview/skins/default/xui/fr/mime_types_mac.xml b/indra/newview/skins/default/xui/fr/mime_types_mac.xml
index 3a7ff979ee5826ce3ed64052a7c91fc3e1e859e9..93d1406ba5eb9606afd11d653b5df170c96cbf6c 100755
--- a/indra/newview/skins/default/xui/fr/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/fr/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Lire le contenu audio qui se trouve ici
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Aucun contenu
+		</label>
+		<tooltip name="none_tooltip">
+			Aucun média ici
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Flux en temps réel
diff --git a/indra/newview/skins/default/xui/fr/notifications.xml b/indra/newview/skins/default/xui/fr/notifications.xml
index 2325c8e34d421b27c619e233578bcf6e949d9710..28689a93d69f2cd36f54cec004a0b5234598905c 100755
--- a/indra/newview/skins/default/xui/fr/notifications.xml
+++ b/indra/newview/skins/default/xui/fr/notifications.xml
@@ -73,6 +73,10 @@ Détails de l&apos;erreur : La notification, appelée &apos;[_NAME]&apos;, est i
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Annuler" yestext="Oui"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Une erreur est survenue lors de la mise à jour de [APP_NAME].  Veuillez [http://get.secondlife.com télécharger la dernière version] du client.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -574,6 +578,9 @@ La qualité des graphiques peut être augmentée à la section Préférences &gt
 	<notification name="RegionNoTerraforming">
 		Le terraformage est interdit dans la région [REGION].
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		Vous n&apos;êtes pas autorisé(e) à terraformer la parcelle [PARCEL].
+	</notification>
 	<notification name="CannotCopyWarning">
 		Vous n&apos;êtes pas autorisé à copier les articles suivants :
 [ITEMS].
@@ -1824,6 +1831,30 @@ Cette action modifiera des milliers de régions et sera difficile à digérer po
 		Supprimer le gérant de domaine pour ce domaine uniquement ou pour [ALL_ESTATES] ?
 		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
 	</notification>
+	<notification label="Sélectionner un domaine" name="EstateAllowedExperienceAdd">
+		Ajouter à la liste des expériences autorisées uniquement pour ce domaine ou pour [ALL_ESTATES] ?
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
+	<notification label="Sélectionner un domaine" name="EstateAllowedExperienceRemove">
+		Supprimer de la liste des expériences autorisées uniquement pour ce domaine ou pour [ALL_ESTATES] ?
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
+	<notification label="Sélectionner un domaine" name="EstateBlockedExperienceAdd">
+		Ajouter à la liste des expériences bloquées uniquement pour ce domaine ou pour [ALL_ESTATES]
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
+	<notification label="Sélectionner un domaine" name="EstateBlockedExperienceRemove">
+		Supprimer de la liste des expériences bloquées uniquement pour ce domaine ou pour [ALL_ESTATES] ?
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
+	<notification label="Sélectionner un domaine" name="EstateTrustedExperienceAdd">
+		Ajouter à la liste des clés uniquement pour ce domaine ou pour [ALL_ESTATES] ?
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
+	<notification label="Sélectionner un domaine" name="EstateTrustedExperienceRemove">
+		Supprimer de la liste des clés uniquement pour ce domaine ou pour [ALL_ESTATES] ?
+		<usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/>
+	</notification>
 	<notification label="Confirmer" name="EstateKickUser">
 		Éjecter [EVIL_USER] de ce domaine ?
 		<usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/>
@@ -1898,6 +1929,10 @@ Cette action modifiera des milliers de régions et sera difficile à digérer po
 		Nous rencontrons des difficultés techniques au niveau de votre téléportation car vos préférences ne sont pas synchronisées avec le serveur.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Impossible de pénétrer dans la région. « [REGION_NAME] » est une région de jeux d&apos;adresse et vous devez satisfaire à certains critères pour y pénétrer. Pour en savoir plus, consultez la page [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life FAQ sur les jeux d&apos;adresse].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		Aucune autre notification vous informant que vous allez visiter une région au contenu [RATING] ne vous sera envoyée. Vous pouvez modifier vos préférences de contenu à l&apos;avenir en accédant à Moi &gt; Préférences &gt; Général, à partir de la barre de menus.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2205,6 +2240,9 @@ Voulez-vous le remplacer par l&apos;objet sélectionné ?
 			<button ignore="Ne jamais remplacer" name="No" text="Annuler"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		Vous ne pouvez pas porter un dossier contenant plus de [AMOUNT] articles.  Vous pouvez modifier cette limite dans Avancé &gt; Afficher les paramètres de débogage &gt; WearFolderLimit.
+	</notification>
 	<notification label="Avertissement de mode Ne pas déranger" name="DoNotDisturbModePay">
 		Vous avez activé Ne pas déranger. Vous ne recevrez aucun article proposé en échange de ce paiement.
 
@@ -2814,7 +2852,7 @@ Si vous restez dans cette région, vous serez déconnecté(e).
 
 [MESSAGE]
 
-Venant de l&apos;objet : &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, propriétaire : [NAME] ?
+Venant de l&apos;objet : &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, propriétaire : [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Charger"/>
 			<button name="Cancel" text="Annuler"/>
@@ -2840,6 +2878,72 @@ Acceptez-vous ?
 			<button name="Mute" text="Interdire"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Impossible d&apos;acquérir une nouvelle expérience :
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Une modification du groupe de l&apos;expérience a été ignorée, car le propriétaire n&apos;est pas membre du groupe sélectionné.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		Le champ non modifiable « [field] » a été ignoré lors de la mise à jour du profil de l&apos;expérience.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Modifications du champ « [field] » ignorées, car il ne peut être défini que par le propriétaire de l&apos;expérience.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Vous ne pouvez pas définir une catégorie de contenu plus élevée pour une expérience que pour son propriétaire.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Les termes suivants ont empêché la mise à jour du nom et/ou de la description du profil de l&apos;expérience : [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Vous avez été téléporté(e) hors de la région [region_name], car vous avez supprimé l&apos;expérience secondlife:///app/experience/[public_id]/profile et n&apos;êtes plus autorisé(e) dans cette région.
+		<form name="form">
+			<ignore name="ignore" text="Éjecté(e) de la région pour cause de suppression d&apos;une expérience"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		Vous avez été autorisé(e) à pénétrer dans la région [region_name] en participant à l&apos;expérience avec clé secondlife:///app/experience/[public_id]/profile. Si vous supprimez cette expérience, vous risquez d&apos;être éjecté(e) de cette région.
+		<form name="form">
+			<ignore name="ignore" text="Autorisé(e) dans une région par une expérience"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		Vous n&apos;avez pas accès à cette destination. Vous pouvez être autorisé(e) à pénétrer dans la région en acceptant une expérience ci-dessous :
+
+[EXPERIENCE_LIST]
+
+Il est possible que d&apos;autres expériences avec clé soient disponibles.
+	</notification>
+	<notification name="ExperienceEvent">
+		Un objet a été autorisé à [EventType] par l&apos;expérience secondlife:///app/experience/[public_id]/profile.
+    Propriétaire : secondlife:///app/agent/[OwnerID]/inspect
+    Nom de l&apos;objet : [ObjectName]
+    Nom de la parcelle : [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		Une pièce jointe a été autorisée à [EventType] par l&apos;expérience secondlife:///app/experience/[public_id]/profile.
+    Propriétaire : secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		« &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt; », un objet appartenant à « [NAME] », demande votre participation à l&apos;expérience [GRID_WIDE] :
+
+[EXPERIENCE]
+
+Une fois l&apos;autorisation accordée, vous ne verrez plus ce message pour cette expérience, sauf si elle est révoquée dans le profil de l&apos;expérience.
+
+Les scripts associés à cette expérience pourront effectuer les actions suivantes dans les régions dans lesquelles l&apos;expérience est active : 
+
+[QUESTIONS]Acceptez-vous ?
+		<form name="form">
+			<button name="BlockExperience" text="Bloquer l&apos;expérience"/>
+			<button name="Mute" text="Ignorer l&apos;objet"/>
+			<button name="Yes" text="Oui"/>
+			<button name="No" text="Non"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Avertissement : l&apos;objet &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt; souhaite un accès total à votre compte en Linden dollars. Si vous autorisez cet accès, il pourra supprimer des fonds de votre compte à tout moment ou le vider entièrement de façon continue sans avis préalable.
   
@@ -3158,6 +3262,10 @@ Texture figée de [RESOLUTION] chargée pour [BODYREGION] au bout de [TIME] seco
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		([EXISTENCE] secondes d&apos;existence)
 Texture figée de [RESOLUTION] mise à jour localement pour [BODYREGION] au bout de [TIME] secondes.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Chargement de la texture impossible.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Impossible d&apos;afficher un aperçu de cette texture car il s&apos;agit d&apos;une texture sans copie et/ou transfert.
diff --git a/indra/newview/skins/default/xui/fr/panel_experience_info.xml b/indra/newview/skins/default/xui/fr/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e830ce1ba6f924814d357922fd4d7faa1dd4678f
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Profil de l&apos;expérience"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Endroit :
+					</text>
+					<text name="LocationTextText">
+						quelque part
+					</text>
+					<button label="Téléporter" name="teleport_btn"/>
+					<button label="Carte" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Boutique de la Place du marché :
+					</text>
+					<text name="LocationTextText">
+						quelque part
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Catégorie :
+					</text>
+					<text name="ContentRatingText">
+						Adulte
+					</text>
+					<text name="Owner">
+						Propriétaire :
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Modifier" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/fr/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d1c448b4255814183bb6815e338fa9c64760f1f2
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		en cours de chargement...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Expériences autorisées :
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Expériences bloquées :
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Expériences avec clé :
+	</panel.string>
+	<panel.string name="no_results">
+		(vide)
+	</panel.string>
+	<text name="text_name">
+		Liste des expériences
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Nom" name="experience_name"/>
+	</scroll_list>
+	<button label="Ajouter..." name="btn_add"/>
+	<button label="Supprimer" name="btn_remove"/>
+	<button label="Profil..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_experience_list_item.xml b/indra/newview/skins/default/xui/fr/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c28f85f5ebe52ae2fc921f13503d0a97592350a1
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Dummy Name
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_experience_log.xml b/indra/newview/skins/default/xui/fr/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cc9eb3dbe3401696efec89194126f43b5824fca6
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Aucun événement."/>
+	<string name="loading" value="en cours de chargement..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Durée" name="time"/>
+				<columns label="Événement" name="event"/>
+				<columns label="Expérience" name="experience_name"/>
+				<columns label="Objet" name="object_name"/>
+			</scroll_list>
+			<button label="Prévenir" name="btn_notify"/>
+			<button label="Profil" name="btn_profile_xp"/>
+			<button label="Signaler" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Prévenir de tous les événements   jours" name="notify_all"/>
+			<button label="Effacer" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_experience_search.xml b/indra/newview/skins/default/xui/fr/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..13495057d40c1ba163a768d641ed56d1c7bdb705
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		&apos;[TEXT]&apos; introuvable
+	</string>
+	<string name="no_results">
+		Aucun résultat
+	</string>
+	<string name="searching">
+		Recherche...
+	</string>
+	<string name="loading">
+		Chargement...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="OK" name="find"/>
+		<icons_combo_box label="Modéré" name="maturity">
+			<icons_combo_box.item label="Adulte" name="Adult" value="42"/>
+			<icons_combo_box.item label="Modéré" name="Mature" value="21"/>
+			<icons_combo_box.item label="Général" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Nom" name="experience_name"/>
+			<columns label="Propriétaire" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Annuler" name="cancel_btn"/>
+		<button label="Voir le profil" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_experiences.xml b/indra/newview/skins/default/xui/fr/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f95a6645318d789bf27faa8a831fcef41236e26b
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Chargement des expériences..."/>
+	<string name="no_experiences" value="Aucune expérience."/>
+	<string name="acquire" value="Acquérir une expérience"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_facebook_friends.xml b/indra/newview/skins/default/xui/fr/panel_facebook_friends.xml
index 3ac0ce229cb7d13ae338ae3e858171c3f1ad4321..319737a2afb6312b4389d3d5d908cfb3400dd60f 100644
--- a/indra/newview/skins/default/xui/fr/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/fr/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Vous n&apos;avez actuellement aucun ami Facebook qui est également résident de Second Life. Invitez vos amis Facebook à rejoindre Second Life !"/>
-	<string name="facebook_friends_no_connected" value="Vous n&apos;êtes pas connecté(e) à Facebook. Allez à l&apos;onglet Compte pour vous connecter et activer cette fonctionnalité."/>
+	<string name="facebook_friends_no_connected" value="Vous n&apos;êtes pas connecté(e) à Facebook. Allez à l&apos;onglet Statut pour vous connecter et activer cette fonctionnalité."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="Amis SL"/>
 		<accordion_tab name="tab_suggested_friends" title="Ajouter ces personnes en tant qu&apos;amis SL"/>
diff --git a/indra/newview/skins/default/xui/fr/panel_facebook_photo.xml b/indra/newview/skins/default/xui/fr/panel_facebook_photo.xml
index c5b09c4bcc26b3196da6d843ce7111833a58df82..3236f35b5586a9219f9f4fb234b7f6017532ee7f 100644
--- a/indra/newview/skins/default/xui/fr/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/fr/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
-				<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
-				<combo_box.item label="640 x 480" name="640x480"/>
-				<combo_box.item label="800 x 600" name="800x600"/>
-				<combo_box.item label="1 024 x 768" name="1024x768"/>
-				<combo_box.item label="1 200 x 630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
-				<combo_box.item label="Aucun filtre" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
-			<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
-			<text name="caption_label">
-				Commentaire (facultatif) :
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Publier" name="post_photo_btn"/>
-			<button label="Annuler" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
+		<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
+		<combo_box.item label="640 x 480" name="640x480"/>
+		<combo_box.item label="800 x 600" name="800x600"/>
+		<combo_box.item label="1 024 x 768" name="1024x768"/>
+		<combo_box.item label="1 200 x 630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
+		<combo_box.item label="Aucun filtre" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
+	<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
+	<text name="caption_label">
+		Commentaire (facultatif) :
+	</text>
+	<button label="Publier" name="post_photo_btn"/>
+	<button label="Annuler" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_facebook_place.xml b/indra/newview/skins/default/xui/fr/panel_facebook_place.xml
index 0eaea66ad45ae5c9cdd62d1b169bfadc98e072e0..f8e597450b7f59946119d4f22fd02beccbf76e4d 100644
--- a/indra/newview/skins/default/xui/fr/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/fr/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Dites quelque chose au sujet du lieu où vous vous trouvez :
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Publier" name="post_place_btn"/>
-			<button label="Annuler" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Dites quelque chose au sujet du lieu où vous vous trouvez :
+	</text>
+	<check_box initial_value="false" label="Inclure la vue aérienne du lieu" name="add_place_view_cb"/>
+	<button label="Publier" name="post_place_btn"/>
+	<button label="Annuler" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_facebook_status.xml b/indra/newview/skins/default/xui/fr/panel_facebook_status.xml
index 260378978bf643ff571b7e6b2f8b446f7b352ce7..9afa42d2aa1a38c642a2fdf8c39abefaf809750a 100644
--- a/indra/newview/skins/default/xui/fr/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/fr/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				À quoi pensez-vous ?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Publier" name="post_status_btn"/>
-			<button label="Annuler" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Vous êtes connecté(e) à Facebook en tant que :"/>
+	<string name="facebook_disconnected" value="Pas connecté(e) à Facebook"/>
+	<text name="account_caption_label">
+		Pas connecté(e) à Facebook.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Connexion..." name="connect_btn"/>
+		<button label="Déconnexion" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Apprenez comment publier sur Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		À quoi pensez-vous ?
+	</text>
+	<button label="Publier" name="post_status_btn"/>
+	<button label="Annuler" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_flickr_photo.xml b/indra/newview/skins/default/xui/fr/panel_flickr_photo.xml
index 63738a773ac54b727af3fbe1d26395464bd9927d..7b3a1767039362b7c0efe4c4a9d3433a8746c4be 100644
--- a/indra/newview/skins/default/xui/fr/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/fr/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
-				<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
-				<combo_box.item label="640 x 480" name="640x480"/>
-				<combo_box.item label="800 x 600" name="800x600"/>
-				<combo_box.item label="1 024 x 768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
-				<combo_box.item label="Aucun filtre" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
-			<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
-			<text name="title_label">
-				Titre :
-			</text>
-			<text name="description_label">
-				Description :
-			</text>
-			<check_box initial_value="true" label="Inclure l&apos;emplacement SL à la fin de la description" name="add_location_cb"/>
-			<text name="tags_label">
-				Balises :
-			</text>
-			<text name="tags_help_label">
-				Séparer les balises par des espaces
+	<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
+		<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
+		<combo_box.item label="640 x 480" name="640x480"/>
+		<combo_box.item label="800 x 600" name="800x600"/>
+		<combo_box.item label="1 024 x 768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
+		<combo_box.item label="Aucun filtre" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
+	<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
+	<text name="title_label">
+		Titre :
+	</text>
+	<text name="description_label">
+		Description :
+	</text>
+	<check_box initial_value="true" label="Inclure l&apos;emplacement SL à la fin de la description" name="add_location_cb"/>
+	<text name="tags_label">
+		Balises :
+	</text>
+	<text name="tags_help_label">
+		Séparer les balises par des espaces
 Utiliser &quot;&quot; pour les balises contenant plusieurs mots
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Catégorie de contenu Flickr">
-				<combo_box.item label="Catégorie de contenu Flickr sûr" name="SafeRating"/>
-				<combo_box.item label="Catégorie de contenu Flickr modéré" name="ModerateRating"/>
-				<combo_box.item label="Catégorie de contenu Flickr réservé aux adultes" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Charger" name="post_photo_btn"/>
-			<button label="Annuler" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Catégorie de contenu Flickr">
+		<combo_box.item label="Catégorie de contenu Flickr sûr" name="SafeRating"/>
+		<combo_box.item label="Catégorie de contenu Flickr modéré" name="ModerateRating"/>
+		<combo_box.item label="Catégorie de contenu Flickr réservé aux adultes" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Charger" name="post_photo_btn"/>
+	<button label="Annuler" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/fr/panel_group_info_sidetray.xml
index 7c3b852de128ec8a3c7fa08fa5d7660a35e6a616..bea114af6c258f66152a6feb9d1bea90d7db0aec 100755
--- a/indra/newview/skins/default/xui/fr/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/fr/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Rôles et membres"/>
 				<accordion_tab name="group_notices_tab" title="Notices"/>
 				<accordion_tab name="group_land_tab" title="Terrain/Actifs"/>
+				<accordion_tab name="group_experiences_tab" title="Expériences"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/fr/panel_postcard_settings.xml b/indra/newview/skins/default/xui/fr/panel_postcard_settings.xml
index 945a5e02721e736d04adfd9001c0c5f683c93673..eebf84c0d00a766ec74988ee844d6bf8d1eac133 100755
--- a/indra/newview/skins/default/xui/fr/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/fr/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1 024 x 768" name="1024x768"/>
 		<combo_box.item label="Personnalisée" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="Larg." name="postcard_snapshot_width"/>
-			<spinner label="Haut." name="postcard_snapshot_height"/>
-			<check_box label="Conserver les proportions" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Qualité image" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largeur x Hauteur" name="postcard_snapshot_width"/>
+	<check_box label="Conserver les proportions" name="postcard_keep_aspect_check"/>
+	<slider label="Qualité :" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml b/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml
index 50f4a49bd0399f20d4dd8b14961a82394e9a7b21..e2f9b9567cdd2f008124410ee0ffd056fda5e3ff 100755
--- a/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web :
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Utiliser mon navigateur (IE, Firefox, Safari)" name="external" tool_tip="Utiliser le navigateur web système par défaut pour l&apos;aide, les liens etc. Non recommandé en mode plein écran." value="true"/>
-		<radio_item label="Utiliser le navigateur intégré" name="internal" tool_tip="Utilisez le navigateur intégré pour obtenir de l&apos;aide, ouvrir des liens, etc. Ce navigateur s&apos;ouvre dans [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Utiliser mon navigateur (Chrome, Firefox, IE) pour tous les liens" name="internal" tool_tip="Utiliser le navigateur web système par défaut pour l&apos;aide, les liens, etc. Non recommandé en mode plein écran." value="0"/>
+		<radio_item label="Utiliser le navigateur intégré pour les liens Second Life uniquement" name="external" tool_tip="Utilisez le navigateur web système par défaut pour l&apos;aide, les liens Web, etc. Le navigateur intégré sera uniquement utilisé pour les liens LindenLab/SecondLife." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Activer les plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Accepter les cookies" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/fr/panel_region_experiences.xml b/indra/newview/skins/default/xui/fr/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..be9c99b0092199d13cfa5ba64a9ac5159bd1f8be
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Expériences" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Toute expérience peut être une expérience avec clé.
+
+Les expériences avec clé peuvent s&apos;exécuter dans ce domaine.
+
+En outre, si le domaine n&apos;autorise pas l&apos;accès public, les résidents participant à une expérience avec clé peuvent pénétrer dans ce domaine et y rester tant qu&apos;ils participent à ladite expérience.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Seules les expériences à l&apos;échelle des terrains peuvent être autorisées.
+
+Les expériences autorisées peuvent s&apos;exécuter dans ce domaine.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Seules les expériences à l&apos;échelle de la grille peuvent être bloquées.
+      
+Les expériences bloquées ne peuvent pas s&apos;exécuter dans ce domaine.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Les modifications des paramètres de cet onglet affecteront toutes les régions du domaine.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Seules les expériences à l&apos;échelle des terrains peuvent être autorisées.
+      
+Les expériences autorisées peuvent s&apos;exécuter sur cette parcelle si elles ne sont pas bloquées par le domaine.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Toute expérience de résident peut être bloquée.
+      
+Les expériences bloquées ne peuvent pas s&apos;exécuter dans cette parcelle.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_script_experience.xml b/indra/newview/skins/default/xui/fr/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..dde84ed8458d50e2dec69598cd449c656d47bfd2
--- /dev/null
+++ b/indra/newview/skins/default/xui/fr/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="EXPÉRIENCE">
+	<button label="Expérience" name="Expand Experience"/>
+	<check_box label="Utilise la ou les expériences :" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Choisir une expérience..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Vous ne contribuez à aucune expérience.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/fr/panel_snapshot_inventory.xml
index 472c4a5e8f8dc7b5d1e1bea51e5d2c7bae00dd47..a560ff8d5ebbecc3b948b75b99cbc299a035a031 100755
--- a/indra/newview/skins/default/xui/fr/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/fr/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Enregistrer dans l&apos;inventaire
+		Inventaire
 	</text>
 	<text name="hint_lbl">
 		L&apos;enregistrement d&apos;une image dans l&apos;inventaire coûte [UPLOAD_COST] L$. Pour enregistrer votre image sous forme de texture, sélectionnez un format carré.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Grande (512 x 512)" name="Large(512x512)"/>
 		<combo_box.item label="Personnalisée" name="Custom"/>
 	</combo_box>
-	<spinner label="Largeur" name="inventory_snapshot_width"/>
-	<spinner label="Hauteur" name="inventory_snapshot_height"/>
+	<spinner label="Largeur x Hauteur" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Conserver les proportions" name="inventory_keep_aspect_check"/>
 	<button label="Annuler" name="cancel_btn"/>
 	<button label="Enregistrer" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/fr/panel_snapshot_local.xml b/indra/newview/skins/default/xui/fr/panel_snapshot_local.xml
index 97dc3e7e2bf22102586a9ef6f7d7447c4617f20e..8d361f06053233776b8017c5a7aaa9581a402876 100755
--- a/indra/newview/skins/default/xui/fr/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/fr/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Enregistrer sur l&apos;ordinateur
+		Disque
 	</text>
 	<combo_box label="Résolution" name="local_size_combo">
 		<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1 600 x 1 200" name="1600x1200"/>
 		<combo_box.item label="Personnalisée" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="Largeur" name="local_snapshot_width"/>
-			<spinner label="Hauteur" name="local_snapshot_height"/>
-			<check_box label="Conserver les proportions" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Format" name="local_format_combo">
-				<combo_box.item label="PNG (sans perte)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (sans perte)" name="BMP"/>
-			</combo_box>
-			<slider label="Qualité image" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largeur x Hauteur" name="local_snapshot_width"/>
+	<check_box label="Conserver les proportions" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Format :
+	</text>
+	<combo_box label="Format" name="local_format_combo">
+		<combo_box.item label="PNG (sans perte)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (sans perte)" name="BMP"/>
+	</combo_box>
+	<slider label="Qualité :" name="image_quality_slider"/>
 	<button label="Annuler" name="cancel_btn"/>
 	<flyout_button label="Enregistrer" name="save_btn" tool_tip="Enregistrer l&apos;image dans un fichier.">
 		<flyout_button.item label="Enregistrer" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/fr/panel_snapshot_options.xml b/indra/newview/skins/default/xui/fr/panel_snapshot_options.xml
index bb858d5d239ad8e1559c69db73ba31abea2864e1..eb724f4bd1db78cbeaa11821db1947db6c5c7747 100755
--- a/indra/newview/skins/default/xui/fr/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/fr/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Publier sur le flux de mon profil" name="save_to_profile_btn"/>
-	<button label="Envoyer par e-mail" name="save_to_email_btn"/>
+	<button label="Enreg. sur le disque" name="save_to_computer_btn"/>
 	<button label="Enreg. dans l&apos;inventaire ([AMOUNT] L$)" name="save_to_inventory_btn"/>
-	<button label="Enreg. sur l&apos;ordinateur" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Envoyer à :  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="Charger dans le profil" name="save_to_profile_btn"/>
+	<button label="Charger sur Facebook" name="send_to_facebook_btn"/>
+	<button label="Charger sur Twitter" name="send_to_twitter_btn"/>
+	<button label="Charger sur Flickr" name="send_to_flickr_btn"/>
+	<button label="Envoyer par e-mail" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/fr/panel_snapshot_postcard.xml
index 82a4815144e6cb73af7387c3e59e32946cf4b9cb..067fa091d871c99a71d145c09cc1d0ddafd6d633 100755
--- a/indra/newview/skins/default/xui/fr/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/fr/panel_snapshot_postcard.xml
@@ -12,6 +12,10 @@
 	<text name="title">
 		E-mail
 	</text>
-	<button label="Message" name="message_btn"/>
-	<button label="Paramètres" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Message" name="panel_postcard_message"/>
+		<panel label="Paramètres" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Annuler" name="cancel_btn"/>
+	<button label="Envoyer" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/fr/panel_snapshot_profile.xml
index 427ffe211316b8a86f204ac39d677386416858b3..b87d62bedd185683f09480c7612aeae8a163bff0 100755
--- a/indra/newview/skins/default/xui/fr/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/fr/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Publier sur le flux de mon profil
+		Profil
 	</text>
 	<combo_box label="Résolution" name="profile_size_combo">
 		<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1 024 x 768" name="1024x768"/>
 		<combo_box.item label="Personnalisée" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="Largeur" name="profile_snapshot_width"/>
-			<spinner label="Hauteur" name="profile_snapshot_height"/>
-			<check_box label="Conserver les proportions" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Légende :
-			</text>
-			<check_box initial_value="true" label="Inclure l&apos;endroit" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largeur x Hauteur" name="profile_snapshot_width"/>
+	<check_box label="Conserver les proportions" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Légende :
+	</text>
+	<check_box initial_value="true" label="Inclure l&apos;endroit" name="add_location_cb"/>
 	<button label="Annuler" name="cancel_btn"/>
 	<button label="Publier" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/panel_twitter_photo.xml b/indra/newview/skins/default/xui/fr/panel_twitter_photo.xml
index 2d3888f4c28f3b2eb2e893a2210800986243c3f8..3e23e5d577d88f3963d4cb85893d0cf0f86ba2ae 100644
--- a/indra/newview/skins/default/xui/fr/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/fr/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Que se passe-t-il ?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="Inclure l&apos;emplacement SL" name="add_location_cb"/>
-			<check_box initial_value="true" label="Inclure une photo" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
-				<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
-				<combo_box.item label="640 x 480" name="640x480"/>
-				<combo_box.item label="800 x 600" name="800x600"/>
-				<combo_box.item label="1 024 x 768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
-				<combo_box.item label="Aucun filtre" name="NoFilter"/>
-			</combo_box>
-			<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
-			<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Envoyer tweet" name="post_photo_btn"/>
-			<button label="Annuler" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Que se passe-t-il ?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="Inclure l&apos;emplacement SL" name="add_location_cb"/>
+	<check_box initial_value="true" label="Inclure une photo" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Résolution d’image">
+		<combo_box.item label="Fenêtre actuelle" name="CurrentWindow"/>
+		<combo_box.item label="640 x 480" name="640x480"/>
+		<combo_box.item label="800 x 600" name="800x600"/>
+		<combo_box.item label="1 024 x 768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
+		<combo_box.item label="Aucun filtre" name="NoFilter"/>
+	</combo_box>
+	<button label="Actualiser" name="new_snapshot_btn" tool_tip="Cliquer pour actualiser"/>
+	<button label="Aperçu" name="big_preview_btn" tool_tip="Cliquer pour activer/désactiver l&apos;aperçu"/>
+	<button label="Envoyer tweet" name="post_photo_btn"/>
+	<button label="Annuler" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/role_actions.xml b/indra/newview/skins/default/xui/fr/role_actions.xml
index 25920da4c3de2d8ee080a59b5e7236d7aac3ef75..966e3440e568bcab068def974651f590288660a9 100755
--- a/indra/newview/skins/default/xui/fr/role_actions.xml
+++ b/indra/newview/skins/default/xui/fr/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Participer au chat vocal" longdescription="Participez au chat vocal du groupe. Remarque : vous devez au préalable avoir le pouvoir de participer aux chats." name="join voice chat" value="27"/>
 		<action description="Modérer les chats" longdescription="Contrôlez l&apos;accès et la participation aux chats de groupe écrits et vocaux." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Ces pouvoirs incluent la possibilité de modifier les expériences appartenant à ce groupe." name="experience_tools_experience">
+		<action description="Administrateur des expériences" longdescription="Les membres dotés d&apos;un rôle avec ce pouvoir peuvent modifier les métadonnées pour cette expérience." name="experience admin" value="49"/>
+		<action description="Contributeur aux expériences" longdescription="Les membres dotés d&apos;un rôle avec ce pouvoir peuvent contribuer des scripts pour une expérience." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/fr/sidepanel_item_info.xml b/indra/newview/skins/default/xui/fr/sidepanel_item_info.xml
index e7fc7859c98e5e745913fcdceccc25d8e838cdf2..502dc919b19ebd045b97b93dd16ae5e3c2b84225 100755
--- a/indra/newview/skins/default/xui/fr/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/fr/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Profil de l&apos;article">
+	<panel.string name="loading_experience">
+		(chargement)
+	</panel.string>
 	<panel.string name="unknown">
 		(inconnu)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Acquis le :
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Expérience :
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Vous pouvez :
diff --git a/indra/newview/skins/default/xui/fr/strings.xml b/indra/newview/skins/default/xui/fr/strings.xml
index b3ce171633f061c355b28af0dfb4a916716b69ce..8df13b2661625b27b99af3f553a464a82f88dbcd 100755
--- a/indra/newview/skins/default/xui/fr/strings.xml
+++ b/indra/newview/skins/default/xui/fr/strings.xml
@@ -449,6 +449,9 @@ Veuillez réessayer de vous connecter dans une minute.
 	<string name="TooltipMustSingleDrop">
 		Impossible de faire glisser plus d&apos;un objet ici
 	</string>
+	<string name="TooltipTooManyWearables">
+		Vous ne pouvez pas porter un dossier contenant plus de [AMOUNT] articles.  Vous pouvez modifier cette limite dans Avancé &gt; Afficher les paramètres de débogage &gt; WearFolderLimit.
+	</string>
 	<string name="TooltipPrice" value="[AMOUNT] L$ :"/>
 	<string name="TooltipOutboxDragToWorld">
 		Impossible de rezzer des articles dans la boîte d&apos;envoi vendeur
@@ -1060,9 +1063,7 @@ Veuillez réessayer de vous connecter dans une minute.
 	<string name="AgentNameSubst">
 		(Vous)
 	</string>
-	<string name="JoinAnExperience">
-		Rejoindre une expérience
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Supprimer les alertes lors de la gestion des listes d&apos;accès aux domaines
 	</string>
@@ -1873,6 +1874,9 @@ Veuillez réessayer de vous connecter dans une minute.
 	<string name="CompileQueueUnknownFailure">
 		Échec du téléchargement, erreur inconnue
 	</string>
+	<string name="CompileNoExperiencePerm">
+		En train d&apos;ignorer le script [SCRIPT] avec l&apos;expérience [EXPERIENCE].
+	</string>
 	<string name="CompileQueueTitle">
 		Recompilation - progrès
 	</string>
@@ -5264,6 +5268,87 @@ Essayez avec le chemin d&apos;accès à l&apos;éditeur entre guillemets doubles
 	<string name="UserDictionary">
 		[User]
 	</string>
+	<string name="experience_tools_experience">
+		Expérience
+	</string>
+	<string name="ExperienceNameNull">
+		(aucune expérience)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(expérience sans titre)
+	</string>
+	<string name="Land-Scope">
+		À l&apos;échelle des terrains
+	</string>
+	<string name="Grid-Scope">
+		À l&apos;échelle de la grille
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		AUTORISÉE
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		BLOQUÉE
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		CONTRIBUTEUR
+	</string>
+	<string name="Admin_Experiences_Tab">
+		ADMIN
+	</string>
+	<string name="Recent_Experiences_Tab">
+		RÉCENTE
+	</string>
+	<string name="Owned_Experiences_Tab">
+		AVEC PROPRIÉTAIRE
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], [MAXEXPERIENCES] max.)
+	</string>
+	<string name="ExperiencePermission1">
+		assumer vos contrôles
+	</string>
+	<string name="ExperiencePermission3">
+		déclencher des animations pour votre avatar
+	</string>
+	<string name="ExperiencePermission4">
+		attacher à votre avatar
+	</string>
+	<string name="ExperiencePermission9">
+		suivre votre caméra
+	</string>
+	<string name="ExperiencePermission10">
+		contrôler votre caméra
+	</string>
+	<string name="ExperiencePermission11">
+		vous téléporter
+	</string>
+	<string name="ExperiencePermission12">
+		accepter automatiquement les permissions d&apos;expérience
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		a effectué une opération inconnue : [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Prendre le contrôle
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Déclencher des animations
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Attacher
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Suivre la caméra
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Contrôler la caméra
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Téléporter
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Permission
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		Les conversations ne sont pas archivées. Pour commencer à tenir un journal, choisissez Enregistrer : Journal seul ou Enregistrer : Journal et transcriptions sous Préférences &gt; Chat.
 	</string>
diff --git a/indra/newview/skins/default/xui/fr/teleport_strings.xml b/indra/newview/skins/default/xui/fr/teleport_strings.xml
index 6065fa29664f79590b4ebb06ec36b81dd3c97ffd..f4499d46f8c3261b422b7b67936e62db57b40099 100755
--- a/indra/newview/skins/default/xui/fr/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/fr/teleport_strings.xml
@@ -48,6 +48,9 @@ Pour recommencer le didacticiel, accédez à Welcome Island Public.
 		<message name="MustGetAgeRegion">
 			Pour accéder à cette région, vous devez avoir au moins 18 ans.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Impossible de pénétrer dans la région. « [REGION_NAME] » est une région de jeux d&apos;adresse et vous devez satisfaire à certains critères pour y pénétrer. Pour en savoir plus, consultez la page [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life FAQ sur les jeux d&apos;adresse].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/it/floater_about_land.xml b/indra/newview/skins/default/xui/it/floater_about_land.xml
index fe3e59b0bd3eb9ccd14f4f2b19f8d052f8863155..0c0d05308b59fbbe6f1afdfaf82e73eea26073b5 100755
--- a/indra/newview/skins/default/xui/it/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/it/floater_about_land.xml
@@ -313,9 +313,6 @@ Solamente terreni più grandi possono essere abilitati nella ricerca.
 			<panel.string name="push_restrict_region_text">
 				Nessuna spinta (Impostazione regionale)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				Gli avatar in altri lotti possono vedere
-			</panel.string>
 			<text name="allow_label">
 				Permetti ad altri residenti di:
 			</text>
@@ -341,22 +338,6 @@ Solamente terreni più grandi possono essere abilitati nella ricerca.
 			<check_box label="Sicuro (senza danno)" name="check safe" tool_tip="Se spuntato, imposta il terreno su &apos;sicuro&apos;, disabilitando i danni da combattimento. Se non spuntato, viene abilitato il combattimento con danni."/>
 			<check_box label="Nessuna spinta" name="PushRestrictCheck" tool_tip="Previeni i colpi. Selezionare questa opzione può essere utile per prevenire comportamenti dannosi sul tuo terreno."/>
 			<check_box label="Mostra luogo nella ricerca (30 L$/settimana)" name="ShowDirectoryCheck" tool_tip="Consenti che il lotto sia visto nei risultati di ricerca"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Tutte le categorie" name="item0"/>
-				<combo_box.item label="Luogo dei Linden" name="item1"/>
-				<combo_box.item label="Adulti" name="item2"/>
-				<combo_box.item label="Arte e cultura" name="item3"/>
-				<combo_box.item label="Affari" name="item4"/>
-				<combo_box.item label="Istruzione" name="item5"/>
-				<combo_box.item label="Gioco" name="item6"/>
-				<combo_box.item label="Divertimento" name="item7"/>
-				<combo_box.item label="Accoglienza nuovi residenti" name="item8"/>
-				<combo_box.item label="Parchi &amp; Natura" name="item9"/>
-				<combo_box.item label="Residenziale" name="item10"/>
-				<combo_box.item label="Shopping" name="item11"/>
-				<combo_box.item label="Affitto" name="item13"/>
-				<combo_box.item label="Altro" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Tutte le categorie" name="item0"/>
 				<combo_box.item label="Luogo dei Linden" name="item1"/>
@@ -456,15 +437,9 @@ Media:
 			<panel.string name="access_estate_defined">
 				(Definito dalla proprietà)
 			</panel.string>
-			<panel.string name="allow_public_access">
-				Consenti accesso pubblico ([MATURITY]) (Nota: se si rimuove la selezione vengono create linee di espulsione)
-			</panel.string>
 			<panel.string name="estate_override">
 				Una o più di queste impostazioni sono già impostate a livello regionale
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				Accesso a questo terreno
-			</text>
 			<check_box label="Consenti l&apos;accesso pubblico (se si rimuove la selezione vengono create linee di espulsione)" name="public_access"/>
 			<text name="Only Allow">
 				Consenti l&apos;accesso solo ai Residenti che:
@@ -496,5 +471,6 @@ Media:
 				<button label="Rimuovi" label_selected="Rimuovi" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="ESPERIENZE" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/floater_experience_search.xml b/indra/newview/skins/default/xui/it/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a31e7aa76f639328ca35b1c6f72c4d2fe9889305
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="SCEGLI ESPERIENZA"/>
diff --git a/indra/newview/skins/default/xui/it/floater_experienceprofile.xml b/indra/newview/skins/default/xui/it/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..031900825d40fcdfe33dda3b21bc3d834df4b187
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(nessuno)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Profilo esperienza"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Modifica" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Categoria:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Luogo:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Proprietario:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Gruppo:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Consenti" name="allow_btn"/>
+							<button label="Dimentica" name="forget_btn"/>
+							<button label="Blocca" name="block_btn"/>
+							<text name="privileged">
+								Questa esperienza è attivata per tutti i residenti.
+							</text>
+							<button label="Segnala abuso" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Nome:"/>
+					<text name="edit_experience_desc_label" value="Descrizione:"/>
+					<button label="Gruppo" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Categoria:
+					</text>
+					<icons_combo_box label="Moderato" name="edit_ContentRatingText" tool_tip="Se si aumenta la categoria di accesso di un&apos;esperienza, vengono ripristinate le autorizzazioni per tutti i residenti che hanno consentito l&apos;esperienza.">
+						<icons_combo_box.item label="Adulti" name="Adult" value="42"/>
+						<icons_combo_box.item label="Moderato" name="Mature" value="21"/>
+						<icons_combo_box.item label="Generale" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Luogo:
+					</text>
+					<button label="Imposta come attuale" name="location_btn"/>
+					<button label="Cancella luogo" name="clear_btn"/>
+					<check_box label="Attiva esperienza" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Nascondi nella ricerca" name="edit_private_btn"/>
+					<text name="changes" value="Le modifiche apportate alle esperienze potrebbero essere visibili su tutte le regioni solo dopo alcuni minuti."/>
+					<button label="Indietro" name="cancel_btn"/>
+					<button label="Salva" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/it/floater_experiences.xml b/indra/newview/skins/default/xui/it/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7cd19783a3677fdbe9c0409d614aa9fe688ad7b3
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="ESPERIENZE"/>
diff --git a/indra/newview/skins/default/xui/it/floater_facebook.xml b/indra/newview/skins/default/xui/it/floater_facebook.xml
index 89d58f4e67e1ae7532715c8de969c1eaf16539de..cb700f00e1a4c4e10e44c590a59e0c0158a61efe 100644
--- a/indra/newview/skins/default/xui/it/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/it/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="PUBBLICA SU FACEBOOK">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="STATO" name="panel_facebook_status"/>
-			<panel label="FOTO" name="panel_facebook_photo"/>
-			<panel label="REGISTRATI" name="panel_facebook_place"/>
-			<panel label="AMICI" name="panel_facebook_friends"/>
-			<panel label="ACCOUNT" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Errore
-			</text>
-			<text name="connection_loading_text">
-				Caricamento...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="STATO" name="panel_facebook_status"/>
+		<panel label="FOTO" name="panel_facebook_photo"/>
+		<panel label="REGISTRATI" name="panel_facebook_place"/>
+		<panel label="AMICI" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Errore
+	</text>
+	<text name="connection_loading_text">
+		Caricamento in corso...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/it/floater_inventory_view_finder.xml
index cf790ee62e746e3cad25502f2eb4a6f3c1cc6001..e5543c741fe801abc66c8f4bbe7e744d12e101fe 100755
--- a/indra/newview/skins/default/xui/it/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/it/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Abiti" name="check_clothing"/>
 	<check_box label="Gesture" name="check_gesture"/>
 	<check_box label="Landmark" name="check_landmark"/>
-	<check_box label="Reticoli" name="check_mesh"/>
 	<check_box label="Notecard" name="check_notecard"/>
+	<check_box label="Reticoli" name="check_mesh"/>
 	<check_box label="Oggetti" name="check_object"/>
 	<check_box label="Script" name="check_script"/>
 	<check_box label="Suoni" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- Oppure -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Più recenti del" name="newer"/>
+		<radio_item label="Precedenti al" name="older"/>
+	</radio_group>
 	<spinner label="Ore fa" name="spin_hours_ago"/>
 	<spinner label="Giorni fa" name="spin_days_ago"/>
 	<button label="Chiudi" label_selected="Chiudi" name="Close"/>
diff --git a/indra/newview/skins/default/xui/it/floater_lagmeter.xml b/indra/newview/skins/default/xui/it/floater_lagmeter.xml
index f7b2b1ab4a402cb60d0fd64d3819129f52120a4b..13f54eabccaf891624385bd27474e5ae14a147f4 100644
--- a/indra/newview/skins/default/xui/it/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/it/floater_lagmeter.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_lagmeter" title="MISURATORE LAG">
 	<floater.string name="max_title_msg">
-		Misuratore del lag
+		Misuratore lag
 	</floater.string>
 	<floater.string name="max_width_px">
 		360
@@ -13,7 +13,7 @@
 		90
 	</floater.string>
 	<floater.string name="client_text_msg">
-		Programma in locale
+		Client
 	</floater.string>
 	<floater.string name="client_frame_rate_critical_fps">
 		10
@@ -22,31 +22,31 @@
 		15
 	</floater.string>
 	<floater.string name="client_frame_time_window_bg_msg">
-		Normale, finestra sullo sfondo
+		Normale, finestra in background
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Velocità dei frame al di sotto di [CLIENT_FRAME_RATE_CRITICAL]
+		Frame rate del client inferiore a [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		Velocità dei frame tra [CLIENT_FRAME_RATE_CRITICAL] e [CLIENT_FRAME_RATE_WARNING]
+		Frame rate del client tra [CLIENT_FRAME_RATE_CRITICAL] e [CLIENT_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		Normale
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		Possibile causa: Campo visivo impostato troppo alto
+		Causa possibile: Distanza di visualizzazione impostata su un valore troppo alto
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		Possibile causa: Caricamento immagini
+		Causa possibile: Caricamento immagini in corso
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		Possibile causa: Troppe immagini in memoria
+		Causa possibile: Troppe immagini in memoria
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		Possibile causa: Troppi oggetti complessi intorno
+		Causa possibile: Troppi oggetti complessi in una scena
 	</floater.string>
 	<floater.string name="network_text_msg">
-		Network
+		Rete
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_pct">
 		10
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		La connessione sta calando al di sotto del [NETWORK_PACKET_LOSS_CRITICAL]% di pacchetti
+		Il collegamento perde più del [NETWORK_PACKET_LOSS_CRITICAL]% dei pacchetti
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		La connessione sta calando tra il [NETWORK_PACKET_LOSS_WARNING]% e il [NETWORK_PACKET_LOSS_CRITICAL]% di pacchetti
+		Il collegamento perde [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% dei pacchetti
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		Normale
@@ -70,16 +70,16 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		Il tempo di ping della connessione è al di sopra di [NETWORK_PING_CRITICAL] ms
+		Tempo di ping del collegamento superiore a [NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
-		Il tempo di ping della connessione è tra [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
+		Tempo di ping del collegamento pari a [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		Possibile cattiva connessione o la larghezza di banda impostata nelle preferenze troppo alta.
+		Collegamento scadente oppure valore della larghezza di banda troppo alto.
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		Possibile cattiva connessione o l&apos;apertura di un programma di scambio files.
+		Collegamento scadente oppure problemi di app di condivisione file.
 	</floater.string>
 	<floater.string name="server_text_msg">
 		Server
@@ -94,31 +94,31 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		Velocità dei frame al di sotto di [SERVER_FRAME_RATE_CRITICAL]
+		Frame rate del simulatore inferiore a [SERVER_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		Velocità dei frame tra [SERVER_FRAME_RATE_CRITICAL] e [SERVER_FRAME_RATE_WARNING]
+		Frame rate del simulatore tra [SERVER_FRAME_RATE_CRITICAL] e [SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
 		Normale
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
-		Possibile causa: troppi oggetti fisici
+		Causa possibile: Troppi oggetti fisici
 	</floater.string>
 	<floater.string name="server_scripts_cause_msg">
-		Possibile causa: troppi oggetti scriptati
+		Causa possibile: Troppi oggetti scriptati
 	</floater.string>
 	<floater.string name="server_net_cause_msg">
-		Possibile causa: eccessivo traffico sulla rete
+		Causa possibile: Troppo traffico di rete
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		Possibile causa: troppi residenti in movimento nella regione
+		Causa possibile: Troppe persone in movimento nella regione
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
-		Possibile causa: troppe elaborazioni di immagini
+		Causa possibile: Troppi calcoli delle immagini
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		Possibile causa: carico eccessivo del simulatore
+		Causa possibile: Carico eccessivo del simulatore
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -126,7 +126,7 @@
 	<floater.string name="bigger_label">
 		&lt;&lt;
 	</floater.string>
-	<button label="" label_selected="" name="client_lagmeter" tool_tip="Stato del lag del programma in locale"/>
+	<button label="" label_selected="" name="client_lagmeter" tool_tip="Stato del lag del client"/>
 	<text name="client">
 		Client
 	</text>
@@ -134,7 +134,7 @@
 		Normale
 	</text>
 	<text left="30" name="client_lag_cause" right="-10"/>
-	<button label="" label_selected="" name="network_lagmeter" tool_tip="Stato del lag del network"/>
+	<button label="" label_selected="" name="network_lagmeter" tool_tip="Stato del lag della rete"/>
 	<text name="network">
 		Rete
 	</text>
diff --git a/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml
index 0bd2b02323bc47d52e5d7e018ee47c208c5453a8..c28df6c12ed3fb9ee796f4f4e5daaa50e8c82164 100755
--- a/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		SCRIPT: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Rimuovi il segno di spunta per rimuovere l&apos;esperienza corrente
+	</floater.string>
+	<floater.string name="no_experiences">
+		Non hai l&apos;autorizzazione necessaria per alcuna esperienza
+	</floater.string>
+	<floater.string name="add_experiences">
+		Seleziona per aggiungere un&apos;esperienza
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Clicca per vedere il profilo dell&apos;esperienza
+	</floater.string>
+	<floater.string name="loading">
+		Caricamento in corso...
+	</floater.string>
 	<button label="Ripristina" label_selected="Ripristina" name="Reset"/>
 	<check_box initial_value="true" label="In esecuzione" left="4" name="running"/>
 	<check_box initial_value="true" label="Mono" left="106" name="mono"/>
+	<check_box label="Usa le esperienze:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/floater_openobject.xml b/indra/newview/skins/default/xui/it/floater_openobject.xml
index d8144c7cd52283e33744725315cc728843b60acc..9b04c230c8e6aa84d670be898efcd4450a843ed7 100755
--- a/indra/newview/skins/default/xui/it/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/it/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="Copia nell&apos;inventario" label_selected="Copia nell&apos;inventario" name="copy_to_inventory_button"/>
-	<button label="Copia ed indossa" label_selected="Copia ed indossa" name="copy_and_wear_button"/>
+	<button label="Copia nell&apos;Inventario" label_selected="Copia nell&apos;Inventario" name="copy_to_inventory_button"/>
+	<button label="Copia e aggiungi al vestiario" label_selected="Copia e aggiungi al vestiario" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/floater_report_abuse.xml b/indra/newview/skins/default/xui/it/floater_report_abuse.xml
index 728d089205caee948125c796b65a2ecec1af507a..f74d84fb8fe16c5cd4fd0c01d835135da1c2deb9 100755
--- a/indra/newview/skins/default/xui/it/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/it/floater_report_abuse.xml
@@ -76,7 +76,7 @@
 		<combo_box.item label="Terreno &gt; Invasione &gt; Oggetti o texture" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Terreno &gt; Invasione &gt; Particelle" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Terreno &gt; Invasione &gt; Alberi/piante" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Scommesse o gioco d&apos;azzardo" name="Wagering_gambling"/>
+		<combo_box.item label="Violazione regole del gioco" name="Wagering_gambling"/>
 		<combo_box.item label="Altro" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/it/floater_snapshot.xml b/indra/newview/skins/default/xui/it/floater_snapshot.xml
index 16289ac7afdb76961b740f310cf1594c767a82c3..d21c206f6fc11a1f7475bcfc4a22f3e8e45ce929 100755
--- a/indra/newview/skins/default/xui/it/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/it/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Non salvato sul computer.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Opzioni Avanzate"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[SIZE] KB
-	</text>
+	<button label="AGGIORNA" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			OPZIONI AVANZATE
-		</text>
 		<text name="layer_type_label">
 			Cattura:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Nessun filtro" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] px (larghezza) x [HEIGHT] px (altezza)
+	</text>
+	<text name="file_size_label">
+		[SIZE] KB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/floater_stats.xml b/indra/newview/skins/default/xui/it/floater_stats.xml
index 7516af957ee680dc131b98655244651fc5fdf7a8..7ef13aa37fe2ad2dd76bc7b84516b21a6cdbdf5e 100755
--- a/indra/newview/skins/default/xui/it/floater_stats.xml
+++ b/indra/newview/skins/default/xui/it/floater_stats.xml
@@ -72,7 +72,7 @@
 				<stat_view label="Pathfinding" name="simpathfinding">
 					<stat_bar label="Tempo passaggio AI" name="simsimaistepmsec"/>
 					<stat_bar label="Passaggi silhouette saltati" name="simsimskippedsilhouettesteps"/>
-					<stat_bar label="Personaggi aggiornati" name="simsimpctsteppedcharacters"/>
+					<stat_bar label="Caratteri aggiornati" name="simsimpctsteppedcharacters"/>
 				</stat_view>
 				<stat_bar label="Totale dati non confermati (unacked)" name="simtotalunackedbytes"/>
 				<stat_view label="Orario" name="simperf">
diff --git a/indra/newview/skins/default/xui/it/floater_top_objects.xml b/indra/newview/skins/default/xui/it/floater_top_objects.xml
index d8ca7f44380a045bec1e4f99ddd26a5a41798394..afd6a87646c59e5185f43eed16c4898e2ef7b425 100755
--- a/indra/newview/skins/default/xui/it/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/it/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Nulla di rilevato.
 	</floater.string>
+	<floater.string name="URLs">
+		URL
+	</floater.string>
+	<floater.string name="memory">
+		Memoria (KB)
+	</floater.string>
 	<text name="title_text">
 		In caricamento...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Proprietario" name="owner" width="84"/>
 		<scroll_list.columns label="Ubicazione" name="location" width="84"/>
 		<scroll_list.columns label="Lotto" name="parcel"/>
-		<scroll_list.columns label="Ora" name="time" width="84"/>
+		<scroll_list.columns label="Data" name="time" width="84"/>
 		<scroll_list.columns label="URL" name="URLs"/>
 		<scroll_list.columns label="Memoria (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/it/floater_twitter.xml b/indra/newview/skins/default/xui/it/floater_twitter.xml
index c903705e6930ff90e6f079c80535cc59de76022a..a34052a620132060019bc8cb0e93023029997536 100644
--- a/indra/newview/skins/default/xui/it/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/it/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="COMPONI" name="panel_twitter_photo"/>
-			<panel label="ACCOUNT" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Errore
-			</text>
-			<text name="connection_loading_text">
-				Caricamento...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="COMPONI" name="panel_twitter_photo"/>
+		<panel label="ACCOUNT" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Errore
+	</text>
+	<text name="connection_loading_text">
+		Caricamento in corso...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml
index 3d64e4da4ec82cc23c20c057c739a860163837f5..403f5da5fe1749e938a30cede2005b3465d02b83 100755
--- a/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Mostra prima i più recenti" name="sort_by_recent"/>
 	<menu_item_check label="Ordina le cartelle sempre in base al nome" name="sort_folders_by_name"/>
 	<menu_item_check label="Ordina cartelle di sistema all&apos;inizio" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Mostra filtri" name="show_filters"/>
+	<menu_item_call label="Mostra filtri..." name="show_filters"/>
 	<menu_item_call label="Ripristina filtri" name="reset_filters"/>
 	<menu_item_call label="Chiudi tutte le cartelle" name="close_folders"/>
 	<menu_item_call label="Svuota oggetti smarriti" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/it/menu_url_experience.xml b/indra/newview/skins/default/xui/it/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d6ea3f352bb73c8acf30f2e228f7ad3bd4b38113
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/it/menu_viewer.xml b/indra/newview/skins/default/xui/it/menu_viewer.xml
index d25e11e7a4e6360c8974e6533dc156331b4225f7..275315b455c40bbdadc57efcfbfe58f7b464dcb6 100755
--- a/indra/newview/skins/default/xui/it/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/it/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Nuova finestra inventario" name="NewInventoryWindow"/>
 		<menu_item_call label="Luoghi..." name="Places"/>
 		<menu_item_call label="Preferiti..." name="Picks"/>
+		<menu_item_call label="Esperienze..." name="Experiences"/>
 		<menu_item_call label="Controlli fotocamera..." name="Camera Controls"/>
 		<menu label="Spostamento" name="Movement">
 			<menu_item_call label="Siedi" name="Sit Down Here"/>
@@ -48,7 +49,7 @@
 		<menu_item_check label="Amici" name="My Friends"/>
 		<menu_item_check label="Gruppi" name="My Groups"/>
 		<menu_item_check label="Persone vicine" name="Active Speakers"/>
-		<menu_item_call label="Blocca lista" name="Block List"/>
+		<menu_item_check label="Blocca lista" name="Block List"/>
 		<menu_item_check label="Non disturbare" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Mondo" name="World">
diff --git a/indra/newview/skins/default/xui/it/mime_types.xml b/indra/newview/skins/default/xui/it/mime_types.xml
index 5eda7a57521b0473b89b8447222d630d93426885..df119263b7782b7657c4cb0126503031bf0e7add 100755
--- a/indra/newview/skins/default/xui/it/mime_types.xml
+++ b/indra/newview/skins/default/xui/it/mime_types.xml
@@ -24,10 +24,10 @@
 	</widgetset>
 	<widgetset name="none">
 		<label name="none_label">
-			Senza Contenuti
+			Nessun contenuto
 		</label>
 		<tooltip name="none_tooltip">
-			Nessun video qui
+			Nessun contenuto multimediale qui
 		</tooltip>
 	</widgetset>
 	<widgetset name="image">
diff --git a/indra/newview/skins/default/xui/it/mime_types_linux.xml b/indra/newview/skins/default/xui/it/mime_types_linux.xml
index 3bc30b507a4d0b7354bb47875d97133ef32f5401..1ed1fd6b1db46f621cde5cc6fa1d9eea205633fa 100755
--- a/indra/newview/skins/default/xui/it/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/it/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Riproduci l&apos;audio di questo luogo
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Nessun contenuto
+		</label>
+		<tooltip name="none_tooltip">
+			Nessun contenuto multimediale qui
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Streaming in tempo reale
diff --git a/indra/newview/skins/default/xui/it/mime_types_mac.xml b/indra/newview/skins/default/xui/it/mime_types_mac.xml
index 3bc30b507a4d0b7354bb47875d97133ef32f5401..1ed1fd6b1db46f621cde5cc6fa1d9eea205633fa 100755
--- a/indra/newview/skins/default/xui/it/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/it/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Riproduci l&apos;audio di questo luogo
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Nessun contenuto
+		</label>
+		<tooltip name="none_tooltip">
+			Nessun contenuto multimediale qui
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Streaming in tempo reale
diff --git a/indra/newview/skins/default/xui/it/notifications.xml b/indra/newview/skins/default/xui/it/notifications.xml
index 11211e01fe4650378b0c577c050f346cfe9d718e..fe53dd18ddac09737bf7a076dfdb3fa84cf8810b 100755
--- a/indra/newview/skins/default/xui/it/notifications.xml
+++ b/indra/newview/skins/default/xui/it/notifications.xml
@@ -73,6 +73,10 @@ Dettagli errore: La notifica denominata &apos;[_NAME]&apos; non è stata trovata
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Il programma [APP_NAME] ha riscontrato un&apos;errore durante il tentativo di aggiornamento.  [http://get.secondlife.com Scarica l&apos;ultima versione] del Viewer.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -572,6 +576,9 @@ La qualità grafica può essere aumentata in Preferenze &gt; Grafica.
 	<notification name="RegionNoTerraforming">
 		La regione [REGION] non consente di terraformare.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		Non ti è consentito terraformare il lotto [PARCEL].
+	</notification>
 	<notification name="CannotCopyWarning">
 		Non hai l&apos;autorizzazione a copiare i seguenti oggetti:
 [ITEMS]
@@ -1829,6 +1836,30 @@ Cambierà migliaia di regioni e produrrà seri problemi ai vari server.
 		Rimuovi come gestore della proprietà solo per questa proprietà oppure per  [ALL_ESTATES]?
 		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà" yestext="Questa proprietà"/>
 	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateAllowedExperienceAdd">
+		Aggiungi all&apos;elenco di elementi consentiti per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateAllowedExperienceRemove">
+		Rimuovi dall&apos;elenco di elementi consentiti per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateBlockedExperienceAdd">
+		Aggiungi all&apos;elenco di elementi bloccati per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateBlockedExperienceRemove">
+		Rimuovi dall&apos;elenco di elementi bloccati per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateTrustedExperienceAdd">
+		Aggiungi all&apos;elenco di elementi chiave per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
+	<notification label="Seleziona proprietà immobiliare" name="EstateTrustedExperienceRemove">
+		Rimuovi dall&apos;elenco di elementi chiave per questa proprietà immobiliare oppure per [ALL_ESTATES]?
+		<usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà immobiliari" yestext="Questa proprietà immobiliare"/>
+	</notification>
 	<notification label="Conferma espulsione" name="EstateKickUser">
 		Espelli [EVIL_USER] da questa proprietà?
 		<usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/>
@@ -1903,6 +1934,10 @@ Cambierà migliaia di regioni e produrrà seri problemi ai vari server.
 		Si è verificato un problema con il teleport a causa di un errore di sincronizzazione delle preferenze con il server.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Impossibile entrare nella regione. &apos;[REGION_NAME]&apos; è una regione per giochi di abilità e per entrare è necessario soddisfare alcuni requisiti. Per dettagli, leggi le [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life domande frequenti sui giochi di abilità].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		Non riceverai più notifiche se stai per visitare una regione con contenuti [RATING].   In futuro potrai modificare le preferenze relative ai contenuti selezionando Io &gt; Preferenze &gt; Generale nella barra del menu.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2211,6 +2246,9 @@ Vuoi sostituirlo con l&apos;oggetto selezionato?
 			<button ignore="Never Replace" name="No" text="Annulla"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		Non puoi indossare una cartella che contiene più di [AMOUNT] elementi. Per modificare questo limite, accedi ad Avanzate &gt; Mostra impostazioni di debug &gt; WearFolderLimit.
+	</notification>
 	<notification label="Avviso modalità Non disturbare" name="DoNotDisturbModePay">
 		Hai attivato la modalità Non disturbare. Non riceverai alcun oggetto offerto in cambio di questo pagamento.
 
@@ -2819,7 +2857,7 @@ Se rimani qui verrai scollegato da Second Life.
 
 [MESSAGE]
 
-Dall&apos;oggetto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, proprietario: [NAME]?
+Dall&apos;oggetto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, proprietario: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Caricare"/>
 			<button name="Cancel" text="Annulla"/>
@@ -2845,6 +2883,72 @@ OK?
 			<button name="Mute" text="Blocca"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Impossibile acquisire una nuova esperienza:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Una modifica apportata al gruppo esperienza è stata ignorata perché il proprietario non è un membro del gruppo selezionato.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		Il campo non modificabile &apos;[field]&apos; è stato ignorato durante l&apos;aggiornamento del profilo esperienza.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Ignorate le modifiche apportate al campo &apos;[field]&apos;, che può essere impostato solo dal proprietario dell&apos;esperienza.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Non puoi impostare la categoria di accesso di un&apos;esperienza a un livello maggiore di quello del proprietario.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		I termini seguenti hanno impedito l&apos;aggiornamento del nome o della descrizione del profilo dell&apos;esperienza: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Sei stato teleportato dalla regione [region_name] per aver rimosso l&apos;esperienza secondlife:///app/experience/[public_id]/profile e non puoi più accedere alla regione.
+		<form name="form">
+			<ignore name="ignore" text="Espulso dalla regione per aver rimosso un&apos;esperienza"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		Ti è stato consentito l&apos;accesso alla regione [region_name] grazie alla partecipazione all&apos;esperienza chiave secondlife:///app/experience/[public_id]/profile. Se rimuovi l&apos;esperienza, sarai passibile di espulsione dalla regione.
+		<form name="form">
+			<ignore name="ignore" text="Può accedere a una regione grazie a un&apos;esperienza"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		Non puoi accedere a questa destinazione. Potresti accedere alla regione accettando un&apos;esperienza nell&apos;elenco seguente:
+
+[EXPERIENCE_LIST]
+
+Potrebbero essere disponibili altre esperienze chiave.
+	</notification>
+	<notification name="ExperienceEvent">
+		L&apos;esperienza secondlife:///app/experience/[public_id]/profile ha consentito un oggetto la seguente azione: [EventType].
+    Proprietario: secondlife:///app/agent/[OwnerID]/inspect
+    Nome oggetto: [ObjectName]
+    Nome lotto: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		L&apos;esperienza secondlife:///app/experience/[public_id]/profile ha consentito un elemento collegato la seguente azione: [EventType].
+    Proprietario: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, un oggetto posseduto da &apos;[NAME]&apos;, richiede la tua partecipazione all&apos;esperienza [GRID_WIDE]:
+
+[EXPERIENCE]
+
+Una volta concessa l&apos;autorizzazione, questo messaggio non verrà più visualizzato per questa esperienza, a meno che l&apos;autorizzazione non venga revocata nel profilo dell&apos;esperienza.
+
+Gli script associati a questa esperienza potranno fare quanto segue nelle regioni in cui è attiva l&apos;esperienza: 
+
+[QUESTIONS]OK?
+		<form name="form">
+			<button name="BlockExperience" text="Blocca esperienza"/>
+			<button name="Mute" text="Blocca oggetto"/>
+			<button name="Yes" text="Sì"/>
+			<button name="No" text="No"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Avviso: L&apos;oggetto &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; ha richiesto accesso completo al tuo account in Dollari Linden. Se consenti l&apos;accesso, potrà rimuovere fondi dal tuo account in qualunque momento e anche svuotare completamente l&apos;account, per un periodo illimitato e senza ulteriori avvisi.
   
@@ -3163,6 +3267,10 @@ Hai caricato una texture [RESOLUTION] completata per &apos;[BODYREGION]&apos; do
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( In esistenza da [EXISTENCE] secondi)
 Hai aggiornato localmente una texture [RESOLUTION] completata per &apos;[BODYREGION]&apos; dopo [TIME] secondi.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Impossibile caricare la texture.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Non possiamo mostrare un&apos;anteprima di questa texture perché non ne è consentita la copia e/o il trasferimento.
diff --git a/indra/newview/skins/default/xui/it/panel_experience_info.xml b/indra/newview/skins/default/xui/it/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..706f139bcc79d76be7ca870b7db6aae347c84b38
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Profilo esperienza"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Luogo:
+					</text>
+					<text name="LocationTextText">
+						in qualche posto
+					</text>
+					<button label="Teleport" name="teleport_btn"/>
+					<button label="Mappa" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Negozio Marketplace:
+					</text>
+					<text name="LocationTextText">
+						in qualche posto
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Categoria:
+					</text>
+					<text name="ContentRatingText">
+						Adulti
+					</text>
+					<text name="Owner">
+						Proprietario:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Modifica" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/it/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..46d39eabdd12ef74911166fa55d2b09bb571555b
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		caricamento in corso...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Esperienze consentite:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Esperienze bloccate:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Esperienze chiave:
+	</panel.string>
+	<panel.string name="no_results">
+		(vuoto)
+	</panel.string>
+	<text name="text_name">
+		Elenco esperienze
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Nome" name="experience_name"/>
+	</scroll_list>
+	<button label="Aggiungi..." name="btn_add"/>
+	<button label="Rimuovi" name="btn_remove"/>
+	<button label="Profilo..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_experience_list_item.xml b/indra/newview/skins/default/xui/it/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f99c71c22ef38440a7673f3d1e301a75a5cd36f3
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Nome fittizio
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_experience_log.xml b/indra/newview/skins/default/xui/it/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a03e8410b1d93d630dea71af594a177c396c2330
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Nessun evento."/>
+	<string name="loading" value="caricamento in corso..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Giorno/ora" name="time"/>
+				<columns label="Evento" name="event"/>
+				<columns label="Esperienza" name="experience_name"/>
+				<columns label="Oggetto" name="object_name"/>
+			</scroll_list>
+			<button label="Notifica" name="btn_notify"/>
+			<button label="Profilo" name="btn_profile_xp"/>
+			<button label="Segnalazione" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Notifica tutti gli eventi   Giorni" name="notify_all"/>
+			<button label="Cancella" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_experience_search.xml b/indra/newview/skins/default/xui/it/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..124b060f20e3c81cd95167854c38e9a8ff518134
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		&apos;[TEXT]&apos; non trovato
+	</string>
+	<string name="no_results">
+		Nessun risultato
+	</string>
+	<string name="searching">
+		Ricerca in corso...
+	</string>
+	<string name="loading">
+		Caricamento in corso...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Vai" name="find"/>
+		<icons_combo_box label="Moderato" name="maturity">
+			<icons_combo_box.item label="Adulti" name="Adult" value="42"/>
+			<icons_combo_box.item label="Moderato" name="Mature" value="21"/>
+			<icons_combo_box.item label="Generale" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Nome" name="experience_name"/>
+			<columns label="Proprietario" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Annulla" name="cancel_btn"/>
+		<button label="Visualizza profilo" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_experiences.xml b/indra/newview/skins/default/xui/it/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a305860f8f82339c59a35c782536ca7098895e6a
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Caricamento esperienze in corso..."/>
+	<string name="no_experiences" value="Nessuna esperienza."/>
+	<string name="acquire" value="Acquisisci un&apos;esperienza"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_facebook_friends.xml b/indra/newview/skins/default/xui/it/panel_facebook_friends.xml
index 917dbec4d90815bd6ac6b869d7398e822563a904..c1c0489f884c8378f03a31def172eb685d06ed2a 100644
--- a/indra/newview/skins/default/xui/it/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/it/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Attualmente non hai amici su Facebook che sono anche residenti in Second Life. Invita i tuoi amici di Facebook a partecipare a Second Life!"/>
-	<string name="facebook_friends_no_connected" value="Attualmente non sei in collegamento con Facebook. Accedi alla scheda Account per collegarti e attivare questa funzionalità."/>
+	<string name="facebook_friends_no_connected" value="Attualmente non sei in collegamento con Facebook. Accedi alla scheda Stato per collegarti e attivare questa funzionalità."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="Amici SL"/>
 		<accordion_tab name="tab_suggested_friends" title="Aggiungi queste persone come amici SL"/>
diff --git a/indra/newview/skins/default/xui/it/panel_facebook_photo.xml b/indra/newview/skins/default/xui/it/panel_facebook_photo.xml
index 20ec7f0a70c24ebe0c3e20c0d421bbc87c5f4b18..044b8b616452fa5ce8530625053ce88bdf72e8f2 100644
--- a/indra/newview/skins/default/xui/it/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/it/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
-				<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtri immagini">
-				<combo_box.item label="Nessun filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
-			<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
-			<text name="caption_label">
-				Commento (facoltativo):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Pubblica" name="post_photo_btn"/>
-			<button label="Annulla" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
+		<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtri immagini">
+		<combo_box.item label="Nessun filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
+	<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
+	<text name="caption_label">
+		Commento (facoltativo):
+	</text>
+	<button label="Post" name="post_photo_btn"/>
+	<button label="Annulla" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_facebook_place.xml b/indra/newview/skins/default/xui/it/panel_facebook_place.xml
index 297f0caccc590ea7910daadf1cc1ac7643126c91..3f1365f12c99e7b062fe20ba84aa724c614a262e 100644
--- a/indra/newview/skins/default/xui/it/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/it/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Racconta dove ti trovi:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Pubblica" name="post_place_btn"/>
-			<button label="Annulla" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Racconta dove ti trovi:
+	</text>
+	<check_box initial_value="false" label="Includi vista dall&apos;alto del luogo" name="add_place_view_cb"/>
+	<button label="Post" name="post_place_btn"/>
+	<button label="Annulla" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_facebook_status.xml b/indra/newview/skins/default/xui/it/panel_facebook_status.xml
index d373fb07171d643fdfaaf69097bc574d6fc4c10b..9b5171043a00dddfe7e29ef73b25b8adc745dc02 100644
--- a/indra/newview/skins/default/xui/it/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/it/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				A cosa stai pensando?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Pubblica" name="post_status_btn"/>
-			<button label="Annulla" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Sei in collegamento con Facebook come:"/>
+	<string name="facebook_disconnected" value="Non in collegamento con Facebook"/>
+	<text name="account_caption_label">
+		Non in collegamento con Facebook.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Collegamento..." name="connect_btn"/>
+		<button label="Interrompi collegamento" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Come pubblicare su Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		A cosa stai pensando?
+	</text>
+	<button label="Post" name="post_status_btn"/>
+	<button label="Annulla" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_flickr_photo.xml b/indra/newview/skins/default/xui/it/panel_flickr_photo.xml
index 064c302b141f26805244e92985578581fe925621..e989fb20814ccb96aceaf2c132a15f8acd630089 100644
--- a/indra/newview/skins/default/xui/it/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/it/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
-				<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtri immagini">
-				<combo_box.item label="Nessun filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
-			<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
-			<text name="title_label">
-				Titolo:
-			</text>
-			<text name="description_label">
-				Descrizione:
-			</text>
-			<check_box initial_value="true" label="Includi l&apos;ubicazione SL al termine della descrizione" name="add_location_cb"/>
-			<text name="tags_label">
-				Tag:
-			</text>
-			<text name="tags_help_label">
-				Separa tag con spazi
+	<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
+		<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtri immagini">
+		<combo_box.item label="Nessun filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
+	<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
+	<text name="title_label">
+		Titolo:
+	</text>
+	<text name="description_label">
+		Descrizione:
+	</text>
+	<check_box initial_value="true" label="Includi il luogo SL al termine della descrizione" name="add_location_cb"/>
+	<text name="tags_label">
+		Tag:
+	</text>
+	<text name="tags_help_label">
+		Separa tag con spazi
 Usa &quot;&quot; per tag con più di una parola
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Categoria del contenuto di Flickr">
-				<combo_box.item label="Categoria Flickr Sicuro" name="SafeRating"/>
-				<combo_box.item label="Categoria Flickr Moderato" name="ModerateRating"/>
-				<combo_box.item label="Categoria Flickr Censurato" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Carica" name="post_photo_btn"/>
-			<button label="Annulla" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Categoria del contenuto di Flickr">
+		<combo_box.item label="Categoria Flickr Sicuro" name="SafeRating"/>
+		<combo_box.item label="Categoria Flickr Moderato" name="ModerateRating"/>
+		<combo_box.item label="Categoria Flickr Censurato" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Carica" name="post_photo_btn"/>
+	<button label="Annulla" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml
index 138edc3a266d05fe32ba9aa7862c2995536bb48b..fb51febc58e99b85dbdcd9c1cd5a63bbc549b167 100755
--- a/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Ruoli e membri"/>
 				<accordion_tab name="group_notices_tab" title="Avvisi"/>
 				<accordion_tab name="group_land_tab" title="Terra/Beni"/>
+				<accordion_tab name="group_experiences_tab" title="Esperienze"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/it/panel_postcard_settings.xml b/indra/newview/skins/default/xui/it/panel_postcard_settings.xml
index 6a586c44155ee3b7dbc07da87a8c82ed5f21596f..374e6a07e51805e3479ff864f79a550ed2bef792 100755
--- a/indra/newview/skins/default/xui/it/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/it/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Personalizza" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="Larghezza" name="postcard_snapshot_width"/>
-			<spinner label="Altezza" name="postcard_snapshot_height"/>
-			<check_box label="Mantieni le proporzioni" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Qualità dell&apos;immagine" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Larghezza x altezza" name="postcard_snapshot_width"/>
+	<check_box label="Mantieni le proporzioni" name="postcard_keep_aspect_check"/>
+	<slider label="Qualità:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
index fcc9661d03aa838b9a8424b0b64fe53da3c9efd3..e204d70b03c68a58137af93ffb255422042a245c 100755
--- a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Usa il mio browser (IE, Firefox, Safari)" name="external" tool_tip="Utilizza il browser Web predefinito di sistema per l&apos;aiuto, per i link Web e così via. Sconsigliato durante l&apos;esecuzione a tutto schermo." value="true"/>
-		<radio_item label="Utilizza il browser Web integrato" name="internal" tool_tip="Utilizza il browser Web integrato per l&apos;aiuto, per i link Web e così via. Questo browser si apre in una nuova finestra in [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Usa il mio browser (Chrome, Firefox, IE) per tutti i link" name="internal" tool_tip="Utilizza il browser Web predefinito di sistema per l&apos;aiuto, per i link Web e così via. Sconsigliato durante l&apos;esecuzione a tutto schermo." value="0"/>
+		<radio_item label="Usa il browser incorporato solo per i link di Second Life" name="external" tool_tip="Utilizza il browser Web predefinito di sistema per l&apos;aiuto, per i link Web e così via. Il browser incorporato verrà usato solo per i link LindenLab/SecondLife." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Abilita plugin" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Accetta cookie" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/it/panel_region_experiences.xml b/indra/newview/skins/default/xui/it/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e19650553a17bc2c2cb4fc959d4470f3e61ed294
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Esperienze" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Qualunque esperienza può essere un&apos;esperienza chiave.
+
+Le esperienze chiave dispongono di autorizzazione per l&apos;esecuzione in questa proprietà immobiliare.
+
+Inoltre, se la proprietà immobiliare non consente l&apos;accesso pubblico, i Residenti che partecipano a un&apos;esperienza chiave possono accedere alla proprietà e restarvi per tutto il tempo durante il quale partecipano all&apos;esperienza chiave.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Sono consentite solo le esperienze a livello di terreno.
+
+Le esperienze consentite dispongono di autorizzazione per l&apos;esecuzione in questa proprietà immobiliare.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Possono essere bloccate solo le esperienze a livello di griglia.
+      
+Le esperienze bloccate non possono essere eseguite su questa proprietà immobiliare.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Le modifiche apportate in questa scheda saranno valide per tutte le regioni in questa proprietà.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Sono consentite solo le esperienze a livello di terreno.
+      
+Le esperienze consentite dispongono di autorizzazione per l&apos;esecuzione su questo lotto se non sono bloccate a livello di proprietà immobiliare.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Qualsiasi esperienza residente può essere bloccata.
+      
+Le esperienze bloccate non possono essere eseguite su questo lotto.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_script_experience.xml b/indra/newview/skins/default/xui/it/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0f9e2fb9c51b973d07f7a80580ce28bc8cdd6e40
--- /dev/null
+++ b/indra/newview/skins/default/xui/it/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="ESPERIENZA">
+	<button label="Esperienza" name="Expand Experience"/>
+	<check_box label="Usa le esperienze" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Scegli esperienza..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Non sei il fornitore di alcuna esperienza.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/it/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/it/panel_snapshot_inventory.xml
index c9245029b71c5a4094c512e0a2aea5ff2bcc6954..e6fba8e3bf4df32b7051d29ef7dc405ef7fb45e0 100755
--- a/indra/newview/skins/default/xui/it/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/it/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Salva nell&apos;inventario
+		Inventario
 	</text>
 	<text name="hint_lbl">
 		Salvare un&apos;immagine nell&apos;inventario costa L$[UPLOAD_COST]. Per salvare l&apos;immagine come texture, selezionare uno dei formati quadrati.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Grande (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Personalizza" name="Custom"/>
 	</combo_box>
-	<spinner label="Larghezza" name="inventory_snapshot_width"/>
-	<spinner label="Altezza" name="inventory_snapshot_height"/>
+	<spinner label="Larghezza x altezza" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Mantieni le proporzioni" name="inventory_keep_aspect_check"/>
 	<button label="Annulla" name="cancel_btn"/>
 	<button label="Salva" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/it/panel_snapshot_local.xml b/indra/newview/skins/default/xui/it/panel_snapshot_local.xml
index 4b725b68f97455031673cf47dee6e895ab82f118..f76c19d27b38aad5fe30969d9a0f6a324c37c724 100755
--- a/indra/newview/skins/default/xui/it/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/it/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Salva sul mio computer
+		Disco
 	</text>
 	<combo_box label="Risoluzione" name="local_size_combo">
 		<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="Personalizza" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="Larghezza" name="local_snapshot_width"/>
-			<spinner label="Altezza" name="local_snapshot_height"/>
-			<check_box label="Mantieni le proporzioni" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Formato" name="local_format_combo">
-				<combo_box.item label="PNG (senza perdite)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (senza perdite)" name="BMP"/>
-			</combo_box>
-			<slider label="Qualità dell&apos;immagine" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Larghezza x altezza" name="local_snapshot_width"/>
+	<check_box label="Mantieni le proporzioni" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Formato:
+	</text>
+	<combo_box label="Formato" name="local_format_combo">
+		<combo_box.item label="PNG (senza perdite)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (senza perdite)" name="BMP"/>
+	</combo_box>
+	<slider label="Qualità:" name="image_quality_slider"/>
 	<button label="Annulla" name="cancel_btn"/>
 	<flyout_button label="Salva" name="save_btn" tool_tip="Salva immagine come file">
 		<flyout_button.item label="Salva" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/it/panel_snapshot_options.xml b/indra/newview/skins/default/xui/it/panel_snapshot_options.xml
index a043e5add66557d7bf4e85ad1034adc8ff4e61fc..ba564999873aa2fbb3c38b110d73a832ea6f68d9 100755
--- a/indra/newview/skins/default/xui/it/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/it/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Invia post al feed del mio profilo" name="save_to_profile_btn"/>
-	<button label="E-mail" name="save_to_email_btn"/>
+	<button label="Salva sul disco" name="save_to_computer_btn"/>
 	<button label="Salva nell&apos;inventario (L$[AMOUNT])" name="save_to_inventory_btn"/>
-	<button label="Salva sul mio computer" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Invia a:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="Carica sul profilo" name="save_to_profile_btn"/>
+	<button label="Carica su Facebook" name="send_to_facebook_btn"/>
+	<button label="Carica su Twitter" name="send_to_twitter_btn"/>
+	<button label="Carica su Flickr" name="send_to_flickr_btn"/>
+	<button label="Invia tramite e-mail" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/it/panel_snapshot_postcard.xml
index 3703b97e6cef9d78e354c3f64e0a6b98e8e20c2f..be7d8763b6721d4b8b687c9fcf56a6d6624e599a 100755
--- a/indra/newview/skins/default/xui/it/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/it/panel_snapshot_postcard.xml
@@ -12,6 +12,10 @@
 	<text name="title">
 		E-mail
 	</text>
-	<button label="Messaggio" name="message_btn"/>
-	<button label="Impostazioni" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Messaggio" name="panel_postcard_message"/>
+		<panel label="Impostazioni" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Annulla" name="cancel_btn"/>
+	<button label="Invia" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/it/panel_snapshot_profile.xml
index 2cdbf970498b53004b48b7e0a31e485eb26b6d93..3de12c959c15a374ddbb053d5d775099d93e3cad 100755
--- a/indra/newview/skins/default/xui/it/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/it/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Invia post al feed del mio profilo
+		Profilo
 	</text>
 	<combo_box label="Risoluzione" name="profile_size_combo">
 		<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Personalizza" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="Larghezza" name="profile_snapshot_width"/>
-			<spinner label="Altezza" name="profile_snapshot_height"/>
-			<check_box label="Mantieni le proporzioni" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Didascalia:
-			</text>
-			<check_box initial_value="true" label="Includi luogo" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Larghezza x altezza" name="profile_snapshot_width"/>
+	<check_box label="Mantieni le proporzioni" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Didascalia:
+	</text>
+	<check_box initial_value="true" label="Includi luogo" name="add_location_cb"/>
 	<button label="Annulla" name="cancel_btn"/>
 	<button label="Post" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/panel_twitter_photo.xml b/indra/newview/skins/default/xui/it/panel_twitter_photo.xml
index 740ec3961f671ee9b926e73ba409cea2d05e2666..69596784bd842d374f5a1aa71f4234e401766f29 100644
--- a/indra/newview/skins/default/xui/it/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/it/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Cosa sta succedendo?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="Includi l&apos;ubicazione in SL" name="add_location_cb"/>
-			<check_box initial_value="true" label="Includi una foto" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
-				<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtri immagini">
-				<combo_box.item label="Nessun filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
-			<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Tweetta" name="post_photo_btn"/>
-			<button label="Annulla" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Cosa sta succedendo?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="Includi il luogo in SL" name="add_location_cb"/>
+	<check_box initial_value="true" label="Includi una foto" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Risoluzione immagini">
+		<combo_box.item label="Finestra attuale" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtri immagini">
+		<combo_box.item label="Nessun filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Aggiorna" name="new_snapshot_btn" tool_tip="Fai clic per aggiornare"/>
+	<button label="Anteprima" name="big_preview_btn" tool_tip="Fai clic per alternare l&apos;anteprima"/>
+	<button label="Tweetta" name="post_photo_btn"/>
+	<button label="Annulla" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/it/role_actions.xml b/indra/newview/skins/default/xui/it/role_actions.xml
index 80d65a9c74411da84cb30621af49a149914f98ff..b53eca4f78b32be33471d2d736f6313e10d7274c 100755
--- a/indra/newview/skins/default/xui/it/role_actions.xml
+++ b/indra/newview/skins/default/xui/it/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Partecipa alla Chat vocale di gruppo" longdescription=" I membri con questo ruolo e abilità possono partecipare alle sessioni di Chat vocale nel gruppo.  NOTA: per poter partecipare alla Chat di gruppo è necessario accedere alla sessione di chat vocale." name="join voice chat" value="27"/>
 		<action description="Moderare la Chat di gruppo" longdescription="I membri con questo ruolo e abilità possono gestire l&apos;accesso e la partecipazione alle sessioni di chat scritta e di chat vocale nel gruppo." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Queste Abilità includono la capacità di modificare le esperienze che appartengono al gruppo." name="experience_tools_experience">
+		<action description="Amministratore esperienza" longdescription="I membri di un ruolo che include questa abilità possono modificare i metadati di un&apos;esperienza." name="experience admin" value="49"/>
+		<action description="Fornitore esperienza" longdescription="I membri di un ruolo che include questa abilità possono fornire script per un&apos;esperienza." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/it/sidepanel_item_info.xml b/indra/newview/skins/default/xui/it/sidepanel_item_info.xml
index 2b3ea0fb830debf129805fa83dc175fda57c62da..422f15e3cfdc879494ee75bc656255a49ac5889e 100755
--- a/indra/newview/skins/default/xui/it/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/it/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Profilo articolo">
+	<panel.string name="loading_experience">
+		(caricamento in corso)
+	</panel.string>
 	<panel.string name="unknown">
 		(sconosciuto)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Acquisito:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Esperienza:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Tu puoi:
diff --git a/indra/newview/skins/default/xui/it/strings.xml b/indra/newview/skins/default/xui/it/strings.xml
index 17ce8aaf5ecf4408397ed325597e180b2e8e63b3..25c784975ee0184125996ca1e8af90ac1e9e40c2 100755
--- a/indra/newview/skins/default/xui/it/strings.xml
+++ b/indra/newview/skins/default/xui/it/strings.xml
@@ -446,6 +446,9 @@ Prova ad accedere nuovamente tra un minuto.
 	<string name="TooltipMustSingleDrop">
 		Solo un singolo oggetto può essere creato qui
 	</string>
+	<string name="TooltipTooManyWearables">
+		Non puoi indossare una cartella che contiene più di [AMOUNT] elementi. Per modificare questo limite, accedi ad Avanzate &gt; Mostra impostazioni di debug &gt; WearFolderLimit.
+	</string>
 	<string name="TooltipPrice" value="L$ [AMOUNT]:"/>
 	<string name="TooltipOutboxDragToWorld">
 		Non puoi rezzare elementi nella tua casella in uscita del rivenditore
@@ -1051,9 +1054,7 @@ Prova ad accedere nuovamente tra un minuto.
 	<string name="AgentNameSubst">
 		(Tu)
 	</string>
-	<string name="JoinAnExperience">
-		Partecipa a un&apos;esperienza
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Omette gli avvisi durante la gestione degli elenchi di accesso alle proprietà immobiliari
 	</string>
@@ -1858,6 +1859,9 @@ Prova ad accedere nuovamente tra un minuto.
 	<string name="CompileQueueUnknownFailure">
 		Errore di dowload sconosciuto
 	</string>
+	<string name="CompileNoExperiencePerm">
+		Saltato lo script [SCRIPT] con l&apos;esperienza [EXPERIENCE].
+	</string>
 	<string name="CompileQueueTitle">
 		Avanzamento ricompilazione
 	</string>
@@ -5177,6 +5181,87 @@ Prova a racchiudere il percorso dell&apos;editor in doppie virgolette.
 	<string name="UserDictionary">
 		[User]
 	</string>
+	<string name="experience_tools_experience">
+		Esperienza
+	</string>
+	<string name="ExperienceNameNull">
+		(nessuna esperienza)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(esperienza senza titolo)
+	</string>
+	<string name="Land-Scope">
+		A livello di terreno
+	</string>
+	<string name="Grid-Scope">
+		A livello di griglia
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		CONSENTITO
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		BLOCCATO
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		FORNITORE
+	</string>
+	<string name="Admin_Experiences_Tab">
+		AMMINISTRATORE
+	</string>
+	<string name="Recent_Experiences_Tab">
+		RECENTE
+	</string>
+	<string name="Owned_Experiences_Tab">
+		DI PROPRIETÀ
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], massimo [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		gestione dei tuoi comandi
+	</string>
+	<string name="ExperiencePermission3">
+		attivazione di animazioni per il tuo avatar
+	</string>
+	<string name="ExperiencePermission4">
+		collegamento al tuo avatar
+	</string>
+	<string name="ExperiencePermission9">
+		monitoraggio della tua videocamera
+	</string>
+	<string name="ExperiencePermission10">
+		controllo della tua videocamera
+	</string>
+	<string name="ExperiencePermission11">
+		ti teletrasporta
+	</string>
+	<string name="ExperiencePermission12">
+		accettazione automaticamente delle autorizzazioni per le esperienze
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		ha eseguito un&apos;operazione sconosciuta: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Gestione dei comandi
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Attivazione di animazioni
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Collegamento
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Monitoraggio videocamera
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Controllo videocamera
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Teleport
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Autorizzazione
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		Le conversazioni non vengono registrate. Per iniziare a registrare, seleziona &quot;Salva: Solo registro&quot; oppure &quot;Salva: Registri e trascrizioni&quot; in Preferenze &gt; Chat.
 	</string>
diff --git a/indra/newview/skins/default/xui/it/teleport_strings.xml b/indra/newview/skins/default/xui/it/teleport_strings.xml
index bd967ebcc41230e42e063b2d3d5b16673887c766..e4c4dda8890847e5604bd033fec5323b6fda694d 100755
--- a/indra/newview/skins/default/xui/it/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/it/teleport_strings.xml
@@ -46,6 +46,9 @@ Per ripetere l&apos;esercitazione, visita &apos;Welcome Island Public&apos;.
 		<message name="MustGetAgeRegion">
 			Per poter entrare in questa regione devi avere almeno 18 anni.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Impossibile entrare nella regione. &apos;[REGION_NAME]&apos; è una regione per giochi di abilità e per entrare è necessario soddisfare alcuni requisiti. Per dettagli, leggi le [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life domande frequenti sui giochi di abilità].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/ja/floater_about_land.xml b/indra/newview/skins/default/xui/ja/floater_about_land.xml
index 3b4b5ed070e351390b7054d4d2d8d48f9b2a162d..fc1ed5554a692e0f20711ebbc79f16f8d94a4ed4 100755
--- a/indra/newview/skins/default/xui/ja/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/ja/floater_about_land.xml
@@ -310,9 +310,6 @@
 			<panel.string name="push_restrict_region_text">
 				プッシュ禁止 (地域設定優先)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				他の区画にいるアバターは、
-			</panel.string>
 			<text name="allow_label">
 				他の住人への許可:
 			</text>
@@ -338,22 +335,6 @@
 			<check_box label="安全(ダメージなし)" name="check safe" tool_tip="チェックを入れるとこの土地でのダメージコンバットが無効になり、「安全」に設定されます。 チェックを外すとダメージコンバットが有効になります。"/>
 			<check_box label="プッシュ禁止" name="PushRestrictCheck" tool_tip="スクリプトによるプッシュを禁止します。 このオプションを選択することにより、あなたの土地での破壊的行動を防ぐことができます。"/>
 			<check_box label="検索に区画を表示(週 L$ 30)" name="ShowDirectoryCheck" tool_tip="この区画を検索結果に表示します"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="全カテゴリ" name="item0"/>
-				<combo_box.item label="Linden 所在地" name="item1"/>
-				<combo_box.item label="Adult" name="item2"/>
-				<combo_box.item label="アートとカルチャー" name="item3"/>
-				<combo_box.item label="ビジネス" name="item4"/>
-				<combo_box.item label="教育的" name="item5"/>
-				<combo_box.item label="ゲーム" name="item6"/>
-				<combo_box.item label="たまり場" name="item7"/>
-				<combo_box.item label="新住人に好意的" name="item8"/>
-				<combo_box.item label="公園と自然" name="item9"/>
-				<combo_box.item label="住宅用" name="item10"/>
-				<combo_box.item label="ショッピング" name="item11"/>
-				<combo_box.item label="レンタル" name="item13"/>
-				<combo_box.item label="その他" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="全カテゴリ" name="item0"/>
 				<combo_box.item label="Linden 所在地" name="item1"/>
@@ -450,15 +431,9 @@
 			<panel.string name="access_estate_defined">
 				(エステートに限定)
 			</panel.string>
-			<panel.string name="allow_public_access">
-				パブリックアクセスを許可 ([MATURITY])(注意:このオプションをオフにすると立入禁止ラインが作成されます)
-			</panel.string>
 			<panel.string name="estate_override">
 				1 つ以上のオプションが、不動産レベルで設定されています。
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				この区画へのアクセス
-			</text>
 			<check_box label="パブリックアクセスを許可(このオプションをオフにすると立入禁止ラインが作成されます)" name="public_access"/>
 			<text name="Only Allow">
 				次の住人にのみアクセスを許可:
@@ -490,5 +465,6 @@
 				<button label="削除" label_selected="削除" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="経験" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_experience_search.xml b/indra/newview/skins/default/xui/ja/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..37f3da7d73d7e70afa0b5c0342db301fe9f7bce0
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="体験を選択"/>
diff --git a/indra/newview/skins/default/xui/ja/floater_experienceprofile.xml b/indra/newview/skins/default/xui/ja/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7819b887db5a5b909633d1be161b55d6c8b0aad6
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(なし)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="体験プロフィール"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="編集" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								評価:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								場所:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								所有者:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								グループ:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="許可" name="allow_btn"/>
+							<button label="無視" name="forget_btn"/>
+							<button label="ブロック" name="block_btn"/>
+							<text name="privileged">
+								この体験はすべての住人に対して有効です。
+							</text>
+							<button label="嫌がらせの報告" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="名前:"/>
+					<text name="edit_experience_desc_label" value="説明:"/>
+					<button label="グループ" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						評価:
+					</text>
+					<icons_combo_box label="Moderate" name="edit_ContentRatingText" tool_tip="体験のレーティング区分を上げると、体験を許可したすべての住人の権限がリセットされます。">
+						<icons_combo_box.item label="Adult" name="Adult" value="42"/>
+						<icons_combo_box.item label="Moderate" name="Mature" value="21"/>
+						<icons_combo_box.item label="全般" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						場所:
+					</text>
+					<button label="現在に設定" name="location_btn"/>
+					<button label="場所をクリア" name="clear_btn"/>
+					<check_box label="体験を有効にする" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="検索で表示しない" name="edit_private_btn"/>
+					<text name="changes" value="体験がすべてのリージョンに表示されるには数分かかる場合があります。"/>
+					<button label="戻る" name="cancel_btn"/>
+					<button label="保存" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_experiences.xml b/indra/newview/skins/default/xui/ja/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5186f8ee385729c1f9c6b8c193914fe671a6907d
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="体験"/>
diff --git a/indra/newview/skins/default/xui/ja/floater_facebook.xml b/indra/newview/skins/default/xui/ja/floater_facebook.xml
index d99841f0de376be8d3f8e22dfc9b07907fdc11e5..76149a875e326b834a8c0199e599cbd569da5a26 100644
--- a/indra/newview/skins/default/xui/ja/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/ja/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="FACEBOOK に投稿">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="ステータス" name="panel_facebook_status"/>
-			<panel label="写真" name="panel_facebook_photo"/>
-			<panel label="チェックイン" name="panel_facebook_place"/>
-			<panel label="フレンド" name="panel_facebook_friends"/>
-			<panel label="アカウント" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				エラー
-			</text>
-			<text name="connection_loading_text">
-				ロード中...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="ステータス" name="panel_facebook_status"/>
+		<panel label="写真" name="panel_facebook_photo"/>
+		<panel label="チェックイン" name="panel_facebook_place"/>
+		<panel label="フレンド" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		エラー
+	</text>
+	<text name="connection_loading_text">
+		ロード中...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/ja/floater_inventory_view_finder.xml
index af96edda79bbf8cc5082f29c00ed9d247cca6c7c..19d767ab579c33c2aecead34204121dc8b6f0d61 100755
--- a/indra/newview/skins/default/xui/ja/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/ja/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="服" name="check_clothing"/>
 	<check_box label="ジェスチャー" name="check_gesture"/>
 	<check_box label="ランドマーク" name="check_landmark"/>
-	<check_box label="メッシュ" name="check_mesh"/>
 	<check_box label="ノートカード" name="check_notecard"/>
+	<check_box label="メッシュ" name="check_mesh"/>
 	<check_box label="オブジェクト" name="check_object"/>
 	<check_box label="スクリプト" name="check_script"/>
 	<check_box label="サウンド" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		-または-
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="より新しい" name="newer"/>
+		<radio_item label="より古い" name="older"/>
+	</radio_group>
 	<spinner label="経過時間" name="spin_hours_ago"/>
 	<spinner label="経過日数" name="spin_days_ago"/>
 	<button label="閉じる" label_selected="閉じる" name="Close"/>
diff --git a/indra/newview/skins/default/xui/ja/floater_lagmeter.xml b/indra/newview/skins/default/xui/ja/floater_lagmeter.xml
index e3546cd83754744f7265847ac9780806d4158a5e..dd51d64ed2f0fab7e1ef60dc7f7b3e1d335daea6 100644
--- a/indra/newview/skins/default/xui/ja/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/ja/floater_lagmeter.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_lagmeter" title="ラグメーター">
 	<floater.string name="max_title_msg">
-		ラグ メーター
+		ラグ計測器
 	</floater.string>
 	<floater.string name="max_width_px">
-		350
+		360
 	</floater.string>
 	<floater.string name="min_title_msg">
 		ラグ
@@ -22,28 +22,28 @@
 		15
 	</floater.string>
 	<floater.string name="client_frame_time_window_bg_msg">
-		ノーマル、ウィンドウは背景に
+		標準、ウィンドウは背景に
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		クライアント フレームレート < [CLIENT_FRAME_RATE_CRITICAL]
+		クライアントのフレームレートが [CLIENT_FRAME_RATE_CRITICAL] 以下
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		クライアント フレームレート: [CLIENT_FRAME_RATE_CRITICAL] ~ [CLIENT_FRAME_RATE_WARNING]
+		クライアントのフレーム レートが [CLIENT_FRAME_RATE_CRITICAL] と [CLIENT_FRAME_RATE_WARNING] の間
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
-		ノーマル
+		標準
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		考えられる原因: 描画距離の設定が大きすぎる
+		考えられる原因:描画距離の設定が高すぎる
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		考えられる原因: 画像のロード中
+		考えられる原因:画像のロード中
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		考えられる原因: メモリ内の画像数が多すぎる
+		考えられる原因:メモリ内に画像が多すぎる
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		考えられる原因: 画面に含まれる複雑なオブジェクトが多すぎる
+		考えられる原因:シーンに複雑なオブジェクトが多すぎる
 	</floater.string>
 	<floater.string name="network_text_msg">
 		ネットワーク
@@ -55,13 +55,13 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		接続でドロップされるパケットの割合: > [NETWORK_PACKET_LOSS_CRITICAL]
+		接続で [NETWORK_PACKET_LOSS_CRITICAL]% を超えるパケットが脱落しています
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		接続でドロップされるパケットの割合:[NETWORK_PACKET_LOSS_WARNING] ~ [NETWORK_PACKET_LOSS_CRITICAL]
+		接続で [NETWORK_PACKET_LOSS_WARNING]%~[NETWORK_PACKET_LOSS_CRITICAL]% のパケットが脱落しています
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
-		ノーマル
+		標準
 	</floater.string>
 	<floater.string name="network_ping_critical_ms">
 		600
@@ -70,16 +70,16 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		接続の ping 時間: > [NETWORK_PING_CRITICAL] ミリ秒
+		接続の ping 時間が [NETWORK_PING_CRITICAL] ms 以上です
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
-		接続の ping 時間: [NETWORK_PING_WARNING] ~ [NETWORK_PING_CRITICAL] ミリ秒
+		接続の ping 時間が [NETWORK_PING_WARNING]~[NETWORK_PING_CRITICAL] ms です
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		接続不良になっているか、帯域幅設定が高すぎます。
+		接続不良または &apos;帯域幅&apos; の設定が高すぎる可能性があります
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		接続不良になっているか、ファイル共有アプリケーションに問題があります。
+		接続不良またはファイル共有アプリの可能性があります。
 	</floater.string>
 	<floater.string name="server_text_msg">
 		サーバー
@@ -94,31 +94,31 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		シミュレーターのフレームレート: < [SERVER_FRAME_RATE_CRITICAL]
+		シミュレータのフレームレートが [SERVER_FRAME_RATE_CRITICAL] 以下
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		シミュレーターのフレームレート: [SERVER_FRAME_RATE_CRITICAL] ~ [SERVER_FRAME_RATE_WARNING]
+		シミュレータのフレームレートが [SERVER_FRAME_RATE_CRITICAL] ~ [SERVER_FRAME_RATE_WARNING] の間
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
-		ノーマル
+		標準
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
-		考えられる原因: 物理的オブジェクトが多すぎる
+		考えられる原因:物理オブジェクトが多すぎる
 	</floater.string>
 	<floater.string name="server_scripts_cause_msg">
-		考えられる原因: スクリプトを含むオブジェクトが多すぎる
+		考えられる原因:スクリプトオブジェクトが多すぎる
 	</floater.string>
 	<floater.string name="server_net_cause_msg">
-		考えられる原因: ネットワーク トラフィック過大
+		考えられる原因:ネットワークトラフィックが多すぎる
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		考えられる原因: 地域内にて動いているアバターが多すぎる
+		考えられる原因:リージョン内の人の移動が多すぎる
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
-		考えられる原因: 画像計算が多すぎる
+		考えられる原因:画像計算が多すぎる
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		考えられる原因: シミュレーターの過負荷
+		考えられる原因:シミュレータのロードが重すぎる
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -131,21 +131,21 @@
 		クライアント
 	</text>
 	<text name="client_text">
-		ノーマル
+		標準
 	</text>
 	<button name="network_lagmeter" tool_tip="ネットワーク ラグ ステータス"/>
 	<text name="network">
 		ネットワーク
 	</text>
 	<text name="network_text">
-		ノーマル
+		標準
 	</text>
 	<button name="server_lagmeter" tool_tip="サーバー ラグ ステータス"/>
 	<text name="server">
 		サーバー
 	</text>
 	<text name="server_text">
-		ノーマル
+		標準
 	</text>
-	<button label="&gt;&gt; " name="minimize" tool_tip="フローターのサイズをトグル"/>
+	<button label="&gt;&gt;" name="minimize" tool_tip="フローターのサイズをトグル"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml
index 5a155c9f12c49b2d13d0068e44a45c4fe5f95e9a..864feef8cc9ede8fe83298b68d036f6097bd137f 100755
--- a/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		スクリプト: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		オフにして、現在の体験を削除する
+	</floater.string>
+	<floater.string name="no_experiences">
+		どの体験にも権限がありません
+	</floater.string>
+	<floater.string name="add_experiences">
+		選択して、体験を追加する
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		クリックして、体験プロフィールを表示する
+	</floater.string>
+	<floater.string name="loading">
+		ロード中...
+	</floater.string>
 	<button label="リセット" label_selected="リセット" name="Reset"/>
 	<check_box initial_value="true" label="実行中" name="running"/>
 	<check_box initial_value="true" label="Mono" name="mono"/>
+	<check_box label="次の体験を使用:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_openobject.xml b/indra/newview/skins/default/xui/ja/floater_openobject.xml
index af02ffedda1091d2874fba0bfa47a6913a418458..7bdd1e498037ebcf2ffd395a6c97938630685411 100755
--- a/indra/newview/skins/default/xui/ja/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/ja/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="インベントリにコピー" label_selected="インベントリにコピー" name="copy_to_inventory_button"/>
-	<button label="コピーして装着" label_selected="コピーして装着" name="copy_and_wear_button"/>
+	<button label="持ち物にコピー" label_selected="持ち物にコピー" name="copy_to_inventory_button"/>
+	<button label="コピーしてアウトフィットに追加" label_selected="コピーしてアウトフィットに追加" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_report_abuse.xml b/indra/newview/skins/default/xui/ja/floater_report_abuse.xml
index 9021be5dda0b037f2c4944fd02d8991724bfd2a5..7631cd7ababbf0235db2fb55b8880ee103dfb26f 100755
--- a/indra/newview/skins/default/xui/ja/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/ja/floater_report_abuse.xml
@@ -76,7 +76,7 @@
 		<combo_box.item label="土地 &gt; 不法侵入 &gt; オブジェクトまたはテクスチャ" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="土地>不法侵入>パーティクル" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="土地>不法侵入>樹木/植物" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="賭けまたはギャンブル" name="Wagering_gambling"/>
+		<combo_box.item label="ゲーミング ポリシー違反" name="Wagering_gambling"/>
 		<combo_box.item label="その他" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/ja/floater_snapshot.xml b/indra/newview/skins/default/xui/ja/floater_snapshot.xml
index 7d0fb27932307733171e201f9df96d232d9ac383..f04193d034e4b5fa5400428988b36fcc3be75627 100755
--- a/indra/newview/skins/default/xui/ja/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/ja/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		コンピュータに保存できませんでした。
 	</string>
-	<button name="advanced_options_btn" tool_tip="詳しい設定"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[SIZE] キロバイト
-	</text>
+	<button label="æ›´æ–°" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			詳しい設定
-		</text>
 		<text name="layer_type_label">
 			キャプチャ:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="フィルターなし" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH]px (横幅) x [HEIGHT]px (高さ)
+	</text>
+	<text name="file_size_label">
+		[SIZE] キロバイト
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/floater_top_objects.xml b/indra/newview/skins/default/xui/ja/floater_top_objects.xml
index c44f409d4eec7e60bf0235763298aaf03c4a42c2..cc81ead11632e11b6147a56b6b3702f9f81f844f 100755
--- a/indra/newview/skins/default/xui/ja/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/ja/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		何も見つかりませんでした。
 	</floater.string>
+	<floater.string name="URLs">
+		URL
+	</floater.string>
+	<floater.string name="memory">
+		メモリ(KB)
+	</floater.string>
 	<text name="title_text">
 		ロード中...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="所有者" name="owner"/>
 		<scroll_list.columns label="ロケーション" name="location"/>
 		<scroll_list.columns label="区画" name="parcel"/>
-		<scroll_list.columns label="時間" name="time"/>
+		<scroll_list.columns label="日付" name="time"/>
 		<scroll_list.columns label="URL" name="URLs"/>
 		<scroll_list.columns label="メモリ(KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/ja/floater_twitter.xml b/indra/newview/skins/default/xui/ja/floater_twitter.xml
index 7cd71df80046a0e410bfd71d78330a67eecc692a..6df204555484d08854fdc8b4f7b9d36e55865ea9 100644
--- a/indra/newview/skins/default/xui/ja/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/ja/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="作成" name="panel_twitter_photo"/>
-			<panel label="アカウント" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				エラー
-			</text>
-			<text name="connection_loading_text">
-				ロード中...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="作成" name="panel_twitter_photo"/>
+		<panel label="アカウント" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		エラー
+	</text>
+	<text name="connection_loading_text">
+		ロード中...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ja/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/ja/menu_inventory_gear_default.xml
index f38dbc71a8a33ac580afdb126dd1ea1df1339e96..18478b5711c9848398ad53f2cc8da7c6ddf5761e 100755
--- a/indra/newview/skins/default/xui/ja/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/ja/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="新しい順に並べ替え" name="sort_by_recent"/>
 	<menu_item_check label="フォルダを常に名前順に並べる" name="sort_folders_by_name"/>
 	<menu_item_check label="システムフォルダを上にソートする" name="sort_system_folders_to_top"/>
-	<menu_item_call label="フィルターを表示" name="show_filters"/>
+	<menu_item_call label="フィルターを表示..." name="show_filters"/>
 	<menu_item_call label="フィルターをリセット" name="reset_filters"/>
 	<menu_item_call label="すべてのフォルダを閉じる" name="close_folders"/>
 	<menu_item_call label="紛失物を空にする" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/ja/menu_url_experience.xml b/indra/newview/skins/default/xui/ja/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..582784c2f00cd2b0e7440e80d75b7a21fb6d75d5
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="SLurl をクリップボードにコピー" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/ja/menu_viewer.xml b/indra/newview/skins/default/xui/ja/menu_viewer.xml
index 0b85c693f0c468a1edaaa782957807ce196962a4..40002b4f3346f16ebb92ee75312044545f2d90d2 100755
--- a/indra/newview/skins/default/xui/ja/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/ja/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="新しいインベントリウィンドウ" name="NewInventoryWindow"/>
 		<menu_item_call label="場所..." name="Places"/>
 		<menu_item_call label="ピック..." name="Picks"/>
+		<menu_item_call label="体験..." name="Experiences"/>
 		<menu_item_call label="カメラコントロール..." name="Camera Controls"/>
 		<menu label="ムーブメント" name="Movement">
 			<menu_item_call label="座る" name="Sit Down Here"/>
@@ -48,7 +49,7 @@
 		<menu_item_check label="フレンド" name="My Friends"/>
 		<menu_item_check label="グループ" name="My Groups"/>
 		<menu_item_check label="近くにいる人" name="Active Speakers"/>
-		<menu_item_call label="リストをブロック" name="Block List"/>
+		<menu_item_check label="リストをブロック" name="Block List"/>
 		<menu_item_check label="着信拒否" name="Do Not Disturb"/>
 	</menu>
 	<menu label="世界" name="World">
diff --git a/indra/newview/skins/default/xui/ja/mime_types.xml b/indra/newview/skins/default/xui/ja/mime_types.xml
index 54663a0367a78978591d9bf8644c9346ba61c8e5..bfc8d0b724440adb65bcf884ac39d2f443798432 100755
--- a/indra/newview/skins/default/xui/ja/mime_types.xml
+++ b/indra/newview/skins/default/xui/ja/mime_types.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <mimetypes name="default">
 	<widgetset name="web">
 		<label name="web_label">
@@ -27,7 +27,7 @@
 			コンテンツなし
 		</label>
 		<tooltip name="none_tooltip">
-			メディアなし
+			ここにメディアなし
 		</tooltip>
 	</widgetset>
 	<widgetset name="image">
diff --git a/indra/newview/skins/default/xui/ja/mime_types_linux.xml b/indra/newview/skins/default/xui/ja/mime_types_linux.xml
index 0ec1030113a4fb28989d33d90896ba5ce1b9036a..cb1e48148fe2d4c06b0f22d36b2a2021904b3d21 100755
--- a/indra/newview/skins/default/xui/ja/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/ja/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			このロケーションのオーディオを再生する
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			コンテンツなし
+		</label>
+		<tooltip name="none_tooltip">
+			ここにメディアなし
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			リアルタイム・ストリーミング
diff --git a/indra/newview/skins/default/xui/ja/mime_types_mac.xml b/indra/newview/skins/default/xui/ja/mime_types_mac.xml
index 0ec1030113a4fb28989d33d90896ba5ce1b9036a..cb1e48148fe2d4c06b0f22d36b2a2021904b3d21 100755
--- a/indra/newview/skins/default/xui/ja/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/ja/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			このロケーションのオーディオを再生する
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			コンテンツなし
+		</label>
+		<tooltip name="none_tooltip">
+			ここにメディアなし
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			リアルタイム・ストリーミング
diff --git a/indra/newview/skins/default/xui/ja/notifications.xml b/indra/newview/skins/default/xui/ja/notifications.xml
index 1d52b4203928dc15e3ea0144565a3881a07d7d8a..fba89dc29694826da8d06b6d92d87e7857d18197 100755
--- a/indra/newview/skins/default/xui/ja/notifications.xml
+++ b/indra/newview/skins/default/xui/ja/notifications.xml
@@ -72,6 +72,10 @@
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="取り消し" yestext="はい"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		[APP_NAME] をアップデート中にエラーが発生しました。  ビューワの [http://get.secondlife.com 最新バージョンをダウンロード] してください。
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -597,6 +601,9 @@ L$ が不足しているのでこのグループに参加することができ
 	<notification name="RegionNoTerraforming">
 		[REGION] では、地形の変更ができません。
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		あなたには [PARCEL] 区画を地形編集する許可がありません。
+	</notification>
 	<notification name="CannotCopyWarning">
 		あなたには[ITEMS]というアイテムをコピーする許可がありません。他の住人に提供すると、そのアイテムはあなたのインベントリから削除されます。本当にこれらのアイテムを譲りますか?
 		<usetemplate name="okcancelbuttons" notext="いいえ" yestext="はい"/>
@@ -1863,6 +1870,30 @@ http://wiki.secondlife.com/wiki/Setting_your_display_name を参照してくだ
 		不動産マネージャーを、この不動産限定、または [ALL_ESTATES] から、削除しますか?
 		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
 	</notification>
+	<notification label="不動産を選択" name="EstateAllowedExperienceAdd">
+		この不動産の許可リストにのみ追加しますか、それとも [ALL_ESTATES] の許可リストに追加しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
+	<notification label="不動産を選択" name="EstateAllowedExperienceRemove">
+		この不動産の許可リストからのみ削除しますか、それとも [ALL_ESTATES] の許可リストから削除しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
+	<notification label="不動産を選択" name="EstateBlockedExperienceAdd">
+		この不動産のブロックされたリストにのみ追加しますか、それとも [ALL_ESTATES] のブロックされたリストに追加しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
+	<notification label="不動産を選択" name="EstateBlockedExperienceRemove">
+		この不動産のブロックされたリストからのみ削除しますか、それとも [ALL_ESTATES] のブロックされたリストから削除しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
+	<notification label="不動産を選択" name="EstateTrustedExperienceAdd">
+		この不動産のキー体験リストにのみ追加しますか、それとも [ALL_ESTATES] のキー体験リストに追加しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
+	<notification label="不動産を選択" name="EstateTrustedExperienceRemove">
+		この不動産の信頼済み体験リストからのみ削除しますか、それとも [ALL_ESTATES] の信頼済みリストから削除しますか?
+		<usetemplate canceltext="取り消し" name="yesnocancelbuttons" notext="すべての不動産" yestext="この不動産"/>
+	</notification>
 	<notification label="キックを確認" name="EstateKickUser">
 		この不動産から [EVIL_USER] を追い出しますか?
 		<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
@@ -1937,6 +1968,10 @@ http://wiki.secondlife.com/wiki/Setting_your_display_name を参照してくだ
 		あなたの環境設定がサーバーと同期していないため、テレポートに技術的な問題が発生しています。
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		リージョンに入ることができません。&apos;[REGION_NAME]&apos; はスキル ゲーミング リージョンであり、あなたはこのリージョンに入るための特定の基準を満たす必要があります。詳しくは、[http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life スキル ゲーミングのよくある質問] を参照してください。
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		今後、[RATING] コンテンツ付きの地域(リージョン)を訪問しようとしているという通知を受け取りません。後でメニューバーの「ミー」 &gt; 「環境設定」 &gt; 「一般」を使用して、コンテンツの環境設定を変更できます。
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2251,6 +2286,9 @@ Linden Lab
 			<button ignore="交換しない" name="No" text="キャンセル"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		[AMOUNT] 以上のアイテムを含むフォルダを装着できません。「詳細設定」 &gt; 「デバッグ設定を表示」 &gt; 「WearFolderLimit」でこの制限を変更できます。
+	</notification>
 	<notification label="「通知を受けない」モードの警告" name="DoNotDisturbModePay">
 		「通知を受けない」をオンにします。この支払との交換で提供されるアイテムが受信されなくなります。
 
@@ -2862,7 +2900,7 @@ Web ページにリンクすると、他人がこの場所に簡単にアクセ
 
 [MESSAGE]
 
-送信元のオブジェクト:&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;、所有者:[NAME]?
+送信元のオブジェクト:&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;、所有者:[NAME]
 		<form name="form">
 			<button name="Gotopage" text="ページに移動"/>
 			<button name="Cancel" text="取り消し"/>
@@ -2888,6 +2926,72 @@ Web ページにリンクすると、他人がこの場所に簡単にアクセ
 			<button name="Mute" text="ブロック"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		新しい体験を取得できません:
+[ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		所有者が選択されたグループのメンバーでないため、体験グループへの変更が無視されました。
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		体験プロフィールを更新するときに、編集不可の &apos;[field]&apos; フィールドが無視されました。
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		体験の所有者のみが設定できる &apos;[field]&apos;フィールドへの変更を無視しました。
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		所有者のレーティング区分より高いレーティング区分の体験を設定できません。
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		次の条件により、体験プロフィール名および説明の更新ができませんでした: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		体験 secondlife:///app/experience/[public_id]/profile を削除するために、[region_name] リージョンからテレポートされ、このリージョンに入ることはできなくなりました。
+		<form name="form">
+			<ignore name="ignore" text="体験を削除するために、リージョンから追放されました"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		キー体験 secondlife:///app/experience/[public_id]/profile に参加することにより、[region_name] リージョンに入ることを許可されました。この体験を削除すると、このリージョンから追放される可能性があります。
+		<form name="form">
+			<ignore name="ignore" text="体験によりリージョンに入ることを許可されました"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		この目的地へのアクセス権がありません。下の体験を受け入れることにより、このリージョンに入ることができます:
+
+[EXPERIENCE_LIST]
+
+その他のキー体験を利用できます。
+	</notification>
+	<notification name="ExperienceEvent">
+		[EventType] by the secondlife:///app/experience/[public_id]/profile experience により、オブジェクトでアクション ([EventType]) を実行することが許可されました。
+所有者:secondlife:///app/agent/[OwnerID]/inspect
+オブジェクト名:[ObjectName]
+区画名:[ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		[EventType] by the secondlife:///app/experience/[public_id]/profile experience により、添付ファイルでアクション ([EventType]) を実行することが許可されました。
+所有者:secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		[NAME] が所有する「&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;」 というオブジェクトが、[GRID_WIDE] 体験への参加を要求しています:
+
+[EXPERIENCE]
+
+権限が許可されると、体験プロフィールから呼び出さない限り、この体験にこのメッセージが再び表示されることはありません。
+
+この体験に関連付けられたスクリプトにより、この体験が有効なリージョンで以下のことを実行できます: 
+
+[QUESTIONS]よろしいですか?
+		<form name="form">
+			<button name="BlockExperience" text="体験をブロック"/>
+			<button name="Mute" text="オブジェクトをブロックする"/>
+			<button name="Yes" text="はい"/>
+			<button name="No" text="いいえ"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		警告:オブジェクト &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; は、あなたのリンデンドルアカウントへのフルアクセスを要求しています。アクセスを許可すると、このオブジェクトは、特に警告を発せずに単発で、随時アカウントから資金を削除するか、アカウントを完全に空にします。
   
@@ -3203,6 +3307,10 @@ M キーを押して変更します。
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( 作成後[EXISTENCE]秒経過)
 &apos;[BODYREGION]&apos;の[RESOLUTION]のベークドテクスチャは[TIME]秒後にローカルに更新されました。
+	</notification>
+	<notification name="CannotUploadTexture">
+		テクスチャをアップロードできません。
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		コピー不可および/または転送不可のため、このテクスチャを表示できません。
diff --git a/indra/newview/skins/default/xui/ja/panel_experience_info.xml b/indra/newview/skins/default/xui/ja/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b3a17fcb564c593e55c232fa4218de70b3e28bdc
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="体験プロフィール"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						場所:
+					</text>
+					<text name="LocationTextText">
+						どこか
+					</text>
+					<button label="テレポート" name="teleport_btn"/>
+					<button label="地図" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						マーケットプレイスストア:
+					</text>
+					<text name="LocationTextText">
+						どこか
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						評価:
+					</text>
+					<text name="ContentRatingText">
+						Adult
+					</text>
+					<text name="Owner">
+						所有者:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="編集" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/ja/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..84e60aea560a5dec4b175f012f15f086157002aa
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		ローディング...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		許可された体験:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		ブロックされた体験:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		キー体験:
+	</panel.string>
+	<panel.string name="no_results">
+		(空)
+	</panel.string>
+	<text name="text_name">
+		体験リスト
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="名前" name="experience_name"/>
+	</scroll_list>
+	<button label="追加..." name="btn_add"/>
+	<button label="削除" name="btn_remove"/>
+	<button label="プロフィール..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_experience_list_item.xml b/indra/newview/skins/default/xui/ja/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d72d2bebf6d05a1eb56cc168789dbe3bd76f970e
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		ダミー名
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_experience_log.xml b/indra/newview/skins/default/xui/ja/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..39e0e27b057777bf336efa0fa6d3cb741e04dfbf
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="イベントなし。"/>
+	<string name="loading" value="ローディング..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="時間" name="time"/>
+				<columns label="イベント" name="event"/>
+				<columns label="体験" name="experience_name"/>
+				<columns label="オブジェクト" name="object_name"/>
+			</scroll_list>
+			<button label="知らせる" name="btn_notify"/>
+			<button label="プロフィール" name="btn_profile_xp"/>
+			<button label="報告" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="すべてのイベントを通知   日数" name="notify_all"/>
+			<button label="クリア" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_experience_search.xml b/indra/newview/skins/default/xui/ja/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9ab84e7d18819b73db610b6fdb5c98cc1be99ec5
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		「[TEXT]」は見つかりませんでした
+	</string>
+	<string name="no_results">
+		検索結果:ゼロ
+	</string>
+	<string name="searching">
+		検索中...
+	</string>
+	<string name="loading">
+		ロード中...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="進む" name="find"/>
+		<icons_combo_box label="Moderate" name="maturity">
+			<icons_combo_box.item label="Adult" name="Adult" value="42"/>
+			<icons_combo_box.item label="Moderate" name="Mature" value="21"/>
+			<icons_combo_box.item label="全般" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="名前" name="experience_name"/>
+			<columns label="所有者" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="取り消し" name="cancel_btn"/>
+		<button label="プロフィールを表示" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_experiences.xml b/indra/newview/skins/default/xui/ja/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ab0d2a97a4ff4d8775e0587779d66d9895d0ac0a
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="体験をロード中..."/>
+	<string name="no_experiences" value="体験がありません。"/>
+	<string name="acquire" value="体験を取得"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_facebook_friends.xml b/indra/newview/skins/default/xui/ja/panel_facebook_friends.xml
index 18ae4f929548f0195c946f4f85b836bca73bc3d2..17c628a19035f5523dd94c63887edf88859c949d 100644
--- a/indra/newview/skins/default/xui/ja/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/ja/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Second Life の住人にもなっている Facebook の友だちがいません。今すぐ Facebook の友だちに Second Life に参加してもらいましょう!"/>
-	<string name="facebook_friends_no_connected" value="現在 Facebook に接続されていません。「アカウント」タブに進んで、この機能を有効にしてください。"/>
+	<string name="facebook_friends_no_connected" value="現在 Facebook に接続されていません。「ステータス」タブに進んで、この機能を有効にしてください。"/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="SL の友だち"/>
 		<accordion_tab name="tab_suggested_friends" title="これらの人を SL の友だちとして追加"/>
diff --git a/indra/newview/skins/default/xui/ja/panel_facebook_photo.xml b/indra/newview/skins/default/xui/ja/panel_facebook_photo.xml
index f6d920bd5ef578a8b7b2b8847fdcd41e2ce22952..c48f13456bad1b045e83d27d258db698a9f81052 100644
--- a/indra/newview/skins/default/xui/ja/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/ja/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="画像解像度">
-				<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="画像フィルター">
-				<combo_box.item label="フィルターなし" name="NoFilter"/>
-			</combo_box>
-			<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
-			<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
-			<text name="caption_label">
-				コメント (オプション):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="投稿" name="post_photo_btn"/>
-			<button label="取り消し" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="画像解像度">
+		<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="画像フィルター">
+		<combo_box.item label="フィルターなし" name="NoFilter"/>
+	</combo_box>
+	<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
+	<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
+	<text name="caption_label">
+		コメント (オプション):
+	</text>
+	<button label="投稿" name="post_photo_btn"/>
+	<button label="取り消し" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_facebook_place.xml b/indra/newview/skins/default/xui/ja/panel_facebook_place.xml
index e29f69101f9d6cf7899beebaea861958a2eaee08..61138f90c1419e9bf538734433cf2e3a862b1690 100644
--- a/indra/newview/skins/default/xui/ja/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/ja/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				自分がいる場所について何か言ってください:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="投稿" name="post_place_btn"/>
-			<button label="取り消し" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		自分がいる場所について何か言ってください:
+	</text>
+	<check_box initial_value="false" label="場所の俯瞰図を含める" name="add_place_view_cb"/>
+	<button label="投稿" name="post_place_btn"/>
+	<button label="取り消し" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_facebook_status.xml b/indra/newview/skins/default/xui/ja/panel_facebook_status.xml
index 84e5ae047453007f02d1a5a88734d7ce22299110..9d962c9d62ad09670d8e88c50bf1215e6b41c924 100644
--- a/indra/newview/skins/default/xui/ja/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/ja/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				今、何を考えている?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="投稿" name="post_status_btn"/>
-			<button label="取り消し" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="次のユーザーとして Facebook に接続:"/>
+	<string name="facebook_disconnected" value="Facebook に接続していません"/>
+	<text name="account_caption_label">
+		Facebook に接続していません。
+	</text>
+	<panel name="panel_buttons">
+		<button label="接続..." name="connect_btn"/>
+		<button label="切断" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Facebook への投稿について]]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		今、何を考えている?
+	</text>
+	<button label="投稿" name="post_status_btn"/>
+	<button label="取り消し" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_flickr_photo.xml b/indra/newview/skins/default/xui/ja/panel_flickr_photo.xml
index 0deadad91d5ac21689369054feaecaf8771cb3ad..16d873a8b1bc08753b27fd7fb6a263dfb35d77c9 100644
--- a/indra/newview/skins/default/xui/ja/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/ja/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="画像解像度">
-				<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="画像フィルター">
-				<combo_box.item label="フィルターなし" name="NoFilter"/>
-			</combo_box>
-			<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
-			<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
-			<text name="title_label">
-				タイトル:
-			</text>
-			<text name="description_label">
-				説明:
-			</text>
-			<check_box initial_value="true" label="SL の場所を説明の最後に含める" name="add_location_cb"/>
-			<text name="tags_label">
-				ã‚¿ã‚°:
-			</text>
-			<text name="tags_help_label">
-				タグをスペースで区切る
+	<combo_box name="resolution_combobox" tool_tip="画像解像度">
+		<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="画像フィルター">
+		<combo_box.item label="フィルターなし" name="NoFilter"/>
+	</combo_box>
+	<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
+	<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
+	<text name="title_label">
+		タイトル:
+	</text>
+	<text name="description_label">
+		説明:
+	</text>
+	<check_box initial_value="true" label="SL の場所を説明の最後に含める" name="add_location_cb"/>
+	<text name="tags_label">
+		タグ:
+	</text>
+	<text name="tags_help_label">
+		タグをスペースで区切る
 複数単語のタグに &quot;&quot; を使用
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Flickr コンテンツのレーティング区分">
-				<combo_box.item label="Flickr レーティング区分「Safe」" name="SafeRating"/>
-				<combo_box.item label="Flickr レーティング区分「Moderate」" name="ModerateRating"/>
-				<combo_box.item label="Flickr レーティング区分「Restricted」" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="アップロード" name="post_photo_btn"/>
-			<button label="取り消し" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Flickr コンテンツのレーティング区分">
+		<combo_box.item label="Flickr レーティング区分「Safe」" name="SafeRating"/>
+		<combo_box.item label="Flickr レーティング区分「Moderate」" name="ModerateRating"/>
+		<combo_box.item label="Flickr レーティング区分「Restricted」" name="RestrictedRating"/>
+	</combo_box>
+	<button label="アップロード" name="post_photo_btn"/>
+	<button label="取り消し" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/ja/panel_group_info_sidetray.xml
index ebcb36d950c172719c5297d25b5e0ab7e838d8f1..bd1013d6ca35b83284f066d266c8363af8d1cfe2 100755
--- a/indra/newview/skins/default/xui/ja/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/ja/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="役割 &amp; メンバー"/>
 				<accordion_tab name="group_notices_tab" title="通知"/>
 				<accordion_tab name="group_land_tab" title="土地・資産"/>
+				<accordion_tab name="group_experiences_tab" title="体験"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/ja/panel_postcard_settings.xml b/indra/newview/skins/default/xui/ja/panel_postcard_settings.xml
index 314aaef7fd674913b3c677519b27c81ce643a0be..f34fdc6b6723070101a614ca18cf84754d1a6d69 100755
--- a/indra/newview/skins/default/xui/ja/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/ja/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="カスタム" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="å¹…" name="postcard_snapshot_width"/>
-			<spinner label="高さ" name="postcard_snapshot_height"/>
-			<check_box label="縦横比の固定" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="画質" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="横幅 x 高さ" name="postcard_snapshot_width"/>
+	<check_box label="縦横比の固定" name="postcard_keep_aspect_check"/>
+	<slider label="品質:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml b/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml
index 2c0359cb1561b703943e8a0fbafbd7beb3b0231c..c1ddf0846577afeabc20ccd5280ac592add34c76 100755
--- a/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml
@@ -14,9 +14,10 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="指定のブラウザ(IE や Firefox)を使用" name="external" tool_tip="デフォルトのシステム Web ブラウザでヘルプや Web リンク先などを見ます。全画面で起動中にはおすすめしません。" value="true"/>
-		<radio_item label="内蔵ブラウザを使用" name="internal" tool_tip="内蔵ブラウザでヘルプや Web リンクなどを見ます。[APP_NAME] 内に新しいウィンドウでこのブラウザが開きます。" value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="すべてのリンクにマイ ブラウザ (Chrome、Firefox、IE) を使用" name="internal" tool_tip="デフォルトのシステム Web ブラウザでヘルプや Web リンク先などを見ます。全画面で起動中にはおすすめしません。" value="0"/>
+		<radio_item label="Second Life リンクにのみ内蔵ブラウザを使用" name="external" tool_tip="ヘルプ、Web リンクなどにはデフォルトシステムのブラウザを使用します。
+内蔵ブラウザは LindenLab/SecondLife リンクにのみ使用されます。" value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="プラグインを有効にする" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Cookie を受け入れる" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/ja/panel_region_experiences.xml b/indra/newview/skins/default/xui/ja/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f13c7bea4d9379dc7b3c9862fd89210bd41fd7b9
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="体験" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		どんな体験でもキーになる可能性があります。
+
+キー体験には、この不動産で動作する権限があります。
+
+さらに、不動産でパブリックアクセスが許可されない場合、キー体験に参加する住人は不動産に入って、キー体験にいる間滞在することができます。
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		ランドスコープとなる体験のみ許可されます。
+
+許可される体験には、この不動産で実行する権限があります。
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		グリッドスコープ体験のみブロックできます。
+      
+ブロックされた体験は、この不動産では実行できません。
+	</panel.string>
+	<panel.string name="estate_caption">
+		このタブの設定への変更は、不動産内のすべての地域に影響されます。
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		ランドスコープとなる体験のみ許可されます。
+      
+許可された体験には、この不動産でブロックされていない場合、この区画で実行する権限があります。
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		住人の体験をブロックできます。
+      
+ブロックされた体験は、この区画では実行できません。
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_script_experience.xml b/indra/newview/skins/default/xui/ja/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1c5ea2958bb70977b84a10215b2d2c8840b677f6
--- /dev/null
+++ b/indra/newview/skins/default/xui/ja/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="体験">
+	<button label="体験" name="Expand Experience"/>
+	<check_box label="次の体験を使用:" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="体験を選択..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		体験の貢献者ではありません。
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/ja/panel_snapshot_inventory.xml
index e496e6602b1d2cf2a02e4e19f383c34caab8d9d4..a42dd12a9c61116390c725ddc4511900fc820c5f 100755
--- a/indra/newview/skins/default/xui/ja/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/ja/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		インベントリに保存
+		インベントリ
 	</text>
 	<text name="hint_lbl">
 		画像をインベントリに保存するには L$[UPLOAD_COST] の費用がかかります。画像をテクスチャとして保存するには平方形式の 1 つを選択してください。
@@ -13,8 +13,8 @@
 		<combo_box.item label="大(512x512)" name="Large(512x512)"/>
 		<combo_box.item label="カスタム" name="Custom"/>
 	</combo_box>
-	<spinner label="å¹…" name="inventory_snapshot_width"/>
-	<spinner label="高さ" name="inventory_snapshot_height"/>
+	<spinner label="横幅 x 高さ" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="縦横比の固定" name="inventory_keep_aspect_check"/>
 	<button label="取り消し" name="cancel_btn"/>
 	<button label="保存" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/ja/panel_snapshot_local.xml b/indra/newview/skins/default/xui/ja/panel_snapshot_local.xml
index cb658fb6c9af640aa74ad65d44461044ebcf3a17..d23056a3d590bdb08819f75e3edf8f6400b5fa07 100755
--- a/indra/newview/skins/default/xui/ja/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/ja/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		コンピューターに保存
+		ディスク
 	</text>
 	<combo_box label="解像度" name="local_size_combo">
 		<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="カスタム" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="å¹…" name="local_snapshot_width"/>
-			<spinner label="高さ" name="local_snapshot_height"/>
-			<check_box label="縦横比の固定" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="書式" name="local_format_combo">
-				<combo_box.item label="PNG(可逆圧縮)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP(可逆圧縮)" name="BMP"/>
-			</combo_box>
-			<slider label="画質" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="横幅 x 高さ" name="local_snapshot_width"/>
+	<check_box label="縦横比の固定" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		フォーマット:
+	</text>
+	<combo_box label="書式" name="local_format_combo">
+		<combo_box.item label="PNG(可逆圧縮)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP(可逆圧縮)" name="BMP"/>
+	</combo_box>
+	<slider label="品質:" name="image_quality_slider"/>
 	<button label="取り消し" name="cancel_btn"/>
 	<flyout_button label="保存" name="save_btn" tool_tip="画像をファイルに保存">
 		<flyout_button.item label="保存" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/ja/panel_snapshot_options.xml b/indra/newview/skins/default/xui/ja/panel_snapshot_options.xml
index 6ce492476b03b2fe822ae95a188e3ebfbabcb4f4..492115bec0a8279c313ed3ed18b9a9970f837eab 100755
--- a/indra/newview/skins/default/xui/ja/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/ja/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="プロフィールフィードに投稿する" name="save_to_profile_btn"/>
-	<button label="メール" name="save_to_email_btn"/>
-	<button label="インベントリに保存(L$[Amount])" name="save_to_inventory_btn"/>
-	<button label="コンピューターに保存" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		宛先:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="ディスクに保存" name="save_to_computer_btn"/>
+	<button label="持ち物に保存(L$[Amount])" name="save_to_inventory_btn"/>
+	<button label="プロフィールにアップロード" name="save_to_profile_btn"/>
+	<button label="Facebook にアップロード" name="send_to_facebook_btn"/>
+	<button label="Twitter にアップロード" name="send_to_twitter_btn"/>
+	<button label="Flickr にアップロード" name="send_to_flickr_btn"/>
+	<button label="メールにより送信" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/ja/panel_snapshot_postcard.xml
index 1ddd723840070afac6a8a3f983a60056e3a6bfb6..569c07ad47095678786188c7017c7d88e694c2e2 100755
--- a/indra/newview/skins/default/xui/ja/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/ja/panel_snapshot_postcard.xml
@@ -10,8 +10,12 @@
 		送信中...
 	</string>
 	<text name="title">
-		メール
+		E メール
 	</text>
-	<button label="メッセージ" name="message_btn"/>
-	<button label="設定" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="メッセージ" name="panel_postcard_message"/>
+		<panel label="設定" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="取り消し" name="cancel_btn"/>
+	<button label="送信" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/ja/panel_snapshot_profile.xml
index b860a6afe91089bef433dba2b4d99cd5fc67671e..80d400c8466fed6dc4d5fc20474b14333e9f7546 100755
--- a/indra/newview/skins/default/xui/ja/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/ja/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		プロフィールフィードに投稿する
+		プロフィール
 	</text>
 	<combo_box label="解像度" name="profile_size_combo">
 		<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="カスタム" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="å¹…" name="profile_snapshot_width"/>
-			<spinner label="高さ" name="profile_snapshot_height"/>
-			<check_box label="縦横比の固定" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				キャプション:
-			</text>
-			<check_box initial_value="true" label="場所を含む" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="横幅 x 高さ" name="profile_snapshot_width"/>
+	<check_box label="縦横比の固定" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		キャプション:
+	</text>
+	<check_box initial_value="true" label="場所を含む" name="add_location_cb"/>
 	<button label="取り消し" name="cancel_btn"/>
 	<button label="投稿" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/panel_twitter_photo.xml b/indra/newview/skins/default/xui/ja/panel_twitter_photo.xml
index 8e67d8fd19a1e6a4469495b9e50b684136f71fed..cdb45e185385106bb8d834941bc9b3013715730b 100644
--- a/indra/newview/skins/default/xui/ja/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/ja/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				何が起きているのでしょうか?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="SL の場所を含む" name="add_location_cb"/>
-			<check_box initial_value="true" label="写真を掲載する" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="画像解像度">
-				<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="画像フィルター">
-				<combo_box.item label="フィルターなし" name="NoFilter"/>
-			</combo_box>
-			<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
-			<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="ツイート" name="post_photo_btn"/>
-			<button label="取り消し" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		何が起きているのでしょうか?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="SL の場所を含む" name="add_location_cb"/>
+	<check_box initial_value="true" label="写真を含める" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="画像解像度">
+		<combo_box.item label="現在のウィンドウ" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="画像フィルター">
+		<combo_box.item label="フィルターなし" name="NoFilter"/>
+	</combo_box>
+	<button label="更新" name="new_snapshot_btn" tool_tip="クリックして更新"/>
+	<button label="プレビュー" name="big_preview_btn" tool_tip="クリックしてプレビューを切り替える"/>
+	<button label="ツイート" name="post_photo_btn"/>
+	<button label="取り消し" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/role_actions.xml b/indra/newview/skins/default/xui/ja/role_actions.xml
index e64460470cf17f22c9bc280c64affec8a0eccac0..eb2c12accca30ec0cc8ad1d6091239cd4d40406f 100755
--- a/indra/newview/skins/default/xui/ja/role_actions.xml
+++ b/indra/newview/skins/default/xui/ja/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="グループボイスチャットに参加する" longdescription=" この能力を持つ役割のメンバーは、グループボイスチャットセッションに参加できます。  注: ボイスチャットセッションにアクセスするには、グループチャットに参加する能力が必要です。 " name="join voice chat" value="27"/>
 		<action description="グループチャットを管理する" longdescription=" この能力を持つ役割のメンバーは、グループボイスチャットセッションおよびグループテキストチャットセッションへのアクセスや参加をコントロールすることができます。 " name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="これらの機能には、このグループにより所有される体験を変更する機能が含まれます。" name="experience_tools_experience">
+		<action description="体験管理者" longdescription="この機能を持つ役割のメンバーは、体験のメタデータを編集できます。" name="experience admin" value="49"/>
+		<action description="体験貢献者" longdescription="この機能を持つ役割のメンバーは、体験のスクリプトを提供できます。" name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/ja/sidepanel_item_info.xml b/indra/newview/skins/default/xui/ja/sidepanel_item_info.xml
index e70d91d258dda11de07ca7ac3798fc30f89592be..56a8b0e0970aee5d8080687770e8649c9f83fca9 100755
--- a/indra/newview/skins/default/xui/ja/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/ja/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="アイテムのプロフィール">
+	<panel.string name="loading_experience">
+		(ローディング)
+	</panel.string>
 	<panel.string name="unknown">
 		(不明)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				取得:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				体験:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					あなたができること:
diff --git a/indra/newview/skins/default/xui/ja/strings.xml b/indra/newview/skins/default/xui/ja/strings.xml
index d046e1157150851d3cc2b25f648895f1dc4e37e1..e825389895de5c64ac53d2b3b60c1eb15533b357 100755
--- a/indra/newview/skins/default/xui/ja/strings.xml
+++ b/indra/newview/skins/default/xui/ja/strings.xml
@@ -448,6 +448,9 @@ support@secondlife.com にお問い合わせください。
 	<string name="TooltipMustSingleDrop">
 		アイテムは 1 つだけここにドラッグできます
 	</string>
+	<string name="TooltipTooManyWearables">
+		[AMOUNT] 以上のアイテムを含むフォルダを装着できません。「詳細設定」 &gt; 「デバッグ設定を表示」 &gt; 「WearFolderLimit」でこの制限を変更できます。
+	</string>
 	<string name="TooltipPrice" value="L$[AMOUNT]:"/>
 	<string name="TooltipOutboxDragToWorld">
 		マーチャントボックス内のアイテムを Rez することはできません
@@ -1059,9 +1062,7 @@ support@secondlife.com にお問い合わせください。
 	<string name="AgentNameSubst">
 		(あなた)
 	</string>
-	<string name="JoinAnExperience">
-		体験に参加する
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		土地のアクセスリストを管理するときにアラートを表示しない
 	</string>
@@ -1872,6 +1873,9 @@ support@secondlife.com にお問い合わせください。
 	<string name="CompileQueueUnknownFailure">
 		原因不明の失敗によりダウンロードができません
 	</string>
+	<string name="CompileNoExperiencePerm">
+		[EXPERIENCE] 体験による [SCRIPT] スクリプトのスキップ。
+	</string>
 	<string name="CompileQueueTitle">
 		リコンパイル進行
 	</string>
@@ -5263,6 +5267,87 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
 	<string name="UserDictionary">
 		[User]
 	</string>
+	<string name="experience_tools_experience">
+		体験
+	</string>
+	<string name="ExperienceNameNull">
+		(体験なし)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(タイトルのない体験)
+	</string>
+	<string name="Land-Scope">
+		ランドスコープ
+	</string>
+	<string name="Grid-Scope">
+		グリッドスコープ
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		許可
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		停止
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		貢献者
+	</string>
+	<string name="Admin_Experiences_Tab">
+		管理
+	</string>
+	<string name="Recent_Experiences_Tab">
+		最新
+	</string>
+	<string name="Owned_Experiences_Tab">
+		所有
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], max [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		コントロールを引き継ぐ
+	</string>
+	<string name="ExperiencePermission3">
+		アバターでアニメーションをトリガー
+	</string>
+	<string name="ExperiencePermission4">
+		アバターに装着
+	</string>
+	<string name="ExperiencePermission9">
+		カメラ追従
+	</string>
+	<string name="ExperiencePermission10">
+		カメラのコントロール
+	</string>
+	<string name="ExperiencePermission11">
+		あなたをテレポート
+	</string>
+	<string name="ExperiencePermission12">
+		体験の権限を自動的に承諾
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		が不明な操作を実行しました: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		コントロールする
+	</string>
+	<string name="ExperiencePermissionShort3">
+		アニメーションをトリガー
+	</string>
+	<string name="ExperiencePermissionShort4">
+		取り付ける
+	</string>
+	<string name="ExperiencePermissionShort9">
+		カメラを追跡
+	</string>
+	<string name="ExperiencePermissionShort10">
+		カメラを制御
+	</string>
+	<string name="ExperiencePermissionShort11">
+		テレポート
+	</string>
+	<string name="ExperiencePermissionShort12">
+		権限
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		会話はログに記録されていません。ログの記録を開始するには、「環境設定」&gt;「チャット」で「保存: ログのみ」または「保存: ログと会話のテキスト」を選択します。
 	</string>
diff --git a/indra/newview/skins/default/xui/ja/teleport_strings.xml b/indra/newview/skins/default/xui/ja/teleport_strings.xml
index 7868c2580748a8e8f7aa8c442d77283f3a7708d2..4555420ba8d919abdec18928469d1e9d921a9d72 100755
--- a/indra/newview/skins/default/xui/ja/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/ja/teleport_strings.xml
@@ -50,6 +50,9 @@
 		<message name="MustGetAgeRegion">
 			この地域(リージョン)に入るには 18 才以上である必要があります。
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			リージョンに入ることができません。&apos;[REGION_NAME]&apos; はスキル ゲーミング リージョンであり、あなたはこのリージョンに入るための特定の基準を満たす必要があります。詳しくは、[http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life スキル ゲーミングのよくある質問] を参照してください。
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/pt/floater_about_land.xml b/indra/newview/skins/default/xui/pt/floater_about_land.xml
index f48280840cdab6b2bd79fb6947506a8e98ca91da..fee939ab466f83a595d3cb5a5d5e92d8aa603628 100755
--- a/indra/newview/skins/default/xui/pt/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/pt/floater_about_land.xml
@@ -308,9 +308,6 @@ Apenas lotes maiores podem ser listados na busca.
 			<panel.string name="push_restrict_region_text">
 				Proibido empurrar (regulamento da região)
 			</panel.string>
-			<panel.string name="see_avs_text">
-				Avatares em outros lotes podem ver
-			</panel.string>
 			<text name="allow_label">
 				Autorizar outros residentes a:
 			</text>
@@ -336,22 +333,6 @@ Apenas lotes maiores podem ser listados na busca.
 			<check_box label="Seguro (sem danos)" name="check safe" tool_tip="Se ativado, ajusta o terreno para Seguro, impedindo lutas com danos. Se não ativado, lutas com danos é habilitado."/>
 			<check_box label="Proibido empurrar" name="PushRestrictCheck" tool_tip="Evita scripts que empurram. Ativar essa opção ajuda a prevenir comportamentos desordeiros no seu terreno."/>
 			<check_box label="Mostrar terreno nos resultados de busca (L$30/semana)" name="ShowDirectoryCheck" tool_tip="Permitir que as pessoas vejam este terreno nos resultados de busca"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Qualquer categoria" name="item0"/>
-				<combo_box.item label="Locação Linden" name="item1"/>
-				<combo_box.item label="Adulto" name="item2"/>
-				<combo_box.item label="Artes e cultura" name="item3"/>
-				<combo_box.item label="Negócios" name="item4"/>
-				<combo_box.item label="Educacional" name="item5"/>
-				<combo_box.item label="Jogos" name="item6"/>
-				<combo_box.item label="Moradia" name="item7"/>
-				<combo_box.item label="Amigável a novos usuários" name="item8"/>
-				<combo_box.item label="Parques &amp; Natureza" name="item9"/>
-				<combo_box.item label="Residencial" name="item10"/>
-				<combo_box.item label="Compras" name="item11"/>
-				<combo_box.item label="Aluguel" name="item13"/>
-				<combo_box.item label="Outros" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Qualquer categoria" name="item0"/>
 				<combo_box.item label="Locação Linden" name="item1"/>
@@ -451,15 +432,9 @@ Mídia:
 			<panel.string name="access_estate_defined">
 				(Definições do terreno)
 			</panel.string>
-			<panel.string name="allow_public_access">
-				Acesso para público: [MATURITY]) (Desmarcar esse item cria limites)
-			</panel.string>
 			<panel.string name="estate_override">
 				Uma ou mais destas opções está definida no nível de propriedade.
 			</panel.string>
-			<text name="Limit access to this parcel to:">
-				Acesso a este lote
-			</text>
 			<check_box label="Permitir acesso público (Desmarcar esse item cria limites)" name="public_access"/>
 			<text name="Only Allow">
 				Permitir acesso apenas para residentes que:
@@ -491,5 +466,6 @@ Mídia:
 				<button label="Tirar" label_selected="Tirar" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="EXPERIÊNCIAS" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_experience_search.xml b/indra/newview/skins/default/xui/pt/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cf87717b45f8a4abfaf7e823e112c4d52981be55
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="ESCOLHER EXPERIÊNCIA"/>
diff --git a/indra/newview/skins/default/xui/pt/floater_experienceprofile.xml b/indra/newview/skins/default/xui/pt/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..97f8576b169f60297fae0056e5c812b6601c399a
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(none)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Perfil de experiência"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Editar" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Classificação:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Localização:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Proprietário:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Grupo:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Permitir" name="allow_btn"/>
+							<button label="Ignorar" name="forget_btn"/>
+							<button label="Bloquear" name="block_btn"/>
+							<text name="privileged">
+								Essa experiência está disponível para todos os residentes.
+							</text>
+							<button label="Denunciar abuso" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Nome:"/>
+					<text name="edit_experience_desc_label" value="Descrição:"/>
+					<button label="Grupo" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Classificação:
+					</text>
+					<icons_combo_box label="Moderado" name="edit_ContentRatingText" tool_tip="Aumentar a classificação de maturidade sobre uma experiência redefinirá a permissão para todos os residentes que permitiram a experiência.">
+						<icons_combo_box.item label="Adulto" name="Adult" value="42"/>
+						<icons_combo_box.item label="Moderado" name="Mature" value="21"/>
+						<icons_combo_box.item label="Geral" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Localização:
+					</text>
+					<button label="Definir como atual" name="location_btn"/>
+					<button label="Limpar localização" name="clear_btn"/>
+					<check_box label="Ativar experiência" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Ocultar nos resultados de pesquisa" name="edit_private_btn"/>
+					<text name="changes" value="As alterações de experiência podem levar vários minutos para ser visualizadas em todas as regiões."/>
+					<button label="Retornar" name="cancel_btn"/>
+					<button label="Salvar" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_experiences.xml b/indra/newview/skins/default/xui/pt/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..53be98e3f97a25bc2df22f9cfb231b2dc5ab9260
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="EXPERIÊNCIAS"/>
diff --git a/indra/newview/skins/default/xui/pt/floater_facebook.xml b/indra/newview/skins/default/xui/pt/floater_facebook.xml
index c211d75e9b1e361e67c30026e986c78dc4f25c31..af3058223793b1158012b7b0665858eb1acc262c 100644
--- a/indra/newview/skins/default/xui/pt/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/pt/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="PUBLICAR NO FACEBOOK">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="STATUS" name="panel_facebook_status"/>
-			<panel label="FOTO" name="panel_facebook_photo"/>
-			<panel label="FAZER CHECK IN" name="panel_facebook_place"/>
-			<panel label="AMIGOS" name="panel_facebook_friends"/>
-			<panel label="CONTA" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Erro
-			</text>
-			<text name="connection_loading_text">
-				Carregando...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="STATUS" name="panel_facebook_status"/>
+		<panel label="FOTO" name="panel_facebook_photo"/>
+		<panel label="FAZER CHECK IN" name="panel_facebook_place"/>
+		<panel label="AMIGOS" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Erro
+	</text>
+	<text name="connection_loading_text">
+		Carregando...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/pt/floater_inventory_view_finder.xml
index 71759abdc243009414433c78d69033a5816ebf0d..2bb95a5605b182503aa5371e96d8a09cb0fc08f3 100755
--- a/indra/newview/skins/default/xui/pt/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/pt/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Roupas" name="check_clothing"/>
 	<check_box label="Gestos" name="check_gesture"/>
 	<check_box label="Landmarks" name="check_landmark"/>
-	<check_box label="Meshes:" name="check_mesh"/>
 	<check_box label="Anotações" name="check_notecard"/>
+	<check_box label="Meshes:" name="check_mesh"/>
 	<check_box label="Objetos" name="check_object"/>
 	<check_box label="Scripts" name="check_script"/>
 	<check_box label="Sons" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- OU -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Antes de" name="newer"/>
+		<radio_item label="Depois de" name="older"/>
+	</radio_group>
 	<spinner label="Horas Atrás" name="spin_hours_ago"/>
 	<spinner label="Dias Atrás" name="spin_days_ago"/>
 	<button label="Fechar" label_selected="Fechar" name="Close"/>
diff --git a/indra/newview/skins/default/xui/pt/floater_lagmeter.xml b/indra/newview/skins/default/xui/pt/floater_lagmeter.xml
index 9932318293fea64443288e00255d8f79d31296f4..cdaec96c864cedcdfec08f69dee2e9d6eb46e185 100644
--- a/indra/newview/skins/default/xui/pt/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/pt/floater_lagmeter.xml
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_lagmeter" title="LAG - Índice">
 	<floater.string name="max_title_msg">
-		Medidor de Atraso
+		Lag Meter
 	</floater.string>
 	<floater.string name="max_width_px">
 		360
 	</floater.string>
 	<floater.string name="min_title_msg">
-		Atraso
+		Lag
 	</floater.string>
 	<floater.string name="min_width_px">
 		90
@@ -22,28 +22,28 @@
 		15
 	</floater.string>
 	<floater.string name="client_frame_time_window_bg_msg">
-		Normal, janela por baixo
+		Normal, janela em segundo plano
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Taxa de quadros do Cliente abaixo de [CLIENT_FRAME_RATE_CRITICAL]
+		Taxa de quadros do cliente menor que [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		Taxa de quadros do Cliente entre [CLIENT_FRAME_RATE_CRITICAL] e [CLIENT_FRAME_RATE_WARNING]
+		Taxa de quadros do cliente entre [CLIENT_FRAME_RATE_CRITICAL] e [CLIENT_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		Normal
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		Causa possível: Distância de desenho ajustada muito alta
+		Possível causa: distância de desenho definida com um valor muito alto
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		Causa possível: Carregamento de Imagens
+		Possível causa: imagens em carregamento
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		Causa possível: Muitas imagens na memória
+		Possível causa: muitas imagens na memória
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		Causa possível: Muitos objetos complexos na cena
+		Possível causa: muitos objetos complexos na cena
 	</floater.string>
 	<floater.string name="network_text_msg">
 		Rede
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		Conexão está caindo para cerca de [NETWORK_PACKET_LOSS_CRITICAL]% de pacotes
+		A conexão está caindo devido a [NETWORK_PACKET_LOSS_CRITICAL]% de pacotes
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		Conexão está caindo [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% de pacotes
+		A conexão está caindo devido a [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% de pacotes
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		Normal
@@ -70,16 +70,16 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		Tempo de conexão de ping é cerca de  [NETWORK_PING_CRITICAL] ms
+		Ping time da conexão com mais de [NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
-		Tempo de conexão de ping é [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
+		Ping time da conexão com mais de [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		Possível conexão ruim ou &apos;Largura de Banda&apos; escolhida muito alta.
+		Possível conexão ruim ou pref de &apos;Banda larga&apos; muito alta
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		Possível conexão ruim ou aplicativos compartilhando arquivos.
+		Possível conexão ruim ou app de compartilhamento de arquivo
 	</floater.string>
 	<floater.string name="server_text_msg">
 		Servidor
@@ -94,31 +94,31 @@
 		20
 	</floater.string>
 	<floater.string name="server_frame_time_critical_msg">
-		Taxa de quadros abaixo de [SERVER_FRAME_RATE_CRITICAL]
+		Taxa de quadros de simulador abaixo de [SERVER_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="server_frame_time_warning_msg">
-		Taxa de quadros entre [SERVER_FRAME_RATE_CRITICAL] e [SERVER_FRAME_RATE_WARNING]
+		Taxa de quadros de simulador entre [SERVER_FRAME_RATE_CRITICAL] e [SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
 		Normal
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
-		Causa possível: Muitos objetos físicos
+		Possível causa: muitos objetos físicos
 	</floater.string>
 	<floater.string name="server_scripts_cause_msg">
-		Causa possível: Muitos objetos com scripts
+		Possível causa: muitos objetos de script
 	</floater.string>
 	<floater.string name="server_net_cause_msg">
-		Causa possível: Muito tráfego na rede
+		Possível causa: tráfego de rede intenso
 	</floater.string>
 	<floater.string name="server_agent_cause_msg">
-		Causa possível: Muitas pessoas se movendo na região
+		Possível causa: muitas pessoas se movendo na região
 	</floater.string>
 	<floater.string name="server_images_cause_msg">
-		Causa possível: Muitos cálculos de imagem
+		Possível causa: muitos cálculos de imagem
 	</floater.string>
 	<floater.string name="server_generic_cause_msg">
-		Causa possível: Carga no simulador muito pesada
+		Possível causa: carga do simulador muito pesada
 	</floater.string>
 	<floater.string name="smaller_label">
 		&gt;&gt;
@@ -126,7 +126,7 @@
 	<floater.string name="bigger_label">
 		&lt;&lt;
 	</floater.string>
-	<button label="" label_selected="" name="client_lagmeter" tool_tip="Status de atraso no Cliente"/>
+	<button label="" label_selected="" name="client_lagmeter" tool_tip="Status do lag do cliente"/>
 	<text name="client">
 		Cliente
 	</text>
@@ -134,7 +134,7 @@
 		Normal
 	</text>
 	<text left="30" name="client_lag_cause" right="-10"/>
-	<button label="" label_selected="" name="network_lagmeter" tool_tip="Status de atraso na rede"/>
+	<button label="" label_selected="" name="network_lagmeter" tool_tip="Status do lag da rede"/>
 	<text name="network">
 		Rede
 	</text>
@@ -142,7 +142,7 @@
 		Normal
 	</text>
 	<text left="30" name="network_lag_cause" right="-10"/>
-	<button label="" label_selected="" name="server_lagmeter" tool_tip="Status de atraso no servidor"/>
+	<button label="" label_selected="" name="server_lagmeter" tool_tip="Status do lag do servidor"/>
 	<text name="server">
 		Servidor
 	</text>
diff --git a/indra/newview/skins/default/xui/pt/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/pt/floater_live_lsleditor.xml
index 5ad116ac8a119175ab6ede75cd3ff8a977dd8cc1..635bc2d34b39d66652290f52ea6db8039d835149 100755
--- a/indra/newview/skins/default/xui/pt/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/pt/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		SCRIPT: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Desmarque para remover a experiência atual
+	</floater.string>
+	<floater.string name="no_experiences">
+		Você não está autorizado a nenhuma experiência
+	</floater.string>
+	<floater.string name="add_experiences">
+		Selecione para adicionar uma experiência
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Clique para visualizar o perfil da experiência
+	</floater.string>
+	<floater.string name="loading">
+		Carregando...
+	</floater.string>
 	<button label="Resetar" label_selected="Resetar" name="Reset"/>
 	<check_box initial_value="true" label="Correndo" name="running"/>
 	<check_box initial_value="true" label="Mono" left="86" name="mono"/>
+	<check_box label="Usar experiência:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_openobject.xml b/indra/newview/skins/default/xui/pt/floater_openobject.xml
index 0dc2852bac301fc05fc957b21f47ea5bfdb17d4c..164bfee3aa6b26038c11a8b2f48a0b780a45baee 100755
--- a/indra/newview/skins/default/xui/pt/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/pt/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="Copiar para Inventário" label_selected="Copiar para Inventário" name="copy_to_inventory_button" width="132"/>
-	<button label="Copiar e Vestir" label_selected="Copiar e Vestir" left="152" name="copy_and_wear_button"/>
+	<button label="Copiar para inventário" label_selected="Copiar para inventário" name="copy_to_inventory_button" width="132"/>
+	<button label="Copiar e adicionar à roupa" label_selected="Copiar e adicionar à roupa" left="152" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_report_abuse.xml b/indra/newview/skins/default/xui/pt/floater_report_abuse.xml
index e6d9961d0bc96e066ba578cb3f752c0598b423ae..f30201fc337e9e6a1a775e32566c978ea46854a5 100755
--- a/indra/newview/skins/default/xui/pt/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/pt/floater_report_abuse.xml
@@ -76,7 +76,7 @@
 		<combo_box.item label="Terreno &gt; Invasão &gt; Objetos ou texturas" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Terra &gt; Invasão &gt; Partículas" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Terra &gt; Violação &gt; Árvores/plantas" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Apostas ou jogos de azar" name="Wagering_gambling"/>
+		<combo_box.item label="Violação da política sobre jogos" name="Wagering_gambling"/>
 		<combo_box.item label="Outro" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/pt/floater_snapshot.xml b/indra/newview/skins/default/xui/pt/floater_snapshot.xml
index 3dd7f69d50f282689360735ba6eabd9db0dc35dd..e3812ed708ec91472e0a55beb50ed9f37d793d07 100755
--- a/indra/newview/skins/default/xui/pt/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/pt/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Falha ao salvar no computador.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Opções avançadas"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[TAMANHO] KB
-	</text>
+	<button label="ATUALIZAR" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			OPÇÕES AVANÇADAS
-		</text>
 		<text name="layer_type_label">
 			Capturar:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Sem filtro" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH]px (largura) x [HEIGHT]px (altura)
+	</text>
+	<text name="file_size_label">
+		[TAMANHO] KB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/floater_top_objects.xml b/indra/newview/skins/default/xui/pt/floater_top_objects.xml
index ef682714c610168d4736acce67485eae88cf71aa..f37b5be23f0876c0b00e03eaf85704dd271c2103 100755
--- a/indra/newview/skins/default/xui/pt/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/pt/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Nenhum encontrado.
 	</floater.string>
+	<floater.string name="URLs">
+		URLs
+	</floater.string>
+	<floater.string name="memory">
+		Memória (KB)
+	</floater.string>
 	<text name="title_text">
 		Carregando...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Proprietário" name="owner"/>
 		<scroll_list.columns label="Local" name="location"/>
 		<scroll_list.columns label="Lote" name="parcel"/>
-		<scroll_list.columns label="Tempo" name="time"/>
+		<scroll_list.columns label="Data" name="time"/>
 		<scroll_list.columns label="URLs" name="URLs"/>
 		<scroll_list.columns label="Memória (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/pt/floater_twitter.xml b/indra/newview/skins/default/xui/pt/floater_twitter.xml
index 4d7f9e323cb8086172751957343cabb4dc903453..14bee3ffc382d74331e91cfd7d31959248d246b0 100644
--- a/indra/newview/skins/default/xui/pt/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/pt/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="REDIGIR" name="panel_twitter_photo"/>
-			<panel label="CONTA" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Erro
-			</text>
-			<text name="connection_loading_text">
-				Carregando...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="REDIGIR" name="panel_twitter_photo"/>
+		<panel label="CONTA" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Erro
+	</text>
+	<text name="connection_loading_text">
+		Carregando...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/pt/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/pt/menu_inventory_gear_default.xml
index 6faea517fe9d8219a51543829a6c485b9e0d504b..d3e6534912c33b8f8181c98d7cab5523cd0528a1 100755
--- a/indra/newview/skins/default/xui/pt/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/pt/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Ordenar por mais recente" name="sort_by_recent"/>
 	<menu_item_check label="Sempre ordenar pastas por nome" name="sort_folders_by_name"/>
 	<menu_item_check label="Pastas do sistema no topo" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Mostrar filtros" name="show_filters"/>
+	<menu_item_call label="Mostrar filtros..." name="show_filters"/>
 	<menu_item_call label="Restabelecer filtros" name="reset_filters"/>
 	<menu_item_call label="Fechar todas as pastas" name="close_folders"/>
 	<menu_item_call label="Esvaziar achados e perdidos" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/pt/menu_url_experience.xml b/indra/newview/skins/default/xui/pt/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1bbc27f26724e9565b45d9c7af5cd1c9b6092726
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="Copiar SLurl para área de transferência" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/pt/menu_viewer.xml b/indra/newview/skins/default/xui/pt/menu_viewer.xml
index 0bbb9683a09282bc074e037dffab2b672ecd7828..b5af342754fe4560164bf4f95f187a934908e25d 100755
--- a/indra/newview/skins/default/xui/pt/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/pt/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Nova janela de inventário" name="NewInventoryWindow"/>
 		<menu_item_call label="Lugares..." name="Places"/>
 		<menu_item_call label="Destaques..." name="Picks"/>
+		<menu_item_call label="Experiências..." name="Experiences"/>
 		<menu_item_call label="Controles da câmera..." name="Camera Controls"/>
 		<menu label="Movimentos" name="Movement">
 			<menu_item_call label="Sentar" name="Sit Down Here"/>
@@ -48,7 +49,7 @@
 		<menu_item_check label="Amigos" name="My Friends"/>
 		<menu_item_check label="Grupos" name="My Groups"/>
 		<menu_item_check label="Pessoas próximas" name="Active Speakers"/>
-		<menu_item_call label="Lista de bloqueados" name="Block List"/>
+		<menu_item_check label="Lista de bloqueados" name="Block List"/>
 		<menu_item_check label="Não perturbe" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Mundo" name="World">
diff --git a/indra/newview/skins/default/xui/pt/mime_types.xml b/indra/newview/skins/default/xui/pt/mime_types.xml
index f9c0496eea6e8583eacc6c15554f183efeed3a5b..be387088bd87bccb083814381c73b60619af0698 100755
--- a/indra/newview/skins/default/xui/pt/mime_types.xml
+++ b/indra/newview/skins/default/xui/pt/mime_types.xml
@@ -24,10 +24,10 @@
 	</widgetset>
 	<widgetset name="none">
 		<label name="none_label">
-			Sem conteúdo disponível
+			Sem conteúdo
 		</label>
 		<tooltip name="none_tooltip">
-			Não há mídia disponível aqui.
+			Sem mídia aqui
 		</tooltip>
 	</widgetset>
 	<widgetset name="image">
@@ -64,7 +64,7 @@
 	</mimetype>
 	<mimetype name="none/none">
 		<label name="none/none_label">
-			- Nenhum - 
+			- Nenhum -
 		</label>
 	</mimetype>
 	<mimetype name="audio/*">
diff --git a/indra/newview/skins/default/xui/pt/mime_types_linux.xml b/indra/newview/skins/default/xui/pt/mime_types_linux.xml
index 789843cbba6601cc2bb2d54ed043ff59f6011e2c..70dd03feab9406388340b101fb235970e40df160 100755
--- a/indra/newview/skins/default/xui/pt/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/pt/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Tocar clipe
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Sem conteúdo
+		</label>
+		<tooltip name="none_tooltip">
+			Sem mídia aqui
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Stream em tempo real
diff --git a/indra/newview/skins/default/xui/pt/mime_types_mac.xml b/indra/newview/skins/default/xui/pt/mime_types_mac.xml
index 34b40e94ab9c7584e4dfc2c7895844fa8814642b..17cb5f70934b26bdfd811619ba6fc019080a80a4 100755
--- a/indra/newview/skins/default/xui/pt/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/pt/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Tocar o áudio desta localização
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Sem conteúdo
+		</label>
+		<tooltip name="none_tooltip">
+			Sem mídia aqui
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Real Time Streaming
diff --git a/indra/newview/skins/default/xui/pt/notifications.xml b/indra/newview/skins/default/xui/pt/notifications.xml
index 00c0b13670349172db7b75e29b9482d58b55ef06..a01c9c757beb6ee116307790eb51eaeb64bc148c 100755
--- a/indra/newview/skins/default/xui/pt/notifications.xml
+++ b/indra/newview/skins/default/xui/pt/notifications.xml
@@ -72,6 +72,10 @@ Detalhes do erro: O aviso &apos;[_NAME]&apos; não foi localizado no arquivo not
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sim"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Um erro ocorreu ao atualizar o [APP_NAME].  [http://get.secondlife.com Baixe a versão atual] do Visualizador.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -569,6 +573,9 @@ Para aumentar a qualidade do vídeo, vá para Preferências &gt; Vídeo.
 	<notification name="RegionNoTerraforming">
 		A região [REGION] não permite ser aplainada.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		Você não está autorizado a terraplanar o terreno [PARCEL].
+	</notification>
 	<notification name="CannotCopyWarning">
 		Você não tem autorização para copiar os itens abaixo:
 [ITEMS]
@@ -1817,6 +1824,30 @@ Isto mudará milhares de regiões e fará o spaceserver soluçar.
 		Remover o gerente da propriedade desta propriedade apenas ou para [ALL_ESTATES]?
 		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/>
 	</notification>
+	<notification label="Selecionar propriedade" name="EstateAllowedExperienceAdd">
+		Adicionar à lista de permitidos apenas para essa propriedade ou para [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
+	<notification label="Selecionar propriedade" name="EstateAllowedExperienceRemove">
+		Remover da lista de permitidos apenas para essa propriedade ou para [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
+	<notification label="Selecionar propriedade" name="EstateBlockedExperienceAdd">
+		Adicionar à lista de bloqueados dessa propriedade apenas ou de [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
+	<notification label="Selecionar propriedade" name="EstateBlockedExperienceRemove">
+		Remover da lista de bloqueados para essa propriedade somente ou para [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
+	<notification label="Selecionar propriedade" name="EstateTrustedExperienceAdd">
+		Adicionar à lista-chave dessa propriedade apenas ou de [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
+	<notification label="Selecionar propriedade" name="EstateTrustedExperienceRemove">
+		Remover da lista-chave para essa propriedade somente ou para [ALL_ESTATES]?
+		<usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as propriedades" yestext="Esta propriedade"/>
+	</notification>
 	<notification label="Confirmar expulsão" name="EstateKickUser">
 		Expulsar [EVIL_USER] desta propriedade?
 		<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/>
@@ -1891,6 +1922,10 @@ Isto mudará milhares de regiões e fará o spaceserver soluçar.
 		Estamos tendo dificuldades técnicas com seu teletransporte, pois suas preferências estão dessincronizadas com o servidor.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Não é possível inserir a região. &apos;[REGION_NAME]&apos; é uma Região de Skill Gaming, portanto você deve atender certos critérios para poder entrar. Para maiores detalhes, consulte as [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		Você não receberá mais notificações de que está prestes a visitar uma região com conteúdo [RATING].  Posteriormente você poderá alterar suas preferências de conteúdo acessando Eu &gt; Preferências &gt; Geral da barra do menu.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2198,6 +2233,9 @@ Você deseja substituí-lo pelo objeto selecionado?
 			<button ignore="Never Replace" name="No" text="Não"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		Você não pode usar uma pasta que contenha mais de [AMOUNT] itens.  Você pode mudar esse limite em Avançado &gt; Mostrar configurações de depuração &gt; WearFolderLimit.
+	</notification>
 	<notification label="Aviso de modo Não perturbe" name="DoNotDisturbModePay">
 		Você ativou o Não perturbe. Você não receberá qualquer item oferecido em troca deste pagamento.
 
@@ -2803,7 +2841,7 @@ Se permanecer aqui, você será desconectado.
 
 [MESSAGE]
 
-Do objeto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, de: [NAME]?
+Do objeto: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, de: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Carregar"/>
 			<button name="Cancel" text="Cancelar"/>
@@ -2829,6 +2867,72 @@ OK?
 			<button name="Mute" text="Bloquear"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Não foi possível adquirir uma nova experiência:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Uma alteração do grupo de experiência foi ignorada porque o proprietário não é membro do grupo selecionado.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		O campo não editável &apos;[field]&apos; foi ignorado ao atualizar o perfil de experiência.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Alterações ignoradas para o campo &apos;[field]&apos; que só podem ser definidas pelo proprietário da experiência.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Você não pode definir a classificação de maturidade de uma experiência como sendo mais alta que a do proprietário.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Os seguintes termos impediram a atualização do nome e/ou descrição do perfil de experiência: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Você foi teletransportado da região [region_name] por remover a experiência secondlife:///app/experience/[public_id]/profile e não tem mais permissão na região.
+		<form name="form">
+			<ignore name="ignore" text="Ejetar da região por remover uma experiência"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		Você recebeu permissão para a região [region_name] ao participar da experiência-chave secondlife:///app/experience/[public_id]/profile Remover essa experiência pode ejetá-lo da região.
+		<form name="form">
+			<ignore name="ignore" text="Permitido em uma região devido a uma experiência"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		Você não está autorizado a acessar esse destino. Você pode ser permitido na região aceitando uma das experiências abaixo:
+
+[EXPERIENCE_LIST]
+
+Outras experiências chave podem estar disponíveis.
+	</notification>
+	<notification name="ExperienceEvent">
+		Um objeto foi permitido para [EventType] pelo secondlife:///app/experience/[public_id]/profile experience.
+    Proprietário: secondlife:///app/agent/[OwnerID]/inspect
+	Nome do objeto: [ObjectName]
+    Nome do Terreno: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		Um anexo teve permissão para executar [EventType] pelo secondlife:///app/experience/[public_id]/profile experience.
+    Proprietário: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, um objeto de propriedade de &apos;[NAME]&apos;, solicita a sua participação na experiência [GRID_WIDE]:
+
+[EXPERIENCE]
+
+Quando a permissão for dada, você não irá mais visualizar essa mensagem novamente a não ser que seja revogada do perfil de experiência.
+
+Os scripts associados a essa experiência serão capazes de realizar o seguinte nas regiões onde a experiência esteja ativa: 
+
+[QUESTIONS]Isso está bem?
+		<form name="form">
+			<button name="BlockExperience" text="Bloquear experiência"/>
+			<button name="Mute" text="Bloquear objeto"/>
+			<button name="Yes" text="Sim"/>
+			<button name="No" text="Não"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Aviso: O objeto &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; deseja obter acesso total à sua conta de dólares Linden. Se você conceder acesso, ele poderá remover fundos de sua conta a qualquer momento ou esvaziar sua conta completamente, continuamente e sem avisos adicionais.
   
@@ -3147,6 +3251,10 @@ Você carregou uma textura com [RESOLUTION] para o(a) &apos;[BODYREGION]&apos; e
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( [EXISTENCE] segundos de vida )
 Você carregou uma textura com [RESOLUTION] para o(a) &apos;[BODYREGION]&apos; em [TIME] segundos.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Não foi possível carregar textura.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Não podemos exibir uma visualização desta textura, pois ela é cópia proibida e/ou transferência proibida.
diff --git a/indra/newview/skins/default/xui/pt/panel_experience_info.xml b/indra/newview/skins/default/xui/pt/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7fad25dad6b6fabcab623e7419860ca20749d565
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Perfil de experiência"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Localização:
+					</text>
+					<text name="LocationTextText">
+						qualquer lugar
+					</text>
+					<button label="Teletransportar" name="teleport_btn"/>
+					<button label="Mapa" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Loja do Marketplace
+					</text>
+					<text name="LocationTextText">
+						qualquer lugar
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Classificação:
+					</text>
+					<text name="ContentRatingText">
+						Adulto
+					</text>
+					<text name="Owner">
+						Proprietário:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Editar" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/pt/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6e10cc583c5691b103b984c229f1b45c8d74e8b3
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		Carregando...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Experiências permitidas:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Experiências bloqueadas:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Experiências-chave:
+	</panel.string>
+	<panel.string name="no_results">
+		(vazio)
+	</panel.string>
+	<text name="text_name">
+		Lista de experiências
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Nome" name="experience_name"/>
+	</scroll_list>
+	<button label="Adicionar..." name="btn_add"/>
+	<button label="Remover" name="btn_remove"/>
+	<button label="Perfil..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_experience_list_item.xml b/indra/newview/skins/default/xui/pt/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..24022faeae34484b545ba52446ba7f1dd1918b52
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Nome fictício
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_experience_log.xml b/indra/newview/skins/default/xui/pt/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..97ef7607165d575a6c86ad8fa996c1eaf7c7ac96
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Sem eventos."/>
+	<string name="loading" value="Carregando..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Hora" name="time"/>
+				<columns label="Evento" name="event"/>
+				<columns label="Experiência" name="experience_name"/>
+				<columns label="Objeto" name="object_name"/>
+			</scroll_list>
+			<button label="Avisar" name="btn_notify"/>
+			<button label="Perfil" name="btn_profile_xp"/>
+			<button label="Denunciar" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Avisar sobre todos os eventos   Dias" name="notify_all"/>
+			<button label="Limpar" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_experience_search.xml b/indra/newview/skins/default/xui/pt/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e8d5ba63d57f2f47f021d921ba57d87cf9710f2c
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		&apos;[TEXT]&apos; não encontrado
+	</string>
+	<string name="no_results">
+		Sem resultados
+	</string>
+	<string name="searching">
+		Pesquisando...
+	</string>
+	<string name="loading">
+		Carregando...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Ir" name="find"/>
+		<icons_combo_box label="Moderado" name="maturity">
+			<icons_combo_box.item label="Adulto" name="Adult" value="42"/>
+			<icons_combo_box.item label="Moderado" name="Mature" value="21"/>
+			<icons_combo_box.item label="Geral" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Nome" name="experience_name"/>
+			<columns label="Proprietário" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Cancelar" name="cancel_btn"/>
+		<button label="Exibir perfil" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_experiences.xml b/indra/newview/skins/default/xui/pt/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cdf1a760d8a45f98afe607a7ff5bf02cf1e94483
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Carregando experiências..."/>
+	<string name="no_experiences" value="Nenhuma experiência."/>
+	<string name="acquire" value="Adquirir uma experiência"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_facebook_friends.xml b/indra/newview/skins/default/xui/pt/panel_facebook_friends.xml
index 9cb7a8b7d17dc943aa1987385aa2ea9bff3bdc95..8c5c24d08bc6890cd98d6fd5a4eab43e8035e88c 100644
--- a/indra/newview/skins/default/xui/pt/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/pt/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="No momento, você não tem amigos do Facebook que também são residentes do Second Life. Convide seus amigos do Facebook para ingressar no Second Life hoje mesmo!"/>
-	<string name="facebook_friends_no_connected" value="No momento, você não está conectado ao Facebook. Vá para a aba Conta para se conectar e ativar esse recurso."/>
+	<string name="facebook_friends_no_connected" value="No momento, você não está conectado ao Facebook. Vá para a aba Status para se conectar e ativar esse recurso."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="Amigos do SL"/>
 		<accordion_tab name="tab_suggested_friends" title="Adicionar essas pessoas como amigos do SL"/>
diff --git a/indra/newview/skins/default/xui/pt/panel_facebook_photo.xml b/indra/newview/skins/default/xui/pt/panel_facebook_photo.xml
index 22615e0769132e228fbccfea2dfb2e14f1c5545e..cdf322209231d59cce881347e266062eb04522dd 100644
--- a/indra/newview/skins/default/xui/pt/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/pt/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
-				<combo_box.item label="Janela atual" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
-				<combo_box.item label="Sem filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
-			<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
-			<text name="caption_label">
-				Comentário (opcional):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Postar" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
+		<combo_box.item label="Janela atual" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
+		<combo_box.item label="Sem filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
+	<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
+	<text name="caption_label">
+		Comentário (opcional):
+	</text>
+	<button label="Postar" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_facebook_place.xml b/indra/newview/skins/default/xui/pt/panel_facebook_place.xml
index 97596d64c63c8344b101946d1c400def7692d5d3..aa8b51d64b647437c5a0bbe7771b17eed6c2f45a 100644
--- a/indra/newview/skins/default/xui/pt/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/pt/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Diga algo sobre onde você está:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Postar" name="post_place_btn"/>
-			<button label="Cancelar" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Diga algo sobre onde você está:
+	</text>
+	<check_box initial_value="false" label="Incluir vista abstrata da localização" name="add_place_view_cb"/>
+	<button label="Postar" name="post_place_btn"/>
+	<button label="Cancelar" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_facebook_status.xml b/indra/newview/skins/default/xui/pt/panel_facebook_status.xml
index 251580666efb3f23a5b7b7d95ca108d1ff8b0a5b..0bbaf1086c6d0b913e2648c05d79b37574c84542 100644
--- a/indra/newview/skins/default/xui/pt/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/pt/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				No que você está pensando?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Postar" name="post_status_btn"/>
-			<button label="Cancelar" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Você está conectado ao Facebook como:"/>
+	<string name="facebook_disconnected" value="Não conectado ao Facebook"/>
+	<text name="account_caption_label">
+		Não conectado ao Facebook.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Conectar..." name="connect_btn"/>
+		<button label="Desconectar" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Aprenda a publicar no Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		No que você está pensando?
+	</text>
+	<button label="Postar" name="post_status_btn"/>
+	<button label="Cancelar" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_flickr_photo.xml b/indra/newview/skins/default/xui/pt/panel_flickr_photo.xml
index 77d8afb47c2e2f0c9d18db4e6d6985ab96659003..cbb3e362fe43d4d95bfd15fc162d94571e22689b 100644
--- a/indra/newview/skins/default/xui/pt/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/pt/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
-				<combo_box.item label="Janela atual" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
-				<combo_box.item label="Sem filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
-			<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
-			<text name="title_label">
-				Título:
-			</text>
-			<text name="description_label">
-				Descrição:
-			</text>
-			<check_box initial_value="true" label="Incluir localização do SL no final da descrição" name="add_location_cb"/>
-			<text name="tags_label">
-				Tags:
-			</text>
-			<text name="tags_help_label">
-				Separe as tags com espaços
+	<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
+		<combo_box.item label="Janela atual" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
+		<combo_box.item label="Sem filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
+	<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
+	<text name="title_label">
+		Título:
+	</text>
+	<text name="description_label">
+		Descrição:
+	</text>
+	<check_box initial_value="true" label="Incluir localização do SL no final da descrição" name="add_location_cb"/>
+	<text name="tags_label">
+		Tags:
+	</text>
+	<text name="tags_help_label">
+		Separe as tags com espaços
 Use &quot;&quot; para tags com várias palavras
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Classificação de conteúdo do Flickr">
-				<combo_box.item label="Classificação segura do Flickr" name="SafeRating"/>
-				<combo_box.item label="Classificação moderada do Flickr" name="ModerateRating"/>
-				<combo_box.item label="Classificação restrita do Flickr" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Enviar" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Classificação de conteúdo do Flickr">
+		<combo_box.item label="Classificação segura do Flickr" name="SafeRating"/>
+		<combo_box.item label="Classificação moderada do Flickr" name="ModerateRating"/>
+		<combo_box.item label="Classificação restrita do Flickr" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Enviar" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/pt/panel_group_info_sidetray.xml
index 7d8531a482d33736ef6bbac941ee8eb8d57e5488..d322c60ec0744f5c822ca7708cee9044ad899016 100755
--- a/indra/newview/skins/default/xui/pt/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/pt/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Funções e membros"/>
 				<accordion_tab name="group_notices_tab" title="Avisos"/>
 				<accordion_tab name="group_land_tab" title="Terrenos/Bens"/>
+				<accordion_tab name="group_experiences_tab" title="Experiências"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/pt/panel_postcard_settings.xml b/indra/newview/skins/default/xui/pt/panel_postcard_settings.xml
index 3088b9a99626e1be6d9a6be46086da7ffac2bab8..3608c96c6a8e9f509d625ff4f3744856df4b9e16 100755
--- a/indra/newview/skins/default/xui/pt/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/pt/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Customizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="Largura" name="postcard_snapshot_width"/>
-			<spinner label="Altura" name="postcard_snapshot_height"/>
-			<check_box label="Limitar proporções" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Qualidade da imagem" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largura X Altura" name="postcard_snapshot_width"/>
+	<check_box label="Limitar proporções" name="postcard_keep_aspect_check"/>
+	<slider label="Qualidade:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
index 1279e74e21dcaa759241263fa32edb26263d2687..87f2a9bc8fa175ddfdd21f7016c927d8f8f7ef15 100755
--- a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Usar meu navegador (IE, Firefox, Safari)" name="external" tool_tip="Use o navegador incluso para consultar a ajuda, abrir links da web, etc. Uso em tela inteira não recomendado." value="true"/>
-		<radio_item label="Usar navegador incluso" name="internal" tool_tip="Use este navegador para consultar a ajuda, abrir links da web, etc. As janelas abrem dentro do [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Usar meu navegador (Chrome, Firefox, IE) para todos os links" name="internal" tool_tip="Use o navegador padrão do sistema para consultar a ajuda, abrir links da web etc. Uso em tela inteira não recomendado." value="0"/>
+		<radio_item label="Usar o navegador incorporado somente para links do SecondLife" name="external" tool_tip="Usar o navegador padrão do sistema para consultar a ajuda, abrir links da web etc. O navegador incorporado será usado somente para os links da LindenLab/SecondLife." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Habilitar plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Aceitar cookies" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/pt/panel_region_experiences.xml b/indra/newview/skins/default/xui/pt/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c7e252cd6f1995c6d39db8b67d6ce2f08d47c6b7
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiências" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Qualquer experiência pode ser chave.
+
+Experiências-chave têm permissão para serem executadas nessa propriedade.
+
+Além disso, se a propriedade não permitir acesso público, os residentes participantes de qualquer experiência-chave podem entrar e permanecer na propriedade, desde que estejam na experiência-chave.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Somente experiências dentro do terreno podem ser permitidas.
+
+Experiências permitidas têm permissão para ser executadas nessa propriedade.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Somente experiências dentro da grade podem ser bloqueadas.
+      
+É possível que as experiências bloqueadas não sejam executadas nessa propriedade.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Mudar as opções desta guia afeta todas as regiões desta propriedade.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Somente experiências dentro do terreno podem ser permitidas.
+      
+Experiências permitidas têm permissão para ser executadas nesse terreno se não estiverem bloqueadas pela propriedade.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Qualquer experiência de residente pode ser bloqueada.
+      
+É possível que as experiências bloqueadas não sejam executadas neste terreno.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_script_experience.xml b/indra/newview/skins/default/xui/pt/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8366306581f4e5023c3477a06ab188cd54d4adf7
--- /dev/null
+++ b/indra/newview/skins/default/xui/pt/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="EXPERIÊNCIA">
+	<button label="Experiência" name="Expand Experience"/>
+	<check_box label="Usa experiência(s)" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Escolher experiência..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Você não é colaborador de nenhuma experiência.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/pt/panel_snapshot_inventory.xml
index 3c4bb186877bd26353c29ce7d4d52853dd06d9ef..b038c628bc290ccd0f4ac3c8a7778f8533ed42a0 100755
--- a/indra/newview/skins/default/xui/pt/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/pt/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Salvar no meu inventário
+		Inventário
 	</text>
 	<text name="hint_lbl">
 		Salvar uma imagem em seu inventário custa L$[UPLOAD_COST]. Para salvar sua imagem como uma textura, selecione um dos formatos quadrados.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Grande (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Customizado" name="Custom"/>
 	</combo_box>
-	<spinner label="Largura" name="inventory_snapshot_width"/>
-	<spinner label="Altura" name="inventory_snapshot_height"/>
+	<spinner label="Largura X Altura" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Limitar proporções" name="inventory_keep_aspect_check"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<button label="Salvar" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/pt/panel_snapshot_local.xml b/indra/newview/skins/default/xui/pt/panel_snapshot_local.xml
index 36b5b0cbe6b46b0f7bd7902ba405be142ddd1abb..c6dbec189d225e0ed870d6d0127a868c8bf27724 100755
--- a/indra/newview/skins/default/xui/pt/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/pt/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Salvar no meu PC
+		Disco
 	</text>
 	<combo_box label="Resolução" name="local_size_combo">
 		<combo_box.item label="Janela atual" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="Customizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="Largura" name="local_snapshot_width"/>
-			<spinner label="Altura" name="local_snapshot_height"/>
-			<check_box label="Limitar proporções" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Formato" name="local_format_combo">
-				<combo_box.item label="PNG (sem perda)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (sem perda)" name="BMP"/>
-			</combo_box>
-			<slider label="Qualidade da imagem" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largura X Altura" name="local_snapshot_width"/>
+	<check_box label="Limitar proporções" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Formato:
+	</text>
+	<combo_box label="Formato" name="local_format_combo">
+		<combo_box.item label="PNG (sem perda)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (sem perda)" name="BMP"/>
+	</combo_box>
+	<slider label="Qualidade:" name="image_quality_slider"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<flyout_button label="Salvar" name="save_btn" tool_tip="Salvar imagem em um arquivo">
 		<flyout_button.item label="Salvar" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/pt/panel_snapshot_options.xml b/indra/newview/skins/default/xui/pt/panel_snapshot_options.xml
index bce44d2ed6ea223a4374c1865afd50d908e6d415..d588e59f6d9bb5a4f8a832394e6bcff48225948c 100755
--- a/indra/newview/skins/default/xui/pt/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/pt/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Postar no feed do meu perfil" name="save_to_profile_btn"/>
-	<button label="E-mail" name="save_to_email_btn"/>
-	<button label="Salvar em Meu inventário (L$[AMOUNT])" name="save_to_inventory_btn"/>
-	<button label="Salvar no meu PC" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Enviar para:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="Salvar no disco" name="save_to_computer_btn"/>
+	<button label="Salvar em inventário (L$[AMOUNT])" name="save_to_inventory_btn"/>
+	<button label="Carregar no perfil" name="save_to_profile_btn"/>
+	<button label="Carregar no Facebook" name="send_to_facebook_btn"/>
+	<button label="Carregar no Twitter" name="send_to_twitter_btn"/>
+	<button label="Carregar no Flickr" name="send_to_flickr_btn"/>
+	<button label="Enviar por email" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/pt/panel_snapshot_postcard.xml
index 12a648f600bc47c3f573caeb77c12023e55ea195..ab1545a231ef48bd6bb922d43fe694999c50d7f2 100755
--- a/indra/newview/skins/default/xui/pt/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/pt/panel_snapshot_postcard.xml
@@ -10,8 +10,12 @@
 		Enviando...
 	</string>
 	<text name="title">
-		E-mail
+		Email
 	</text>
-	<button label="Mensagem" name="message_btn"/>
-	<button label="Configurações" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Mensagem" name="panel_postcard_message"/>
+		<panel label="Configurações" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Cancelar" name="cancel_btn"/>
+	<button label="Enviar" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/pt/panel_snapshot_profile.xml
index 095b8fc75d5c8c05ed40f5120d8d3637103a817f..f1d733475263634457bc2ee3904d755a52db1cab 100755
--- a/indra/newview/skins/default/xui/pt/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/pt/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Postar no feed do meu perfil
+		Perfil
 	</text>
 	<combo_box label="Resolução" name="profile_size_combo">
 		<combo_box.item label="Janela atual" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Customizado" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="Largura" name="profile_snapshot_width"/>
-			<spinner label="Altura" name="profile_snapshot_height"/>
-			<check_box label="Limitar proporções" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Legenda:
-			</text>
-			<check_box initial_value="true" label="Incluir local" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Largura X Altura" name="profile_snapshot_width"/>
+	<check_box label="Limitar proporções" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Legenda:
+	</text>
+	<check_box initial_value="true" label="Incluir local" name="add_location_cb"/>
 	<button label="Cancelar" name="cancel_btn"/>
 	<button label="Postar" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/panel_twitter_photo.xml b/indra/newview/skins/default/xui/pt/panel_twitter_photo.xml
index 3958d5f0f986ad53e3661bf0e5f913d1e0d6c3ba..7c4990f71e456048d1062715170fd5c3a764d367 100644
--- a/indra/newview/skins/default/xui/pt/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/pt/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Próximas etapas?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="Incluir localização do SL" name="add_location_cb"/>
-			<check_box initial_value="true" label="Incluir uma foto" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
-				<combo_box.item label="Janela atual" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
-				<combo_box.item label="Sem filtro" name="NoFilter"/>
-			</combo_box>
-			<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
-			<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Enviar tweet" name="post_photo_btn"/>
-			<button label="Cancelar" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Próximas etapas?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="Incluir localização do SL" name="add_location_cb"/>
+	<check_box initial_value="true" label="Incluir uma foto" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Resolução da imagem">
+		<combo_box.item label="Janela atual" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Filtros de imagem">
+		<combo_box.item label="Sem filtro" name="NoFilter"/>
+	</combo_box>
+	<button label="Atualizar" name="new_snapshot_btn" tool_tip="Clique para atualizar"/>
+	<button label="Visualizar" name="big_preview_btn" tool_tip="Clique para alternar entre visualizações"/>
+	<button label="Enviar tweet" name="post_photo_btn"/>
+	<button label="Cancelar" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/pt/role_actions.xml b/indra/newview/skins/default/xui/pt/role_actions.xml
index 90e2264940a48dd7e6b5b7c52185dd88c47fb81d..8d5bc061f99ce828725d86f161afe9150c128005 100755
--- a/indra/newview/skins/default/xui/pt/role_actions.xml
+++ b/indra/newview/skins/default/xui/pt/role_actions.xml
@@ -66,4 +66,8 @@
 		<action description="Enviar aviso" longdescription="Membros que exercem cargos com esta função podem enviar avisos na seção Avisos." name="notices send" value="42"/>
 		<action description="Receber novos avisos e ver os anteriores" longdescription="Membros que exercem cargos com esta função podem receber e ler avisos antigos na seção Avisos." name="notices receive" value="43"/>
 	</action_set>
+	<action_set description="Estas funções incluem o poder de modificar as experiências desse grupo." name="experience_tools_experience">
+		<action description="Administrador de experiência" longdescription="Os membros em uma função com essa permissão podem editar os metadados de uma experiência." name="experience admin" value="49"/>
+		<action description="Colaborador de experiência" longdescription="Os membros em uma função com essa permissão podem contribuir com scripts para uma experiência." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/pt/sidepanel_item_info.xml b/indra/newview/skins/default/xui/pt/sidepanel_item_info.xml
index d3cb0871087e43e746183a0e6e91b4feadbe2764..cf8f12fad8249b5bb43374dcd9e22e29e8176ac2 100755
--- a/indra/newview/skins/default/xui/pt/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/pt/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Perfil do item">
+	<panel.string name="loading_experience">
+		(carregando)
+	</panel.string>
 	<panel.string name="unknown">
 		(desconhecido)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Adquirido:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Experiência:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Você pode:
diff --git a/indra/newview/skins/default/xui/pt/strings.xml b/indra/newview/skins/default/xui/pt/strings.xml
index 577143b0dc504055b44e543177c7c1500ad296fa..6c1e6ab7f639ca8ef45f202b5d5bb05836b84f9c 100755
--- a/indra/newview/skins/default/xui/pt/strings.xml
+++ b/indra/newview/skins/default/xui/pt/strings.xml
@@ -401,6 +401,9 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
 	<string name="TooltipMustSingleDrop">
 		Apenas um item único pode ser arrastado para este local
 	</string>
+	<string name="TooltipTooManyWearables">
+		Você não pode usar uma pasta que contenha mais de [AMOUNT] itens.  Você pode mudar esse limite em Avançado &gt; Mostrar configurações de depuração &gt; WearFolderLimit.
+	</string>
 	<string name="TooltipPrice" value="L$[AMOUNT]"/>
 	<string name="TooltipOutboxDragToWorld">
 		Não é possível fazer rez do itens em sua caixa de saída do lojista
@@ -1006,9 +1009,7 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
 	<string name="AgentNameSubst">
 		(Você)
 	</string>
-	<string name="JoinAnExperience">
-		Participar de uma experiência
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Suprimir alertas ao gerenciar listas de acesso ao terreno
 	</string>
@@ -1813,6 +1814,9 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
 	<string name="CompileQueueUnknownFailure">
 		Falha desconhecida para download
 	</string>
+	<string name="CompileNoExperiencePerm">
+		Pulando script [SCRIPT] com experiência [EXPERIENCE]
+	</string>
 	<string name="CompileQueueTitle">
 		Progresso do recompilamento
 	</string>
@@ -5134,6 +5138,87 @@ Tente colocar o caminho do editor entre aspas.
 	<string name="UserDictionary">
 		[Usuário]
 	</string>
+	<string name="experience_tools_experience">
+		Experiência
+	</string>
+	<string name="ExperienceNameNull">
+		(nenhuma experiência)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(experiência sem título)
+	</string>
+	<string name="Land-Scope">
+		Dentro do terreno
+	</string>
+	<string name="Grid-Scope">
+		Dentro da grade
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		PERMITIDO
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		BLOQUEADA
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		COLABORADOR
+	</string>
+	<string name="Admin_Experiences_Tab">
+		ADMIN
+	</string>
+	<string name="Recent_Experiences_Tab">
+		RECENTES
+	</string>
+	<string name="Owned_Experiences_Tab">
+		PRÓPRIAS
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], máx. [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		assumir seus controles
+	</string>
+	<string name="ExperiencePermission3">
+		botão animações no seu avatar
+	</string>
+	<string name="ExperiencePermission4">
+		anexar ao avatar
+	</string>
+	<string name="ExperiencePermission9">
+		rastrear sua câmera
+	</string>
+	<string name="ExperiencePermission10">
+		controlar sua câmera
+	</string>
+	<string name="ExperiencePermission11">
+		teletransportar você
+	</string>
+	<string name="ExperiencePermission12">
+		aceitar automaticamente permissões de experiência
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		realizar uma operação desconhecida: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Assumir o controle
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Botão animações
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Anexar
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Rastrear câmera
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Câmera de controle
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Teletransportar
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Autorização
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		As conversas não estão sendo registradas. Para começar a manter um registro, selecione &quot;Salvar: apenas registro&quot; ou &quot;Salvar: registro e transcrições&quot; em Preferências&gt; Bate-papo.
 	</string>
diff --git a/indra/newview/skins/default/xui/pt/teleport_strings.xml b/indra/newview/skins/default/xui/pt/teleport_strings.xml
index 40fb4caebff912f0a3e6a996230693206c8743b9..9e1fd593efbee83652b020b2e6099eea2fdcab54 100755
--- a/indra/newview/skins/default/xui/pt/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/pt/teleport_strings.xml
@@ -46,6 +46,9 @@ Vá para a &apos;Ilha Welcome Pública&apos; para repetir o tutorial.
 		<message name="MustGetAgeRegion">
 			Você deve ter 18 anos ou mais para acessar esta região.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Não é possível inserir a região. &apos;[REGION_NAME]&apos; é uma Região de Skill Gaming, portanto você deve atender certos critérios para poder entrar. Para maiores detalhes, consulte as [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/ru/floater_about_land.xml b/indra/newview/skins/default/xui/ru/floater_about_land.xml
index 12691df68477af76c837a406f366281b4490650a..86428da3ef9639e230be84260d805ef2fe5e0379 100755
--- a/indra/newview/skins/default/xui/ru/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/ru/floater_about_land.xml
@@ -331,22 +331,6 @@
 			<check_box label="Безопасно (нет повреждений)" name="check safe" tool_tip="Если отмечено, то земля считается безопасной, отключены боевые повреждения. Если не отмечено, то боевые повреждения включены."/>
 			<check_box label="Не толкать" name="PushRestrictCheck" tool_tip="Запрещает скриптам функцию толкания. Этот параметр может оказаться полезным для предотвращения нежелательного поведения на вашей земле."/>
 			<check_box label="Показать место в поиске (L$30/неделя)" name="ShowDirectoryCheck" tool_tip="Позволить людям видеть участок в результатах поиска"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Любая категория" name="item0"/>
-				<combo_box.item label="Место Linden" name="item1"/>
-				<combo_box.item label="Взрослый" name="item2"/>
-				<combo_box.item label="Искусство и культура" name="item3"/>
-				<combo_box.item label="Бизнес" name="item4"/>
-				<combo_box.item label="Образование" name="item5"/>
-				<combo_box.item label="Игры" name="item6"/>
-				<combo_box.item label="Места встреч" name="item7"/>
-				<combo_box.item label="Для новичков" name="item8"/>
-				<combo_box.item label="Парки и природа" name="item9"/>
-				<combo_box.item label="Проживание" name="item10"/>
-				<combo_box.item label="Покупки" name="item11"/>
-				<combo_box.item label="Аренда" name="item13"/>
-				<combo_box.item label="Другое" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Любая категория" name="item0"/>
 				<combo_box.item label="Место Linden" name="item1"/>
@@ -477,5 +461,6 @@
 				<button label="Удалить" label_selected="Удалить" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="ПРИКЛЮЧЕНИЯ" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_experience_search.xml b/indra/newview/skins/default/xui/ru/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..77e3784b6827fc76ec9f14f302f672b42d95710c
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="ВЫБЕРИТЕ ПРИКЛЮЧЕНИЕ"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_experienceprofile.xml b/indra/newview/skins/default/xui/ru/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c72d8b59b9fd55c80742aa3a66771dc5b2218a1c
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(нет)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Профиль приключения"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Изменить" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Рейтинг:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Место:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Владелец:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Группа:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Разрешить" name="allow_btn"/>
+							<button label="Забыть" name="forget_btn"/>
+							<button label="Заблокировать" name="block_btn"/>
+							<text name="privileged">
+								Это приключение включено для всех жителей.
+							</text>
+							<button label="Жалоба" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Название:"/>
+					<text name="edit_experience_desc_label" value="Описание:"/>
+					<button label="Группа" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Рейтинг:
+					</text>
+					<icons_combo_box label="Умеренный" name="edit_ContentRatingText" tool_tip="При повышении рейтинга зрелости для приключения сбрасывается разрешение для всех жителей, которые разрешили приключение.">
+						<icons_combo_box.item label="Для взрослых" name="Adult" value="42"/>
+						<icons_combo_box.item label="Умеренный" name="Mature" value="21"/>
+						<icons_combo_box.item label="Общий" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Место:
+					</text>
+					<button label="Поставить текущее место" name="location_btn"/>
+					<button label="Очистить место" name="clear_btn"/>
+					<check_box label="Включить приключение" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Скрыть при поиске" name="edit_private_btn"/>
+					<text name="changes" value="Отображение изменений приключения во всех регионах может занять несколько минут."/>
+					<button label="Назад" name="cancel_btn"/>
+					<button label="Сохранить" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_experiences.xml b/indra/newview/skins/default/xui/ru/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f6fedfccc701d67829dc267a4d19c99ef8bb28b2
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="ПРИКЛЮЧЕНИЯ"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_facebook.xml b/indra/newview/skins/default/xui/ru/floater_facebook.xml
index 20b9e4e151d3c99fcd6e09db6c49cf9b9067b40d..cbf32cb682ec1c63cfa83dd2c49bc17b42ee6aaa 100644
--- a/indra/newview/skins/default/xui/ru/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/ru/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="ОПУБЛИКОВАТЬ В FACEBOOK">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="СТАТУС" name="panel_facebook_status"/>
-			<panel label="ФОТО" name="panel_facebook_photo"/>
-			<panel label="ВХОД" name="panel_facebook_place"/>
-			<panel label="ДРУЗЬЯ" name="panel_facebook_friends"/>
-			<panel label="АККАУНТ" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Ошибка
-			</text>
-			<text name="connection_loading_text">
-				Загрузка...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="СТАТУС" name="panel_facebook_status"/>
+		<panel label="ФОТО" name="panel_facebook_photo"/>
+		<panel label="ВХОД" name="panel_facebook_place"/>
+		<panel label="ДРУЗЬЯ" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Ошибка
+	</text>
+	<text name="connection_loading_text">
+		Загрузка...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/ru/floater_inventory_view_finder.xml
index 02068c57b8a10dffab6ede49855dd33568348762..aa0184fe349560c5b4677263df8812587450c1d5 100755
--- a/indra/newview/skins/default/xui/ru/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/ru/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Одежда" name="check_clothing"/>
 	<check_box label="Жесты" name="check_gesture"/>
 	<check_box label="Закладки" name="check_landmark"/>
-	<check_box label="Меши" name="check_mesh"/>
 	<check_box label="Заметки" name="check_notecard"/>
+	<check_box label="Меши" name="check_mesh"/>
 	<check_box label="Объекты" name="check_object"/>
 	<check_box label="Скрипты" name="check_script"/>
 	<check_box label="Звуки" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- ИЛИ -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Новее, чем" name="newer"/>
+		<radio_item label="Старше, чем" name="older"/>
+	</radio_group>
 	<spinner label="Часов назад" name="spin_hours_ago"/>
 	<spinner label="Дней назад" name="spin_days_ago"/>
 	<button label="Закрыть" label_selected="Закрыть" name="Close"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_lagmeter.xml b/indra/newview/skins/default/xui/ru/floater_lagmeter.xml
index c420006a03c394e955f543a1bdae6486bd0a2832..0cc9e56ff75e1f80c7b8d48d1a91a06cea131382 100644
--- a/indra/newview/skins/default/xui/ru/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/ru/floater_lagmeter.xml
@@ -31,7 +31,7 @@
 		Частота кадров клиента от [CLIENT_FRAME_RATE_CRITICAL] до [CLIENT_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
-		Нормально
+		Нормальный
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
 		Возможная причина: дальность отрисовки слишком велика
@@ -61,7 +61,7 @@
 		Сеть теряет [NETWORK_PACKET_LOSS_WARNING]–[NETWORK_PACKET_LOSS_CRITICAL]% пакетов
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
-		Нормально
+		Нормальный
 	</floater.string>
 	<floater.string name="network_ping_critical_ms">
 		600
@@ -100,7 +100,7 @@
 		Частота кадров сервера [SERVER_FRAME_RATE_CRITICAL]–[SERVER_FRAME_RATE_WARNING]
 	</floater.string>
 	<floater.string name="server_frame_time_normal_msg">
-		Нормально
+		Нормальный
 	</floater.string>
 	<floater.string name="server_physics_cause_msg">
 		Возможная причина: слишком много физических объектов
@@ -131,21 +131,21 @@
 		Клиент
 	</text>
 	<text name="client_text">
-		Нормально
+		Нормальный
 	</text>
 	<button name="network_lagmeter" tool_tip="Уровень лагов сети"/>
 	<text name="network">
 		Сеть
 	</text>
 	<text name="network_text">
-		Нормально
+		Нормальный
 	</text>
 	<button name="server_lagmeter" tool_tip="Уровень лагов сервера"/>
 	<text name="server">
 		Сервер
 	</text>
 	<text name="server_text">
-		Нормально
+		Нормальный
 	</text>
 	<button label="&gt;&gt;" name="minimize" tool_tip="Переключение размера"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
index fb6e747592041be29fa1c2e2463fe652e0b5df2a..30a196b1cac74315aadac30f144362cf4aca37ae 100755
--- a/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		СКРИПТ: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Снимите флажок для удаления текущего приключения
+	</floater.string>
+	<floater.string name="no_experiences">
+		Вам не разрешено пользоваться приключениями
+	</floater.string>
+	<floater.string name="add_experiences">
+		Выберите, чтобы добавить приключение
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Щелкните для просмотра профиля приключения
+	</floater.string>
+	<floater.string name="loading">
+		Загрузка...
+	</floater.string>
 	<button label="Сброс" label_selected="Сброс" name="Reset"/>
 	<check_box initial_value="true" label="Выполняется" name="running"/>
 	<check_box initial_value="true" label="Моно" name="mono"/>
+	<check_box label="Использовать приключение:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_openobject.xml b/indra/newview/skins/default/xui/ru/floater_openobject.xml
index 5da308eecb63f3ebf27cf75842c87eed80df0b22..54596042682313880148dd0b8bd86b18c078125e 100755
--- a/indra/newview/skins/default/xui/ru/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/ru/floater_openobject.xml
@@ -4,5 +4,5 @@
 		[DESC]:
 	</text>
 	<button label="Копировать в инвентарь" label_selected="Копировать в инвентарь" name="copy_to_inventory_button"/>
-	<button label="Копировать и надеть" label_selected="Копировать и надеть" name="copy_and_wear_button"/>
+	<button label="Копировать и добавить в костюм" label_selected="Копировать и добавить в костюм" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_report_abuse.xml b/indra/newview/skins/default/xui/ru/floater_report_abuse.xml
index abbdeca180d0cb597e64c76caca6fa1c22938da7..67d847aa6b778f6277c0e193eccab87fc6c77f95 100755
--- a/indra/newview/skins/default/xui/ru/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/ru/floater_report_abuse.xml
@@ -67,7 +67,7 @@
 		<combo_box.item label="Земля &gt; Посягательство &gt; Объекты или текстуры" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Земля &gt; Посягательство &gt; Частицы" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Земля &gt; Посягательство &gt; Деревья/растения" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Пари или азартные игры" name="Wagering_gambling"/>
+		<combo_box.item label="Нарушение политики игр" name="Wagering_gambling"/>
 		<combo_box.item label="Другое" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/ru/floater_snapshot.xml b/indra/newview/skins/default/xui/ru/floater_snapshot.xml
index 8933f94c0b1f5b0a7592c7b1a239d1d14f6258fb..97de279b8f6b8a6e29c776abe1d8971036921b97 100755
--- a/indra/newview/skins/default/xui/ru/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/ru/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Не удалось сохранить на компьютере.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Дополнительные параметры"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] пикс.
-	</text>
-	<text name="file_size_label">
-		[SIZE] КБ
-	</text>
+	<button label="ОБНОВИТЬ" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			ДОПОЛНИТЕЛЬНЫЕ ПАРАМЕТРЫ
-		</text>
 		<text name="layer_type_label">
 			Захват:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Без фильтра" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] (ширина) x [HEIGHT] (высота) пикс.
+	</text>
+	<text name="file_size_label">
+		[SIZE] КБ
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_top_objects.xml b/indra/newview/skins/default/xui/ru/floater_top_objects.xml
index c7ece5c9c9152d95028d6e2208e34ad1e9e41ecd..b045c5bff3359737b54526fe50d76a8aca647afe 100755
--- a/indra/newview/skins/default/xui/ru/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/ru/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Не найдено.
 	</floater.string>
+	<floater.string name="URLs">
+		URL-адреса
+	</floater.string>
+	<floater.string name="memory">
+		Память (КБ)
+	</floater.string>
 	<text name="title_text">
 		Загрузка...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Владелец" name="owner"/>
 		<scroll_list.columns label="Место" name="location"/>
 		<scroll_list.columns label="Участок" name="parcel"/>
-		<scroll_list.columns label="Время" name="time"/>
+		<scroll_list.columns label="Дата" name="time"/>
 		<scroll_list.columns label="URL-адреса" name="URLs"/>
 		<scroll_list.columns label="Память (КБ)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/ru/floater_twitter.xml b/indra/newview/skins/default/xui/ru/floater_twitter.xml
index 748092ff1f25a032f9d613f1d19e838852282a3c..3b9493ce98587fa5278e8c8e26bcb07ee7090331 100644
--- a/indra/newview/skins/default/xui/ru/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/ru/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="НАПИСАТЬ" name="panel_twitter_photo"/>
-			<panel label="АККАУНТ" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Ошибка
-			</text>
-			<text name="connection_loading_text">
-				Загрузка...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="НАПИСАТЬ" name="panel_twitter_photo"/>
+		<panel label="АККАУНТ" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Ошибка
+	</text>
+	<text name="connection_loading_text">
+		Загрузка...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/ru/menu_inventory_gear_default.xml
index 9fc0b6d44ebac2ab0b5952607fbad8af2c7d0742..967374f8f589fc35a3700986c939514fe9b80209 100755
--- a/indra/newview/skins/default/xui/ru/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/ru/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="Сортировать по времени" name="sort_by_recent"/>
 	<menu_item_check label="Всегда сортировать папки по имени" name="sort_folders_by_name"/>
 	<menu_item_check label="Показывать системные папки вверху" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Показать фильтры" name="show_filters"/>
+	<menu_item_call label="Показать фильтры..." name="show_filters"/>
 	<menu_item_call label="Сбросить фильтры" name="reset_filters"/>
 	<menu_item_call label="Закрыть все папки" name="close_folders"/>
 	<menu_item_call label="Очистить бюро находок" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/ru/menu_url_experience.xml b/indra/newview/skins/default/xui/ru/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..59af594c10bd0b6361a4ab60bdb825bd663333a3
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="Копировать URL-адрес SL в буфер обмена" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/ru/menu_viewer.xml b/indra/newview/skins/default/xui/ru/menu_viewer.xml
index 266a1fb877bfb701532b588a8f915e41ea9c267a..69bb4c4af9e1146a16bb75978ccdf041713c1d96 100755
--- a/indra/newview/skins/default/xui/ru/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/ru/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Новое окно инвентаря" name="NewInventoryWindow"/>
 		<menu_item_call label="Места..." name="Places"/>
 		<menu_item_call label="Подборка..." name="Picks"/>
+		<menu_item_call label="Приключения..." name="Experiences"/>
 		<menu_item_call label="Управление камерой..." name="Camera Controls"/>
 		<menu label="Движение" name="Movement">
 			<menu_item_call label="Сесть" name="Sit Down Here"/>
@@ -46,7 +47,7 @@
 		<menu_item_check label="Друзья" name="My Friends"/>
 		<menu_item_check label="Группы" name="My Groups"/>
 		<menu_item_check label="Люди неподалеку" name="Active Speakers"/>
-		<menu_item_call label="Черный список" name="Block List"/>
+		<menu_item_check label="Черный список" name="Block List"/>
 		<menu_item_check label="Не беспокоить" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Мир" name="World">
diff --git a/indra/newview/skins/default/xui/ru/mime_types.xml b/indra/newview/skins/default/xui/ru/mime_types.xml
index 7ed23b5d535c7687785d7b17d77c474b07cec934..9b120f2f4084a85c78b0d52e97b6236a97c62f2c 100755
--- a/indra/newview/skins/default/xui/ru/mime_types.xml
+++ b/indra/newview/skins/default/xui/ru/mime_types.xml
@@ -44,6 +44,14 @@
 			Воспроизвести звук для этого места
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Нет контента
+		</label>
+		<tooltip name="none_tooltip">
+			Здесь нет медиа
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Поток RealTime
diff --git a/indra/newview/skins/default/xui/ru/mime_types_linux.xml b/indra/newview/skins/default/xui/ru/mime_types_linux.xml
index a42b0bb9cc5f65ff833495b9fae63316e9e7d109..6feb64679c89472ec6c0417256bce42688fd7086 100755
--- a/indra/newview/skins/default/xui/ru/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/ru/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Воспроизвести звук для этого места
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Нет контента
+		</label>
+		<tooltip name="none_tooltip">
+			Здесь нет медиа
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Поток RealTime
diff --git a/indra/newview/skins/default/xui/ru/mime_types_mac.xml b/indra/newview/skins/default/xui/ru/mime_types_mac.xml
index 7ed23b5d535c7687785d7b17d77c474b07cec934..9b120f2f4084a85c78b0d52e97b6236a97c62f2c 100755
--- a/indra/newview/skins/default/xui/ru/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/ru/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Воспроизвести звук для этого места
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			Нет контента
+		</label>
+		<tooltip name="none_tooltip">
+			Здесь нет медиа
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Поток RealTime
diff --git a/indra/newview/skins/default/xui/ru/notifications.xml b/indra/newview/skins/default/xui/ru/notifications.xml
index c312bcbef48c11fbaa97d0c5b33d14ee4ac38c3e..206be2e2df6ba0842832e50f53b6537d20f7d7da 100755
--- a/indra/newview/skins/default/xui/ru/notifications.xml
+++ b/indra/newview/skins/default/xui/ru/notifications.xml
@@ -73,6 +73,10 @@
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Отмена" yestext="Да"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="BadInstallation">
 		Произошла ошибка при обновлении [APP_NAME]. [http://get.secondlife.com Загрузите последнюю версию] клиента.
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -575,6 +579,9 @@
 	<notification name="RegionNoTerraforming">
 		В регионе [REGION] не разрешен терраформинг.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		Вам не разрешено терраформировать участок [PARCEL].
+	</notification>
 	<notification name="CannotCopyWarning">
 		У вас нет разрешения на копирование следующих предметов:
 [ITEMS]
@@ -1825,6 +1832,30 @@ http://secondlife.com/download.
 		Удалить менеджера только для этого землевладения или для [ALL_ESTATES]?
 		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
 	</notification>
+	<notification label="Выбрать землевладение" name="EstateAllowedExperienceAdd">
+		Внести в список допущенных только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
+	<notification label="Выбрать землевладение" name="EstateAllowedExperienceRemove">
+		Удалить из списка допущенных только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
+	<notification label="Выбрать землевладение" name="EstateBlockedExperienceAdd">
+		Внести в список заблокированных только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
+	<notification label="Выбрать землевладение" name="EstateBlockedExperienceRemove">
+		Удалить из списка заблокированных только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
+	<notification label="Выбрать землевладение" name="EstateTrustedExperienceAdd">
+		Внести в ключевой список только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
+	<notification label="Выбрать землевладение" name="EstateTrustedExperienceRemove">
+		Удалить из ключевой список только для этого землевладения или для [ALL_ESTATES]?
+		<usetemplate canceltext="Отмена" name="yesnocancelbuttons" notext="Для всех землевладений" yestext="Для этого землевладения"/>
+	</notification>
 	<notification label="Подтвердить выбрасывание" name="EstateKickUser">
 		Выбросить пользователя [EVIL_USER] из этого землевладения?
 		<usetemplate name="okcancelbuttons" notext="Отмена" yestext="OK"/>
@@ -1899,6 +1930,10 @@ http://secondlife.com/download.
 		При телепортации возникли технические проблемы, так как ваши настройки не синхронизированы с сервером.
 		<usetemplate name="okbutton" yestext="OK"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Не удалось войти в регион. «[REGION_NAME]» – это регион развивающих игр, и для входа в него надо соответствовать определенным условиям. Подробнее см. на странице [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		Вы больше не будете получать уведомлений о посещении региона с контентом рейтинга [RATING].  Настройки для контента можно изменить на будущее с помощью команд меню «Я &gt; Настройки &gt; Общие».
 		<usetemplate name="okbutton" yestext="OK"/>
@@ -2205,6 +2240,9 @@ http://secondlife.com/download.
 			<button ignore="Не заменять" name="No" text="Отмена"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		Нельзя носить папку, содержащую более [AMOUNT] вещей.  Это ограничение можно изменить в меню «Дополнительно &gt; Настройки отладки &gt; WearFolderLimit.
+	</notification>
 	<notification label="Предупреждение режима «Не беспокоить»" name="DoNotDisturbModePay">
 		Включен режим «Не беспокоить». Вы не будете получать никаких предметов, предлагаемых в обмен за этот платеж.
 
@@ -2814,7 +2852,7 @@ http://secondlife.com/download.
 
 [MESSAGE]
 
-Из объекта: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, владелец: [NAME]?
+Из объекта: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, владелец: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Перейти на страницу"/>
 			<button name="Cancel" text="Отмена"/>
@@ -2840,6 +2878,72 @@ http://secondlife.com/download.
 			<button name="Mute" text="Заблокировать"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Невозможно приобрести новое приключение:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="OK"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Изменение в группе приключения игнорируется, так как владелец не принадлежит к выбранной группе.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		Нередактируемое поле «[field]» игнорируется при обновлении профиля приключения.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Игнорируются изменения в поле «[field]», которые может вносить только владелец приключения.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Вы не можете устанавливать для приключения рейтинг зрелости выше, чем у владельца.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Следующие условия не допускают обновление названия и (или) описания профиля приключения: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		Вы были телепортированы из региона [region_name] за удаление приключения secondlife:///app/experience/[public_id]/profile. Вам больше не разрешено пребывание в этом регионе.
+		<form name="form">
+			<ignore name="ignore" text="Выброшен из региона за удаление приключения"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		Вам был разрешен вход в регион [region_name] путем участия в ключевом приключении secondlife:///app/experience/[public_id]/profile. При удалении этого приключения вы можете быть выброшены из региона.
+		<form name="form">
+			<ignore name="ignore" text="Приключение разрешило вход в регион"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		У вас нет доступа к этому месту назначения. Вам может быть разрешен вход в этот регион при принятии следующего приключения:
+
+[EXPERIENCE_LIST]
+
+Могут быть доступны следующие ключевые приключения.
+	</notification>
+	<notification name="ExperienceEvent">
+		Разрешен объект для события [EventType] приключением secondlife:///app/experience/[public_id]/profile.
+    Владелец: secondlife:///app/agent/[OwnerID]/inspect
+    Название объекта: [ObjectName]
+    Название участка: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		Разрешено присоединение для события [EventType] приключением secondlife:///app/experience/[public_id]/profile.
+    Владелец: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		Объект «&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;», владелец которого – «[NAME]», требует вашего участия в приключении [GRID_WIDE]:
+
+[EXPERIENCE]
+
+После получения разрешения это сообщение больше не будет отображаться для данного приключения, пока оно не будет отозвано из профиля приключения.
+
+Скрипты, связанные с данным приключением, смогут выполнять следующие действия в регионах, где активно приключение: 
+
+[QUESTIONS]Это правильно?
+		<form name="form">
+			<button name="BlockExperience" text="Заблокировать приключение"/>
+			<button name="Mute" text="Заблокировать объект"/>
+			<button name="Yes" text="Да"/>
+			<button name="No" text="Нет"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Предупреждение. Объект «&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;» требует полного доступа к вашему аккаунту для Linden-долларов. Если разрешить такой доступ, объект сможет в любое время снимать средства с вашего аккаунта или полностью опустошать его неоднократно и без предупреждения.
   
@@ -3158,6 +3262,10 @@ http://secondlife.com/download.
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( [EXISTENCE] сек. жизни )
 Вы локально обновили готовую текстуру [RESOLUTION] для «[BODYREGION]» через [TIME] сек.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Невозможно загрузить текстуру.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Просмотр этой текстуры невозможен, так как запрещено ее копирование и/или перенос.
diff --git a/indra/newview/skins/default/xui/ru/panel_experience_info.xml b/indra/newview/skins/default/xui/ru/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bd5f81506e610bdfe66e770c43a6cc032fd3796f
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Профиль приключения"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Место:
+					</text>
+					<text name="LocationTextText">
+						какое-то место
+					</text>
+					<button label="Телепортация" name="teleport_btn"/>
+					<button label="Карта" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Магазин торгового центра:
+					</text>
+					<text name="LocationTextText">
+						какое-то место
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Рейтинг:
+					</text>
+					<text name="ContentRatingText">
+						Для взрослых
+					</text>
+					<text name="Owner">
+						Владелец:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Изменить" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/ru/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fdf3ec818851b7c4ef00d62968f66c6274f9889a
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		загрузка…
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Разрешенные приключения:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Заблокированные приключения:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Ключевые приключения:
+	</panel.string>
+	<panel.string name="no_results">
+		(пусто)
+	</panel.string>
+	<text name="text_name">
+		Список приключений
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Название" name="experience_name"/>
+	</scroll_list>
+	<button label="Добавить..." name="btn_add"/>
+	<button label="Удалить" name="btn_remove"/>
+	<button label="Профиль…" name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_experience_list_item.xml b/indra/newview/skins/default/xui/ru/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1af9915bf275577bd074ef39d0f8df60cfef37f9
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Псевдо-имя
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_experience_log.xml b/indra/newview/skins/default/xui/ru/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..043dd4db176aef6aab8ea2ffe0b45640cb71ee0f
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Нет событий."/>
+	<string name="loading" value="загрузка…"/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Время" name="time"/>
+				<columns label="Событие" name="event"/>
+				<columns label="Приключение" name="experience_name"/>
+				<columns label="Объект" name="object_name"/>
+			</scroll_list>
+			<button label="Уведомить" name="btn_notify"/>
+			<button label="Профиль" name="btn_profile_xp"/>
+			<button label="Пожаловаться" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Уведомлять обо всех событиях   дн." name="notify_all"/>
+			<button label="Очистить" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_experience_search.xml b/indra/newview/skins/default/xui/ru/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..38d047f509f7f2bfcdbd0136c259ca2bb7ffce93
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		Текст «[TEXT]» не найден
+	</string>
+	<string name="no_results">
+		Нет результатов
+	</string>
+	<string name="searching">
+		Поиск...
+	</string>
+	<string name="loading">
+		Загрузка...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Перейти" name="find"/>
+		<icons_combo_box label="Умеренный" name="maturity">
+			<icons_combo_box.item label="Для взрослых" name="Adult" value="42"/>
+			<icons_combo_box.item label="Умеренный" name="Mature" value="21"/>
+			<icons_combo_box.item label="Общий" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Название" name="experience_name"/>
+			<columns label="Владелец" name="owner"/>
+		</scroll_list>
+		<button label="OK" label_selected="OK" name="ok_btn"/>
+		<button label="Отмена" name="cancel_btn"/>
+		<button label="Посмотреть профиль" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_experiences.xml b/indra/newview/skins/default/xui/ru/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..56b962a77f843d5e1b0f50a8860f021dc945beb8
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Загрузка приключений..."/>
+	<string name="no_experiences" value="Нет приключений."/>
+	<string name="acquire" value="Приобрести приключение"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_facebook_friends.xml b/indra/newview/skins/default/xui/ru/panel_facebook_friends.xml
index 518452953d311610cc5615aa86ae175a4ad441af..746da8d523f517b83c1782d34e23d5300094340a 100644
--- a/indra/newview/skins/default/xui/ru/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/ru/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Сейчас у вас нет друзей по Facebook, которые также были бы жителями Second Life. Предложите своим друзьям по Facebook присоединиться к Second Life!"/>
-	<string name="facebook_friends_no_connected" value="Сейчас вы не подключены к Facebook. Перейдите на вкладку «Аккаунт», чтобы подключиться и включить эту функцию."/>
+	<string name="facebook_friends_no_connected" value="Сейчас вы не подключены к Facebook. Перейдите на вкладку «Статус», чтобы подключиться и включить эту функцию."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="Друзья по SL"/>
 		<accordion_tab name="tab_suggested_friends" title="Добавить этих людей как друзей по SL"/>
diff --git a/indra/newview/skins/default/xui/ru/panel_facebook_photo.xml b/indra/newview/skins/default/xui/ru/panel_facebook_photo.xml
index 783294be8635447b5e14090435ecd9f92e525762..143a57fec7fa06eaf64a91d1c6361e1fa50482ca 100644
--- a/indra/newview/skins/default/xui/ru/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/ru/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
-				<combo_box.item label="Текущее окно" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
-				<combo_box.item label="Без фильтра" name="NoFilter"/>
-			</combo_box>
-			<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
-			<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
-			<text name="caption_label">
-				Комментарий (не обязательно):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Опубликовать" name="post_photo_btn"/>
-			<button label="Отмена" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
+		<combo_box.item label="Текущее окно" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
+		<combo_box.item label="Без фильтра" name="NoFilter"/>
+	</combo_box>
+	<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
+	<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
+	<text name="caption_label">
+		Комментарий (не обязательно):
+	</text>
+	<button label="Опубликовать" name="post_photo_btn"/>
+	<button label="Отмена" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_facebook_place.xml b/indra/newview/skins/default/xui/ru/panel_facebook_place.xml
index 913d327e921b81eb63ce1c68e70553258e2e32e3..7d0917a43afbf596e869c88a29800b9a146c59b5 100644
--- a/indra/newview/skins/default/xui/ru/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/ru/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Напишите о том, где вы:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Опубликовать" name="post_place_btn"/>
-			<button label="Отмена" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Напишите о том, где вы:
+	</text>
+	<check_box initial_value="false" label="Включить вид места сверху" name="add_place_view_cb"/>
+	<button label="Опубликовать" name="post_place_btn"/>
+	<button label="Отмена" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_facebook_status.xml b/indra/newview/skins/default/xui/ru/panel_facebook_status.xml
index a59f132a01ca5d4d7d5b37a6e27928b8e4702485..c651a8087c704e05c83c9bbd558934ff6c8e9f66 100644
--- a/indra/newview/skins/default/xui/ru/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/ru/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				О чем вы думаете?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Опубликовать" name="post_status_btn"/>
-			<button label="Отмена" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Вы подключились к Facebook как:"/>
+	<string name="facebook_disconnected" value="Не подключено к Facebook"/>
+	<text name="account_caption_label">
+		Не подключено к Facebook.
+	</text>
+	<panel name="panel_buttons">
+		<button label="Подключение..." name="connect_btn"/>
+		<button label="Отключить" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 О публикации в Facebook]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		О чем вы думаете?
+	</text>
+	<button label="Опубликовать" name="post_status_btn"/>
+	<button label="Отмена" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_flickr_photo.xml b/indra/newview/skins/default/xui/ru/panel_flickr_photo.xml
index 0c93e2891101d75750f72836870e837c602ad6ff..9dd68699ca1ed02ffca4a59676ec3601ddd79181 100644
--- a/indra/newview/skins/default/xui/ru/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/ru/panel_flickr_photo.xml
@@ -1,40 +1,34 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
-				<combo_box.item label="Текущее окно" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
-				<combo_box.item label="Без фильтра" name="NoFilter"/>
-			</combo_box>
-			<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
-			<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
-			<text name="title_label">
-				Название:
-			</text>
-			<text name="description_label">
-				Описание:
-			</text>
-			<check_box initial_value="true" label="Добавить в конец описания расположение в SL" name="add_location_cb"/>
-			<text name="tags_label">
-				Теги:
-			</text>
-			<text name="tags_help_label">
-				Разделяйте теги пробелами. Теги из нескольких слов заключайте в кавычки.
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Рейтинг контента Flickr">
-				<combo_box.item label="Безопасный рейтинг Flickr" name="SafeRating"/>
-				<combo_box.item label="Умеренный рейтинг Flickr" name="ModerateRating"/>
-				<combo_box.item label="Ограниченный рейтинг Flickr" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Передать" name="post_photo_btn"/>
-			<button label="Отмена" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
+		<combo_box.item label="Текущее окно" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
+		<combo_box.item label="Без фильтра" name="NoFilter"/>
+	</combo_box>
+	<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
+	<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
+	<text name="title_label">
+		Название:
+	</text>
+	<text name="description_label">
+		Описание:
+	</text>
+	<check_box initial_value="true" label="Добавить в конец описания расположение в SL" name="add_location_cb"/>
+	<text name="tags_label">
+		Теги:
+	</text>
+	<text name="tags_help_label">
+		Разделяйте теги пробелами. Теги из нескольких слов заключайте в кавычки.
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Рейтинг контента Flickr">
+		<combo_box.item label="Безопасный рейтинг Flickr" name="SafeRating"/>
+		<combo_box.item label="Умеренный рейтинг Flickr" name="ModerateRating"/>
+		<combo_box.item label="Ограниченный рейтинг Flickr" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Передать" name="post_photo_btn"/>
+	<button label="Отмена" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/ru/panel_group_info_sidetray.xml
index 16aaa7126894ccb0e4784189f224f0ff0be910ec..0ec667e3b2ae906e3d9165f462b77b7f9e793cd7 100755
--- a/indra/newview/skins/default/xui/ru/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/ru/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Роли и участники"/>
 				<accordion_tab name="group_notices_tab" title="Уведомления"/>
 				<accordion_tab name="group_land_tab" title="Земля/активы"/>
+				<accordion_tab name="group_experiences_tab" title="Приключения"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/ru/panel_postcard_settings.xml b/indra/newview/skins/default/xui/ru/panel_postcard_settings.xml
index dc9d59008f158635890d7df9a871501b5b6c3f12..d95cdbcf0a22246da2f2a34821743c4c19414012 100755
--- a/indra/newview/skins/default/xui/ru/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/ru/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Задать" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="Ширина" name="postcard_snapshot_width"/>
-			<spinner label="Высота" name="postcard_snapshot_height"/>
-			<check_box label="Сохранять пропорции" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Качество изображения" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ширина x Высота" name="postcard_snapshot_width"/>
+	<check_box label="Сохранять пропорции" name="postcard_keep_aspect_check"/>
+	<slider label="Качество:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml b/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
index 1741397a8411403911c2cafaec35e3e89e271f6c..d00f58dbfffc8044eb311ead4527d128710e4b85 100755
--- a/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Браузер:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Использовать мой браузер (IE, Firefox, Safari)" name="external" tool_tip="Будет использоваться браузер, заданный в системе по умолчанию. Не рекомендуется, если [APP_NAME] работает в полноэкранном режиме." value="true"/>
-		<radio_item label="Использовать встроенный браузер" name="internal" tool_tip="Для просмотра справки, ссылок на веб-страницы и т. д. будет использоваться встроенный браузер. Этот браузер открывается как новое окно в [APP_NAME]." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Использовать мой браузер (Chrome, Firefox, IE) для всех ссылок" name="internal" tool_tip="Будет использоваться браузер, заданный в системе по умолчанию. Не рекомендуется, если [APP_NAME] работает в полноэкранном режиме." value="0"/>
+		<radio_item label="Использовать встроенный браузер только для ссылок Second Life" name="external" tool_tip="Стандартный браузер системы будет использоваться для справки, ссылок Интернета и т.д. Встроенный браузер будет использоваться только для ссылок LindenLab/SecondLife." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Разрешить плагины" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Принимать файлы cookie" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/ru/panel_region_experiences.xml b/indra/newview/skins/default/xui/ru/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4fd70b56506887653afdb2619739fdf77da54aee
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Приключения" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Любое приключение может быть ключевым.
+
+У ключевых приключений есть разрешение на запуск в этом землевладении.
+
+Кроме того, если в землевладении не разрешен публичный доступ, то жители, участвующие в любом ключевом приключении, могут входить в землевладение и оставаться в нем до тех пор, пока они находятся в ключевом приключении.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Могут быть разрешены только приключения, привязанные к земле.
+
+У разрешенных приключений есть разрешение на запуск в этом землевладении.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Блокировать можно только привязанные к сетке приключения.
+      
+Запуск заблокированных приключений в этом землевладении невозможен.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Изменение параметров на этой вкладке повлияет на все регионы этого землевладения.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Могут быть разрешены только приключения, привязанные к земле.
+      
+У разрешенных приключений есть разрешение на запуск на этом участке, если они не заблокированы землевладением.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Любое приключение жителя может быть заблокировано.
+      
+Запуск заблокированных приключений на этом участке невозможен.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_script_experience.xml b/indra/newview/skins/default/xui/ru/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f798884c6bd4cde6bf56eefcca36310edf169ae6
--- /dev/null
+++ b/indra/newview/skins/default/xui/ru/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="ПРИКЛЮЧЕНИЕ">
+	<button label="Приключение" name="Expand Experience"/>
+	<check_box label="Используется приключение" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Выбрать приключение..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Вы не являетесь автором приключений.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/ru/panel_snapshot_inventory.xml
index 53a150c9f9e0230122a1ca5f1a43bfc2f1529e67..adc612dfd82db96e584a1e206d833a618a942cde 100755
--- a/indra/newview/skins/default/xui/ru/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/ru/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Сохранить в моем инвентаре
+		Инвентарь
 	</text>
 	<text name="hint_lbl">
 		Сохранение изображения в инвентаре стоит L$[UPLOAD_COST]. Чтобы сохранить его как текстуру, выберите один из квадратных форматов.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Большой (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Задать" name="Custom"/>
 	</combo_box>
-	<spinner label="Ширина" name="inventory_snapshot_width"/>
-	<spinner label="Высота" name="inventory_snapshot_height"/>
+	<spinner label="Ширина x Высота" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Сохранять пропорции" name="inventory_keep_aspect_check"/>
 	<button label="Отмена" name="cancel_btn"/>
 	<button label="Сохранить" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/ru/panel_snapshot_local.xml b/indra/newview/skins/default/xui/ru/panel_snapshot_local.xml
index 446b9bb2fd367de13a0d71ec2cbcde61dc823c16..80ad8f770302bab58ddca8c3a0b3048eb4f924f6 100755
--- a/indra/newview/skins/default/xui/ru/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/ru/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Сохранить на моем компьютере
+		Диск
 	</text>
 	<combo_box label="Размер" name="local_size_combo">
 		<combo_box.item label="Текущее окно" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="Задать" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="Ширина" name="local_snapshot_width"/>
-			<spinner label="Высота" name="local_snapshot_height"/>
-			<check_box label="Сохранять пропорции" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Формат" name="local_format_combo">
-				<combo_box.item label="PNG (без потерь)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (без потерь)" name="BMP"/>
-			</combo_box>
-			<slider label="Качество изображения" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ширина x Высота" name="local_snapshot_width"/>
+	<check_box label="Сохранять пропорции" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Формат:
+	</text>
+	<combo_box label="Формат" name="local_format_combo">
+		<combo_box.item label="PNG (без потерь)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (без потерь)" name="BMP"/>
+	</combo_box>
+	<slider label="Качество:" name="image_quality_slider"/>
 	<button label="Отмена" name="cancel_btn"/>
 	<flyout_button label="Сохранить" name="save_btn" tool_tip="Сохранить изображение в файл">
 		<flyout_button.item label="Сохранить" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/ru/panel_snapshot_options.xml b/indra/newview/skins/default/xui/ru/panel_snapshot_options.xml
index 8cd69951cab933d6f242c2154386dcc8b9020951..9a5bbf3bacbd3133495a696c44597cb23e65f7ee 100755
--- a/indra/newview/skins/default/xui/ru/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/ru/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Поместить в мой профиль" name="save_to_profile_btn"/>
+	<button label="Сохранить на диске" name="save_to_computer_btn"/>
+	<button label="Сохранить в инвентаре (L$[AMOUNT])" name="save_to_inventory_btn"/>
+	<button label="Загрузить в профиль" name="save_to_profile_btn"/>
+	<button label="Загрузить в Facebook" name="send_to_facebook_btn"/>
+	<button label="Загрузить в Twitter" name="send_to_twitter_btn"/>
+	<button label="Загрузить на Flickr" name="send_to_flickr_btn"/>
 	<button label="Отправить по почте" name="save_to_email_btn"/>
-	<button label="Сохранить в моем инвентаре (L$[AMOUNT])" name="save_to_inventory_btn"/>
-	<button label="Сохранить на моем компьютере" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Отправить:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/ru/panel_snapshot_postcard.xml
index 47f4caf8e385e2befb5b2c15435f504eeb1876e8..8f6ab612ff55cacb990df6d38d77803da19feb4d 100755
--- a/indra/newview/skins/default/xui/ru/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/ru/panel_snapshot_postcard.xml
@@ -10,8 +10,12 @@
 		Отправка...
 	</string>
 	<text name="title">
-		Электронное письмо
+		Почта
 	</text>
-	<button label="Сообщение" name="message_btn"/>
-	<button label="Настройки" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Сообщение" name="panel_postcard_message"/>
+		<panel label="Настройки" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Отмена" name="cancel_btn"/>
+	<button label="Отправить" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/ru/panel_snapshot_profile.xml
index 79a9ef58d035b122640455b7d9f03bb047692473..6b3401aa5c791bf3fb31382e1439576dfab4dad8 100755
--- a/indra/newview/skins/default/xui/ru/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/ru/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Поместить в мой профиль
+		Профиль
 	</text>
 	<combo_box label="Размер" name="profile_size_combo">
 		<combo_box.item label="Текущее окно" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Задать" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="Ширина" name="profile_snapshot_width"/>
-			<spinner label="Высота" name="profile_snapshot_height"/>
-			<check_box label="Сохранять пропорции" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Подпись:
-			</text>
-			<check_box initial_value="true" label="Включить расположение" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Ширина x Высота" name="profile_snapshot_width"/>
+	<check_box label="Сохранять пропорции" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Подпись:
+	</text>
+	<check_box initial_value="true" label="Включить расположение" name="add_location_cb"/>
 	<button label="Отмена" name="cancel_btn"/>
 	<button label="Опубликовать" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_twitter_photo.xml b/indra/newview/skins/default/xui/ru/panel_twitter_photo.xml
index 564d02411d0ffffee01eaae75942ef97ee34bd05..6c9035323ad99f5ab4d0b59c4f4ce957a9ea9007 100644
--- a/indra/newview/skins/default/xui/ru/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/ru/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Что случилось?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="Включить расположение в SL" name="add_location_cb"/>
-			<check_box initial_value="true" label="Включить фото" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
-				<combo_box.item label="Текущее окно" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
-				<combo_box.item label="Без фильтра" name="NoFilter"/>
-			</combo_box>
-			<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
-			<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Твит" name="post_photo_btn"/>
-			<button label="Отмена" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Что случилось?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="Включить расположение в SL" name="add_location_cb"/>
+	<check_box initial_value="true" label="Включить фото" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Разрешение изображения">
+		<combo_box.item label="Текущее окно" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Фильтры изображений">
+		<combo_box.item label="Без фильтра" name="NoFilter"/>
+	</combo_box>
+	<button label="Обновить" name="new_snapshot_btn" tool_tip="Щелкните для обновления"/>
+	<button label="Просмотр" name="big_preview_btn" tool_tip="Щелкните для смены вида"/>
+	<button label="Твит" name="post_photo_btn"/>
+	<button label="Отмена" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/role_actions.xml b/indra/newview/skins/default/xui/ru/role_actions.xml
index a4ac7411a3cf7e700c87ea370f7ab30c991823f0..c29cd6d0f49af41459bd084f2b7cf2251838274b 100755
--- a/indra/newview/skins/default/xui/ru/role_actions.xml
+++ b/indra/newview/skins/default/xui/ru/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Присоединение к голосовому чату группы" longdescription="Участники роли с этой способностью могут присоединяться к сеансам голосового чата группы.  ПРИМЕЧАНИЕ. Способность «Присоединение к чату группы» необходима для доступа к сеансам голосового чата." name="join voice chat" value="27"/>
 		<action description="Moderate-чат группы" longdescription="Участники роли с этой способностью могут контролировать доступ и участие в сеансах текстового и голосового чата группы." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Эти способности включают право изменять приключения, которыми владеет эта группа." name="experience_tools_experience">
+		<action description="Администратор приключения" longdescription="Участники роли с этой способностью могут редактировать метаданные приключения." name="experience admin" value="49"/>
+		<action description="Автор приключения" longdescription="Участники роли с этой способностью могут создавать скрипты для приключения." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/ru/sidepanel_item_info.xml b/indra/newview/skins/default/xui/ru/sidepanel_item_info.xml
index 0106ed50acafa94d857be2a4f707b8287fe4c93e..c42586b7b81132ea86ea2b671bb51c3d680102df 100755
--- a/indra/newview/skins/default/xui/ru/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/ru/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Профиль объекта">
+	<panel.string name="loading_experience">
+		(загрузка)
+	</panel.string>
 	<panel.string name="unknown">
 		(неизвестно)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Приобретено:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Приключение:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Вы можете:
diff --git a/indra/newview/skins/default/xui/ru/strings.xml b/indra/newview/skins/default/xui/ru/strings.xml
index b7daab33a9f50b36cd9e79b2dd9c3e29cc3a3eb3..ba63881094650b3fa325bfca73a060f256259a4c 100755
--- a/indra/newview/skins/default/xui/ru/strings.xml
+++ b/indra/newview/skins/default/xui/ru/strings.xml
@@ -449,6 +449,9 @@ support@secondlife.com.
 	<string name="TooltipMustSingleDrop">
 		Сюда можно перетащить только одну вещь
 	</string>
+	<string name="TooltipTooManyWearables">
+		Нельзя носить папку, содержащую более [AMOUNT] вещей.  Это ограничение можно изменить в меню «Дополнительно &gt; Настройки отладки &gt; WearFolderLimit.
+	</string>
 	<string name="TooltipPrice" value="L$[AMOUNT]:"/>
 	<string name="TooltipOutboxDragToWorld">
 		Нельзя выложить предметы из папке «Торговые исходящие»
@@ -1057,9 +1060,7 @@ support@secondlife.com.
 	<string name="AgentNameSubst">
 		(Ð’Ñ‹)
 	</string>
-	<string name="JoinAnExperience">
-		Присоединитесь
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Отключить извещения при управлении списками доступа к землевладениям
 	</string>
@@ -1870,6 +1871,9 @@ support@secondlife.com.
 	<string name="CompileQueueUnknownFailure">
 		Неизвестный сбой загрузки
 	</string>
+	<string name="CompileNoExperiencePerm">
+		Пропуск скрипта [SCRIPT] с приключением [EXPERIENCE].
+	</string>
 	<string name="CompileQueueTitle">
 		Ход повторной компиляции
 	</string>
@@ -5270,6 +5274,87 @@ support@secondlife.com.
 	<string name="UserDictionary">
 		[Пользователь]
 	</string>
+	<string name="experience_tools_experience">
+		Приключение
+	</string>
+	<string name="ExperienceNameNull">
+		(без приключения)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(приключение без названия)
+	</string>
+	<string name="Land-Scope">
+		Привязано к земле
+	</string>
+	<string name="Grid-Scope">
+		Привязано к сетке
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		РАЗРЕШЕННЫЕ
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		БЛОКИРОВАННЫЕ
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		АВТОР
+	</string>
+	<string name="Admin_Experiences_Tab">
+		АДМИНИСТРАТОР
+	</string>
+	<string name="Recent_Experiences_Tab">
+		НЕДАВНИЕ
+	</string>
+	<string name="Owned_Experiences_Tab">
+		СОБСТВЕННОСТЬ
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], максимум: [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		взять управление на себя
+	</string>
+	<string name="ExperiencePermission3">
+		запускать анимации на вашем аватаре
+	</string>
+	<string name="ExperiencePermission4">
+		прикрепить к аватару
+	</string>
+	<string name="ExperiencePermission9">
+		следить за камерой
+	</string>
+	<string name="ExperiencePermission10">
+		управлять камерой
+	</string>
+	<string name="ExperiencePermission11">
+		телепортировать вас
+	</string>
+	<string name="ExperiencePermission12">
+		автоматически принимать разрешения приключения
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		выполнил неизвестную операцию: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Взять на себя
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Запуск анимаций
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Присоединить
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Слежение за камерой
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Управление камерой
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Телепортация
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Разрешение
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		Разговоры не записываются. Чтобы начать запись разговора, в меню «Настройки &gt; Чат» выберите «Сохранять: только журнал» или «Сохранять: журнал и записи».
 	</string>
diff --git a/indra/newview/skins/default/xui/ru/teleport_strings.xml b/indra/newview/skins/default/xui/ru/teleport_strings.xml
index 40c926740899bbd2d7a492165d753af9f6b42a78..fc6cb2cf92a766690f9724a9c6aa6b92519fc165 100755
--- a/indra/newview/skins/default/xui/ru/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/ru/teleport_strings.xml
@@ -48,6 +48,9 @@
 		<message name="MustGetAgeRegion">
 			Входить в этот регион могут только жители 18 лет и старше.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Не удалось войти в регион. «[REGION_NAME]» – это регион развивающих игр, и для входа в него надо соответствовать определенным условиям. Подробнее см. на странице [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ].
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/tr/floater_about_land.xml b/indra/newview/skins/default/xui/tr/floater_about_land.xml
index 481fc540d02cf74f897a49a7c8bcba9803516165..090e135b3b589285e9353b28334eeb5513879dd2 100755
--- a/indra/newview/skins/default/xui/tr/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/tr/floater_about_land.xml
@@ -331,22 +331,6 @@ Sadece büyük parseller aramada görünür.
 			<check_box label="Güvenli (hasar yok)" name="check safe" tool_tip="İşaretliyse, araziyi Güvenli moda getirerek hasar çarpışmasını etkinsizleştirir İşaretli değilse hasar çarpışması etkinleşir."/>
 			<check_box label="İtme Yok" name="PushRestrictCheck" tool_tip="Komut dosyalarının itmesini önler Bu seçeneğin işaretlenmesi arazinizdeki bozucu davranışları önlemeye yardımcı olabilir."/>
 			<check_box label="Konumu Arama sonuçlarında göster (L$30/hafta)" name="ShowDirectoryCheck" tool_tip="Arama sonuçlarında bu parsel görünsün"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="Herh. Bir Kategori" name="item0"/>
-				<combo_box.item label="Linden Konumu" name="item1"/>
-				<combo_box.item label="YetiÅŸkin" name="item2"/>
-				<combo_box.item label="Sanat ve Kültür" name="item3"/>
-				<combo_box.item label="Ä°ÅŸ" name="item4"/>
-				<combo_box.item label="EÄŸitim" name="item5"/>
-				<combo_box.item label="Oyun" name="item6"/>
-				<combo_box.item label="UÄŸrak Mekan" name="item7"/>
-				<combo_box.item label="Yeni Gelenlere Yardım Sunan" name="item8"/>
-				<combo_box.item label="Park ve DoÄŸa" name="item9"/>
-				<combo_box.item label="YerleÅŸim" name="item10"/>
-				<combo_box.item label="Alışveriş" name="item11"/>
-				<combo_box.item label="Kiralık" name="item13"/>
-				<combo_box.item label="DiÄŸer" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="Herh. Bir Kategori" name="item0"/>
 				<combo_box.item label="Linden Konumu" name="item1"/>
@@ -477,5 +461,6 @@ Sadece büyük parseller aramada görünür.
 				<button label="Kaldır" label_selected="Kaldır" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="DENEYÄ°MLER" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_experience_search.xml b/indra/newview/skins/default/xui/tr/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0a025115d5417249ac269f1df4097e9c040fd55c
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="DENEYİM SEÇİN"/>
diff --git a/indra/newview/skins/default/xui/tr/floater_experienceprofile.xml b/indra/newview/skins/default/xui/tr/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..641d61b8f3aed17bc8ab4ea4a61585b5609e50a3
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(hiçbiri)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="Deneyim Profili"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="Düzenle" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								Seviye:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								Konum:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								Sahip:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								Grup:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="Ä°zin Ver" name="allow_btn"/>
+							<button label="Unut" name="forget_btn"/>
+							<button label="Engelle" name="block_btn"/>
+							<text name="privileged">
+								Bu deneyim tüm sakinler için etkindir.
+							</text>
+							<button label="Kötüye Kullanımı Bildir" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="Ad:"/>
+					<text name="edit_experience_desc_label" value="Açıklama:"/>
+					<button label="Grup" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						Seviye:
+					</text>
+					<icons_combo_box label="Orta" name="edit_ContentRatingText" tool_tip="Bir deneyimin erişkinlik seviyesi artınca, o deneyime izin veren tüm sakinler için izinler sıfırlanır.">
+						<icons_combo_box.item label="YetiÅŸkin" name="Adult" value="42"/>
+						<icons_combo_box.item label="Orta" name="Mature" value="21"/>
+						<icons_combo_box.item label="Genel" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						Konum:
+					</text>
+					<button label="Mevcut Olana Ayarla" name="location_btn"/>
+					<button label="Konumu Temizle" name="clear_btn"/>
+					<check_box label="Deneyimi EtkinleÅŸtir" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="Aramalarda Gizle" name="edit_private_btn"/>
+					<text name="changes" value="Deneyim değişikliklerinin tüm bölgelerde görünmesi birkaç dakika alabilir."/>
+					<button label="Geri" name="cancel_btn"/>
+					<button label="Kaydet" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_experiences.xml b/indra/newview/skins/default/xui/tr/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..eae3638cad286303150edd93bc8766728f2b0a1b
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="DENEYÄ°MLER"/>
diff --git a/indra/newview/skins/default/xui/tr/floater_facebook.xml b/indra/newview/skins/default/xui/tr/floater_facebook.xml
index 87f69fc731092256d0944763d5ca3dece349a416..656a4a81c92082e0f6430c5d5ba967e8c62aa564 100644
--- a/indra/newview/skins/default/xui/tr/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/tr/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="FACEBOOK&apos;TA YAYINLA">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="DURUM" name="panel_facebook_status"/>
-			<panel label="FOTOÄžRAF" name="panel_facebook_photo"/>
-			<panel label="KONUMA GÄ°RÄ°Åž YAPIN" name="panel_facebook_place"/>
-			<panel label="ARKADAÅžLAR" name="panel_facebook_friends"/>
-			<panel label="HESAP" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Hata
-			</text>
-			<text name="connection_loading_text">
-				Yükleniyor...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="DURUM" name="panel_facebook_status"/>
+		<panel label="FOTOÄžRAF" name="panel_facebook_photo"/>
+		<panel label="KONUMA GÄ°RÄ°Åž YAPIN" name="panel_facebook_place"/>
+		<panel label="ARKADAÅžLAR" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Hata
+	</text>
+	<text name="connection_loading_text">
+		Yükleniyor...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/tr/floater_inventory_view_finder.xml
index 9d1a55675175352fcdcd04f869f3de6fa08586b4..35f30f47cc66e83f6492b3616313fc02f4f643f7 100755
--- a/indra/newview/skins/default/xui/tr/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/tr/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="Giysiler" name="check_clothing"/>
 	<check_box label="Mimikler" name="check_gesture"/>
 	<check_box label="Yer Ä°mleri" name="check_landmark"/>
-	<check_box label="Örgüler" name="check_mesh"/>
 	<check_box label="Not Kartları" name="check_notecard"/>
+	<check_box label="Örgüler" name="check_mesh"/>
 	<check_box label="Nesneler" name="check_object"/>
 	<check_box label="Komut Dosyaları" name="check_script"/>
 	<check_box label="Sesler" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- VEYA -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="Åžundan daha yeni:" name="newer"/>
+		<radio_item label="Åžundan daha eski:" name="older"/>
+	</radio_group>
 	<spinner label="Saat Önce" name="spin_hours_ago"/>
 	<spinner label="Gün Önce" name="spin_days_ago"/>
 	<button label="Kapat" label_selected="Kapat" name="Close"/>
diff --git a/indra/newview/skins/default/xui/tr/floater_lagmeter.xml b/indra/newview/skins/default/xui/tr/floater_lagmeter.xml
index 736c50be90a4a68ef1f2d98e4751017496595b84..a373a95b0cd1be5e3ccc13cbe80f658c1974dc61 100644
--- a/indra/newview/skins/default/xui/tr/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/tr/floater_lagmeter.xml
@@ -28,7 +28,7 @@
 		İstemci kare hızı [CLIENT_FRAME_RATE_CRITICAL] altında
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		İstemci kare hızı [CLIENT_FRAME_RATE_CRITICAL] ile [CLIENT_FRAME_RATE_WARNING] arasınad
+		İstemci kare hızı [CLIENT_FRAME_RATE_CRITICAL] ile [CLIENT_FRAME_RATE_WARNING] arasında
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		Normal
diff --git a/indra/newview/skins/default/xui/tr/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/tr/floater_live_lsleditor.xml
index 34c3e28a0b6b52383ba1064e7e1a5d57c73bb4dc..760948edae7510ac230cbef4940250616165e839 100755
--- a/indra/newview/skins/default/xui/tr/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/tr/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		KOMUT DOSYASI: [NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		Mevcut deneyimi kaldırmak için kutunun işaretini kaldırın
+	</floater.string>
+	<floater.string name="no_experiences">
+		Hiçbir deneyim için yetkiniz yok
+	</floater.string>
+	<floater.string name="add_experiences">
+		Ekleyeceğiniz deneyimi seçin
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		Deneyim profilini görmek için tıklayın
+	</floater.string>
+	<floater.string name="loading">
+		Yükleniyor...
+	</floater.string>
 	<button label="Sıfırla" label_selected="Sıfırla" name="Reset"/>
 	<check_box initial_value="true" label="Çalışıyor" name="running"/>
 	<check_box initial_value="true" label="Mono" name="mono"/>
+	<check_box label="Deneyimi Kullanın:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_openobject.xml b/indra/newview/skins/default/xui/tr/floater_openobject.xml
index 9980aee97fe14130d7b9ca5460c3287b7d778426..adcf5dede2f0fa8554c613c9df0a786b01addec0 100755
--- a/indra/newview/skins/default/xui/tr/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/tr/floater_openobject.xml
@@ -3,6 +3,6 @@
 	<text name="object_name">
 		[DESC]:
 	</text>
-	<button label="Envantere Kopyala" label_selected="Envantere Kopyala" name="copy_to_inventory_button"/>
-	<button label="Kopyala ve Giy" label_selected="Kopyala ve Giy" name="copy_and_wear_button"/>
+	<button label="Envantere kopyala" label_selected="Envantere kopyala" name="copy_to_inventory_button"/>
+	<button label="Kopyala ve dış görünüme ekle" label_selected="Kopyala ve dış görünüme ekle" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_report_abuse.xml b/indra/newview/skins/default/xui/tr/floater_report_abuse.xml
index ea598a5669d1b18de52563dfc32aca631c88223d..28bacca763b29e8b31619c97be4f1268d382d0e6 100755
--- a/indra/newview/skins/default/xui/tr/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/tr/floater_report_abuse.xml
@@ -67,7 +67,7 @@
 		<combo_box.item label="Arazi &gt; Tecavüz &gt; Nesneler veya dokular" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="Arazi &gt; Tecavvüz &gt; Parçacıklar" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="Arazi &gt; Tecavvüz &gt; Ağaçlar/bitkiler" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="Bahis veya Kumar" name="Wagering_gambling"/>
+		<combo_box.item label="Oyun Politikası İhlali" name="Wagering_gambling"/>
 		<combo_box.item label="DiÄŸer" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/tr/floater_snapshot.xml b/indra/newview/skins/default/xui/tr/floater_snapshot.xml
index 3f588522eb1f0aa19f7570b9badc84e2222c24b5..be6c58e8cf2657f080dc2d9be3d786de36774613 100755
--- a/indra/newview/skins/default/xui/tr/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/tr/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		Bilgisayara kaydedilemedi.
 	</string>
-	<button name="advanced_options_btn" tool_tip="Gelişmiş seçenekler"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] px
-	</text>
-	<text name="file_size_label">
-		[SIZE] KB
-	</text>
+	<button label="YENÄ°LE" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			GELİŞMİŞ SEÇENEKLER
-		</text>
 		<text name="layer_type_label">
 			Yakala:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="Filtre Yok" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] px (genişlik) x [HEIGHT] px (yükseklik)
+	</text>
+	<text name="file_size_label">
+		[SIZE] KB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/floater_top_objects.xml b/indra/newview/skins/default/xui/tr/floater_top_objects.xml
index 19420c68e37d48638866906f666e41d9a8238de8..013e8d7ce1969cb412af6ac9640a8a3c157d17d2 100755
--- a/indra/newview/skins/default/xui/tr/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/tr/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		Hiçbiri bulunamadı.
 	</floater.string>
+	<floater.string name="URLs">
+		URL&apos;ler
+	</floater.string>
+	<floater.string name="memory">
+		Bellek (KB)
+	</floater.string>
 	<text name="title_text">
 		Yükleniyor...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="Sahip" name="owner"/>
 		<scroll_list.columns label="Konum" name="location"/>
 		<scroll_list.columns label="Parsel" name="parcel"/>
-		<scroll_list.columns label="Süre" name="time"/>
+		<scroll_list.columns label="Tarih" name="time"/>
 		<scroll_list.columns label="URL&apos;ler" name="URLs"/>
 		<scroll_list.columns label="Bellek (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/tr/floater_twitter.xml b/indra/newview/skins/default/xui/tr/floater_twitter.xml
index 3060bd1c84c5358c7d471900e1e1a3a1ad316616..93c1b0b073dbef9b2a1add0261587db5b2b9d01d 100644
--- a/indra/newview/skins/default/xui/tr/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/tr/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="TWITTER">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="OLUÅžTUR" name="panel_twitter_photo"/>
-			<panel label="HESAP" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				Hata
-			</text>
-			<text name="connection_loading_text">
-				Yükleniyor...
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="OLUÅžTUR" name="panel_twitter_photo"/>
+		<panel label="HESAP" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		Hata
+	</text>
+	<text name="connection_loading_text">
+		Yükleniyor...
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/tr/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/tr/menu_inventory_gear_default.xml
index 5f3e4e8789b1ada688faff427bf27fa252874271..ca66bc98c7342ebcedaacb22018b7cf7d71e8fa9 100755
--- a/indra/newview/skins/default/xui/tr/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/tr/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="En Sonunculara Göre Sırala" name="sort_by_recent"/>
 	<menu_item_check label="Klasörleri Her Zaman Ada Göre Sırala" name="sort_folders_by_name"/>
 	<menu_item_check label="Sistem Klasörlerini Üste Sırala" name="sort_system_folders_to_top"/>
-	<menu_item_call label="Filtreleri Göster" name="show_filters"/>
+	<menu_item_call label="Filtreleri Göster..." name="show_filters"/>
 	<menu_item_call label="Filtreleri Sıfırla" name="reset_filters"/>
 	<menu_item_call label="Tüm Klasörleri Kapat" name="close_folders"/>
 	<menu_item_call label="Kaybedip Bulduklarımı Boşalt" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/tr/menu_url_experience.xml b/indra/newview/skins/default/xui/tr/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..70ea4e695006b40ec613ca5bf5308af863e08b48
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="SLurl&apos;yi Panoya Kopyala" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/tr/menu_viewer.xml b/indra/newview/skins/default/xui/tr/menu_viewer.xml
index a488a0916fd1f855fe735ca454ec8418cb751130..25414b35fbc6e05d2ee363ca22050198de139630 100755
--- a/indra/newview/skins/default/xui/tr/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/tr/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="Yeni Envanter Penceresi" name="NewInventoryWindow"/>
 		<menu_item_call label="Yerler..." name="Places"/>
 		<menu_item_call label="Favoriler..." name="Picks"/>
+		<menu_item_call label="Deneyimler..." name="Experiences"/>
 		<menu_item_call label="Kamera Denetimleri..." name="Camera Controls"/>
 		<menu label="Hareket" name="Movement">
 			<menu_item_call label="Otur" name="Sit Down Here"/>
@@ -46,7 +47,7 @@
 		<menu_item_check label="ArkadaÅŸlar" name="My Friends"/>
 		<menu_item_check label="Gruplar" name="My Groups"/>
 		<menu_item_check label="Yakındaki kişiler" name="Active Speakers"/>
-		<menu_item_call label="Engelleme Listesi" name="Block List"/>
+		<menu_item_check label="Engelleme Listesi" name="Block List"/>
 		<menu_item_check label="Rahatsız Etme" name="Do Not Disturb"/>
 	</menu>
 	<menu label="Dünya" name="World">
diff --git a/indra/newview/skins/default/xui/tr/mime_types.xml b/indra/newview/skins/default/xui/tr/mime_types.xml
index c37f872a654e28349d2f1698faf2bf0402bc27b5..fa554d34fc70233804f9a2375ac91657dfbc1abb 100755
--- a/indra/newview/skins/default/xui/tr/mime_types.xml
+++ b/indra/newview/skins/default/xui/tr/mime_types.xml
@@ -44,6 +44,14 @@
 			Bu konumdaki sesi çal
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			İçerik Yok
+		</label>
+		<tooltip name="none_tooltip">
+			Burada ortam öğesi yok
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Gerçek Zamanlı Akış
diff --git a/indra/newview/skins/default/xui/tr/mime_types_linux.xml b/indra/newview/skins/default/xui/tr/mime_types_linux.xml
index c37f872a654e28349d2f1698faf2bf0402bc27b5..fa554d34fc70233804f9a2375ac91657dfbc1abb 100755
--- a/indra/newview/skins/default/xui/tr/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/tr/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			Bu konumdaki sesi çal
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			İçerik Yok
+		</label>
+		<tooltip name="none_tooltip">
+			Burada ortam öğesi yok
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Gerçek Zamanlı Akış
diff --git a/indra/newview/skins/default/xui/tr/mime_types_mac.xml b/indra/newview/skins/default/xui/tr/mime_types_mac.xml
index c37f872a654e28349d2f1698faf2bf0402bc27b5..fa554d34fc70233804f9a2375ac91657dfbc1abb 100755
--- a/indra/newview/skins/default/xui/tr/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/tr/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			Bu konumdaki sesi çal
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			İçerik Yok
+		</label>
+		<tooltip name="none_tooltip">
+			Burada ortam öğesi yok
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			Gerçek Zamanlı Akış
diff --git a/indra/newview/skins/default/xui/tr/notifications.xml b/indra/newview/skins/default/xui/tr/notifications.xml
index 2364bd5acf1dccd367b04603af00cb4cd4671a1b..b854d3964bb1747407494eead8775322029a689d 100755
--- a/indra/newview/skins/default/xui/tr/notifications.xml
+++ b/indra/newview/skins/default/xui/tr/notifications.xml
@@ -73,6 +73,10 @@ Hata ayrıntıları: &apos;[_NAME]&apos; adlı bildirim notifications.xml içind
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="Ä°ptal" yestext="Evet"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="Tamam"/>
+	</notification>
 	<notification name="BadInstallation">
 		[APP_NAME] güncellenirken bir hata oluştu.  Lütfen Görüntüleyici&apos;nin [http://get.secondlife.com son sürümünü karşıdan yükleyin].
 		<usetemplate name="okbutton" yestext="Tamam"/>
@@ -575,6 +579,9 @@ Grafik Kalitesi, Tercihler &gt; Grafikler sekmesinden yükseltilebilir.
 	<notification name="RegionNoTerraforming">
 		[REGION] bölgesi yer şekillendirmeye izin vermiyor.
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		[PARCEL] parseli üzerinde yer şekillendirmesi yapma izniniz bulunmuyor.
+	</notification>
 	<notification name="CannotCopyWarning">
 		Aşağıdaki öğeleri kopyalamak için gerekli izne sahip değilsiniz:
 [ITEMS]
@@ -1825,6 +1832,30 @@ Binlerce bölgeyi değiştirecek ve alan sunucusunu kesintiye uğratacaktır.
 		Sadece bu gayrimenkul için mi gayrimenkul yöneticiliğinden çıkarılsın, yoksa [ALL_ESTATES] için mi?
 		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
 	</notification>
+	<notification label="Gayrimenkul seç" name="EstateAllowedExperienceAdd">
+		Sadece bu gayrimenkul için mi izin verilenler listesine eklensin, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
+	<notification label="Gayrimenkul seç" name="EstateAllowedExperienceRemove">
+		Yalnızca bu gayrimenkul için mi izin verilenler listesinden çıkarılsın, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
+	<notification label="Gayrimenkul seç" name="EstateBlockedExperienceAdd">
+		Yalnızca bu gayrimenkul için mi engellenenler listesine eklensin, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
+	<notification label="Gayrimenkul seç" name="EstateBlockedExperienceRemove">
+		Yalnızca bu gayrimenkul için mi engellenenler listesinden çıkarılsın, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
+	<notification label="Gayrimenkul seç" name="EstateTrustedExperienceAdd">
+		Yalnızca bu gayrimenkul için mi anahtar listesine eklensin, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
+	<notification label="Gayrimenkul seç" name="EstateTrustedExperienceRemove">
+		Yalnızca bu gayrimenkul için mi anahtar listesine çıkarılsın, yoksa [ALL_ESTATES] için mi?
+		<usetemplate canceltext="İptal" name="yesnocancelbuttons" notext="Tüm Gayrimenkuller" yestext="Bu Gayrimenkul"/>
+	</notification>
 	<notification label="Çıkarmayı Onayla" name="EstateKickUser">
 		[EVIL_USER] bu gayrimenkulden çıkarılsın mı?
 		<usetemplate name="okcancelbuttons" notext="Ä°ptal" yestext="Tamam"/>
@@ -1899,6 +1930,10 @@ Binlerce bölgeyi değiştirecek ve alan sunucusunu kesintiye uğratacaktır.
 		Tercihleriniz ile sunucu arasında senkronizasyon eksikliği olduğu için ışınlama işleminizde teknik sorunlar yaşanıyoruz.
 		<usetemplate name="okbutton" yestext="Tamam"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		Bölgeye girilemiyor. &quot;[REGION_NAME]&quot; bir Yetenek Oyunu Bölgesi. Buraya girebilmek için bazı ölçütleri karşılamanız gerekiyor. Ayrıntılar için lütfen [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ] adresini ziyaret edin.
+		<usetemplate name="okbutton" yestext="Tamam"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		[RATING] içeriğine sahip bir bölgeyi ziyaret edeceğiniz hakkında başka bildirim almayacaksınız.  Daha sonra menü çubuğunda Ben &gt; Tercihler &gt; Genel sekmesini kullanarak tercihlerinizi değiştirebilirsiniz.
 		<usetemplate name="okbutton" yestext="Tamam"/>
@@ -2205,6 +2240,9 @@ Bu nesneyi seçilen nesne ile değiştirmek istiyor musunuz?
 			<button ignore="Hiçbir Zaman Değiştirme" name="No" text="İptal"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		[AMOUNT] öğeden fazlasını içeren bir klasörü kullanamazsınız.  Bu limiti Gelişmiş &gt; Hata Ayıklama Ayarlarını Göster &gt; KullanılabilirKlasörLimiti öğesinden değiştirebilirsiniz.
+	</notification>
 	<notification label="Rahatsız Etme Modu Uyarısı" name="DoNotDisturbModePay">
 		Rahatsız Etme seçeneğini devreye aldınız. Bu ödemenin karşılığında sunulan hiçbir öğeyi almayacaksınız.
 
@@ -2814,7 +2852,7 @@ Bu bölgede kalmaya devam ederseniz oturumunuz sonlandırılacak.
 
 [MESSAGE]
 
-Åžu nesneden: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, sahibi: [NAME]?
+Kaynak nesne: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, sahibi: [NAME]
 		<form name="form">
 			<button name="Gotopage" text="Sayfaya git"/>
 			<button name="Cancel" text="Ä°ptal"/>
@@ -2840,6 +2878,72 @@ Kabul ediyor musunuz?
 			<button name="Mute" text="Engelle"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		Yeni bir deneyim edinilemiyor:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="Tamam"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		Deneyimin sahibi seçili grubun bir üyesi olmadığı için, deneyim grubunda yapılan bir değişiklik göz ardı edildi.
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		Deneyim profili güncellenirken, düzenlenebilir olmayan &quot;[field]&quot; alanı göz ardı edildi.
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		Yalnızca deneyimin sahibi tarafından ayarlanabilecek olan &quot;[field]&quot; alanında yapılan değişiklikler göz ardı edildi.
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		Bir deneyimin erişkinlik seviyesini deneyimin sahibinin seviyesinden daha yüksek bir seviyeye ayarlayamazsınız.
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		Aşağıdaki koşullar deneyim profili adının ve/veya açıklamasının güncellenmesini engelledi: [extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		secondlife:///app/experience/[public_id]/profile deneyimini kaldırdığınız için [region_name] bölgesinden dışarı ışınlandınız ve artık bu bölgeye girme hakkınız yok.
+		<form name="form">
+			<ignore name="ignore" text="Bir deneyim kaldırıldığı için bölgeden çıkarıldı"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		secondlife:///app/experience/[public_id]/profile anahtar deneyimine katılarak [region_name] bölgesine giriş izni aldınız. Bu deneyimin kaldırılması bu bölgeden çıkarılmanıza neden olabilir.
+		<form name="form">
+			<ignore name="ignore" text="Bir deneyim bir bölgeye girme izni verdi"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		Bu hedef konuma erişim izniniz yok. Aşağıdaki bir deneyimi kabul ederek bölgeye giriş izni kazanabilirsiniz:
+
+[EXPERIENCE_LIST]
+
+BaÅŸka Anahtar Deneyimler de olabilir.
+	</notification>
+	<notification name="ExperienceEvent">
+		secondlife:///app/experience/[public_id]/profile deneyimiyle [EventType] için bir nesneye izin verildi.
+    Sahibi: secondlife:///app/agent/[OwnerID]/inspect
+    Nesne Adı: [ObjectName]
+    Parsel Adı: [ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		secondlife:///app/experience/[public_id]/profile deneyimiyle [EventType] için bir eke izin verildi.
+    Sahibi: secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, &quot;[NAME]&quot; adlı kişiye ait bir nesne, [GRID_WIDE] deneyimine katılmanızı istiyor:
+
+[EXPERIENCE]
+
+İzin verildikten sonra, deneyim profilinden iptal edilmedikçe, bu deneyim için bu iletiyi bir daha görmezsiniz.
+
+Bu deneyimle ilişkili komut dosyaları deneyimin etkin olduğu bölgelerde aşağıdaki eylemleri gerçekleştirebilecek: 
+
+[QUESTIONS]Kabul ediyor musunuz?
+		<form name="form">
+			<button name="BlockExperience" text="Deneyimi Engelle"/>
+			<button name="Mute" text="Nesneyi Engelle"/>
+			<button name="Yes" text="Evet"/>
+			<button name="No" text="Hayır"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		Uyarı: &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; nesnesi, Linden Dolar hesabınıza tam erişim istiyor. Eğer erişime izin verirseniz, süregelen bir şekilde, ilave uyarı olmaksızın, hesabınızdan herhangi bir zamanda fon çekebilir veya hesabınızı tamamen boşaltabilir.
   
@@ -3158,6 +3262,10 @@ Lütfen ağ ve güvenlik duvarı ayarlarınızı kontrol edin.
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		( [EXISTENCE] saniyedir hayatta )
  &apos;[BODYREGION]&apos; için [RESOLUTION] çözünürlükte kaydedilmiş bir dokuyu [TIME] saniye sonra yerel olarak güncellediniz.
+	</notification>
+	<notification name="CannotUploadTexture">
+		Doku karşıya yüklenemiyor.
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		Kopyalanamaz ve/veya aktarılamaz olduğu için bu dokunun bir önizlemesini görüntüleyemiyoruz.
diff --git a/indra/newview/skins/default/xui/tr/panel_experience_info.xml b/indra/newview/skins/default/xui/tr/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0bce4fea8f9e1f0239390ea852358fc3d52c6982
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="Deneyim Profili"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						Konum:
+					</text>
+					<text name="LocationTextText">
+						bir yer
+					</text>
+					<button label="Işınla" name="teleport_btn"/>
+					<button label="Harita" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						Pazar yeri mağazası:
+					</text>
+					<text name="LocationTextText">
+						bir yer
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						Seviye:
+					</text>
+					<text name="ContentRatingText">
+						YetiÅŸkin
+					</text>
+					<text name="Owner">
+						Sahip:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="Düzenle" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/tr/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5379fe4548f6b85758809d933bf0c0f49189a1c5
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		yükleniyor...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		Ä°zin Verilen Deneyimler:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		Engellenen Deneyimler:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		Anahtar Deneyimler:
+	</panel.string>
+	<panel.string name="no_results">
+		(boÅŸ)
+	</panel.string>
+	<text name="text_name">
+		Deneyim Listesi
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="Ad" name="experience_name"/>
+	</scroll_list>
+	<button label="Ekle..." name="btn_add"/>
+	<button label="Kaldır" name="btn_remove"/>
+	<button label="Profil..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_experience_list_item.xml b/indra/newview/skins/default/xui/tr/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b904295f972282a521279f917dd69f27ef26ef4b
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		Geçici Ad
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_experience_log.xml b/indra/newview/skins/default/xui/tr/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..600530cf2d5bf615ea89ac0970951a797416b70a
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="Olay yok."/>
+	<string name="loading" value="yükleniyor..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="Süre" name="time"/>
+				<columns label="Etkinlik" name="event"/>
+				<columns label="Deneyim" name="experience_name"/>
+				<columns label="Nesne" name="object_name"/>
+			</scroll_list>
+			<button label="Bildir" name="btn_notify"/>
+			<button label="Profil" name="btn_profile_xp"/>
+			<button label="Raporla" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="Tüm Olayları Bildir   Gün" name="notify_all"/>
+			<button label="Temizle" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_experience_search.xml b/indra/newview/skins/default/xui/tr/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7cc2bd1223872466236c5bf6e555fbac61c84d1a
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		&quot;[TEXT]&quot; bulunamadı
+	</string>
+	<string name="no_results">
+		Sonuç yok
+	</string>
+	<string name="searching">
+		Arıyor...
+	</string>
+	<string name="loading">
+		Yükleniyor...
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="Git" name="find"/>
+		<icons_combo_box label="Orta" name="maturity">
+			<icons_combo_box.item label="YetiÅŸkin" name="Adult" value="42"/>
+			<icons_combo_box.item label="Orta" name="Mature" value="21"/>
+			<icons_combo_box.item label="Genel" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="Ad" name="experience_name"/>
+			<columns label="Sahip" name="owner"/>
+		</scroll_list>
+		<button label="Tamam" label_selected="Tamam" name="ok_btn"/>
+		<button label="Ä°ptal" name="cancel_btn"/>
+		<button label="Profili Görüntüle" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_experiences.xml b/indra/newview/skins/default/xui/tr/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..15be61aad25b96e5a3d5d434a538f4804c727774
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="Deneyimler yükleniyor..."/>
+	<string name="no_experiences" value="Deneyim yok."/>
+	<string name="acquire" value="Bir Deneyim Edin"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_facebook_friends.xml b/indra/newview/skins/default/xui/tr/panel_facebook_friends.xml
index 0a6b9ac600028d0cd7b3bf429881a16cd4a34035..8184d6d7cf92fedc17aa44de401140fb21aa9247 100644
--- a/indra/newview/skins/default/xui/tr/panel_facebook_friends.xml
+++ b/indra/newview/skins/default/xui/tr/panel_facebook_friends.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_friends">
 	<string name="facebook_friends_empty" value="Şu an için aynı zamanda bir Second Life sakini olan hiçbir Facebook arkadaşınız yok. Facebook arkadaşlarınızı bugün Second Life&apos;a katılmaya davet edin!"/>
-	<string name="facebook_friends_no_connected" value="Şu anda Facebook&apos;a bağlı değilsiniz. Bağlanmak ve bu özelliği etkinleştirmek için lütfen Hesap sekmesine gidin."/>
+	<string name="facebook_friends_no_connected" value="Şu anda Facebook&apos;a bağlı değilsiniz. Bağlanmak ve bu özelliği etkinleştirmek için lütfen Durum sekmesine gidin."/>
 	<accordion name="friends_accordion">
 		<accordion_tab name="tab_second_life_friends" title="SL arkadaşları"/>
 		<accordion_tab name="tab_suggested_friends" title="Bu kişileri SL arkadaşları olarak ekle"/>
diff --git a/indra/newview/skins/default/xui/tr/panel_facebook_photo.xml b/indra/newview/skins/default/xui/tr/panel_facebook_photo.xml
index 64732c5fc7cfc3a7b1d6288b2ba8992475f755b2..d772aff937c5125279735506423e4177f7be4789 100644
--- a/indra/newview/skins/default/xui/tr/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/tr/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
-				<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
-				<combo_box.item label="Filtre Yok" name="NoFilter"/>
-			</combo_box>
-			<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
-			<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
-			<text name="caption_label">
-				Yorum (isteğe bağlı):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Yayınla" name="post_photo_btn"/>
-			<button label="Ä°ptal" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
+		<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
+		<combo_box.item label="Filtre Yok" name="NoFilter"/>
+	</combo_box>
+	<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
+	<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
+	<text name="caption_label">
+		Yorum (isteğe bağlı):
+	</text>
+	<button label="Yayınla" name="post_photo_btn"/>
+	<button label="Ä°ptal" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_facebook_place.xml b/indra/newview/skins/default/xui/tr/panel_facebook_place.xml
index 54c392c9d8904bf1f462ce48304dd98b1d566ae9..85b401a1a0f560c38ff1b4f27854c506ab605017 100644
--- a/indra/newview/skins/default/xui/tr/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/tr/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				Bulunduğunuz yer hakkında bir şeyler söyleyin:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="Yayınla" name="post_place_btn"/>
-			<button label="Ä°ptal" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		Bulunduğunuz yer hakkında bir şeyler söyleyin:
+	</text>
+	<check_box initial_value="false" label="Konumun üstten görünümünü ekle" name="add_place_view_cb"/>
+	<button label="Yayınla" name="post_place_btn"/>
+	<button label="Ä°ptal" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_facebook_status.xml b/indra/newview/skins/default/xui/tr/panel_facebook_status.xml
index 9b95fe3a35f5714bb40fec8475c458ad3bdf4134..e6feff594994a98b3cd6113b6b40bcfc17f44111 100644
--- a/indra/newview/skins/default/xui/tr/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/tr/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				Ne düşünüyorsunuz?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="Yayınla" name="post_status_btn"/>
-			<button label="Ä°ptal" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="Facebook&apos;a şu kimlikle bağlandınız:"/>
+	<string name="facebook_disconnected" value="Facebook&apos;a bağlanılmadı"/>
+	<text name="account_caption_label">
+		Facebook&apos;a bağlanılmadı.
+	</text>
+	<panel name="panel_buttons">
+		<button label="BaÄŸlan..." name="connect_btn"/>
+		<button label="Bağlantıyı kes" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 Facebook&apos;ta içerik yayınlama hakkında bilgi edinin]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		Ne düşünüyorsunuz?
+	</text>
+	<button label="Yayınla" name="post_status_btn"/>
+	<button label="Ä°ptal" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_flickr_photo.xml b/indra/newview/skins/default/xui/tr/panel_flickr_photo.xml
index 9ebc70c67c47cbe8c8d55a799b4660d7fbabc32c..cab1b24621c02f712c4981e74d8db1def106d08d 100644
--- a/indra/newview/skins/default/xui/tr/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/tr/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
-				<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
-				<combo_box.item label="Filtre Yok" name="NoFilter"/>
-			</combo_box>
-			<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
-			<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
-			<text name="title_label">
-				Başlık:
-			</text>
-			<text name="description_label">
-				Açıklama:
-			</text>
-			<check_box initial_value="true" label="Açıklamanın sonuna SL konumunu ekle" name="add_location_cb"/>
-			<text name="tags_label">
-				Etiketler:
-			</text>
-			<text name="tags_help_label">
-				Etiketleri boşlukla ayır
+	<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
+		<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
+		<combo_box.item label="Filtre Yok" name="NoFilter"/>
+	</combo_box>
+	<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
+	<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
+	<text name="title_label">
+		Başlık:
+	</text>
+	<text name="description_label">
+		Açıklama:
+	</text>
+	<check_box initial_value="true" label="Açıklamanın sonuna SL konumunu ekle" name="add_location_cb"/>
+	<text name="tags_label">
+		Etiketler:
+	</text>
+	<text name="tags_help_label">
+		Etiketleri boşlukla ayır
 Birden çok kelime içeren etiketler için &quot;&quot; kullan
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Filckr içerik seviyesi">
-				<combo_box.item label="Güvenli Flickr seviyesi" name="SafeRating"/>
-				<combo_box.item label="Orta Flickr seviyesi" name="ModerateRating"/>
-				<combo_box.item label="Kısıtlı Flickr seviyesi" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Karşıya Yükle" name="post_photo_btn"/>
-			<button label="Ä°ptal" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Filckr içerik seviyesi">
+		<combo_box.item label="Güvenli Flickr seviyesi" name="SafeRating"/>
+		<combo_box.item label="Orta Flickr seviyesi" name="ModerateRating"/>
+		<combo_box.item label="Kısıtlı Flickr seviyesi" name="RestrictedRating"/>
+	</combo_box>
+	<button label="Karşıya Yükle" name="post_photo_btn"/>
+	<button label="Ä°ptal" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/tr/panel_group_info_sidetray.xml
index e4697eaa21f9de581898edc5987a16ddb2b080df..d72bb2cf312bc5bbe3142ceb77a147b5a6d950da 100755
--- a/indra/newview/skins/default/xui/tr/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/tr/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="Roller ve Ãœyeler"/>
 				<accordion_tab name="group_notices_tab" title="Bildirimler"/>
 				<accordion_tab name="group_land_tab" title="Arazi/Varlıklar"/>
+				<accordion_tab name="group_experiences_tab" title="Deneyimler"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/tr/panel_postcard_settings.xml b/indra/newview/skins/default/xui/tr/panel_postcard_settings.xml
index bce0b21b9a609ca697e8ca0df1d30bd2854dcea3..e1443217e819bad42cd63a73a2d4f4a8d32f2e74 100755
--- a/indra/newview/skins/default/xui/tr/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/tr/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Özel" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="GeniÅŸlik" name="postcard_snapshot_width"/>
-			<spinner label="Yükseklik" name="postcard_snapshot_height"/>
-			<check_box label="Oranları koru" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="Görüntü kalitesi" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Genişlik x Yükseklik" name="postcard_snapshot_width"/>
+	<check_box label="Oranları koru" name="postcard_keep_aspect_check"/>
+	<slider label="Kalite:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_preferences_setup.xml b/indra/newview/skins/default/xui/tr/panel_preferences_setup.xml
index 2039761748c63d49697d775853d34a97970d9361..acb20595f73947fb5795d2deac36b1d398a4646b 100755
--- a/indra/newview/skins/default/xui/tr/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/tr/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		Web:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="Tarayıcımı kullan (IE, Firefox, Safari)" name="external" tool_tip="Yardım, web bağlantıları vs. için sistemin varsayılan web tarayıcısını kullanın. Tam ekran çalıştırılıyorsa tavsiye edilmez." value="true"/>
-		<radio_item label="Yerleşik tarayıcıyı kullan" name="internal" tool_tip="Yardım, web bağlantıları vs. için dahili web tarayıcısını kullanın. Bu tarayıcı [APP_NAME] içerisinde yeni bir pencere olarak açılır." value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="Tüm bağlantılar için kendi tarayıcımı kullan (Chrome, Firefox, IE)" name="internal" tool_tip="Yardım, web bağlantıları vb. için sistemin varsayılan web tarayıcısını kullanın. Tam ekran çalıştırılıyorsa tavsiye edilmez." value="0"/>
+		<radio_item label="Yerleşik tarayıcıyı yalnızca Second Life bağlantıları için kullan" name="external" tool_tip="Yardım, web bağlantıları vb. için sistemin varsayılan web tarayıcısını kullanın. Yerleşik tarayıcı yalnızca LindenLab/SecondLife bağlantıları için kullanılır." value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="Eklentileri etkinleÅŸtir" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Çerezleri kabul et" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/tr/panel_region_experiences.xml b/indra/newview/skins/default/xui/tr/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..406995c3590de3e019f12730dc66fea40df10c1e
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Deneyimler" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		Her Deneyim bir Anahtar olabilir.
+
+Bu gayrimenkul üzerinde Anahtar Deneyimlerin çalıştırılma izni var.
+
+Ek olarak, gayrimenkul genel erişime izin vermiyorsa, herhangi bir Anahtar Deneyime katılan Sakinler gayrimenkule girebilir ve bir Anahtar Deneyime dahil oldukları sürece burada kalabilirler.
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		Yalnızca Arazi Kapsamındaki Deneyimlere İzin Verilebilir.
+
+Bu gayrimenkul üzerinde İzin Verilen Deneyimlerin çalıştırılma izni var.
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		Yalnızca Ağ Kapsamındaki Deneyimler Engellenebilir.
+      
+Bu gayrimenkul üzerinde Engellenmiş Deneyimler çalıştırılamaz.
+	</panel.string>
+	<panel.string name="estate_caption">
+		Bu sekmedeki ayarlarda yapılan değişiklikler gayrimenkul içerisindeki tüm bölgeleri etkiler.
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		Yalnızca Arazi Kapsamındaki Deneyimlere İzin Verilebilir.
+      
+Gayrimenkul tarafından engellenmemişlerse, İzin Verilen Deneyimlerin bu parsel üzerinde çalıştırılma izni vardır.
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		Sakinlerin Tüm Deneyimleri Engellenebilir.
+      
+Engellenmiş Deneyimler bu parselde çalıştırılamaz.
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_script_experience.xml b/indra/newview/skins/default/xui/tr/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1e7054c3102f401172beb8702678d4ec1ea71220
--- /dev/null
+++ b/indra/newview/skins/default/xui/tr/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="DENEYÄ°M">
+	<button label="Deneyim" name="Expand Experience"/>
+	<check_box label="Deneyimi Kullanır" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="Deneyimi Seç..." name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		Hiçbir deneyimde katkınız yok.
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/tr/panel_snapshot_inventory.xml
index e3b22c639a6c80998d7e99be93e17bb41fc9e2b5..160cba870014866c860ba6b7eec4668bbd059df7 100755
--- a/indra/newview/skins/default/xui/tr/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/tr/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		Envanterime Kaydet
+		Envanter
 	</text>
 	<text name="hint_lbl">
 		Bir görüntüyü envanterinize kaydetmenin maliyeti L$[UPLOAD_COST] olur. Görüntünüzü bir doku olarak kaydetmek için kare formatlardan birini seçin.
@@ -13,8 +13,8 @@
 		<combo_box.item label="Büyük (512x512)" name="Large(512x512)"/>
 		<combo_box.item label="Özel" name="Custom"/>
 	</combo_box>
-	<spinner label="GeniÅŸlik" name="inventory_snapshot_width"/>
-	<spinner label="Yükseklik" name="inventory_snapshot_height"/>
+	<spinner label="Genişlik x Yükseklik" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="Oranları koru" name="inventory_keep_aspect_check"/>
 	<button label="Ä°ptal" name="cancel_btn"/>
 	<button label="Kaydet" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/tr/panel_snapshot_local.xml b/indra/newview/skins/default/xui/tr/panel_snapshot_local.xml
index 87d7677d73840a23a86aa5b461e6c2f41312fe14..a28e390ee52ae61a55fd7df12e2498e8541a13fd 100755
--- a/indra/newview/skins/default/xui/tr/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/tr/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		Bilgisayarıma Kaydet
+		Disk
 	</text>
 	<combo_box label="Çözünürlük" name="local_size_combo">
 		<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="Özel" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="GeniÅŸlik" name="local_snapshot_width"/>
-			<spinner label="Yükseklik" name="local_snapshot_height"/>
-			<check_box label="Oranları koru" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="Format" name="local_format_combo">
-				<combo_box.item label="PNG (Kayıpsız)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP (Kayıpsız)" name="BMP"/>
-			</combo_box>
-			<slider label="Görüntü kalitesi" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Genişlik x Yükseklik" name="local_snapshot_width"/>
+	<check_box label="Oranları koru" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		Format:
+	</text>
+	<combo_box label="Format" name="local_format_combo">
+		<combo_box.item label="PNG (Kayıpsız)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP (Kayıpsız)" name="BMP"/>
+	</combo_box>
+	<slider label="Kalite:" name="image_quality_slider"/>
 	<button label="Ä°ptal" name="cancel_btn"/>
 	<flyout_button label="Kaydet" name="save_btn" tool_tip="Görüntüyü bir dosyaya kaydet">
 		<flyout_button.item label="Kaydet" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/tr/panel_snapshot_options.xml b/indra/newview/skins/default/xui/tr/panel_snapshot_options.xml
index 4bc1098ce92cb9f7d323ffaeeaef65bac5cae771..db29e6908c7c6e8be7e9d05b10544a780060fbd8 100755
--- a/indra/newview/skins/default/xui/tr/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/tr/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="Profil Akışımda Yayınla" name="save_to_profile_btn"/>
-	<button label="E-posta" name="save_to_email_btn"/>
-	<button label="Envanterime Kaydet (L$[AMOUNT])" name="save_to_inventory_btn"/>
-	<button label="Bilgisayarıma Kaydet" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		Gönder:  [secondlife:/// Facebook]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// Twitter]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="Diske Kaydet" name="save_to_computer_btn"/>
+	<button label="Envantere Kaydet (L$[AMOUNT])" name="save_to_inventory_btn"/>
+	<button label="Profile Yükle" name="save_to_profile_btn"/>
+	<button label="Facebook&apos;a Yükle" name="send_to_facebook_btn"/>
+	<button label="Twitter&apos;a Yükle" name="send_to_twitter_btn"/>
+	<button label="Flickr&apos;a Yükle" name="send_to_flickr_btn"/>
+	<button label="E-postayla Gönder" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/tr/panel_snapshot_postcard.xml
index e999678a0d5cc71c115251f24fe78d0174d56f5d..ecb47b2218e4d6dcbc8818b74c010bdae51e4570 100755
--- a/indra/newview/skins/default/xui/tr/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/tr/panel_snapshot_postcard.xml
@@ -12,6 +12,10 @@
 	<text name="title">
 		E-posta
 	</text>
-	<button label="Ä°leti" name="message_btn"/>
-	<button label="Ayarlar" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="Ä°leti" name="panel_postcard_message"/>
+		<panel label="Ayarlar" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="Ä°ptal" name="cancel_btn"/>
+	<button label="Gönder" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/tr/panel_snapshot_profile.xml
index 334fd52a48112567da0f8a7f15b84772fd9e7154..ed8f25f25542ad4fe0f62172d3f5cd2d538c0625 100755
--- a/indra/newview/skins/default/xui/tr/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/tr/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		Profil Akışımda Yayınla
+		Profil
 	</text>
 	<combo_box label="Çözünürlük" name="profile_size_combo">
 		<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="Özel" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="GeniÅŸlik" name="profile_snapshot_width"/>
-			<spinner label="Yükseklik" name="profile_snapshot_height"/>
-			<check_box label="Oranları koru" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				Resim yazısı:
-			</text>
-			<check_box initial_value="true" label="Konumu dahil et" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="Genişlik x Yükseklik" name="profile_snapshot_width"/>
+	<check_box label="Oranları koru" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		Resim yazısı:
+	</text>
+	<check_box initial_value="true" label="Konumu dahil et" name="add_location_cb"/>
 	<button label="Ä°ptal" name="cancel_btn"/>
 	<button label="Yayınla" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/panel_twitter_photo.xml b/indra/newview/skins/default/xui/tr/panel_twitter_photo.xml
index 966e9b906d779d1fbf274c014d344c9da033353f..511ecb690d9188c721efac1cd37038fb30bcd73c 100644
--- a/indra/newview/skins/default/xui/tr/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/tr/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				Neler oluyor?
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="SL konumunu dahil et" name="add_location_cb"/>
-			<check_box initial_value="true" label="FotoÄŸraf ekle" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
-				<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
-				<combo_box.item label="Filtre Yok" name="NoFilter"/>
-			</combo_box>
-			<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
-			<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="Tweet" name="post_photo_btn"/>
-			<button label="Ä°ptal" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		Neler oluyor?
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="SL konumunu dahil et" name="add_location_cb"/>
+	<check_box initial_value="true" label="FotoÄŸraf ekle" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="Görüntü çözünürlüğü">
+		<combo_box.item label="Mevcut Pencere" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="Görüntü filtreleri">
+		<combo_box.item label="Filtre Yok" name="NoFilter"/>
+	</combo_box>
+	<button label="Yenile" name="new_snapshot_btn" tool_tip="Yenilemek için tıklayın"/>
+	<button label="Önizleme" name="big_preview_btn" tool_tip="Önizleme ayarları arasında geçiş yapmak için tıklayın"/>
+	<button label="Tweet" name="post_photo_btn"/>
+	<button label="Ä°ptal" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/role_actions.xml b/indra/newview/skins/default/xui/tr/role_actions.xml
index 8f063122dc178e27653492b3e02c2d3464881a0f..a7e381d6a00fe4d12bb14a365a37003e8be51fb5 100755
--- a/indra/newview/skins/default/xui/tr/role_actions.xml
+++ b/indra/newview/skins/default/xui/tr/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="Grup Sesli Sohbetine Katıl" longdescription="Bu Yeteneğe sahip bir Roldeki Üyeler grup sesli sohbet oturumlarına katılabilir.  NOT: Sesli sohbet oturumuna erişim için Grup Sohbetine Katıl yeteneği gereklidir." name="join voice chat" value="27"/>
 		<action description="Grup Sohbetini Yönet" longdescription="Bu Yeteneğe sahip bir Roldeki Üyeler grup sesli ve yazılı sohbet oturumlarına errişimi ve katılımı kontrol edebilir." name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="Bu Yetenekler&apos;e, grubun sahip olduğu deneyimleri değiştirme gücü de dahildir." name="experience_tools_experience">
+		<action description="Deneyim Yöneticisi" longdescription="Bu yeteneğe sahip bir roldeki üyeler bir deneyimin meta verilerini düzenleyebilirler." name="experience admin" value="49"/>
+		<action description="Deneyim Yardımcısı" longdescription="Bu yeteneğe sahip bir roldeki üyeler bir deneyimin komut dizilerine katkıda bulunabilirler." name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/tr/sidepanel_item_info.xml b/indra/newview/skins/default/xui/tr/sidepanel_item_info.xml
index 86b684c4971353b3e296d31b9913a2f96c00042f..433da27946f8fea6ff5f2cb29b1ce31f80a0d71f 100755
--- a/indra/newview/skins/default/xui/tr/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/tr/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="Öğe Profili">
+	<panel.string name="loading_experience">
+		(yükleniyor)
+	</panel.string>
 	<panel.string name="unknown">
 		(bilinmiyor)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				Alınan:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				Deneyim:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					Åžunu yapabilirsiniz:
diff --git a/indra/newview/skins/default/xui/tr/strings.xml b/indra/newview/skins/default/xui/tr/strings.xml
index c4fc76fe29e377c42d1efabc938bef211fa4cbb1..b1a513fbf59c8b43c4167c462dfa7fb020be18ac 100755
--- a/indra/newview/skins/default/xui/tr/strings.xml
+++ b/indra/newview/skins/default/xui/tr/strings.xml
@@ -449,6 +449,9 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
 	<string name="TooltipMustSingleDrop">
 		Buraya sadece bir öğe sürüklenebilir.
 	</string>
+	<string name="TooltipTooManyWearables">
+		[AMOUNT] öğeden fazlasını içeren bir klasörü kullanamazsınız.  Bu limiti Gelişmiş &gt; Hata Ayıklama Ayarlarını Göster &gt; KullanılabilirKlasörLimiti öğesinden değiştirebilirsiniz.
+	</string>
 	<string name="TooltipPrice" value="L$[AMOUNT]:"/>
 	<string name="TooltipOutboxDragToWorld">
 		Satıcı giden kutunuzda öğeler oluşturamazsınız
@@ -1057,9 +1060,7 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
 	<string name="AgentNameSubst">
 		(Siz)
 	</string>
-	<string name="JoinAnExperience">
-		Bir tecrübeye katıl
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		Gayri menkul erişim listelerini yönetirken uyarıları bastır
 	</string>
@@ -1870,6 +1871,9 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
 	<string name="CompileQueueUnknownFailure">
 		Karşıdan yüklerken bilinmeyen hata
 	</string>
+	<string name="CompileNoExperiencePerm">
+		[SCRIPT] komut dizisi [EXPERIENCE] deneyimiyle atlanıyor.
+	</string>
 	<string name="CompileQueueTitle">
 		Tekrar Derleme Ä°lerlemesi
 	</string>
@@ -5271,6 +5275,87 @@ Düzenleyici yolunu çift tırnakla çevrelemeyi deneyin.
 	<string name="UserDictionary">
 		[User]
 	</string>
+	<string name="experience_tools_experience">
+		Deneyim
+	</string>
+	<string name="ExperienceNameNull">
+		(deneyim yok)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(başlıksız deneyim)
+	</string>
+	<string name="Land-Scope">
+		Arazi Kapsamında
+	</string>
+	<string name="Grid-Scope">
+		Ağ Kapsamında
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		Ä°ZÄ°N VERÄ°LEN
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		ENGELLENMÄ°Åž
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		KATKIDA BULUNAN
+	</string>
+	<string name="Admin_Experiences_Tab">
+		YÖNETİCİ
+	</string>
+	<string name="Recent_Experiences_Tab">
+		SON
+	</string>
+	<string name="Owned_Experiences_Tab">
+		SAHÄ°BÄ°
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES], maks. [MAXEXPERIENCES])
+	</string>
+	<string name="ExperiencePermission1">
+		kontrollerinizi ele alma
+	</string>
+	<string name="ExperiencePermission3">
+		avatarınızdaki animasyonları tetikleme
+	</string>
+	<string name="ExperiencePermission4">
+		avatarınıza ekleme
+	</string>
+	<string name="ExperiencePermission9">
+		kameranızı takip etmek
+	</string>
+	<string name="ExperiencePermission10">
+		kameranızı kontrol etme
+	</string>
+	<string name="ExperiencePermission11">
+		sizi ışınlama
+	</string>
+	<string name="ExperiencePermission12">
+		deneyim izinlerini otomatik olarak kabul et
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		bilinmeyen bir işlem gerçekleştirdi: [Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		Kontrolü Al
+	</string>
+	<string name="ExperiencePermissionShort3">
+		Animasyonları Tetikle
+	</string>
+	<string name="ExperiencePermissionShort4">
+		Ekle
+	</string>
+	<string name="ExperiencePermissionShort9">
+		Kamera Takibi
+	</string>
+	<string name="ExperiencePermissionShort10">
+		Kamera Kontrolü
+	</string>
+	<string name="ExperiencePermissionShort11">
+		Işınla
+	</string>
+	<string name="ExperiencePermissionShort12">
+		Ä°zin
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		Sohbetlerin günlüğü tutulmuyor. Bir günlük tutmaya başlamak için, Tercihler &gt; Sohbet altında &quot;Kaydet: Sadece günlük&quot; veya &quot;Kaydet: Günlük ve dökümler&quot; seçimini yapın.
 	</string>
diff --git a/indra/newview/skins/default/xui/tr/teleport_strings.xml b/indra/newview/skins/default/xui/tr/teleport_strings.xml
index 20d09b1ee2b7720df191dadf674ecac22f13aa45..e3a08e04b209b883e56662d9dbc2e9e2367c10ff 100755
--- a/indra/newview/skins/default/xui/tr/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/tr/teleport_strings.xml
@@ -48,6 +48,9 @@ Bir dakika sonra tekrar deneyin.
 		<message name="MustGetAgeRegion">
 			Bu bölgeye girebilmek için 18 veya üzeri bir yaşta olmanız gerekir.
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			Bölgeye girilemiyor. &quot;[REGION_NAME]&quot; bir Yetenek Oyunu Bölgesi. Buraya girebilmek için bazı ölçütleri karşılamanız gerekiyor. Ayrıntılar için lütfen [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life Skill Gaming FAQ] adresini ziyaret edin.
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/newview/skins/default/xui/zh/floater_about_land.xml b/indra/newview/skins/default/xui/zh/floater_about_land.xml
index 76db62195102a830468b7e47209a0e5873239c9f..a9d95e5b9b37e8d68d3fa70906420b61f8f67af2 100755
--- a/indra/newview/skins/default/xui/zh/floater_about_land.xml
+++ b/indra/newview/skins/default/xui/zh/floater_about_land.xml
@@ -331,22 +331,6 @@
 			<check_box label="安全(無傷害)" name="check safe" tool_tip="若勾選,將把土地設為安全,禁絕傷害性的戰鬥。 若未勾選,則允許傷害性的戰鬥。"/>
 			<check_box label="禁止推撞" name="PushRestrictCheck" tool_tip="禁止使用腳本推撞。 勾選這選項可有效防止你土地上出現滋事行為。"/>
 			<check_box label="將地點刊登顯示在搜尋中(L$30 / 每週)" name="ShowDirectoryCheck" tool_tip="讓其他人可以在搜尋結果中看到這塊地段"/>
-			<combo_box name="land category with adult">
-				<combo_box.item label="任何類別" name="item0"/>
-				<combo_box.item label="林登位置" name="item1"/>
-				<combo_box.item label="完全成人" name="item2"/>
-				<combo_box.item label="藝術與文化" name="item3"/>
-				<combo_box.item label="商業" name="item4"/>
-				<combo_box.item label="教育" name="item5"/>
-				<combo_box.item label="遊戲" name="item6"/>
-				<combo_box.item label="聚會所" name="item7"/>
-				<combo_box.item label="歡迎新手光臨" name="item8"/>
-				<combo_box.item label="公園與自然景觀" name="item9"/>
-				<combo_box.item label="住宅" name="item10"/>
-				<combo_box.item label="購物" name="item11"/>
-				<combo_box.item label="出租" name="item13"/>
-				<combo_box.item label="其他" name="item12"/>
-			</combo_box>
 			<combo_box name="land category">
 				<combo_box.item label="任何類別" name="item0"/>
 				<combo_box.item label="林登位置" name="item1"/>
@@ -477,5 +461,6 @@
 				<button label="移除" label_selected="移除" name="remove_banned"/>
 			</panel>
 		</panel>
+		<panel label="體驗" name="land_experiences_panel"/>
 	</tab_container>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_experience_search.xml b/indra/newview/skins/default/xui/zh/floater_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c65b64c98f13ba067737c41812d3f250a90d75e3
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/floater_experience_search.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="experiencepicker" title="選擇體驗"/>
diff --git a/indra/newview/skins/default/xui/zh/floater_experienceprofile.xml b/indra/newview/skins/default/xui/zh/floater_experienceprofile.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4d2b3331d7daebe33de3dcd8037dae219b253a9f
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/floater_experienceprofile.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater title="EXPERIENCE PROFILE">
+	<floater.string name="empty_slurl">
+		(無)
+	</floater.string>
+	<floater.string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</floater.string>
+	<floater.string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</floater.string>
+	<text name="edit_title" value="體驗簡覽"/>
+	<tab_container name="tab_container">
+		<panel name="panel_experience_info">
+			<scroll_container name="xp_scroll">
+				<panel name="scrolling_panel">
+					<layout_stack>
+						<layout_panel name="top panel">
+							<button label="編輯" name="edit_btn"/>
+						</layout_panel>
+						<layout_panel name="maturity panel">
+							<text name="ContentRating">
+								分級:
+							</text>
+						</layout_panel>
+						<layout_panel name="location panel">
+							<text name="Location">
+								位置:
+							</text>
+						</layout_panel>
+						<layout_panel>
+							<text name="Owner">
+								所有人:
+							</text>
+						</layout_panel>
+						<layout_panel name="group_panel">
+							<text name="Group">
+								群組:
+							</text>
+						</layout_panel>
+						<layout_panel name="perm panel">
+							<button label="允許" name="allow_btn"/>
+							<button label="忘記" name="forget_btn"/>
+							<button label="封鎖" name="block_btn"/>
+							<text name="privileged">
+								所有居民均可使用這個體驗。
+							</text>
+							<button label="違規舉報" name="report_btn"/>
+						</layout_panel>
+					</layout_stack>
+				</panel>
+			</scroll_container>
+		</panel>
+		<panel name="edit_panel_experience_info">
+			<scroll_container name="edit_xp_scroll">
+				<panel name="edit_scrolling_panel">
+					<text name="edit_experience_title_label" value="名稱:"/>
+					<text name="edit_experience_desc_label" value="描述:"/>
+					<button label="群組" name="Group_btn"/>
+					<text name="edit_ContentRating">
+						分級:
+					</text>
+					<icons_combo_box label="適度成人" name="edit_ContentRatingText" tool_tip="提升體驗的內容分級將會重設所有已允許該體驗的居民的權限。">
+						<icons_combo_box.item label="完全成人" name="Adult" value="42"/>
+						<icons_combo_box.item label="適度成人" name="Mature" value="21"/>
+						<icons_combo_box.item label="一般" name="PG" value="13"/>
+					</icons_combo_box>
+					<text name="edit_Location">
+						位置:
+					</text>
+					<button label="設定為目前位置" name="location_btn"/>
+					<button label="清空位置" name="clear_btn"/>
+					<check_box label="啟用體驗" name="edit_enable_btn" tool_tip=""/>
+					<check_box label="不顯現在搜尋結果" name="edit_private_btn"/>
+					<text name="changes" value="體驗的變更結果可能需要數分鐘才會擴及所有地區。"/>
+					<button label="返回" name="cancel_btn"/>
+					<button label="儲存" name="save_btn"/>
+				</panel>
+			</scroll_container>
+		</panel>
+	</tab_container>
+</floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_experiences.xml b/indra/newview/skins/default/xui/zh/floater_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..995241797e9bc75921c3f1e83252975644f4b24b
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/floater_experiences.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<floater name="floater_experiences" title="體驗"/>
diff --git a/indra/newview/skins/default/xui/zh/floater_facebook.xml b/indra/newview/skins/default/xui/zh/floater_facebook.xml
index 9847db91241349127b81a81fcefc3ba877bc11f4..9a71a26333b776eb85d753f9f903a88384ea4ad4 100644
--- a/indra/newview/skins/default/xui/zh/floater_facebook.xml
+++ b/indra/newview/skins/default/xui/zh/floater_facebook.xml
@@ -1,20 +1,15 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_facebook" title="發佈到臉書">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="狀態" name="panel_facebook_status"/>
-			<panel label="相片" name="panel_facebook_photo"/>
-			<panel label="打卡" name="panel_facebook_place"/>
-			<panel label="朋友" name="panel_facebook_friends"/>
-			<panel label="帳號" name="panel_facebook_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				錯誤
-			</text>
-			<text name="connection_loading_text">
-				載入中…
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="狀態" name="panel_facebook_status"/>
+		<panel label="相片" name="panel_facebook_photo"/>
+		<panel label="打卡" name="panel_facebook_place"/>
+		<panel label="朋友" name="panel_facebook_friends"/>
+	</tab_container>
+	<text name="connection_error_text">
+		錯誤
+	</text>
+	<text name="connection_loading_text">
+		載入中…
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/zh/floater_inventory_view_finder.xml
index 6d1d18b67ca1884c0f65fd72f80fa5d192a09659..51dc73d9712ca01f002ce228087bf117201707d4 100755
--- a/indra/newview/skins/default/xui/zh/floater_inventory_view_finder.xml
+++ b/indra/newview/skins/default/xui/zh/floater_inventory_view_finder.xml
@@ -5,8 +5,8 @@
 	<check_box label="服裝" name="check_clothing"/>
 	<check_box label="姿勢" name="check_gesture"/>
 	<check_box label="地標" name="check_landmark"/>
-	<check_box label="網面" name="check_mesh"/>
 	<check_box label="記事卡" name="check_notecard"/>
+	<check_box label="網面" name="check_mesh"/>
 	<check_box label="物件" name="check_object"/>
 	<check_box label="腳本" name="check_script"/>
 	<check_box label="聲音" name="check_sound"/>
@@ -19,6 +19,10 @@
 	<text name="- OR -">
 		- 或 -
 	</text>
+	<radio_group name="date_search_direction">
+		<radio_item label="æ–°è¿‘æ–¼" name="newer"/>
+		<radio_item label="æ—©æ–¼" name="older"/>
+	</radio_group>
 	<spinner label="小時前" name="spin_hours_ago"/>
 	<spinner label="天前" name="spin_days_ago"/>
 	<button label="關閉" label_selected="關閉" name="Close"/>
diff --git a/indra/newview/skins/default/xui/zh/floater_lagmeter.xml b/indra/newview/skins/default/xui/zh/floater_lagmeter.xml
index 6e58e7332f2a39343d0c0658275f383f25c23631..e9a082288a613601f52677f352c412da33f29ff9 100644
--- a/indra/newview/skins/default/xui/zh/floater_lagmeter.xml
+++ b/indra/newview/skins/default/xui/zh/floater_lagmeter.xml
@@ -7,7 +7,7 @@
 		360
 	</floater.string>
 	<floater.string name="min_title_msg">
-		Lag
+		延遲
 	</floater.string>
 	<floater.string name="min_width_px">
 		90
@@ -22,28 +22,28 @@
 		15
 	</floater.string>
 	<floater.string name="client_frame_time_window_bg_msg">
-		Normal, window in background
+		正常,視窗位於背景
 	</floater.string>
 	<floater.string name="client_frame_time_critical_msg">
-		Client frame rate below [CLIENT_FRAME_RATE_CRITICAL]
+		客戶端幀率低於 [CLIENT_FRAME_RATE_CRITICAL]
 	</floater.string>
 	<floater.string name="client_frame_time_warning_msg">
-		Client frame rate between [CLIENT_FRAME_RATE_CRITICAL] and [CLIENT_FRAME_RATE_WARNING]
+		客戶端幀率介於 [CLIENT_FRAME_RATE_CRITICAL] 和 [CLIENT_FRAME_RATE_WARNING] 之間
 	</floater.string>
 	<floater.string name="client_frame_time_normal_msg">
 		正常
 	</floater.string>
 	<floater.string name="client_draw_distance_cause_msg">
-		Possible cause: Draw distance set too high
+		可能原因:可視距離設得太遠
 	</floater.string>
 	<floater.string name="client_texture_loading_cause_msg">
-		Possible cause: Images loading
+		可能原因:正在載入圖像
 	</floater.string>
 	<floater.string name="client_texture_memory_cause_msg">
-		Possible cause: Too many images in memory
+		可能原因:記憶體裡圖像太多
 	</floater.string>
 	<floater.string name="client_complex_objects_cause_msg">
-		Possible cause: Too many complex objects in scene
+		可能原因:場景內複雜物件太多
 	</floater.string>
 	<floater.string name="network_text_msg">
 		網路
@@ -55,10 +55,10 @@
 		5
 	</floater.string>
 	<floater.string name="network_packet_loss_critical_msg">
-		Connection is dropping over [NETWORK_PACKET_LOSS_CRITICAL]% of packets
+		這次連通丟失了至少 [NETWORK_PACKET_LOSS_CRITICAL]% 的封包
 	</floater.string>
 	<floater.string name="network_packet_loss_warning_msg">
-		Connection is dropping [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% of packets
+		這次連通丟失了 [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% 的封包
 	</floater.string>
 	<floater.string name="network_performance_normal_msg">
 		正常
@@ -70,16 +70,16 @@
 		300
 	</floater.string>
 	<floater.string name="network_ping_critical_msg">
-		Connection ping time is over [NETWORK_PING_CRITICAL] ms
+		探測連通回應時間超過 [NETWORK_PING_CRITICAL] 毫秒
 	</floater.string>
 	<floater.string name="network_ping_warning_msg">
-		Connection ping time is [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms
+		探測連通回應時間為 [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] 毫秒
 	</floater.string>
 	<floater.string name="network_packet_loss_cause_msg">
-		Possible bad connection or &apos;Bandwidth&apos; pref too high.
+		可能連通不良,或所設的偏好連通頻寬過高。
 	</floater.string>
 	<floater.string name="network_ping_cause_msg">
-		Possible bad connection or file-sharing app.
+		可能連通不良,或使用檔案分享應用程式。
 	</floater.string>
 	<floater.string name="server_text_msg">
 		伺服器
diff --git a/indra/newview/skins/default/xui/zh/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/zh/floater_live_lsleditor.xml
index f4a7ba5cca566234e7552e16db94328b9bd5aaff..e971b166f73e7d1b484e3f5b1831e83e3a5a8dfc 100755
--- a/indra/newview/skins/default/xui/zh/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/zh/floater_live_lsleditor.xml
@@ -9,7 +9,24 @@
 	<floater.string name="Title">
 		腳本:[NAME]
 	</floater.string>
+	<floater.string name="experience_enabled">
+		清除勾選即可移除目前的體驗
+	</floater.string>
+	<floater.string name="no_experiences">
+		你未經授權使用任何體驗
+	</floater.string>
+	<floater.string name="add_experiences">
+		選取新增一個體驗
+	</floater.string>
+	<floater.string name="show_experience_profile">
+		點按即可簡覽該體驗
+	</floater.string>
+	<floater.string name="loading">
+		載入中…
+	</floater.string>
 	<button label="重設" label_selected="重設" name="Reset"/>
 	<check_box initial_value="true" label="執行中" name="running"/>
 	<check_box initial_value="true" label="Mono" name="mono"/>
+	<check_box label="使用體驗:" name="enable_xp"/>
+	<button label="&gt;" name="view_profile"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_openobject.xml b/indra/newview/skins/default/xui/zh/floater_openobject.xml
index ce6869487a32d391f916411fb6cca9aa354a43d7..fa8cb0bdf3d116041cda339dbab3b455c306e058 100755
--- a/indra/newview/skins/default/xui/zh/floater_openobject.xml
+++ b/indra/newview/skins/default/xui/zh/floater_openobject.xml
@@ -4,5 +4,5 @@
 		[DESC]:
 	</text>
 	<button label="覆製到收納區" label_selected="覆製到收納區" name="copy_to_inventory_button"/>
-	<button label="覆製且穿上" label_selected="覆製且穿上" name="copy_and_wear_button"/>
+	<button label="複製並新增到裝扮" label_selected="複製並新增到裝扮" name="copy_and_wear_button"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_report_abuse.xml b/indra/newview/skins/default/xui/zh/floater_report_abuse.xml
index d4b5a2f9907a8e3bb2703038106fd4ecd26aa9cc..347b40e6756f66c76954b0bf5f8027d3cdc35078 100755
--- a/indra/newview/skins/default/xui/zh/floater_report_abuse.xml
+++ b/indra/newview/skins/default/xui/zh/floater_report_abuse.xml
@@ -67,7 +67,7 @@
 		<combo_box.item label="土地 &gt; 侵佔 &gt; 物件或材質" name="Land__Encroachment__Objects_textures"/>
 		<combo_box.item label="土地 &gt; 侵佔 &gt; 粒子" name="Land__Encroachment__Particles"/>
 		<combo_box.item label="土地 &gt; 侵佔 &gt; 樹種 / 植物" name="Land__Encroachment__Trees_plants"/>
-		<combo_box.item label="下注或賭博" name="Wagering_gambling"/>
+		<combo_box.item label="違反遊戲規則" name="Wagering_gambling"/>
 		<combo_box.item label="其他" name="Other"/>
 	</combo_box>
 	<text name="abuser_name_title">
diff --git a/indra/newview/skins/default/xui/zh/floater_snapshot.xml b/indra/newview/skins/default/xui/zh/floater_snapshot.xml
index a65227bbd41bbf43878d78d4791d37f027064668..409024808308ccbcb962a167bb2d6a944f82d75d 100755
--- a/indra/newview/skins/default/xui/zh/floater_snapshot.xml
+++ b/indra/newview/skins/default/xui/zh/floater_snapshot.xml
@@ -39,17 +39,8 @@
 	<string name="local_failed_str">
 		無法儲入電腦。
 	</string>
-	<button name="advanced_options_btn" tool_tip="進階選項"/>
-	<text name="image_res_text">
-		[WIDTH] x [HEIGHT] 像素
-	</text>
-	<text name="file_size_label">
-		[SIZE] KB
-	</text>
+	<button label="刷新" name="new_snapshot_btn"/>
 	<panel name="advanced_options_panel">
-		<text name="advanced_options_label">
-			進階選項
-		</text>
 		<text name="layer_type_label">
 			擷取快照:
 		</text>
@@ -68,4 +59,10 @@
 			<combo_box.item label="不用濾鏡" name="NoFilter"/>
 		</combo_box>
 	</panel>
+	<text name="image_res_text">
+		[WIDTH] 像素(寬) x [HEIGHT] 像素(高)
+	</text>
+	<text name="file_size_label">
+		[SIZE] KB
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/floater_top_objects.xml b/indra/newview/skins/default/xui/zh/floater_top_objects.xml
index 6f50be085540092003d76e89a69e092eb9d524ec..58530f00c17fa1d10cde9512a31bc696cc9fd60d 100755
--- a/indra/newview/skins/default/xui/zh/floater_top_objects.xml
+++ b/indra/newview/skins/default/xui/zh/floater_top_objects.xml
@@ -21,6 +21,12 @@
 	<floater.string name="none_descriptor">
 		查無結果。
 	</floater.string>
+	<floater.string name="URLs">
+		URL
+	</floater.string>
+	<floater.string name="memory">
+		記憶體 (KB)
+	</floater.string>
 	<text name="title_text">
 		載入中...
 	</text>
@@ -30,7 +36,7 @@
 		<scroll_list.columns label="所有人" name="owner"/>
 		<scroll_list.columns label="位置" name="location"/>
 		<scroll_list.columns label="地段" name="parcel"/>
-		<scroll_list.columns label="時間" name="time"/>
+		<scroll_list.columns label="日期" name="time"/>
 		<scroll_list.columns label="URL" name="URLs"/>
 		<scroll_list.columns label="記憶體 (KB)" name="memory"/>
 	</scroll_list>
diff --git a/indra/newview/skins/default/xui/zh/floater_twitter.xml b/indra/newview/skins/default/xui/zh/floater_twitter.xml
index 0df68ba9be76b969c1cd694e6be52d33c60211a4..ac49b2a9678b57c2bb06c75484dfbf9cb309b26f 100644
--- a/indra/newview/skins/default/xui/zh/floater_twitter.xml
+++ b/indra/newview/skins/default/xui/zh/floater_twitter.xml
@@ -1,17 +1,13 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="floater_twitter" title="推特">
-	<panel name="background">
-		<tab_container name="tabs">
-			<panel label="編撰" name="panel_twitter_photo"/>
-			<panel label="帳號" name="panel_twitter_account"/>
-		</tab_container>
-		<panel name="connection_status_panel">
-			<text name="connection_error_text">
-				錯誤
-			</text>
-			<text name="connection_loading_text">
-				載入中…
-			</text>
-		</panel>
-	</panel>
+	<tab_container name="tabs">
+		<panel label="編撰" name="panel_twitter_photo"/>
+		<panel label="帳號" name="panel_twitter_account"/>
+	</tab_container>
+	<text name="connection_error_text">
+		錯誤
+	</text>
+	<text name="connection_loading_text">
+		載入中…
+	</text>
 </floater>
diff --git a/indra/newview/skins/default/xui/zh/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/zh/menu_inventory_gear_default.xml
index 8ad0e7324f94b521b9a99ea83ebda05f435b2b69..a4461f8c6a8f0addd200731d0a9f0363a6bcd3c3 100755
--- a/indra/newview/skins/default/xui/zh/menu_inventory_gear_default.xml
+++ b/indra/newview/skins/default/xui/zh/menu_inventory_gear_default.xml
@@ -5,7 +5,7 @@
 	<menu_item_check label="依最近排序" name="sort_by_recent"/>
 	<menu_item_check label="總是由名稱排序資料夾" name="sort_folders_by_name"/>
 	<menu_item_check label="系統資料夾排序到最上方" name="sort_system_folders_to_top"/>
-	<menu_item_call label="顯示過濾器" name="show_filters"/>
+	<menu_item_call label="顯示過濾器…" name="show_filters"/>
 	<menu_item_call label="重設過濾器" name="reset_filters"/>
 	<menu_item_call label="關閉全部資料夾" name="close_folders"/>
 	<menu_item_call label="清空 Lost and Found" name="empty_lostnfound"/>
diff --git a/indra/newview/skins/default/xui/zh/menu_url_experience.xml b/indra/newview/skins/default/xui/zh/menu_url_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..97ff33b9211eb48f33f3f789b59d66924fee1e9d
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/menu_url_experience.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<context_menu name="Url Popup">
+	<menu_item_call label="覆製 SLurl 到剪貼簿" name="url_copy"/>
+</context_menu>
diff --git a/indra/newview/skins/default/xui/zh/menu_viewer.xml b/indra/newview/skins/default/xui/zh/menu_viewer.xml
index adc29a39443347a12cca04d96a88c9bb44c3a4a6..45d3feec26f3c2bfa5c81adbfc9dc2977491d0c7 100755
--- a/indra/newview/skins/default/xui/zh/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/zh/menu_viewer.xml
@@ -8,6 +8,7 @@
 		<menu_item_call label="新收納區視窗" name="NewInventoryWindow"/>
 		<menu_item_call label="地點…" name="Places"/>
 		<menu_item_call label="精選地點…" name="Picks"/>
+		<menu_item_call label="體驗…" name="Experiences"/>
 		<menu_item_call label="攝影機控制…" name="Camera Controls"/>
 		<menu label="動作" name="Movement">
 			<menu_item_call label="坐下" name="Sit Down Here"/>
@@ -46,7 +47,7 @@
 		<menu_item_check label="朋友" name="My Friends"/>
 		<menu_item_check label="群組" name="My Groups"/>
 		<menu_item_check label="附近的人群" name="Active Speakers"/>
-		<menu_item_call label="封鎖清單" name="Block List"/>
+		<menu_item_check label="封鎖清單" name="Block List"/>
 		<menu_item_check label="請勿打擾" name="Do Not Disturb"/>
 	</menu>
 	<menu label="世界" name="World">
diff --git a/indra/newview/skins/default/xui/zh/mime_types.xml b/indra/newview/skins/default/xui/zh/mime_types.xml
index 70af2d2f19776dd9fd77fe9085ab08a164bfd173..8967475abb2de890b96b147661250ae6f7c302e8 100755
--- a/indra/newview/skins/default/xui/zh/mime_types.xml
+++ b/indra/newview/skins/default/xui/zh/mime_types.xml
@@ -44,6 +44,14 @@
 			播放這個位置的音頻
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			無內容
+		</label>
+		<tooltip name="none_tooltip">
+			此處無媒體
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			即時串流
diff --git a/indra/newview/skins/default/xui/zh/mime_types_linux.xml b/indra/newview/skins/default/xui/zh/mime_types_linux.xml
index 70af2d2f19776dd9fd77fe9085ab08a164bfd173..8967475abb2de890b96b147661250ae6f7c302e8 100755
--- a/indra/newview/skins/default/xui/zh/mime_types_linux.xml
+++ b/indra/newview/skins/default/xui/zh/mime_types_linux.xml
@@ -44,6 +44,14 @@
 			播放這個位置的音頻
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			無內容
+		</label>
+		<tooltip name="none_tooltip">
+			此處無媒體
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			即時串流
diff --git a/indra/newview/skins/default/xui/zh/mime_types_mac.xml b/indra/newview/skins/default/xui/zh/mime_types_mac.xml
index 70af2d2f19776dd9fd77fe9085ab08a164bfd173..8967475abb2de890b96b147661250ae6f7c302e8 100755
--- a/indra/newview/skins/default/xui/zh/mime_types_mac.xml
+++ b/indra/newview/skins/default/xui/zh/mime_types_mac.xml
@@ -44,6 +44,14 @@
 			播放這個位置的音頻
 		</playtip>
 	</widgetset>
+	<widgetset name="none">
+		<label name="none_label">
+			無內容
+		</label>
+		<tooltip name="none_tooltip">
+			此處無媒體
+		</tooltip>
+	</widgetset>
 	<scheme name="rtsp">
 		<label name="rtsp_label">
 			即時串流
diff --git a/indra/newview/skins/default/xui/zh/notifications.xml b/indra/newview/skins/default/xui/zh/notifications.xml
index bd05725e2bb64fffd2ae871ddbf4d9bab762d6a6..5b520dd74574bb19e3b1c4194a80154be14e0db5 100755
--- a/indra/newview/skins/default/xui/zh/notifications.xml
+++ b/indra/newview/skins/default/xui/zh/notifications.xml
@@ -73,6 +73,10 @@
 		[MESSAGE]
 		<usetemplate name="okcancelbuttons" notext="取消" yestext="是"/>
 	</notification>
+	<notification name="GenericAlertOK">
+		[MESSAGE]
+		<usetemplate name="okbutton" yestext="確定"/>
+	</notification>
 	<notification name="BadInstallation">
 		[APP_NAME] 更新時出錯。  請 [http://get.secondlife.com 下載] 最新版本的 Viewer。
 		<usetemplate name="okbutton" yestext="確定"/>
@@ -575,6 +579,9 @@
 	<notification name="RegionNoTerraforming">
 		這個 [REGION] 地區並不允許變更地形。
 	</notification>
+	<notification name="ParcelNoTerraforming">
+		你無權針對地段 [PARCEL] 進行土地變形。
+	</notification>
 	<notification name="CannotCopyWarning">
 		你沒有權限複製以下項目:
 [ITEMS]
@@ -1816,6 +1823,30 @@ SHA1 指紋:[MD5_DIGEST]
 		僅針對這個領地或針對 [ALL_ESTATES] 移除領地管理人?
 		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
 	</notification>
+	<notification label="選擇領地" name="EstateAllowedExperienceAdd">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到允許清單?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
+	<notification label="選擇領地" name="EstateAllowedExperienceRemove">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它從允許清單中移除?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
+	<notification label="選擇領地" name="EstateBlockedExperienceAdd">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到封鎖清單?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
+	<notification label="選擇領地" name="EstateBlockedExperienceRemove">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它從封鎖清單中移除?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
+	<notification label="選擇領地" name="EstateTrustedExperienceAdd">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到金鑰清單?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
+	<notification label="選擇領地" name="EstateTrustedExperienceRemove">
+		僅針對這個領地或針對 [ALL_ESTATES] 將它從金鑰清單中移除?
+		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
+	</notification>
 	<notification label="確認踢出" name="EstateKickUser">
 		將 [EVIL_USER] 由這領地踢出?
 		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
@@ -1890,6 +1921,10 @@ SHA1 指紋:[MD5_DIGEST]
 		發生技術問題,你的偏好設定和伺服器上的不一致。
 		<usetemplate name="okbutton" yestext="確定"/>
 	</notification>
+	<notification name="RegionTPSpecialUsageBlocked">
+		無法進入地區。 &apos;[REGION_NAME]&apos; 是個「技巧性博奕」(Skill Gaming)地區,你必須符合一定條件才可進入。 欲知詳情,請參閱 [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life 技巧性博奕常見問題集]。
+		<usetemplate name="okbutton" yestext="確定"/>
+	</notification>
 	<notification name="PreferredMaturityChanged">
 		你將不再收到通知,告知你即將進入一個 [RATING] 內容分級的地區。  你可以到選單列底下的「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的內容偏好。
 		<usetemplate name="okbutton" yestext="確定"/>
@@ -2196,6 +2231,9 @@ SHA1 指紋:[MD5_DIGEST]
 			<button ignore="絕不取代" name="No" text="取消"/>
 		</form>
 	</notification>
+	<notification name="TooManyWearables">
+		你不能對含超過 [AMOUNT] 個物項的資料夾作穿戴動作。  欲變更此上限,可到「進階」&gt;「顯示除錯設定」&gt;「WearFolderLimit」。
+	</notification>
 	<notification label="「請勿打擾」模式警告" name="DoNotDisturbModePay">
 		你已開啟「請勿打擾」。 你將不會收到任何付款購買的物項。
 
@@ -2804,7 +2842,7 @@ SHA1 指紋:[MD5_DIGEST]
 
 [MESSAGE]
 
-來源物件:&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;(所有人是 [NAME])?
+來源物件:&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;(所有人:[NAME])
 		<form name="form">
 			<button name="Gotopage" text="前往頁面"/>
 			<button name="Cancel" text="取消"/>
@@ -2830,6 +2868,72 @@ SHA1 指紋:[MD5_DIGEST]
 			<button name="Mute" text="封鎖"/>
 		</form>
 	</notification>
+	<notification name="ExperienceAcquireFailed">
+		無法取得新的體驗:
+    [ERROR_MESSAGE]
+		<usetemplate name="okbutton" yestext="確定"/>
+	</notification>
+	<notification name="NotInGroupExperienceProfileMessage">
+		已取消對體驗群組的變更,因為擁有人不是所選群組的成員。
+	</notification>
+	<notification name="UneditableExperienceProfileMessage">
+		已在更新體驗簡覽時忽略不可編輯的欄位 &apos;[field]&apos;。
+	</notification>
+	<notification name="RestrictedToOwnerExperienceProfileMessage">
+		已忽略對欄位 &apos;[field]&apos; 的變更,只有體驗擁有人可作此變更。
+	</notification>
+	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
+		你不能將體驗的內容分級設定為比擁有人所設更高的等級。
+	</notification>
+	<notification name="RestrictedTermExperienceProfileMessage">
+		以下項目導致無法更新體驗的名稱或描述:[extra_info]
+	</notification>
+	<notification name="TeleportedHomeExperienceRemoved">
+		你已移除金鑰體驗 secondlife:///app/experience/[public_id]/profile,因此被瞬間傳送離開 [region_name] 地區,因為你已無權續留。
+		<form name="form">
+			<ignore name="ignore" text="移除體驗後,已被踢出地區"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperienceEntry">
+		你已參與金鑰體驗 secondlife:///app/experience/[public_id]/profile,因此獲准進入 [region_name] 地區,若移除此體驗,你可能會被踢出地區。
+		<form name="form">
+			<ignore name="ignore" text="已透過體驗獲准進入地區"/>
+		</form>
+	</notification>
+	<notification name="TrustedExperiencesAvailable">
+		你並沒有權限進入此目的地。 若接受以下一項體驗,可獲准進入該地區:
+
+[EXPERIENCE_LIST]
+
+可能有其他金鑰體驗供選擇。
+	</notification>
+	<notification name="ExperienceEvent">
+		一個物件已得到 secondlife:///app/experience/[public_id]/profile 體驗允許,可以[EventType]。
+    所有人:secondlife:///app/agent/[OwnerID]/inspect
+    物件名稱:[ObjectName]
+    地段名稱:[ParcelName]
+	</notification>
+	<notification name="ExperienceEventAttachment">
+		一個附件已得到 secondlife:///app/experience/[public_id]/profile 體驗允許,可以[EventType]。
+    所有人:secondlife:///app/agent/[OwnerID]/inspect
+	</notification>
+	<notification name="ScriptQuestionExperience">
+		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;,一個由 &apos;[NAME]&apos; 擁有的物件,邀請你參與以下的 [GRID_WIDE] 體驗:
+
+[EXPERIENCE]
+
+允准之後,除非在「體驗簡覽」撤銷該權限,否則你將不再看到此訊息。
+
+本體驗的相關腳本,將可在啟用本體驗的地區進行以下動作: 
+
+[QUESTIONS] 你是否同意?
+		<form name="form">
+			<button name="BlockExperience" text="封鎖體驗"/>
+			<button name="Mute" text="封鎖物件"/>
+			<button name="Yes" text="是"/>
+			<button name="No" text="否"/>
+		</form>
+	</notification>
 	<notification name="ScriptQuestionCaution">
 		警告:物件 &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; 要求全權存取你的林登幣帳戶。 你如果允許存取帳戶,它將可在任何時候從你帳戶取走資金,或完全加以清空,或定期取走部分資金,且不會發出警告。
   
@@ -3148,6 +3252,10 @@ SHA1 指紋:[MD5_DIGEST]
 	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
 		(存續 [EXISTENCE] 秒鐘)
 你在 [TIME] 秒鐘後在本地為 &apos;[BODYREGION]&apos; 更新了一個 [RESOLUTION] 的定貌材質。
+	</notification>
+	<notification name="CannotUploadTexture">
+		無法上傳質料。
+[REASON]
 	</notification>
 	<notification name="LivePreviewUnavailable">
 		我們無法顯示這個材質的預覽,因為它設為「禁止複製」且 / 或「禁止轉移」。
diff --git a/indra/newview/skins/default/xui/zh/panel_experience_info.xml b/indra/newview/skins/default/xui/zh/panel_experience_info.xml
new file mode 100644
index 0000000000000000000000000000000000000000..04d22c46ea03a3037468881b67de987991af4a68
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experience_info.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="panel_experience_info">
+	<text name="title" value="體驗簡覽"/>
+	<scroll_container name="xp_scroll">
+		<panel name="scrolling_panel">
+			<layout_stack>
+				<layout_panel>
+					<text name="experience_title" value="Kyle&apos;s Superhero RPG"/>
+				</layout_panel>
+				<layout_panel name="location panel">
+					<text name="Location">
+						位置:
+					</text>
+					<text name="LocationTextText">
+						某某地點
+					</text>
+					<button label="瞬間傳送" name="teleport_btn"/>
+					<button label="地圖" name="map_btn"/>
+				</layout_panel>
+				<layout_panel name="marketplace panel">
+					<text name="Location">
+						第二人生購物市集商店:
+					</text>
+					<text name="LocationTextText">
+						某某地點
+					</text>
+				</layout_panel>
+				<layout_panel>
+					<text name="ContentRating">
+						分級:
+					</text>
+					<text name="ContentRatingText">
+						完全成人
+					</text>
+					<text name="Owner">
+						所有人:
+					</text>
+					<text name="OwnerText">
+						Kyle
+					</text>
+					<button label="編輯" name="edit_btn"/>
+				</layout_panel>
+			</layout_stack>
+		</panel>
+	</scroll_container>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_experience_list_editor.xml b/indra/newview/skins/default/xui/zh/panel_experience_list_editor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..469f9425784bc9ea5fa932c2176c8b1a1402926c
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experience_list_editor.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel name="experince_list_editor">
+	<panel.string name="loading">
+		載入中...
+	</panel.string>
+	<panel.string name="panel_allowed">
+		允許的體驗:
+	</panel.string>
+	<panel.string name="panel_blocked">
+		封鎖的體驗:
+	</panel.string>
+	<panel.string name="panel_trusted">
+		金鑰體驗:
+	</panel.string>
+	<panel.string name="no_results">
+		(空白)
+	</panel.string>
+	<text name="text_name">
+		體驗清單
+	</text>
+	<scroll_list name="experience_list">
+		<columns label="名稱" name="experience_name"/>
+	</scroll_list>
+	<button label="添加..." name="btn_add"/>
+	<button label="移除" name="btn_remove"/>
+	<button label="檔案..." name="btn_profile"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_experience_list_item.xml b/indra/newview/skins/default/xui/zh/panel_experience_list_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3ec619b8dec6d38ce88eb9d7ae90ef30e69319de
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experience_list_item.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<text name="experience_name">
+		測試用名稱
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_experience_log.xml b/indra/newview/skins/default/xui/zh/panel_experience_log.xml
new file mode 100644
index 0000000000000000000000000000000000000000..791dcd0a2e4447c57ea1bc4b5a33d5eab2212be9
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experience_log.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="EVENTS">
+	<string name="no_events" value="無活動。"/>
+	<string name="loading" value="載入中..."/>
+	<layout_stack>
+		<layout_panel>
+			<scroll_list name="experience_log_list">
+				<columns label="時間" name="time"/>
+				<columns label="活動" name="event"/>
+				<columns label="體驗" name="experience_name"/>
+				<columns label="物件" name="object_name"/>
+			</scroll_list>
+			<button label="通知" name="btn_notify"/>
+			<button label="簡覽" name="btn_profile_xp"/>
+			<button label="回報" name="btn_report_xp"/>
+		</layout_panel>
+		<layout_panel name="button_panel">
+			<check_box label="對所有活動作通知    天數" name="notify_all"/>
+			<button label="清除" name="btn_clear"/>
+			<button label="&lt;" name="btn_prev"/>
+			<button label="&gt;" name="btn_next"/>
+		</layout_panel>
+	</layout_stack>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_experience_search.xml b/indra/newview/skins/default/xui/zh/panel_experience_search.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9b0145748ed2f9fcf79679badd32fdb4a02e5e62
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experience_search.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="SEARCH">
+	<string name="not_found">
+		查無「[TEXT]」
+	</string>
+	<string name="no_results">
+		沒有結果
+	</string>
+	<string name="searching">
+		搜尋中...
+	</string>
+	<string name="loading">
+		載入中…
+	</string>
+	<string name="maturity_icon_general">
+		&quot;Parcel_PG_Light&quot;
+	</string>
+	<string name="maturity_icon_moderate">
+		&quot;Parcel_M_Light&quot;
+	</string>
+	<string name="maturity_icon_adult">
+		&quot;Parcel_R_Light&quot;
+	</string>
+	<panel name="search_panel">
+		<button label="前往" name="find"/>
+		<icons_combo_box label="適度成人" name="maturity">
+			<icons_combo_box.item label="完全成人" name="Adult" value="42"/>
+			<icons_combo_box.item label="適度成人" name="Mature" value="21"/>
+			<icons_combo_box.item label="一般" name="PG" value="13"/>
+		</icons_combo_box>
+		<scroll_list name="search_results">
+			<columns label="名稱" name="experience_name"/>
+			<columns label="所有人" name="owner"/>
+		</scroll_list>
+		<button label="確定" label_selected="確定" name="ok_btn"/>
+		<button label="取消" name="cancel_btn"/>
+		<button label="察看簡覽" name="profile_btn"/>
+		<button label="&lt;" name="left_btn"/>
+		<button label="&gt;" name="right_btn"/>
+	</panel>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_experiences.xml b/indra/newview/skins/default/xui/zh/panel_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bb1df970583d667de203a59f899df823a408588e
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_experiences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="Experiences">
+	<string name="loading_experiences" value="體驗載入中..."/>
+	<string name="no_experiences" value="未設體驗。"/>
+	<string name="acquire" value="取得體驗"/>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_facebook_photo.xml b/indra/newview/skins/default/xui/zh/panel_facebook_photo.xml
index d43fcf4665ebc051be53932dd1f9bd265394e90d..85d2ac36f311b88e7d30d3d721ab8a72dfde5684 100644
--- a/indra/newview/skins/default/xui/zh/panel_facebook_photo.xml
+++ b/indra/newview/skins/default/xui/zh/panel_facebook_photo.xml
@@ -1,26 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="圖像解析度">
-				<combo_box.item label="目前視窗" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-				<combo_box.item label="1200x630" name="1200x630"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
-				<combo_box.item label="不用濾鏡" name="NoFilter"/>
-			</combo_box>
-			<button label="重新整理" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
-			<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
-			<text name="caption_label">
-				說明(可留空):
-			</text>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="發佈" name="post_photo_btn"/>
-			<button label="取消" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<combo_box name="resolution_combobox" tool_tip="圖像解析度">
+		<combo_box.item label="目前視窗" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+		<combo_box.item label="1200x630" name="1200x630"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
+		<combo_box.item label="不用濾鏡" name="NoFilter"/>
+	</combo_box>
+	<button label="刷新" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
+	<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
+	<text name="caption_label">
+		說明(可留空):
+	</text>
+	<button label="發佈" name="post_photo_btn"/>
+	<button label="取消" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_facebook_place.xml b/indra/newview/skins/default/xui/zh/panel_facebook_place.xml
index 27bd789af17df4727105fbc6291589373fadb0de..56d4d687eff055e59a53870e76edbc00afebd6c9 100644
--- a/indra/newview/skins/default/xui/zh/panel_facebook_place.xml
+++ b/indra/newview/skins/default/xui/zh/panel_facebook_place.xml
@@ -1,17 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_place">
-	<layout_stack name="stack_place">
-		<layout_panel name="place_detail_panel">
-			<text name="place_caption_label">
-				描述一下你所在的地方:
-			</text>
-		</layout_panel>
-		<layout_panel name="place_map_panel">
-			<check_box initial_value="false" label="" name="add_place_view_cb"/>
-		</layout_panel>
-		<layout_panel name="place_button_panel">
-			<button label="發佈" name="post_place_btn"/>
-			<button label="取消" name="cancel_place_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="place_caption_label">
+		描述一下你所在的地方:
+	</text>
+	<check_box initial_value="false" label="包括地點的俯瞰圖" name="add_place_view_cb"/>
+	<button label="發佈" name="post_place_btn"/>
+	<button label="取消" name="cancel_place_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_facebook_status.xml b/indra/newview/skins/default/xui/zh/panel_facebook_status.xml
index b947b49a4fdf98f56a79da056e3c0c9abed299e7..3a7cbd07b07aee710e33bd58245c6a4bf0681209 100644
--- a/indra/newview/skins/default/xui/zh/panel_facebook_status.xml
+++ b/indra/newview/skins/default/xui/zh/panel_facebook_status.xml
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_facebook_status">
-	<layout_stack name="stack_status">
-		<layout_panel name="status_detail_panel">
-			<text name="status_caption_label">
-				你在想些什麼?
-			</text>
-		</layout_panel>
-		<layout_panel name="status_button_panel">
-			<button label="發佈" name="post_status_btn"/>
-			<button label="取消" name="cancel_status_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<string name="facebook_connected" value="已成功連通臉書,身分為:"/>
+	<string name="facebook_disconnected" value="未連通臉書"/>
+	<text name="account_caption_label">
+		未連通臉書。
+	</text>
+	<panel name="panel_buttons">
+		<button label="連通…" name="connect_btn"/>
+		<button label="中斷" name="disconnect_btn"/>
+		<text name="account_learn_more_label">
+			[http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Share-Facebook/ta-p/2149711 如何發佈到臉書]
+		</text>
+	</panel>
+	<text name="status_caption_label">
+		你在想些什麼?
+	</text>
+	<button label="發佈" name="post_status_btn"/>
+	<button label="取消" name="cancel_status_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_flickr_photo.xml b/indra/newview/skins/default/xui/zh/panel_flickr_photo.xml
index 75738abebc2e7cc662c77d0630c675331ee8fc25..ece239a29fc009f4485da4b95440ba1ab3316a36 100644
--- a/indra/newview/skins/default/xui/zh/panel_flickr_photo.xml
+++ b/indra/newview/skins/default/xui/zh/panel_flickr_photo.xml
@@ -1,41 +1,35 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_flickr_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="圖像解析度">
-				<combo_box.item label="目前視窗" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
-				<combo_box.item label="不用濾鏡" name="NoFilter"/>
-			</combo_box>
-			<button label="刷新" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
-			<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
-			<text name="title_label">
-				標題:
-			</text>
-			<text name="description_label">
-				描述:
-			</text>
-			<check_box initial_value="true" label="在描述結尾加上第二人生的地點" name="add_location_cb"/>
-			<text name="tags_label">
-				標籤:
-			</text>
-			<text name="tags_help_label">
-				不同標籤之間以半形空格分隔
+	<combo_box name="resolution_combobox" tool_tip="圖像解析度">
+		<combo_box.item label="目前視窗" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
+		<combo_box.item label="不用濾鏡" name="NoFilter"/>
+	</combo_box>
+	<button label="刷新" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
+	<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
+	<text name="title_label">
+		標題:
+	</text>
+	<text name="description_label">
+		描述:
+	</text>
+	<check_box initial_value="true" label="在描述結尾加上第二人生的地點" name="add_location_cb"/>
+	<text name="tags_label">
+		標籤:
+	</text>
+	<text name="tags_help_label">
+		不同標籤之間以半形空格分隔
 標籤若含空格,用 &quot;&quot; 半形符號括住
-			</text>
-			<combo_box name="rating_combobox" tool_tip="Flickr 內容分級">
-				<combo_box.item label="安全級 Flickr 內容" name="SafeRating"/>
-				<combo_box.item label="適中級 Flickr 內容" name="ModerateRating"/>
-				<combo_box.item label="限制級 Flickr 內容" name="RestrictedRating"/>
-			</combo_box>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="上傳" name="post_photo_btn"/>
-			<button label="取消" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	</text>
+	<combo_box name="rating_combobox" tool_tip="Flickr 內容分級">
+		<combo_box.item label="安全級 Flickr 內容" name="SafeRating"/>
+		<combo_box.item label="適中級 Flickr 內容" name="ModerateRating"/>
+		<combo_box.item label="限制級 Flickr 內容" name="RestrictedRating"/>
+	</combo_box>
+	<button label="上傳" name="post_photo_btn"/>
+	<button label="取消" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/zh/panel_group_info_sidetray.xml
index 43e3507961ea15346091f91c0a39e83498c8dcb0..1fb0b3f5bb2e73acec3e7ba7e3852e5979f86521 100755
--- a/indra/newview/skins/default/xui/zh/panel_group_info_sidetray.xml
+++ b/indra/newview/skins/default/xui/zh/panel_group_info_sidetray.xml
@@ -23,6 +23,7 @@
 				<accordion_tab name="group_roles_tab" title="角色與成員"/>
 				<accordion_tab name="group_notices_tab" title="通知"/>
 				<accordion_tab name="group_land_tab" title="土地 / 資產"/>
+				<accordion_tab name="group_experiences_tab" title="體驗"/>
 			</accordion>
 		</layout_panel>
 	</layout_stack>
diff --git a/indra/newview/skins/default/xui/zh/panel_postcard_settings.xml b/indra/newview/skins/default/xui/zh/panel_postcard_settings.xml
index 900ab3a54e5fffec0f0c1e858d1c16df97206bd9..8ab122ccc34c5e45e080521dca333f49a5fe6c3c 100755
--- a/indra/newview/skins/default/xui/zh/panel_postcard_settings.xml
+++ b/indra/newview/skins/default/xui/zh/panel_postcard_settings.xml
@@ -7,17 +7,7 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="自訂" name="Custom"/>
 	</combo_box>
-	<layout_stack name="postcard_image_params_ls">
-		<layout_panel name="postcard_image_size_lp">
-			<spinner label="寬" name="postcard_snapshot_width"/>
-			<spinner label="高度" name="postcard_snapshot_height"/>
-			<check_box label="鎖住比例" name="postcard_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="postcard_image_format_quality_lp">
-			<slider label="圖像品質" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="寬 x 高" name="postcard_snapshot_width"/>
+	<check_box label="鎖住比例" name="postcard_keep_aspect_check"/>
+	<slider label="清晰度:" name="image_quality_slider"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml b/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
index ab4d9a881dfc298696bedb2f8f0b929979f15cd5..fcbed76d493b489176d60017eb9ec4b6c1674a11 100755
--- a/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
@@ -14,9 +14,9 @@
 	<text name="Web:">
 		網頁:
 	</text>
-	<radio_group name="use_external_browser">
-		<radio_item label="使用我的網頁瀏覽器(例如 IE, Firefox, Safari)" name="external" tool_tip="使用系統預設的瀏覽器瀏覽幫助,開啟網頁。全螢幕模式下不建議這麼做。" value="true"/>
-		<radio_item label="使用內建網頁瀏覽器" name="internal" tool_tip="使用內建的瀏覽器瀏覽幫助,開啟網頁。該瀏覽器將透過 [APP_NAME] 開啟新視窗。" value=""/>
+	<radio_group name="preferred_browser_behavior">
+		<radio_item label="所有連結都用我的網頁瀏覽器(例如 Chrome、Firefox、IE)開啟" name="internal" tool_tip="使用系統預設的瀏覽器瀏覽幫助,開啟網頁。全螢幕模式下不建議這麼做。" value="0"/>
+		<radio_item label="僅在開啟第二人生連結時使用內建瀏覽器" name="external" tool_tip="使用系統預設的瀏覽器瀏覽幫助,開啟網頁。僅在開啟 LindenLab/SecondLife 的連結時才會使用內建瀏覽器。" value="1"/>
 	</radio_group>
 	<check_box initial_value="true" label="啟用外掛" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="接受 cookies" name="cookies_enabled"/>
diff --git a/indra/newview/skins/default/xui/zh/panel_region_experiences.xml b/indra/newview/skins/default/xui/zh/panel_region_experiences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7b1b697fd6a96617f7fb3c66dd68cba61b989ebb
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_region_experiences.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<panel label="體驗" name="Experiences">
+	<panel.string name="trusted_estate_text">
+		任何體驗都可以成為金鑰體驗。
+
+金鑰體驗可在此領地執行。
+
+此外,即使這個領地平常不開放進入,參與任何鑰匙體驗的居民,只要維持處在「金鑰體驗」狀態,仍可進入領地停留。
+	</panel.string>
+	<panel.string name="allowed_estate_text">
+		只允准「土地範圍」的體驗。
+
+獲准的體驗可在此領地執行。
+	</panel.string>
+	<panel.string name="blocked_estate_text">
+		只封鎖「網格範圍」的體驗。
+      
+遭封鎖的體驗不得在此領地執行。
+	</panel.string>
+	<panel.string name="estate_caption">
+		變更此夜籤中的設定會影響這個領地內的全部地區設定。
+	</panel.string>
+	<panel.string name="allowed_parcel_text">
+		只允准「土地範圍」的體驗。
+      
+獲准的體驗若未被領地封鎖,就可在此地段執行。
+	</panel.string>
+	<panel.string name="blocked_parcel_text">
+		任何居民的體驗都可以加以封鎖。
+      
+遭封鎖的體驗不得在此地段執行。
+	</panel.string>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_script_experience.xml b/indra/newview/skins/default/xui/zh/panel_script_experience.xml
new file mode 100644
index 0000000000000000000000000000000000000000..40fd0a90deb43a7be11dac93763097f035ed3fd9
--- /dev/null
+++ b/indra/newview/skins/default/xui/zh/panel_script_experience.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<panel name="script_experience" title="體驗">
+	<button label="體驗" name="Expand Experience"/>
+	<check_box label="使用體驗" name="enable_xp"/>
+	<layout_stack name="xp_details">
+		<layout_panel>
+			<combo_box label="選擇體驗…" name="Experiences..."/>
+		</layout_panel>
+	</layout_stack>
+	<text name="No Experiences">
+		你尚未對任何體驗作貢獻。
+	</text>
+</panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_snapshot_inventory.xml b/indra/newview/skins/default/xui/zh/panel_snapshot_inventory.xml
index 20fb9b494a901fa9edfc30001d847306527a8922..9c45c54a5edf24292ffc16f8a4b8f16eb0a473ca 100755
--- a/indra/newview/skins/default/xui/zh/panel_snapshot_inventory.xml
+++ b/indra/newview/skins/default/xui/zh/panel_snapshot_inventory.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_inventory">
 	<text name="title">
-		儲存到我的收納區
+		收納區
 	</text>
 	<text name="hint_lbl">
 		將圖像儲存到收納區的費用為 L$[UPLOAD_COST]。 若要將圖像存為材質,請選擇一個正方格式。
@@ -13,8 +13,8 @@
 		<combo_box.item label="大(512x512)" name="Large(512x512)"/>
 		<combo_box.item label="自訂" name="Custom"/>
 	</combo_box>
-	<spinner label="寬" name="inventory_snapshot_width"/>
-	<spinner label="高度" name="inventory_snapshot_height"/>
+	<spinner label="寬 x 高" name="inventory_snapshot_width"/>
+	<spinner label="" name="inventory_snapshot_height"/>
 	<check_box label="鎖住比例" name="inventory_keep_aspect_check"/>
 	<button label="取消" name="cancel_btn"/>
 	<button label="儲存" name="save_btn"/>
diff --git a/indra/newview/skins/default/xui/zh/panel_snapshot_local.xml b/indra/newview/skins/default/xui/zh/panel_snapshot_local.xml
index a929c9a3fbc7641e5761af201668405dd94cb02f..691ab8bac78aa29008cb4e5ddcb69395fb2d4f7c 100755
--- a/indra/newview/skins/default/xui/zh/panel_snapshot_local.xml
+++ b/indra/newview/skins/default/xui/zh/panel_snapshot_local.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_local">
 	<text name="title">
-		儲存到電腦上
+		硬碟
 	</text>
 	<combo_box label="解析度" name="local_size_combo">
 		<combo_box.item label="目前視窗" name="CurrentWindow"/>
@@ -13,24 +13,17 @@
 		<combo_box.item label="1600x1200" name="1600x1200"/>
 		<combo_box.item label="自訂" name="Custom"/>
 	</combo_box>
-	<layout_stack name="local_image_params_ls">
-		<layout_panel name="local_image_size_lp">
-			<spinner label="寬" name="local_snapshot_width"/>
-			<spinner label="高度" name="local_snapshot_height"/>
-			<check_box label="鎖住比例" name="local_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="local_image_format_quality_lp">
-			<combo_box label="格式" name="local_format_combo">
-				<combo_box.item label="PNG(零失真)" name="PNG"/>
-				<combo_box.item label="JPEG" name="JPEG"/>
-				<combo_box.item label="BMP(零失真)" name="BMP"/>
-			</combo_box>
-			<slider label="圖像品質" name="image_quality_slider"/>
-			<text name="image_quality_level">
-				([QLVL])
-			</text>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="寬 x 高" name="local_snapshot_width"/>
+	<check_box label="鎖住比例" name="local_keep_aspect_check"/>
+	<text name="local_format_label">
+		格式
+	</text>
+	<combo_box label="格式" name="local_format_combo">
+		<combo_box.item label="PNG(零失真)" name="PNG"/>
+		<combo_box.item label="JPEG" name="JPEG"/>
+		<combo_box.item label="BMP(零失真)" name="BMP"/>
+	</combo_box>
+	<slider label="清晰度:" name="image_quality_slider"/>
 	<button label="取消" name="cancel_btn"/>
 	<flyout_button label="儲存" name="save_btn" tool_tip="儲存圖像到檔案">
 		<flyout_button.item label="儲存" name="save_item"/>
diff --git a/indra/newview/skins/default/xui/zh/panel_snapshot_options.xml b/indra/newview/skins/default/xui/zh/panel_snapshot_options.xml
index 43d72803730a2f9d595f934d655593479b3aed1d..a5a1cbfb51ff12527ce1b4d636c279b4edde1bd5 100755
--- a/indra/newview/skins/default/xui/zh/panel_snapshot_options.xml
+++ b/indra/newview/skins/default/xui/zh/panel_snapshot_options.xml
@@ -1,16 +1,10 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_options">
-	<button label="送至我的檔案訊息發佈" name="save_to_profile_btn"/>
-	<button label="電郵" name="save_to_email_btn"/>
-	<button label="儲存到我的收納區(L$[AMOUNT])" name="save_to_inventory_btn"/>
-	<button label="儲存到電腦上" name="save_to_computer_btn"/>
-	<text name="send_to_facebook_textbox">
-		[secondlife:/// 臉書(Facebook)]
-	</text>
-	<text name="send_to_twitter_textbox">
-		[secondlife:/// 推特(Twitter)]
-	</text>
-	<text name="send_to_flickr_textbox">
-		[secondlife:/// Flickr]
-	</text>
+	<button label="儲存到硬碟" name="save_to_computer_btn"/>
+	<button label="儲存到收納區(L$[AMOUNT])" name="save_to_inventory_btn"/>
+	<button label="上傳到簡覽" name="save_to_profile_btn"/>
+	<button label="上傳到臉書" name="send_to_facebook_btn"/>
+	<button label="上傳到推特" name="send_to_twitter_btn"/>
+	<button label="上傳到 Flickr" name="send_to_flickr_btn"/>
+	<button label="用電郵傳送" name="save_to_email_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_snapshot_postcard.xml b/indra/newview/skins/default/xui/zh/panel_snapshot_postcard.xml
index 853a856104549363b63f808bfb040fef95c482b6..77f8b335db53779489f95815fa42eb1c4c7592f1 100755
--- a/indra/newview/skins/default/xui/zh/panel_snapshot_postcard.xml
+++ b/indra/newview/skins/default/xui/zh/panel_snapshot_postcard.xml
@@ -12,6 +12,10 @@
 	<text name="title">
 		電郵
 	</text>
-	<button label="訊息" name="message_btn"/>
-	<button label="設定" name="settings_btn"/>
+	<tab_container name="postcard_tabs">
+		<panel label="訊息" name="panel_postcard_message"/>
+		<panel label="設定" name="panel_postcard_settings"/>
+	</tab_container>
+	<button label="取消" name="cancel_btn"/>
+	<button label="送出" name="send_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_snapshot_profile.xml b/indra/newview/skins/default/xui/zh/panel_snapshot_profile.xml
index 6f64a4e83c93f198d0d1087c7a8682a80cf60bfa..1f202572f5c08a51de05d7262c3cbdb09a2c4430 100755
--- a/indra/newview/skins/default/xui/zh/panel_snapshot_profile.xml
+++ b/indra/newview/skins/default/xui/zh/panel_snapshot_profile.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="panel_snapshot_profile">
 	<text name="title">
-		送至我的檔案訊息發佈
+		簡覽
 	</text>
 	<combo_box label="解析度" name="profile_size_combo">
 		<combo_box.item label="目前視窗" name="CurrentWindow"/>
@@ -10,19 +10,12 @@
 		<combo_box.item label="1024x768" name="1024x768"/>
 		<combo_box.item label="自訂" name="Custom"/>
 	</combo_box>
-	<layout_stack name="profile_image_params_ls">
-		<layout_panel name="profile_image_size_lp">
-			<spinner label="寬" name="profile_snapshot_width"/>
-			<spinner label="高度" name="profile_snapshot_height"/>
-			<check_box label="鎖住比例" name="profile_keep_aspect_check"/>
-		</layout_panel>
-		<layout_panel name="profile_image_metadata_lp">
-			<text name="caption_label">
-				內容敘述:
-			</text>
-			<check_box initial_value="true" label="加入所在位置" name="add_location_cb"/>
-		</layout_panel>
-	</layout_stack>
+	<spinner label="寬 x 高" name="profile_snapshot_width"/>
+	<check_box label="鎖住比例" name="profile_keep_aspect_check"/>
+	<text name="caption_label">
+		內容敘述:
+	</text>
+	<check_box initial_value="true" label="加入所在位置" name="add_location_cb"/>
 	<button label="取消" name="cancel_btn"/>
 	<button label="發佈" name="post_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/panel_twitter_photo.xml b/indra/newview/skins/default/xui/zh/panel_twitter_photo.xml
index d015f4aa9504cb07e55e4658e44dde6542ad4c05..19eb23eac7a2c65d3ace63f42b1a803233a2f8ec 100644
--- a/indra/newview/skins/default/xui/zh/panel_twitter_photo.xml
+++ b/indra/newview/skins/default/xui/zh/panel_twitter_photo.xml
@@ -1,32 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <panel name="panel_twitter_photo">
-	<layout_stack name="stack_photo">
-		<layout_panel name="text_panel">
-			<text name="status_label">
-				說一說你正在做什麼
-			</text>
-			<text name="status_counter_label">
-				140
-			</text>
-			<check_box initial_value="true" label="加入所在位置" name="add_location_cb"/>
-			<check_box initial_value="true" label="附上照片" name="add_photo_cb"/>
-		</layout_panel>
-		<layout_panel name="snapshot_panel">
-			<combo_box name="resolution_combobox" tool_tip="圖像解析度">
-				<combo_box.item label="目前視窗" name="CurrentWindow"/>
-				<combo_box.item label="640x480" name="640x480"/>
-				<combo_box.item label="800x600" name="800x600"/>
-				<combo_box.item label="1024x768" name="1024x768"/>
-			</combo_box>
-			<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
-				<combo_box.item label="不用濾鏡" name="NoFilter"/>
-			</combo_box>
-			<button label="刷新" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
-			<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
-		</layout_panel>
-		<layout_panel name="photo_button_panel">
-			<button label="發到推特" name="post_photo_btn"/>
-			<button label="取消" name="cancel_photo_btn"/>
-		</layout_panel>
-	</layout_stack>
+	<text name="status_label">
+		說一說你正在做什麼
+	</text>
+	<text name="status_counter_label">
+		140
+	</text>
+	<check_box initial_value="true" label="加入所在位置" name="add_location_cb"/>
+	<check_box initial_value="true" label="附上照片" name="add_photo_cb"/>
+	<combo_box name="resolution_combobox" tool_tip="圖像解析度">
+		<combo_box.item label="目前視窗" name="CurrentWindow"/>
+		<combo_box.item label="640x480" name="640x480"/>
+		<combo_box.item label="800x600" name="800x600"/>
+		<combo_box.item label="1024x768" name="1024x768"/>
+	</combo_box>
+	<combo_box name="filters_combobox" tool_tip="圖像濾鏡">
+		<combo_box.item label="不用濾鏡" name="NoFilter"/>
+	</combo_box>
+	<button label="刷新" name="new_snapshot_btn" tool_tip="點按即可刷新"/>
+	<button label="預覽" name="big_preview_btn" tool_tip="點按即可切換預覽"/>
+	<button label="發到推特" name="post_photo_btn"/>
+	<button label="取消" name="cancel_photo_btn"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/zh/role_actions.xml b/indra/newview/skins/default/xui/zh/role_actions.xml
index 96f931f73f16343a4524b6c322b26acb02a7712e..0a3ef8c71033ab03cdc3a4a1ce4b6c0028cee121 100755
--- a/indra/newview/skins/default/xui/zh/role_actions.xml
+++ b/indra/newview/skins/default/xui/zh/role_actions.xml
@@ -71,4 +71,8 @@
 		<action description="加入群組語音聊天" longdescription="身負具這能力的角色的成員,可以加入群組的語音聊天會話。  注意:欲加入語音聊天會話,需有「加入群組聊天」能力。" name="join voice chat" value="27"/>
 		<action description="適度成人內容的群組聊天" longdescription="身負具這能力的角色的成員,可以控制誰可加入群組語音和文字聊天會話。" name="moderate group chat" value="37"/>
 	</action_set>
+	<action_set description="這些能力包括修改本群組所擁有的體驗的權限" name="experience_tools_experience">
+		<action description="體驗管理" longdescription="擔任有此能力的角色的成員,可以編輯一個體驗的元資料。" name="experience admin" value="49"/>
+		<action description="體驗貢獻者" longdescription="擔任有此能力的角色的成員,可以為一個體驗貢獻腳本。" name="experience contributor" value="50"/>
+	</action_set>
 </role_actions>
diff --git a/indra/newview/skins/default/xui/zh/sidepanel_item_info.xml b/indra/newview/skins/default/xui/zh/sidepanel_item_info.xml
index 1b093e0ecded2ae912e5b3e99f1b899cd12f4d92..dcb709d2e3806a0171c3cd7ed7937d9c5105ce30 100755
--- a/indra/newview/skins/default/xui/zh/sidepanel_item_info.xml
+++ b/indra/newview/skins/default/xui/zh/sidepanel_item_info.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel name="item properties" title="物品檔案">
+	<panel.string name="loading_experience">
+		(載入中)
+	</panel.string>
 	<panel.string name="unknown">
 		(未知)
 	</panel.string>
@@ -43,6 +46,9 @@
 			<text name="LabelAcquiredTitle">
 				取得於:
 			</text>
+			<text name="LabelItemExperienceTitle">
+				體驗:
+			</text>
 			<panel name="perms_inv">
 				<text name="perm_modify">
 					你可以:
diff --git a/indra/newview/skins/default/xui/zh/strings.xml b/indra/newview/skins/default/xui/zh/strings.xml
index ad2c331ee46c1a332b0ed40050bff376bf734862..e8edf1270bc7cf22a79627a5c06fc4284bec1fc8 100755
--- a/indra/newview/skins/default/xui/zh/strings.xml
+++ b/indra/newview/skins/default/xui/zh/strings.xml
@@ -444,6 +444,9 @@ http://secondlife.com/viewer-access-faq
 	<string name="TooltipMustSingleDrop">
 		只有一個物品可以被拖曳到此處
 	</string>
+	<string name="TooltipTooManyWearables">
+		你不能對含超過 [AMOUNT] 個物項的資料夾作穿戴動作。  欲變更此上限,可到「進階」&gt;「顯示除錯設定」&gt;「WearFolderLimit」。
+	</string>
 	<string name="TooltipPrice" value="L$[AMOUNT]:"/>
 	<string name="TooltipOutboxDragToWorld">
 		商家發件匣內的物項無法產生到虛擬世界
@@ -1052,9 +1055,7 @@ http://secondlife.com/viewer-access-faq
 	<string name="AgentNameSubst">
 		(你)
 	</string>
-	<string name="JoinAnExperience">
-		加入體驗
-	</string>
+	<string name="JoinAnExperience"/>
 	<string name="SilentlyManageEstateAccess">
 		管理領出入許可名單時,不顯示警示
 	</string>
@@ -1865,6 +1866,9 @@ http://secondlife.com/viewer-access-faq
 	<string name="CompileQueueUnknownFailure">
 		下載失敗,原因不明
 	</string>
+	<string name="CompileNoExperiencePerm">
+		略過體驗 [EXPERIENCE] 的腳本 [SCRIPT]。
+	</string>
 	<string name="CompileQueueTitle">
 		重新編譯進度
 	</string>
@@ -5268,6 +5272,87 @@ http://secondlife.com/viewer-access-faq
 	<string name="UserDictionary">
 		[User]
 	</string>
+	<string name="experience_tools_experience">
+		體驗
+	</string>
+	<string name="ExperienceNameNull">
+		(沒有體驗)
+	</string>
+	<string name="ExperienceNameUntitled">
+		(無名的體驗)
+	</string>
+	<string name="Land-Scope">
+		土地範圍型
+	</string>
+	<string name="Grid-Scope">
+		網格範圍型
+	</string>
+	<string name="Allowed_Experiences_Tab">
+		准許
+	</string>
+	<string name="Blocked_Experiences_Tab">
+		已封鎖的
+	</string>
+	<string name="Contrib_Experiences_Tab">
+		貢獻者
+	</string>
+	<string name="Admin_Experiences_Tab">
+		管理員
+	</string>
+	<string name="Recent_Experiences_Tab">
+		最近
+	</string>
+	<string name="Owned_Experiences_Tab">
+		擁有
+	</string>
+	<string name="ExperiencesCounter">
+		([EXPERIENCES] 項,最多 [MAXEXPERIENCES] 項)
+	</string>
+	<string name="ExperiencePermission1">
+		取得你的各項控制
+	</string>
+	<string name="ExperiencePermission3">
+		對你的化身觸發動作
+	</string>
+	<string name="ExperiencePermission4">
+		附著到你的化身
+	</string>
+	<string name="ExperiencePermission9">
+		追蹤你的攝影機
+	</string>
+	<string name="ExperiencePermission10">
+		控制你的攝影機
+	</string>
+	<string name="ExperiencePermission11">
+		瞬間傳送你本人
+	</string>
+	<string name="ExperiencePermission12">
+		自動接受各種體驗權限
+	</string>
+	<string name="ExperiencePermissionShortUnknown">
+		進行了未知的操作:[Permission]
+	</string>
+	<string name="ExperiencePermissionShort1">
+		取得控制
+	</string>
+	<string name="ExperiencePermissionShort3">
+		觸發動作
+	</string>
+	<string name="ExperiencePermissionShort4">
+		附著
+	</string>
+	<string name="ExperiencePermissionShort9">
+		追蹤攝影機
+	</string>
+	<string name="ExperiencePermissionShort10">
+		控制攝影機
+	</string>
+	<string name="ExperiencePermissionShort11">
+		瞬間傳送
+	</string>
+	<string name="ExperiencePermissionShort12">
+		權限
+	</string>
 	<string name="logging_calls_disabled_log_empty">
 		交談未留記錄。 若想開始留記錄,請到「偏好設定 &gt; 聊天」,選擇「儲存:只留歷史記錄」或「儲存:歷史記錄兼交談內容」。
 	</string>
diff --git a/indra/newview/skins/default/xui/zh/teleport_strings.xml b/indra/newview/skins/default/xui/zh/teleport_strings.xml
index 37080a8d0c87e419de50a01d6fe067a13b995d08..61db2942727ca537b4d06b19d6231835f567c21f 100755
--- a/indra/newview/skins/default/xui/zh/teleport_strings.xml
+++ b/indra/newview/skins/default/xui/zh/teleport_strings.xml
@@ -48,6 +48,9 @@
 		<message name="MustGetAgeRegion">
 			你必須年滿 18 歲才可進入這地區。
 		</message>
+		<message name="RegionTPSpecialUsageBlocked">
+			無法進入地區。 &apos;[REGION_NAME]&apos; 是個「技巧性博奕」(Skill Gaming)地區,你必須符合一定條件才可進入。 欲知詳情,請參閱 [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life 技巧性博奕常見問題集]。
+		</message>
 	</message_set>
 	<message_set name="progress">
 		<message name="sending_dest">
diff --git a/indra/tools/vstool/DispatchUtility.cs b/indra/tools/vstool/DispatchUtility.cs
new file mode 100644
index 0000000000000000000000000000000000000000..6056ac55a13f0c804391c9f1facb9ffbd68eb476
--- /dev/null
+++ b/indra/tools/vstool/DispatchUtility.cs
@@ -0,0 +1,271 @@
+#region Using Directives
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Runtime.InteropServices;
+using System.Reflection;
+using System.Security.Permissions;
+
+#endregion
+
+namespace TestDispatchUtility
+{
+	/// <summary>
+	/// Provides helper methods for working with COM IDispatch objects that have a registered type library.
+	/// </summary>
+	public static class DispatchUtility
+	{
+		#region Private Constants
+
+		private const int S_OK = 0; //From WinError.h
+		private const int LOCALE_SYSTEM_DEFAULT = 2 << 10; //From WinNT.h == 2048 == 0x800
+
+		#endregion
+
+		#region Public Methods
+
+		/// <summary>
+		/// Gets whether the specified object implements IDispatch.
+		/// </summary>
+		/// <param name="obj">An object to check.</param>
+		/// <returns>True if the object implements IDispatch.  False otherwise.</returns>
+		public static bool ImplementsIDispatch(object obj)
+		{
+			bool result = obj is IDispatchInfo;
+			return result;
+		}
+
+		/// <summary>
+		/// Gets a Type that can be used with reflection.
+		/// </summary>
+		/// <param name="obj">An object that implements IDispatch.</param>
+		/// <param name="throwIfNotFound">Whether an exception should be thrown if a Type can't be obtained.</param>
+		/// <returns>A .NET Type that can be used with reflection.</returns>
+		/// <exception cref="InvalidCastException">If <paramref name="obj"/> doesn't implement IDispatch.</exception>
+		[SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
+		public static Type GetType(object obj, bool throwIfNotFound)
+		{
+			RequireReference(obj, "obj");
+			Type result = GetType((IDispatchInfo)obj, throwIfNotFound);
+			return result;
+		}
+
+		/// <summary>
+		/// Tries to get the DISPID for the requested member name.
+		/// </summary>
+		/// <param name="obj">An object that implements IDispatch.</param>
+		/// <param name="name">The name of a member to lookup.</param>
+		/// <param name="dispId">If the method returns true, this holds the DISPID on output.
+		/// If the method returns false, this value should be ignored.</param>
+		/// <returns>True if the member was found and resolved to a DISPID.  False otherwise.</returns>
+		/// <exception cref="InvalidCastException">If <paramref name="obj"/> doesn't implement IDispatch.</exception>
+		[SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
+		public static bool TryGetDispId(object obj, string name, out int dispId)
+		{
+			RequireReference(obj, "obj");
+			bool result = TryGetDispId((IDispatchInfo)obj, name, out dispId);
+			return result;
+		}
+
+		/// <summary>
+		/// Invokes a member by DISPID.
+		/// </summary>
+		/// <param name="obj">An object that implements IDispatch.</param>
+		/// <param name="dispId">The DISPID of a member.  This can be obtained using
+		/// <see cref="TryGetDispId(object, string, out int)"/>.</param>
+		/// <param name="args">The arguments to pass to the member.</param>
+		/// <returns>The member's return value.</returns>
+		/// <remarks>
+		/// This can invoke a method or a property get accessor.
+		/// </remarks>
+		public static object Invoke(object obj, int dispId, object[] args)
+		{
+			string memberName = "[DispId=" + dispId + "]";
+			object result = Invoke(obj, memberName, args);
+			return result;
+		}
+
+		/// <summary>
+		/// Invokes a member by name.
+		/// </summary>
+		/// <param name="obj">An object.</param>
+		/// <param name="memberName">The name of the member to invoke.</param>
+		/// <param name="args">The arguments to pass to the member.</param>
+		/// <returns>The member's return value.</returns>
+		/// <remarks>
+		/// This can invoke a method or a property get accessor.
+		/// </remarks>
+		public static object Invoke(object obj, string memberName, object[] args)
+		{
+			RequireReference(obj, "obj");
+			Type type = obj.GetType();
+			object result = type.InvokeMember(memberName, BindingFlags.InvokeMethod | BindingFlags.GetProperty,
+				null, obj, args, null);
+			return result;
+		}
+
+		#endregion
+
+		#region Private Methods
+
+		/// <summary>
+		/// Requires that the value is non-null.
+		/// </summary>
+		/// <typeparam name="T">The type of the value.</typeparam>
+		/// <param name="value">The value to check.</param>
+		/// <param name="name">The name of the value.</param>
+		private static void RequireReference<T>(T value, string name) where T : class
+		{
+			if (value == null)
+			{
+				throw new ArgumentNullException(name);
+			}
+		}
+
+		/// <summary>
+		/// Gets a Type that can be used with reflection.
+		/// </summary>
+		/// <param name="dispatch">An object that implements IDispatch.</param>
+		/// <param name="throwIfNotFound">Whether an exception should be thrown if a Type can't be obtained.</param>
+		/// <returns>A .NET Type that can be used with reflection.</returns>
+		private static Type GetType(IDispatchInfo dispatch, bool throwIfNotFound)
+		{
+			RequireReference(dispatch, "dispatch");
+
+			Type result = null;
+			int typeInfoCount;
+			int hr = dispatch.GetTypeInfoCount(out typeInfoCount);
+			if (hr == S_OK && typeInfoCount > 0)
+			{
+				// Type info isn't usually culture-aware for IDispatch, so we might as well pass
+				// the default locale instead of looking up the current thread's LCID each time
+				// (via CultureInfo.CurrentCulture.LCID).
+				dispatch.GetTypeInfo(0, LOCALE_SYSTEM_DEFAULT, out result);
+			}
+
+			if (result == null && throwIfNotFound)
+			{
+				// If the GetTypeInfoCount called failed, throw an exception for that.
+				Marshal.ThrowExceptionForHR(hr);
+
+				// Otherwise, throw the same exception that Type.GetType would throw.
+				throw new TypeLoadException();
+			}
+
+			return result;
+		}
+
+		/// <summary>
+		/// Tries to get the DISPID for the requested member name.
+		/// </summary>
+		/// <param name="dispatch">An object that implements IDispatch.</param>
+		/// <param name="name">The name of a member to lookup.</param>
+		/// <param name="dispId">If the method returns true, this holds the DISPID on output.
+		/// If the method returns false, this value should be ignored.</param>
+		/// <returns>True if the member was found and resolved to a DISPID.  False otherwise.</returns>
+		private static bool TryGetDispId(IDispatchInfo dispatch, string name, out int dispId)
+		{
+			RequireReference(dispatch, "dispatch");
+			RequireReference(name, "name");
+
+			bool result = false;
+
+			// Members names aren't usually culture-aware for IDispatch, so we might as well
+			// pass the default locale instead of looking up the current thread's LCID each time
+			// (via CultureInfo.CurrentCulture.LCID).
+			Guid iidNull = Guid.Empty;
+			int hr = dispatch.GetDispId(ref iidNull, ref name, 1, LOCALE_SYSTEM_DEFAULT, out dispId);
+
+			const int DISP_E_UNKNOWNNAME = unchecked((int)0x80020006); //From WinError.h
+			const int DISPID_UNKNOWN = -1; //From OAIdl.idl
+			if (hr == S_OK)
+			{
+				result = true;
+			}
+			else if (hr == DISP_E_UNKNOWNNAME && dispId == DISPID_UNKNOWN)
+			{
+				// This is the only supported "error" case because it means IDispatch
+				// is saying it doesn't know the member we asked about.
+				result = false;
+			}
+			else
+			{
+				// The other documented result codes are all errors.
+				Marshal.ThrowExceptionForHR(hr);
+			}
+
+			return result;
+		}
+
+		#endregion
+
+		#region Private Interfaces
+
+		/// <summary>
+		/// A partial declaration of IDispatch used to lookup Type information and DISPIDs.
+		/// </summary>
+		/// <remarks>
+		/// This interface only declares the first three methods of IDispatch.  It omits the
+		/// fourth method (Invoke) because there are already plenty of ways to do dynamic
+		/// invocation in .NET.  But the first three methods provide dynamic type metadata
+		/// discovery, which .NET doesn't provide normally if you have a System.__ComObject
+		/// RCW instead of a strongly-typed RCW.
+		/// <para/>
+		/// Note: The original declaration of IDispatch is in OAIdl.idl.
+		/// </remarks>
+		[ComImport]
+		[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
+		[Guid("00020400-0000-0000-C000-000000000046")]
+		private interface IDispatchInfo
+		{
+			/// <summary>
+			/// Gets the number of Types that the object provides (0 or 1).
+			/// </summary>
+			/// <param name="typeInfoCount">Returns 0 or 1 for the number of Types provided by <see cref="GetTypeInfo"/>.</param>
+			/// <remarks>
+			/// http://msdn.microsoft.com/en-us/library/da876d53-cb8a-465c-a43e-c0eb272e2a12(VS.85)
+			/// </remarks>
+			[PreserveSig]
+			int GetTypeInfoCount(out int typeInfoCount);
+
+			/// <summary>
+			/// Gets the Type information for an object if <see cref="GetTypeInfoCount"/> returned 1.
+			/// </summary>
+			/// <param name="typeInfoIndex">Must be 0.</param>
+			/// <param name="lcid">Typically, LOCALE_SYSTEM_DEFAULT (2048).</param>
+			/// <param name="typeInfo">Returns the object's Type information.</param>
+			/// <remarks>
+			/// http://msdn.microsoft.com/en-us/library/cc1ec9aa-6c40-4e70-819c-a7c6dd6b8c99(VS.85)
+			/// </remarks>
+			void GetTypeInfo(int typeInfoIndex, int lcid, [MarshalAs(UnmanagedType.CustomMarshaler,
+				MarshalTypeRef = typeof(System.Runtime.InteropServices.CustomMarshalers.TypeToTypeInfoMarshaler))] out Type typeInfo);
+
+			/// <summary>
+			/// Gets the DISPID of the specified member name.
+			/// </summary>
+			/// <param name="riid">Must be IID_NULL.  Pass a copy of Guid.Empty.</param>
+			/// <param name="name">The name of the member to look up.</param>
+			/// <param name="nameCount">Must be 1.</param>
+			/// <param name="lcid">Typically, LOCALE_SYSTEM_DEFAULT (2048).</param>
+			/// <param name="dispId">If a member with the requested <paramref name="name"/>
+			/// is found, this returns its DISPID and the method's return value is 0.
+			/// If the method returns a non-zero value, then this parameter's output value is
+			/// undefined.</param>
+			/// <returns>Zero for success. Non-zero for failure.</returns>
+			/// <remarks>
+			/// http://msdn.microsoft.com/en-us/library/6f6cf233-3481-436e-8d6a-51f93bf91619(VS.85)
+			/// </remarks>
+			[PreserveSig]
+			int GetDispId(ref Guid riid, ref string name, int nameCount, int lcid, out int dispId);
+
+			// NOTE: The real IDispatch also has an Invoke method next, but we don't need it.
+			// We can invoke methods using .NET's Type.InvokeMember method with the special
+			// [DISPID=n] syntax for member "names", or we can get a .NET Type using GetTypeInfo
+			// and invoke methods on that through reflection.
+			// Type.InvokeMember: http://msdn.microsoft.com/en-us/library/de3dhzwy.aspx
+		}
+
+		#endregion
+	}
+}
diff --git a/indra/tools/vstool/app.config b/indra/tools/vstool/app.config
new file mode 100644
index 0000000000000000000000000000000000000000..8494f728ff7ce3e60da1403d2d5f47f8833bae43
--- /dev/null
+++ b/indra/tools/vstool/app.config
@@ -0,0 +1,3 @@
+<?xml version="1.0"?>
+<configuration>
+<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
diff --git a/scripts/messages/message_template.msg b/scripts/messages/message_template.msg
index 3cec4ada1c3dd9c1dcbd178fe09a753673eca05b..fbbc385e5baf99f3769466e3d3b225866d46b990 100755
--- a/scripts/messages/message_template.msg
+++ b/scripts/messages/message_template.msg
@@ -4245,6 +4245,10 @@ version 2.0
 		{	ObjectOwner		Variable	1	}
 		{	Questions		S32	}
 	}
+	{
+		Experience	Single
+		{	ExperienceID	LLUUID	}
+	}
 }
 
 // ScriptControlChange
diff --git a/scripts/messages/message_template.msg.sha1 b/scripts/messages/message_template.msg.sha1
index e699efb03c588f0713f4121b73f674581468ef36..2c6489906c6db692017be9c5aa9bcde99ad9770c 100755
--- a/scripts/messages/message_template.msg.sha1
+++ b/scripts/messages/message_template.msg.sha1
@@ -1 +1 @@
-2286adc795b1b06eb86fdda431a71a6f0874b4f1
\ No newline at end of file
+845459c1bb7fe8174fb493528fe2a214015f996d
\ No newline at end of file