diff --git a/doc/contributions.txt b/doc/contributions.txt index 2e4d80325253576e7ffbcd441766c2b5b50d0e88..ef9f09bd2325beaa8ac08a1f07f665c53f554466 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -17,11 +17,11 @@ Agathos Frascati CT-317 CT-352 Aimee Trescothick - VWR-1813 VWR-3321 VWR-3336 VWR-3903 VWR-4083 + VWR-4106 VWR-6348 VWR-6358 VWR-6360 @@ -42,9 +42,12 @@ Aimee Trescothick VWR-11100 VWR-11111 VWR-11844 + VWR-12631 + VWR-12696 + VWR-12748 + VWR-14087 VWR-14267 VWR-14278 - VWR-14087 Alejandro Rosenthal VWR-1184 Aleric Inglewood diff --git a/indra/llaudio/llaudioengine.cpp b/indra/llaudio/llaudioengine.cpp index ed06c85e1a844b1ca307c90e7f382a6c71e86aba..b92ccd1d7777bea54b9c4a83333b17e1a791a90f 100644 --- a/indra/llaudio/llaudioengine.cpp +++ b/indra/llaudio/llaudioengine.cpp @@ -592,7 +592,7 @@ LLAudioBuffer * LLAudioEngine::getFreeBuffer() if (buffer_id >= 0) { - llinfos << "Taking over unused buffer " << buffer_id << llendl; + lldebugs << "Taking over unused buffer " << buffer_id << llendl; //llinfos << "Flushing unused buffer!" << llendl; mBuffers[buffer_id]->mAudioDatap->mBufferp = NULL; delete mBuffers[buffer_id]; diff --git a/indra/llcommon/llcursortypes.cpp b/indra/llcommon/llcursortypes.cpp index 23ede97af3ae81dbd3dab3c31134e423a1969c8d..6751c235f6be8807556a76c0c81209cbea075aad 100644 --- a/indra/llcommon/llcursortypes.cpp +++ b/indra/llcommon/llcursortypes.cpp @@ -72,6 +72,9 @@ ECursorType getCursorFromString(const std::string& cursor_string) cursor_string_table["UI_CURSOR_TOOLPAUSE"] = UI_CURSOR_TOOLPAUSE; cursor_string_table["UI_CURSOR_TOOLMEDIAOPEN"] = UI_CURSOR_TOOLMEDIAOPEN; cursor_string_table["UI_CURSOR_PIPETTE"] = UI_CURSOR_PIPETTE; + cursor_string_table["UI_CURSOR_TOOLSIT"] = UI_CURSOR_TOOLSIT; + cursor_string_table["UI_CURSOR_TOOLBUY"] = UI_CURSOR_TOOLBUY; + cursor_string_table["UI_CURSOR_TOOLOPEN"] = UI_CURSOR_TOOLOPEN; } std::map<std::string,U32>::const_iterator iter = cursor_string_table.find(cursor_string); diff --git a/indra/llcommon/llcursortypes.h b/indra/llcommon/llcursortypes.h index a1b8178bfe65365b4ca81e8881814be50f4b8f49..143c2c64cffba6a1d442e91d1fda329d4ce05e83 100644 --- a/indra/llcommon/llcursortypes.h +++ b/indra/llcommon/llcursortypes.h @@ -68,6 +68,9 @@ enum ECursorType { UI_CURSOR_TOOLPAUSE, UI_CURSOR_TOOLMEDIAOPEN, UI_CURSOR_PIPETTE, + UI_CURSOR_TOOLSIT, + UI_CURSOR_TOOLBUY, + UI_CURSOR_TOOLOPEN, UI_CURSOR_COUNT // Number of elements in this enum (NOT a cursor) }; diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 0ed700b9da82ec7db79fa0b889b51f3020af7b5f..0272c55db21a812978de298b25463be1dd13429b 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -775,33 +775,6 @@ void LLMemoryInfo::stream(std::ostream& s) const #endif } -S32 LLDisplayInfo::getDisplayWidth() const -{ -#if LL_WINDOWS - return ::GetSystemMetrics(SM_CXVIRTUALSCREEN); -#elif LL_DARWIN - return 1024; //*FIXME -#elif LL_SOLARIS - return 1024; //*FIXME -#else - return 1024; //*FIXME -#endif -} - -S32 LLDisplayInfo::getDisplayHeight() const -{ -#if LL_WINDOWS - return ::GetSystemMetrics(SM_CYVIRTUALSCREEN); -#elif LL_DARWIN - return 768; //*FIXME -#elif LL_SOLARIS - return 768; //*FIXME -#else - return 768; //*FIXME -#endif -} - - std::ostream& operator<<(std::ostream& s, const LLOSInfo& info) { info.stream(s); diff --git a/indra/llcommon/llsys.h b/indra/llcommon/llsys.h index aa3fdd485bca84d7c6088daaf80890be06a5edf6..c2c45bec9a2a01ea8ce735a70d4d0995176a0a56 100644 --- a/indra/llcommon/llsys.h +++ b/indra/llcommon/llsys.h @@ -122,21 +122,6 @@ class LL_COMMON_API LLMemoryInfo U32 getPhysicalMemoryClamped() const; ///< Memory size in clamped bytes }; -//============================================================================= -// -// CLASS LLDisplayInfo -class LL_COMMON_API LLDisplayInfo - -/*! @brief Class to query the information about some display settings -*/ -{ -public: - LLDisplayInfo(){}; ///< Default constructor - - S32 getDisplayWidth() const; ///< display width - S32 getDisplayHeight() const; ///< display height - -}; LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info); LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info); diff --git a/indra/llcommon/llworkerthread.cpp b/indra/llcommon/llworkerthread.cpp index 411977474b5e4ab26976531e56ee08449d6f2c99..2629237f7ebbe56d8e33b6acf6d47e39383a9fd9 100644 --- a/indra/llcommon/llworkerthread.cpp +++ b/indra/llcommon/llworkerthread.cpp @@ -347,12 +347,12 @@ bool LLWorkerClass::checkWork(bool aborting) { mRequestHandle = LLWorkerThread::nullHandle(); clearFlags(WCF_HAVE_WORK); - return true ; } else { llassert_always(workreq); } + return true ; } LLQueuedThread::status_t status = workreq->getStatus(); diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index 5649b4cab7e7eaac7576de253008041cf873174d..7d0de18c7cb98ea3dfac889a30b5ab8ebccb7bd7 100644 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -157,8 +157,9 @@ U8* LLImageBase::allocateData(S32 size) llerrs << llformat("LLImageBase::allocateData called with bad dimensions: %dx%dx%d",mWidth,mHeight,mComponents) << llendl; } } - else if (size <= 0 || (size > 4096*4096*16 && sSizeOverride == FALSE)) + if (size < 1 || (size > 4096*4096*16 && sSizeOverride == FALSE)) { + llinfos << "width: " << mWidth << " height: " << mHeight << " components: " << mComponents << llendl ; llerrs << "LLImageBase::allocateData: bad size: " << size << llendl; } diff --git a/indra/llmessage/llinstantmessage.cpp b/indra/llmessage/llinstantmessage.cpp index a9e1ee77efef16e3cf9e26c5617819927a718537..57e8a225463b40262e43cb16bae1000a5cbb25db 100644 --- a/indra/llmessage/llinstantmessage.cpp +++ b/indra/llmessage/llinstantmessage.cpp @@ -61,6 +61,7 @@ const char EMPTY_BINARY_BUCKET[] = ""; const S32 EMPTY_BINARY_BUCKET_SIZE = 1; const U32 NO_TIMESTAMP = 0; const std::string SYSTEM_FROM("Second Life"); +const std::string INTERACTIVE_SYSTEM_FROM("F387446C-37C4-45f2-A438-D99CBDBB563B"); const S32 IM_TTL = 1; diff --git a/indra/llmessage/llinstantmessage.h b/indra/llmessage/llinstantmessage.h index 272e753f3cd8789a68e8f33fbe094a61bd831eec..f11b649f78d4a0ae08d29df718b461c82f4d804c 100644 --- a/indra/llmessage/llinstantmessage.h +++ b/indra/llmessage/llinstantmessage.h @@ -226,6 +226,7 @@ extern const S32 EMPTY_BINARY_BUCKET_SIZE; extern const U32 NO_TIMESTAMP; extern const std::string SYSTEM_FROM; +extern const std::string INTERACTIVE_SYSTEM_FROM; // Number of retry attempts on sending the im. extern const S32 IM_TTL; diff --git a/indra/llmessage/lltemplatemessagebuilder.cpp b/indra/llmessage/lltemplatemessagebuilder.cpp index 55379fc6fdcb6beaa487191899b153410b3ef813..fa02456d90c93d02fbf2539b4005edb10029a512 100644 --- a/indra/llmessage/lltemplatemessagebuilder.cpp +++ b/indra/llmessage/lltemplatemessagebuilder.cpp @@ -326,7 +326,7 @@ void LLTemplateMessageBuilder::addData(const char *varname, const void *data, EM << "(" << size << "). Clamping size and truncating data." << llendl; size = 255; char *truncate = (char *)data; - truncate[255] = 0; + truncate[254] = 0; // array size is 255 but the last element index is 254 } // no correct size for MVT_VARIABLE, instead we need to tell how many bytes the size will be encoded as diff --git a/indra/llmessage/lltemplatemessagereader.cpp b/indra/llmessage/lltemplatemessagereader.cpp index 6682575ca58c71fe2a3dd833ce603f4ca1331452..8f56cf252172aa2d9090b4462eb0f2b1be632253 100644 --- a/indra/llmessage/lltemplatemessagereader.cpp +++ b/indra/llmessage/lltemplatemessagereader.cpp @@ -433,10 +433,9 @@ inline void LLTemplateMessageReader::getString(const char *block, const char *va inline void LLTemplateMessageReader::getString(const char *block, const char *var, std::string& outstr, S32 blocknum ) { - char s[MTUBYTES]; - s[0] = '\0'; + char s[MTUBYTES + 1]= {0}; // every element is initialized with 0 getData(block, var, s, 0, blocknum, MTUBYTES); - s[MTUBYTES - 1] = '\0'; + s[MTUBYTES] = '\0'; outstr = s; } diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 6a2449cf4b33c0f8009c6b91b024cd3e4d855f9e..bf0e19473ee6bad521d1697bf11b5ddeb9c5610f 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -65,15 +65,19 @@ LLPluginClassMedia::~LLPluginClassMedia() reset(); } -bool LLPluginClassMedia::init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug, const std::string &user_data_path) +bool LLPluginClassMedia::init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug) { LL_DEBUGS("Plugin") << "launcher: " << launcher_filename << LL_ENDL; LL_DEBUGS("Plugin") << "plugin: " << plugin_filename << LL_ENDL; - LL_DEBUGS("Plugin") << "user_data_path: " << user_data_path << LL_ENDL; mPlugin = new LLPluginProcessParent(this); mPlugin->setSleepTime(mSleepTime); - mPlugin->init(launcher_filename, plugin_filename, debug, user_data_path); + + // Queue up the media init message -- it will be sent after all the currently queued messages. + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "init"); + sendMessage(message); + + mPlugin->init(launcher_filename, plugin_filename, debug); return true; } @@ -678,6 +682,34 @@ void LLPluginClassMedia::paste() sendMessage(message); } +void LLPluginClassMedia::setUserDataPath(const std::string &user_data_path) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "set_user_data_path"); + message.setValue("path", user_data_path); + sendMessage(message); +} + +void LLPluginClassMedia::setLanguageCode(const std::string &language_code) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "set_language_code"); + message.setValue("language", language_code); + sendMessage(message); +} + +void LLPluginClassMedia::setPluginsEnabled(const bool enabled) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "plugins_enabled"); + message.setValueBoolean("enable", enabled); + sendMessage(message); +} + +void LLPluginClassMedia::setJavascriptEnabled(const bool enabled) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "javascript_enabled"); + message.setValueBoolean("enable", enabled); + sendMessage(message); +} + LLPluginClassMedia::ETargetType getTargetTypeFromLLQtWebkit(int target_type) { // convert a LinkTargetType value from llqtwebkit to an ETargetType @@ -1047,6 +1079,7 @@ void LLPluginClassMedia::clear_cookies() void LLPluginClassMedia::enable_cookies(bool enable) { LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA_BROWSER, "enable_cookies"); + message.setValueBoolean("enable", enable); sendMessage(message); } diff --git a/indra/llplugin/llpluginclassmedia.h b/indra/llplugin/llpluginclassmedia.h index 58e91fa0b433bae23ab10b404ce62cf4ad1affb0..79356beb6843081048c2221d00dd035007eba878 100644 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -49,7 +49,9 @@ class LLPluginClassMedia : public LLPluginProcessParentOwner virtual ~LLPluginClassMedia(); // local initialization, called by the media manager when creating a source - virtual bool init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug, const std::string &user_data_path); + virtual bool init(const std::string &launcher_filename, + const std::string &plugin_filename, + bool debug); // undoes everything init() didm called by the media manager when destroying a source virtual void reset(); @@ -173,6 +175,12 @@ class LLPluginClassMedia : public LLPluginProcessParentOwner void paste(); bool canPaste() const { return mCanPaste; }; + + // These can be called before init(), and they will be queued and sent before the media init message. + void setUserDataPath(const std::string &user_data_path); + void setLanguageCode(const std::string &language_code); + void setPluginsEnabled(const bool enabled); + void setJavascriptEnabled(const bool enabled); /////////////////////////////////// // media browser class functions diff --git a/indra/llplugin/llpluginprocesschild.cpp b/indra/llplugin/llpluginprocesschild.cpp index 52b5a319ecbc5aff9da0bd546ccf88c50b24e80c..ccaf95b36ded8c072865cb1a954041650126dce1 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -155,7 +155,6 @@ void LLPluginProcessChild::idle(void) { setState(STATE_PLUGIN_INITIALIZING); LLPluginMessage message("base", "init"); - message.setValue("user_data_path", mUserDataPath); sendMessageToPlugin(message); } break; @@ -328,7 +327,6 @@ void LLPluginProcessChild::receiveMessageRaw(const std::string &message) if(message_name == "load_plugin") { mPluginFile = parsed.getValue("file"); - mUserDataPath = parsed.getValue("user_data_path"); } else if(message_name == "shm_add") { diff --git a/indra/llplugin/llpluginprocesschild.h b/indra/llplugin/llpluginprocesschild.h index 58f8935ed1aa554f4b536e5b397776615550936a..0e5e85406a671fa00f0b33ac1357e5ca17695e8a 100644 --- a/indra/llplugin/llpluginprocesschild.h +++ b/indra/llplugin/llpluginprocesschild.h @@ -98,8 +98,6 @@ class LLPluginProcessChild: public LLPluginMessagePipeOwner, public LLPluginInst std::string mPluginFile; - std::string mUserDataPath; - LLPluginInstance *mInstance; typedef std::map<std::string, LLPluginSharedMemory*> sharedMemoryRegionsType; diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp index efd5df687e5318183783def3442ebcdc859b199f..895c858979026645dfc5632e6707ae2cc7fd773e 100644 --- a/indra/llplugin/llpluginprocessparent.cpp +++ b/indra/llplugin/llpluginprocessparent.cpp @@ -98,14 +98,12 @@ void LLPluginProcessParent::errorState(void) setState(STATE_ERROR); } -void LLPluginProcessParent::init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug, const std::string &user_data_path) +void LLPluginProcessParent::init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug) { mProcess.setExecutable(launcher_filename); mPluginFile = plugin_filename; mCPUUsage = 0.0f; - mDebug = debug; - mUserDataPath = user_data_path; - + mDebug = debug; setState(STATE_INITIALIZED); } @@ -362,7 +360,6 @@ void LLPluginProcessParent::idle(void) { LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_INTERNAL, "load_plugin"); message.setValue("file", mPluginFile); - message.setValue("user_data_path", mUserDataPath); sendMessage(message); } diff --git a/indra/llplugin/llpluginprocessparent.h b/indra/llplugin/llpluginprocessparent.h index 524cd9923fb5e7e80f89d042d45695c5f70311f9..cc6c513615747283dfd71c9e504841168697ffb3 100644 --- a/indra/llplugin/llpluginprocessparent.h +++ b/indra/llplugin/llpluginprocessparent.h @@ -59,7 +59,10 @@ class LLPluginProcessParent : public LLPluginMessagePipeOwner LLPluginProcessParent(LLPluginProcessParentOwner *owner); ~LLPluginProcessParent(); - void init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug, const std::string &user_data_path); + void init(const std::string &launcher_filename, + const std::string &plugin_filename, + bool debug); + void idle(void); // returns true if the plugin is on its way to steady state @@ -143,8 +146,6 @@ class LLPluginProcessParent : public LLPluginMessagePipeOwner std::string mPluginFile; - std::string mUserDataPath; - LLPluginProcessParentOwner *mOwner; typedef std::map<std::string, LLPluginSharedMemory*> sharedMemoryRegionsType; diff --git a/indra/llrender/llfontgl.cpp b/indra/llrender/llfontgl.cpp index 768f042e69c0dab2fcc1ca8f916cc9ca27d51d82..d9e1976341a23840deca771fd8aada9ffbd8f886 100644 --- a/indra/llrender/llfontgl.cpp +++ b/indra/llrender/llfontgl.cpp @@ -673,7 +673,7 @@ S32 LLFontGL::charFromPixelOffset(const llwchar* wchars, S32 begin_offset, F32 t target_x *= sScaleX; // max_chars is S32_MAX by default, so make sure we don't get overflow - const S32 max_index = begin_offset + llmin(S32_MAX - begin_offset, max_chars); + const S32 max_index = begin_offset + llmin(S32_MAX - begin_offset, max_chars - 1); F32 scaled_max_pixels = max_pixels * sScaleX; diff --git a/indra/llrender/llfontregistry.cpp b/indra/llrender/llfontregistry.cpp index 7a3d6ec4f2d09356a92b0566775a1571ebbe4f04..e619f89e1d643e9814c1f46e820ca398dcb86d5e 100644 --- a/indra/llrender/llfontregistry.cpp +++ b/indra/llrender/llfontregistry.cpp @@ -469,6 +469,8 @@ LLFontGL *LLFontRegistry::createFont(const LLFontDescriptor& desc) else { fontlist.push_back(fontp->mFontFreetype); + delete fontp; + fontp = NULL; } } } diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp index 656f690db53d6a6ce3e51b7929ea470f00590a87..c3540a717cbfb0bd34b7d05bac13db5f368e309c 100644 --- a/indra/llrender/llrender.cpp +++ b/indra/llrender/llrender.cpp @@ -121,6 +121,8 @@ void LLTexUnit::refreshState(void) // We set dirty to true so that the tex unit knows to ignore caching // and we reset the cached tex unit state + gGL.flush(); + glActiveTextureARB(GL_TEXTURE0_ARB + mIndex); if (mCurrTexType != TT_NONE) { @@ -150,6 +152,7 @@ void LLTexUnit::activate(void) if ((S32)gGL.mCurrTextureUnitIndex != mIndex || gGL.mDirty) { + gGL.flush(); glActiveTextureARB(GL_TEXTURE0_ARB + mIndex); gGL.mCurrTextureUnitIndex = mIndex; } @@ -181,6 +184,7 @@ void LLTexUnit::disable(void) { activate(); unbind(mCurrTexType); + gGL.flush(); glDisable(sGLTextureType[mCurrTexType]); mCurrTexType = TT_NONE; } @@ -386,6 +390,8 @@ void LLTexUnit::setTextureAddressMode(eTextureAddressMode mode) { if (mIndex < 0 || mCurrTexture == 0) return; + gGL.flush(); + activate(); glTexParameteri (sGLTextureType[mCurrTexType], GL_TEXTURE_WRAP_S, sGLAddressMode[mode]); @@ -400,6 +406,8 @@ void LLTexUnit::setTextureFilteringOption(LLTexUnit::eTextureFilterOptions optio { if (mIndex < 0 || mCurrTexture == 0) return; + gGL.flush(); + if (option == TFO_POINT) { glTexParameteri(sGLTextureType[mCurrTexType], GL_TEXTURE_MAG_FILTER, GL_NEAREST); @@ -567,6 +575,7 @@ void LLTexUnit::setTextureCombiner(eTextureBlendOp op, eTextureBlendSrc src1, eT if (mCurrBlendType != TB_COMBINE || gGL.mDirty) { mCurrBlendType = TB_COMBINE; + gGL.flush(); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_ARB); } @@ -577,6 +586,8 @@ void LLTexUnit::setTextureCombiner(eTextureBlendOp op, eTextureBlendSrc src1, eT return; } + gGL.flush(); + // Get the gl source enums according to the eTextureBlendSrc sources passed in GLint source1 = getTextureSource(src1); GLint source2 = getTextureSource(src2); @@ -709,6 +720,7 @@ void LLTexUnit::setColorScale(S32 scale) if (mCurrColorScale != scale || gGL.mDirty) { mCurrColorScale = scale; + gGL.flush(); glTexEnvi( GL_TEXTURE_ENV, GL_RGB_SCALE, scale ); } } @@ -718,6 +730,7 @@ void LLTexUnit::setAlphaScale(S32 scale) if (mCurrAlphaScale != scale || gGL.mDirty) { mCurrAlphaScale = scale; + gGL.flush(); glTexEnvi( GL_TEXTURE_ENV, GL_ALPHA_SCALE, scale ); } } @@ -853,7 +866,15 @@ void LLRender::scaleUI(F32 x, F32 y, F32 z) void LLRender::pushUIMatrix() { - mUIOffset.push_front(mUIOffset.front()); + if (mUIOffset.empty()) + { + mUIOffset.push_front(LLVector3(0,0,0)); + } + else + { + mUIOffset.push_front(mUIOffset.front()); + } + if (mUIScale.empty()) { mUIScale.push_front(LLVector3(1,1,1)); @@ -1105,6 +1126,33 @@ void LLRender::flush() sUICalls++; sUIVerts += mCount; } + + if (gDebugGL) + { + if (mMode == LLRender::QUADS) + { + if (mCount%4 != 0) + { + llerrs << "Incomplete quad rendered." << llendl; + } + } + + if (mMode == LLRender::TRIANGLES) + { + if (mCount%3 != 0) + { + llerrs << "Incomplete triangle rendered." << llendl; + } + } + + if (mMode == LLRender::LINES) + { + if (mCount%2 != 0) + { + llerrs << "Incomplete line rendered." << llendl; + } + } + } mBuffer->setBuffer(immediate_mask); mBuffer->drawArrays(mMode, 0, mCount); diff --git a/indra/llui/llaccordionctrltab.cpp b/indra/llui/llaccordionctrltab.cpp index 1067c3f1d500aa5164c4924867f19eef3ae89896..e12776f83ab5c83a21d4f895e9c8bb9d00894b9e 100644 --- a/indra/llui/llaccordionctrltab.cpp +++ b/indra/llui/llaccordionctrltab.cpp @@ -826,9 +826,6 @@ void LLAccordionCtrlTab::draw() LLLocalClipRect clip(child_rect); drawChild(root_rect,mContainerPanel); } - - - gGL.getTexUnit(0)->disable(); } } diff --git a/indra/llui/llbutton.h b/indra/llui/llbutton.h index 6a0d8ef3d65d1d07bb1d9ea1784afc6b6d8c4ce5..6a1e3a9425b200e55b0232d2d611839b34f29edd 100644 --- a/indra/llui/llbutton.h +++ b/indra/llui/llbutton.h @@ -216,7 +216,8 @@ class LLButton void setImageOverlay(const std::string& image_name, LLFontGL::HAlign alignment = LLFontGL::HCENTER, const LLColor4& color = LLColor4::white); void setImageOverlay(const LLUUID& image_id, LLFontGL::HAlign alignment = LLFontGL::HCENTER, const LLColor4& color = LLColor4::white); LLPointer<LLUIImage> getImageOverlay() { return mImageOverlay; } - + LLFontGL::HAlign getImageOverlayHAlign() const { return mImageOverlayAlignment; } + void autoResize(); // resize with label of current btn state void resize(LLUIString label); // resize with label input void setLabel( const LLStringExplicit& label); diff --git a/indra/llui/llcombobox.cpp b/indra/llui/llcombobox.cpp index 466332a468cccedd43c1d0f7fda1ffcef158177d..9127a22875be9b532d4ed9031adce93c269e915d 100644 --- a/indra/llui/llcombobox.cpp +++ b/indra/llui/llcombobox.cpp @@ -321,15 +321,19 @@ void LLComboBox::setValue(const LLSD& value) LLScrollListItem* item = mList->getFirstSelected(); if (item) { - setLabel( mList->getSelectedItemLabel() ); + setLabel(getSelectedItemLabel()); } mLastSelectedIndex = mList->getFirstSelectedIndex(); } + else + { + mLastSelectedIndex = -1; + } } const std::string LLComboBox::getSimple() const { - const std::string res = mList->getSelectedItemLabel(); + const std::string res = getSelectedItemLabel(); if (res.empty() && mAllowTextEntry) { return mTextEntry->getText(); @@ -408,7 +412,7 @@ BOOL LLComboBox::remove(S32 index) if (index < mList->getItemCount()) { mList->deleteSingleItem(index); - setLabel(mList->getSelectedItemLabel()); + setLabel(getSelectedItemLabel()); return TRUE; } return FALSE; @@ -449,7 +453,7 @@ BOOL LLComboBox::setCurrentByIndex( S32 index ) BOOL found = mList->selectNthItem( index ); if (found) { - setLabel(mList->getSelectedItemLabel()); + setLabel(getSelectedItemLabel()); mLastSelectedIndex = index; } return found; @@ -700,13 +704,10 @@ void LLComboBox::onListMouseUp() void LLComboBox::onItemSelected(const LLSD& data) { - const std::string name = mList->getSelectedItemLabel(); - - S32 cur_id = getCurrentIndex(); - mLastSelectedIndex = cur_id; - if (cur_id != -1) + mLastSelectedIndex = getCurrentIndex(); + if (mLastSelectedIndex != -1) { - setLabel(name); + setLabel(getSelectedItemLabel()); if (mAllowTextEntry) { @@ -714,7 +715,6 @@ void LLComboBox::onItemSelected(const LLSD& data) mTextEntry->selectAll(); } } - // hiding the list reasserts the old value stored in the text editor/dropdown button hideList(); @@ -909,7 +909,7 @@ void LLComboBox::updateSelection() } else if (mList->selectItemByPrefix(left_wstring, FALSE)) { - LLWString selected_item = utf8str_to_wstring(mList->getSelectedItemLabel()); + LLWString selected_item = utf8str_to_wstring(getSelectedItemLabel()); LLWString wtext = left_wstring + selected_item.substr(left_wstring.size(), selected_item.size()); mTextEntry->setText(wstring_to_utf8str(wtext)); mTextEntry->setSelection(left_wstring.size(), mTextEntry->getWText().size()); @@ -1011,7 +1011,7 @@ BOOL LLComboBox::setCurrentByID(const LLUUID& id) if (found) { - setLabel(mList->getSelectedItemLabel()); + setLabel(getSelectedItemLabel()); mLastSelectedIndex = mList->getFirstSelectedIndex(); } @@ -1027,7 +1027,7 @@ BOOL LLComboBox::setSelectedByValue(const LLSD& value, BOOL selected) BOOL found = mList->setSelectedByValue(value, selected); if (found) { - setLabel(mList->getSelectedItemLabel()); + setLabel(getSelectedItemLabel()); } return found; } @@ -1066,3 +1066,24 @@ BOOL LLComboBox::selectItemRange( S32 first, S32 last ) { return mList->selectItemRange(first, last); } + + +static LLDefaultChildRegistry::Register<LLIconsComboBox> register_icons_combo_box("icons_combo_box"); + +LLIconsComboBox::Params::Params() +: icon_column("icon_column", ICON_COLUMN), + label_column("label_column", LABEL_COLUMN) +{} + +LLIconsComboBox::LLIconsComboBox(const LLIconsComboBox::Params& p) +: LLComboBox(p), + mIconColumnIndex(p.icon_column), + mLabelColumnIndex(p.label_column) +{} + +const std::string LLIconsComboBox::getSelectedItemLabel(S32 column) const +{ + mButton->setImageOverlay(LLComboBox::getSelectedItemLabel(mIconColumnIndex), mButton->getImageOverlayHAlign()); + + return LLComboBox::getSelectedItemLabel(mLabelColumnIndex); +} diff --git a/indra/llui/llcombobox.h b/indra/llui/llcombobox.h index 3ed273404cb8e3e64abf69aa58c7f9417fd4da1f..7f93cd1477751426d155039f1b417023367c4635 100644 --- a/indra/llui/llcombobox.h +++ b/indra/llui/llcombobox.h @@ -147,7 +147,7 @@ class LLComboBox // Get name of current item. Returns an empty string if not found. const std::string getSimple() const; // Get contents of column x of selected row - const std::string getSelectedItemLabel(S32 column = 0) const; + virtual const std::string getSelectedItemLabel(S32 column = 0) const; // Sets the label, which doesn't have to exist in the label. // This is probably a UI abuse. @@ -230,4 +230,35 @@ class LLComboBox boost::signals2::connection mTopLostSignalConnection; S32 mLastSelectedIndex; }; + +// A combo box with icons for the list of items. +class LLIconsComboBox +: public LLComboBox +{ +public: + struct Params + : public LLInitParam::Block<Params, LLComboBox::Params> + { + Optional<S32> icon_column, + label_column; + Params(); + }; + + /*virtual*/ const std::string getSelectedItemLabel(S32 column = 0) const; + +private: + enum EColumnIndex + { + ICON_COLUMN = 0, + LABEL_COLUMN + }; + + friend class LLUICtrlFactory; + LLIconsComboBox(const Params&); + virtual ~LLIconsComboBox() {}; + + S32 mIconColumnIndex; + S32 mLabelColumnIndex; +}; + #endif diff --git a/indra/llui/llflatlistview.cpp b/indra/llui/llflatlistview.cpp index 2481249f91dfd1859bf54dddd5b60358e9ebd0b1..2e5aeec41d8da155d2fd8a04b5d0deadd6dc26c8 100644 --- a/indra/llui/llflatlistview.cpp +++ b/indra/llui/llflatlistview.cpp @@ -492,6 +492,12 @@ void LLFlatListView::onItemMouseClick(item_pair_t* item_pair, MASK mask) { if (!item_pair) return; + if (!item_pair->first) + { + llwarning("Attempt to selet an item pair containing null panel item", 0); + return; + } + setFocus(TRUE); bool select_item = !isSelected(item_pair); diff --git a/indra/llui/llmultifloater.cpp b/indra/llui/llmultifloater.cpp index 33d47a3f0e3a955170d42d59b685c2fb34d4b452..4af9108329ae6dbb131150a8764fc7d8d04942ea 100644 --- a/indra/llui/llmultifloater.cpp +++ b/indra/llui/llmultifloater.cpp @@ -352,6 +352,13 @@ BOOL LLMultiFloater::handleKeyHere(KEY key, MASK mask) if (floater && floater->canClose() && floater->isCloseable()) { floater->closeFloater(); + + // EXT-5695 (Tabbed IM window loses focus if close any tabs by Ctrl+W) + // bring back focus on tab container if there are any tab left + if(mTabContainer->getTabCount() > 0) + { + mTabContainer->setFocus(TRUE); + } } return TRUE; } diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 5816cef6affe94476ce0005c21e329893215d413..d7424cf05a90329c3075277e0bde564dca8b7616 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -402,7 +402,9 @@ LLNotification::LLNotification(const LLNotification::Params& p) : mRespondedTo(false), mPriority(p.priority), mCancelled(false), - mIgnored(false) + mIgnored(false), + mResponderObj(NULL), + mIsReusable(false) { if (p.functor.name.isChosen()) { @@ -416,6 +418,11 @@ LLNotification::LLNotification(const LLNotification::Params& p) : mTemporaryResponder = true; } + if(p.responder.isProvided()) + { + mResponderObj = p.responder; + } + mId.generate(); init(p.name, p.form_elements); } @@ -425,7 +432,9 @@ LLNotification::LLNotification(const LLSD& sd) : mTemporaryResponder(false), mRespondedTo(false), mCancelled(false), - mIgnored(false) + mIgnored(false), + mResponderObj(NULL), + mIsReusable(false) { mId.generate(); mSubstitutions = sd["substitutions"]; @@ -452,6 +461,7 @@ LLSD LLNotification::asLLSD() output["expiry"] = mExpiresAt; output["priority"] = (S32)mPriority; output["responseFunctor"] = mResponseFunctorName; + output["reusable"] = mIsReusable; return output; } @@ -479,7 +489,9 @@ void LLNotification::updateFrom(LLNotificationPtr other) mForm = other->mForm; mResponseFunctorName = other->mResponseFunctorName; mRespondedTo = other->mRespondedTo; + mResponse = other->mResponse; mTemporaryResponder = other->mTemporaryResponder; + mIsReusable = other->isReusable(); update(); } @@ -556,14 +568,16 @@ std::string LLNotification::getSelectedOptionName(const LLSD& response) void LLNotification::respond(const LLSD& response) { + // *TODO may remove mRespondedTo and use mResponce.isDefined() in isRespondedTo() mRespondedTo = true; + mResponse = response; // look up the functor LLNotificationFunctorRegistry::ResponseFunctor functor = LLNotificationFunctorRegistry::instance().getFunctor(mResponseFunctorName); // and then call it functor(asLLSD(), response); - if (mTemporaryResponder) + if (mTemporaryResponder && !isReusable()) { LLNotificationFunctorRegistry::instance().unregisterFunctor(mResponseFunctorName); mResponseFunctorName = ""; @@ -597,6 +611,16 @@ void LLNotification::setResponseFunctor(std::string const &responseFunctorName) mTemporaryResponder = false; } +void LLNotification::setResponseFunctor(const LLNotificationFunctorRegistry::ResponseFunctor& cb) +{ + if(mTemporaryResponder) + { + LLNotificationFunctorRegistry::instance().unregisterFunctor(mResponseFunctorName); + } + + LLNotificationFunctorRegistry::instance().registerFunctor(mResponseFunctorName, cb); +} + bool LLNotification::payloadContainsAll(const std::vector<std::string>& required_fields) const { for(std::vector<std::string>::const_iterator required_fields_it = required_fields.begin(); @@ -856,8 +880,12 @@ bool LLNotificationChannelBase::updateItem(const LLSD& payload, LLNotificationPt if (wasFound) { abortProcessing = mChanged(payload); - mItems.erase(pNotification); - onDelete(pNotification); + // do not delete the notification to make LLChatHistory::appendMessage add notification panel to IM window + if( ! pNotification->isReusable() ) + { + mItems.erase(pNotification); + onDelete(pNotification); + } } } return abortProcessing; diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index 8d993b71d76658215bd4db055ca201de961f924d..400491a1544ce55371d0f02c6dd50dbf2b83fcab 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -296,6 +296,7 @@ friend class LLNotifications; Optional<LLSD> form_elements; Optional<LLDate> time_stamp; Optional<LLNotificationContext*> context; + Optional<void*> responder; struct Functor : public LLInitParam::Choice<Functor> { @@ -317,6 +318,7 @@ friend class LLNotifications; form_elements("form_elements") { time_stamp = LLDate::now(); + responder = NULL; } Params(const std::string& _name) @@ -329,6 +331,7 @@ friend class LLNotifications; functor.name = _name; name = _name; time_stamp = LLDate::now(); + responder = NULL; } }; @@ -341,9 +344,12 @@ friend class LLNotifications; LLDate mExpiresAt; bool mCancelled; bool mRespondedTo; // once the notification has been responded to, this becomes true + LLSD mResponse; bool mIgnored; ENotificationPriority mPriority; LLNotificationFormPtr mForm; + void* mResponderObj; + bool mIsReusable; // a reference to the template LLNotificationTemplatePtr mTemplatep; @@ -384,6 +390,8 @@ friend class LLNotifications; void setResponseFunctor(std::string const &responseFunctorName); + void setResponseFunctor(const LLNotificationFunctorRegistry::ResponseFunctor& cb); + typedef enum e_response_template_type { WITHOUT_DEFAULT_BUTTON, @@ -423,6 +431,10 @@ friend class LLNotifications; void respond(const LLSD& sd); + void* getResponder() { return mResponderObj; } + + void setResponder(void* responder) { mResponderObj = responder; } + void setIgnored(bool ignore); bool isCancelled() const @@ -435,6 +447,8 @@ friend class LLNotifications; return mRespondedTo; } + const LLSD& getResponse() { return mResponse; } + bool isIgnored() const { return mIgnored; @@ -504,6 +518,10 @@ friend class LLNotifications; { return mId; } + + bool isReusable() { return mIsReusable; } + + void setReusable(bool reusable) { mIsReusable = reusable; } // comparing two notifications normally means comparing them by UUID (so we can look them // up quickly this way) diff --git a/indra/llui/llradiogroup.cpp b/indra/llui/llradiogroup.cpp index 4087b484aaa657a64fba9f503899294ef9928455..e27792dc1d9f304788219b9092936db1bd2e32a5 100644 --- a/indra/llui/llradiogroup.cpp +++ b/indra/llui/llradiogroup.cpp @@ -106,7 +106,6 @@ LLRadioGroup::LLRadioGroup(const LLRadioGroup::Params& p) void LLRadioGroup::initFromParams(const Params& p) { - LLUICtrl::initFromParams(p); for (LLInitParam::ParamIterator<ItemParams>::const_iterator it = p.items().begin(); it != p.items().end(); ++it) @@ -124,6 +123,9 @@ void LLRadioGroup::initFromParams(const Params& p) LLRadioCtrl* item = LLUICtrlFactory::create<LLRadioCtrl>(item_params, this); mRadioButtons.push_back(item); } + + // call this *after* setting up mRadioButtons so we can handle setValue() calls + LLUICtrl::initFromParams(p); } @@ -138,10 +140,6 @@ BOOL LLRadioGroup::postBuild() { mRadioButtons[0]->setTabStop(true); } - if (mControlVariable) - { - setSelectedIndex(mControlVariable->getValue().asInteger()); - } return TRUE; } diff --git a/indra/llui/llsearcheditor.h b/indra/llui/llsearcheditor.h index 714aca9337e1ddb1fa925d755ac23366c74d31a4..785d0633dcb4d2d2cfda6ecdf7fad3ea4125b18c 100644 --- a/indra/llui/llsearcheditor.h +++ b/indra/llui/llsearcheditor.h @@ -66,6 +66,8 @@ class LLSearchEditor : public LLUICtrl } }; + void setCommitOnFocusLost(BOOL b) { if (mSearchEditor) mSearchEditor->setCommitOnFocusLost(b); } + protected: LLSearchEditor(const Params&); friend class LLUICtrlFactory; diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 134a732287f430a534b449533ebad0266590ae28..9f7a684ce5dafecf6e331e2eb9b69db0d20b1cca 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -350,6 +350,8 @@ void LLTextBase::drawSelectionBackground() S32 segment_line_start = segmentp->getStart() + segment_offset; S32 segment_line_end = llmin(segmentp->getEnd(), line_iter->mDocIndexEnd); + if (segment_line_start > segment_line_end) break; + S32 segment_width = 0; S32 segment_height = 0; @@ -361,8 +363,11 @@ void LLTextBase::drawSelectionBackground() selection_rect.mLeft += segment_width; } - // if selection spans end of current segment... - if (selection_right > segment_line_end) + // if selection_right == segment_line_end then that means we are the first character of the next segment + // or first character of the next line, in either case we want to add the length of the current segment + // to the selection rectangle and continue. + // if selection right > segment_line_end then selection spans end of current segment... + if (selection_right >= segment_line_end) { // extend selection slightly beyond end of line // to indicate selection of newline character (use "n" character to determine width) @@ -396,16 +401,11 @@ void LLTextBase::drawSelectionBackground() ++rect_it) { LLRect selection_rect = *rect_it; - // Don't send empty rects to gl_rect_2d. - // Drawing degenerate rectangles seems to cause https://jira.secondlife.com/browse/EXT-6276 . - if(selection_rect.notEmpty()) - { selection_rect.translate(mVisibleTextRect.mLeft - content_display_rect.mLeft, mVisibleTextRect.mBottom - content_display_rect.mBottom); gl_rect_2d(selection_rect, selection_color); } } } -} void LLTextBase::drawCursor() { @@ -1851,11 +1851,18 @@ S32 LLTextBase::getDocIndexFromLocalCoord( S32 local_x, S32 local_y, BOOL round, const LLTextSegmentPtr segmentp = *line_seg_iter; S32 segment_line_start = segmentp->getStart() + line_seg_offset; - S32 segment_line_length = llmin(segmentp->getEnd(), line_iter->mDocIndexEnd - 1) - segment_line_start; + S32 segment_line_length = llmin(segmentp->getEnd(), line_iter->mDocIndexEnd) - segment_line_start; S32 text_width, text_height; - segmentp->getDimensions(line_seg_offset, segment_line_length, text_width, text_height); + bool newline = segmentp->getDimensions(line_seg_offset, segment_line_length, text_width, text_height); + + // if we've reached a line of text *below* the mouse cursor, doc index is first character on that line + if (hit_past_end_of_line && local_y - mVisibleTextRect.mBottom + visible_region.mBottom > line_iter->mRect.mTop) + { + pos = segment_line_start; + break; + } if (local_x < start_x + text_width // cursor to left of right edge of text - || (hit_past_end_of_line && (segmentp->getEnd() >= line_iter->mDocIndexEnd - 1))) // or this segment wraps to next line + || newline) // or this line ends with a newline, set doc pos to newline char { // Figure out which character we're nearest to. S32 offset; @@ -1879,6 +1886,13 @@ S32 LLTextBase::getDocIndexFromLocalCoord( S32 local_x, S32 local_y, BOOL round, pos = segment_line_start + offset; break; } + else if (hit_past_end_of_line && segmentp->getEnd() >= line_iter->mDocIndexEnd - 1) + { + // segment wraps to next line, so just set doc pos to start of next line (represented by mDocIndexEnd) + pos = llmin(getLength(), line_iter->mDocIndexEnd); + break; + } + start_x += text_width; } diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp index 9134adc6d14e5b726d9a1a667754715e0f9da434..b049895526393e6a04818a03b7f00bc41981381c 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -202,17 +202,12 @@ void gl_rect_2d_offset_local( S32 left, S32 top, S32 right, S32 bottom, S32 pixe void gl_rect_2d(S32 left, S32 top, S32 right, S32 bottom, BOOL filled ) { - // FIXME: Drawing degenerate rectangles (specifically, zero-width rectangles) was causing - // https://jira.secondlife.com/browse/EXT-6276 on the Mac (presumably it was doing something bad to the GL state). - // That was fixed by checking for this case in LLTextBase::drawSelectionBackground(). - // It's possible we should check for degenerate rectangles here and not draw, but I wanted to do the minimal change for the moment. - stop_glerror(); gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE); // Counterclockwise quad will face the viewer if( filled ) - { + { gGL.begin( LLRender::QUADS ); gGL.vertex2i(left, top); gGL.vertex2i(left, bottom); diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index ff6454c14139734399bf9989337b85aede278438..a79a257c095bd1b830c81a24d3033ce636b58c06 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -319,7 +319,6 @@ LLUrlEntryAgent::LLUrlEntryAgent() boost::regex::perl|boost::regex::icase); mMenuName = "menu_url_agent.xml"; mIcon = "Generic_Person"; - mTooltip = LLTrans::getString("TooltipAgentUrl"); mColor = LLUIColorTable::instance().getColor("AgentLinkColor"); } @@ -341,6 +340,38 @@ void LLUrlEntryAgent::onAvatarNameCache(const LLUUID& id, callObservers(id.asString(), label, icon); } +std::string LLUrlEntryAgent::getTooltip(const std::string &string) const +{ + // return a tooltip corresponding to the URL type instead of the generic one + std::string url = getUrl(string); + + if (LLStringUtil::endsWith(url, "/mute")) + { + return LLTrans::getString("TooltipAgentMute"); + } + if (LLStringUtil::endsWith(url, "/unmute")) + { + return LLTrans::getString("TooltipAgentUnmute"); + } + if (LLStringUtil::endsWith(url, "/im")) + { + return LLTrans::getString("TooltipAgentIM"); + } + if (LLStringUtil::endsWith(url, "/pay")) + { + return LLTrans::getString("TooltipAgentPay"); + } + if (LLStringUtil::endsWith(url, "/offerteleport")) + { + return LLTrans::getString("TooltipAgentOfferTeleport"); + } + if (LLStringUtil::endsWith(url, "/requestfriend")) + { + return LLTrans::getString("TooltipAgentRequestFriend"); + } + return LLTrans::getString("TooltipAgentUrl"); +} + std::string LLUrlEntryAgent::getLabel(const std::string &url, const LLUrlLabelCallback &cb) { if (!gCacheName) @@ -348,14 +379,14 @@ std::string LLUrlEntryAgent::getLabel(const std::string &url, const LLUrlLabelCa // probably at the login screen, use short string for layout return LLTrans::getString("LoadingData"); } - + std::string agent_id_string = getIDStringFromUrl(url); if (agent_id_string.empty()) { // something went wrong, just give raw url return unescapeUrl(url); } - + LLUUID agent_id(agent_id_string); if (agent_id.isNull()) { @@ -383,19 +414,44 @@ std::string LLUrlEntryAgent::getLabel(const std::string &url, const LLUrlLabelCa // ...no display names std::string full_name; if (gCacheName->getFullName(agent_id, full_name)) + { + // customize label string based on agent SLapp suffix + if (LLStringUtil::endsWith(url, "/mute")) { - return full_name; + return LLTrans::getString("SLappAgentMute") + " " + full_name; } - else + if (LLStringUtil::endsWith(url, "/unmute")) + { + return LLTrans::getString("SLappAgentUnmute") + " " + full_name; + } + if (LLStringUtil::endsWith(url, "/im")) + { + return LLTrans::getString("SLappAgentIM") + " " + full_name; + } + if (LLStringUtil::endsWith(url, "/pay")) + { + return LLTrans::getString("SLappAgentPay") + " " + full_name; + } + if (LLStringUtil::endsWith(url, "/offerteleport")) + { + return LLTrans::getString("SLappAgentOfferTeleport") + " " + full_name; + } + if (LLStringUtil::endsWith(url, "/requestfriend")) { + return LLTrans::getString("SLappAgentRequestFriend") + " " + full_name; + } + return full_name; + } + else + { gCacheName->get(agent_id, false, boost::bind(&LLUrlEntryAgent::onNameCache, this, _1, _2, _3)); - addObserver(agent_id_string, url, cb); - return LLTrans::getString("LoadingData"); - } + addObserver(agent_id_string, url, cb); + return LLTrans::getString("LoadingData"); } } +} std::string LLUrlEntryAgent::getIcon(const std::string &url) const diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h index c2cbe4d4c88b660c0f5ae2e0e4444972304ad8f4..d5d4d9ee24ee1736e750e67316b3874fc8c5424e 100644 --- a/indra/llui/llurlentry.h +++ b/indra/llui/llurlentry.h @@ -172,7 +172,7 @@ class LLUrlEntryAgent : public LLUrlEntryBase LLUrlEntryAgent(); /*virtual*/ std::string getLabel(const std::string &url, const LLUrlLabelCallback &cb); /*virtual*/ std::string getIcon(const std::string &url) const; - + /*virtual*/ std::string getTooltip(const std::string &string) const; private: void onNameCache(const LLUUID& id, const std::string& full_name, bool is_group); void onAvatarNameCache(const LLUUID& id, const LLAvatarName& av_name); diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index d34083a3844f514dc2de6104326349cc5ea3d32f..781c111474fd94e1748d23020d7801b6956b4fc3 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -152,7 +152,7 @@ LLView::~LLView() //llinfos << "Deleting view " << mName << ":" << (void*) this << llendl; if (LLView::sIsDrawing) { - llwarns << "Deleting view " << mName << " during UI draw() phase" << llendl; + lldebugs << "Deleting view " << mName << " during UI draw() phase" << llendl; } // llassert(LLView::sIsDrawing == FALSE); @@ -1325,7 +1325,6 @@ void LLView::drawChildren() localRectToScreen(viewp->getRect(),&screenRect); if ( rootRect.overlaps(screenRect) && LLUI::sDirtyRect.overlaps(screenRect)) { - glMatrixMode(GL_MODELVIEW); LLUI::pushMatrix(); { LLUI::translate((F32)viewp->getRect().mLeft, (F32)viewp->getRect().mBottom, 0.f); @@ -1349,8 +1348,6 @@ void LLView::drawChildren() } --sDepth; } - - gGL.getTexUnit(0)->disable(); } void LLView::dirtyRect() diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index ad97bc45fc782370e0eb7e113ef498391926cdaa..022b97f481fa1979f3c2349284f3ec4071c1a68c 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -2781,6 +2781,9 @@ const char* cursorIDToName(int id) case UI_CURSOR_TOOLPAUSE: return "UI_CURSOR_TOOLPAUSE"; case UI_CURSOR_TOOLMEDIAOPEN: return "UI_CURSOR_TOOLMEDIAOPEN"; case UI_CURSOR_PIPETTE: return "UI_CURSOR_PIPETTE"; + case UI_CURSOR_TOOLSIT: return "UI_CURSOR_TOOLSIT"; + case UI_CURSOR_TOOLBUY: return "UI_CURSOR_TOOLBUY"; + case UI_CURSOR_TOOLOPEN: return "UI_CURSOR_TOOLOPEN"; } llerrs << "cursorIDToName: unknown cursor id" << id << llendl; @@ -2883,6 +2886,9 @@ void LLWindowMacOSX::setCursor(ECursorType cursor) case UI_CURSOR_TOOLPLAY: case UI_CURSOR_TOOLPAUSE: case UI_CURSOR_TOOLMEDIAOPEN: + case UI_CURSOR_TOOLSIT: + case UI_CURSOR_TOOLBUY: + case UI_CURSOR_TOOLOPEN: result = setImageCursor(gCursors[cursor]); break; @@ -2924,6 +2930,9 @@ void LLWindowMacOSX::initCursors() initPixmapCursor(UI_CURSOR_TOOLPLAY, 1, 1); initPixmapCursor(UI_CURSOR_TOOLPAUSE, 1, 1); initPixmapCursor(UI_CURSOR_TOOLMEDIAOPEN, 1, 1); + initPixmapCursor(UI_CURSOR_TOOLSIT, 20, 15); + initPixmapCursor(UI_CURSOR_TOOLBUY, 20, 15); + initPixmapCursor(UI_CURSOR_TOOLOPEN, 20, 15); initPixmapCursor(UI_CURSOR_SIZENWSE, 10, 10); initPixmapCursor(UI_CURSOR_SIZENESW, 10, 10); diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 1f705f9e60b156cfde44c4d1f750bad39c22f18b..efa0110f8b4ffd9a5efa1202b94f0c3276252d93 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -2543,6 +2543,7 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList() // Use libfontconfig to find us a nice ordered list of fallback fonts // specific to this system. std::string final_fallback("/usr/share/fonts/truetype/kochi/kochi-gothic.ttf"); + const int max_font_count_cutoff = 40; // fonts are expensive in the current system, don't enumerate an arbitrary number of them // Our 'ideal' font properties which define the sorting results. // slant=0 means Roman, index=0 means the first face in a font file // (the one we actually use), weight=80 means medium weight, @@ -2558,7 +2559,6 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList() std::vector<std::string> rtns; FcFontSet *fs = NULL; FcPattern *sortpat = NULL; - int font_count = 0; llinfos << "Getting system font list from FontConfig..." << llendl; @@ -2602,12 +2602,13 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList() FcPatternDestroy(sortpat); } + int found_font_count = 0; if (fs) { // Get the full pathnames to the fonts, where available, // which is what we really want. - int i; - for (i=0; i<fs->nfont; ++i) + found_font_count = fs->nfont; + for (int i=0; i<fs->nfont; ++i) { FcChar8 *filename; if (FcResultMatch == FcPatternGetString(fs->fonts[i], @@ -2616,7 +2617,8 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList() && filename) { rtns.push_back(std::string((const char*)filename)); - ++font_count; + if (rtns.size() >= max_font_count_cutoff) + break; // hit limit } } FcFontSetDestroy (fs); @@ -2629,7 +2631,7 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList() { lldebugs << " file: " << *it << llendl; } - llinfos << "Using " << font_count << " system font(s)." << llendl; + llinfos << "Using " << rtns.size() << "/" << found_font_count << " system fonts." << llendl; rtns.push_back(final_fallback); return rtns; diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index c80392ad4562808ab67af244135acc83b3868239..8df9dad58114d3641c873efc178a8ae73091754b 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -46,6 +46,7 @@ #include "llerror.h" #include "llgl.h" #include "llstring.h" +#include "lldir.h" // System includes #include <commdlg.h> @@ -1545,6 +1546,11 @@ void LLWindowWin32::initCursors() mCursor[ UI_CURSOR_PIPETTE ] = LoadCursor(module, TEXT("TOOLPIPETTE")); // Color cursors + gDirUtilp->getExpandedFilename(LL_PATH_EXECUTABLE, "res", "toolbuy.cur"); + + mCursor[UI_CURSOR_TOOLSIT] = LoadCursorFromFile(utf8str_to_utf16str(gDirUtilp->getWorkingDir() + gDirUtilp->getDirDelimiter() + "res" + gDirUtilp->getDirDelimiter() + "toolsit.cur").c_str()); + mCursor[UI_CURSOR_TOOLBUY] = LoadCursorFromFile(utf8str_to_utf16str(gDirUtilp->getWorkingDir() + gDirUtilp->getDirDelimiter() + "res" + gDirUtilp->getDirDelimiter() + "toolbuy.cur").c_str()); + mCursor[UI_CURSOR_TOOLOPEN] = LoadCursorFromFile(utf8str_to_utf16str(gDirUtilp->getWorkingDir() + gDirUtilp->getDirDelimiter() + "res" + gDirUtilp->getDirDelimiter() + "toolopen.cur").c_str()); mCursor[UI_CURSOR_TOOLPLAY] = loadColorCursor(TEXT("TOOLPLAY")); mCursor[UI_CURSOR_TOOLPAUSE] = loadColorCursor(TEXT("TOOLPAUSE")); mCursor[UI_CURSOR_TOOLMEDIAOPEN] = loadColorCursor(TEXT("TOOLMEDIAOPEN")); diff --git a/indra/media_plugins/example/media_plugin_example.cpp b/indra/media_plugins/example/media_plugin_example.cpp index f5b077fea037410a80d4643fb11328c8231aacad..49bbca6c521ed3d6c76a0439dea77128e46e86d8 100644 --- a/indra/media_plugins/example/media_plugin_example.cpp +++ b/indra/media_plugins/example/media_plugin_example.cpp @@ -119,17 +119,6 @@ void MediaPluginExample::receiveMessage( const char* message_string ) std::string plugin_version = "Example media plugin, Example Version 1.0.0.0"; message.setValue( "plugin_version", plugin_version ); sendMessage( message ); - - // Plugin gets to decide the texture parameters to use. - message.setMessage( LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params" ); - message.setValueS32( "default_width", mWidth ); - message.setValueS32( "default_height", mHeight ); - message.setValueS32( "depth", mDepth ); - message.setValueU32( "internalformat", GL_RGBA ); - message.setValueU32( "format", GL_RGBA ); - message.setValueU32( "type", GL_UNSIGNED_BYTE ); - message.setValueBoolean( "coords_opengl", false ); - sendMessage( message ); } else if ( message_name == "idle" ) @@ -191,7 +180,20 @@ void MediaPluginExample::receiveMessage( const char* message_string ) else if ( message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA ) { - if ( message_name == "size_change" ) + if ( message_name == "init" ) + { + // Plugin gets to decide the texture parameters to use. + LLPluginMessage message( LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params" ); + message.setValueS32( "default_width", mWidth ); + message.setValueS32( "default_height", mHeight ); + message.setValueS32( "depth", mDepth ); + message.setValueU32( "internalformat", GL_RGBA ); + message.setValueU32( "format", GL_RGBA ); + message.setValueU32( "type", GL_UNSIGNED_BYTE ); + message.setValueBoolean( "coords_opengl", false ); + sendMessage( message ); + } + else if ( message_name == "size_change" ) { std::string name = message_in.getValue( "name" ); S32 width = message_in.getValueS32( "width" ); diff --git a/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp b/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp index 26173314a7f8ea52d2802291ea0a0fcb1873b549..a69da3ff5aa83c5bde0c67d973872d72ec20af0e 100644 --- a/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp +++ b/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp @@ -946,33 +946,6 @@ void MediaPluginGStreamer010::receiveMessage(const char *message_string) message.setValue("plugin_version", getVersion()); sendMessage(message); - - // Plugin gets to decide the texture parameters to use. - message.setMessage(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); - // lame to have to decide this now, it depends on the movie. Oh well. - mDepth = 4; - - mCurrentWidth = 1; - mCurrentHeight = 1; - mPreviousWidth = 1; - mPreviousHeight = 1; - mNaturalWidth = 1; - mNaturalHeight = 1; - mWidth = 1; - mHeight = 1; - mTextureWidth = 1; - mTextureHeight = 1; - - message.setValueU32("format", GL_RGBA); - message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8_REV); - - message.setValueS32("depth", mDepth); - message.setValueS32("default_width", mWidth); - message.setValueS32("default_height", mHeight); - message.setValueU32("internalformat", GL_RGBA8); - message.setValueBoolean("coords_opengl", true); // true == use OpenGL-style coordinates, false == (0,0) is upper left. - message.setValueBoolean("allow_downsample", true); // we respond with grace and performance if asked to downscale - sendMessage(message); } else if(message_name == "idle") { @@ -1037,7 +1010,36 @@ void MediaPluginGStreamer010::receiveMessage(const char *message_string) } else if(message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA) { - if(message_name == "size_change") + if(message_name == "init") + { + // Plugin gets to decide the texture parameters to use. + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); + // lame to have to decide this now, it depends on the movie. Oh well. + mDepth = 4; + + mCurrentWidth = 1; + mCurrentHeight = 1; + mPreviousWidth = 1; + mPreviousHeight = 1; + mNaturalWidth = 1; + mNaturalHeight = 1; + mWidth = 1; + mHeight = 1; + mTextureWidth = 1; + mTextureHeight = 1; + + message.setValueU32("format", GL_RGBA); + message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8_REV); + + message.setValueS32("depth", mDepth); + message.setValueS32("default_width", mWidth); + message.setValueS32("default_height", mHeight); + message.setValueU32("internalformat", GL_RGBA8); + message.setValueBoolean("coords_opengl", true); // true == use OpenGL-style coordinates, false == (0,0) is upper left. + message.setValueBoolean("allow_downsample", true); // we respond with grace and performance if asked to downscale + sendMessage(message); + } + else if(message_name == "size_change") { std::string name = message_in.getValue("name"); S32 width = message_in.getValueS32("width"); diff --git a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp index e230fcc280e2cbd6e4bc335ca671cc0caab69395..1f88301ca7fb3f666f261474a3e9e8a46e204ce7 100644 --- a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp +++ b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp @@ -859,36 +859,6 @@ void MediaPluginQuickTime::receiveMessage(const char *message_string) plugin_version += codec.str(); message.setValue("plugin_version", plugin_version); sendMessage(message); - - // Plugin gets to decide the texture parameters to use. - message.setMessage(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); - #if defined(LL_WINDOWS) - // Values for Windows - mDepth = 3; - message.setValueU32("format", GL_RGB); - message.setValueU32("type", GL_UNSIGNED_BYTE); - - // We really want to pad the texture width to a multiple of 32 bytes, but since we're using 3-byte pixels, it doesn't come out even. - // Padding to a multiple of 3*32 guarantees it'll divide out properly. - message.setValueU32("padding", 32 * 3); - #else - // Values for Mac - mDepth = 4; - message.setValueU32("format", GL_BGRA_EXT); - #ifdef __BIG_ENDIAN__ - message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8_REV ); - #else - message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8); - #endif - - // Pad texture width to a multiple of 32 bytes, to line up with cache lines. - message.setValueU32("padding", 32); - #endif - message.setValueS32("depth", mDepth); - message.setValueU32("internalformat", GL_RGB); - message.setValueBoolean("coords_opengl", true); // true == use OpenGL-style coordinates, false == (0,0) is upper left. - message.setValueBoolean("allow_downsample", true); - sendMessage(message); } else if(message_name == "idle") { @@ -953,7 +923,41 @@ void MediaPluginQuickTime::receiveMessage(const char *message_string) } else if(message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA) { - if(message_name == "size_change") + if(message_name == "init") + { + // This is the media init message -- all necessary data for initialization should have been received. + + // Plugin gets to decide the texture parameters to use. + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); + #if defined(LL_WINDOWS) + // Values for Windows + mDepth = 3; + message.setValueU32("format", GL_RGB); + message.setValueU32("type", GL_UNSIGNED_BYTE); + + // We really want to pad the texture width to a multiple of 32 bytes, but since we're using 3-byte pixels, it doesn't come out even. + // Padding to a multiple of 3*32 guarantees it'll divide out properly. + message.setValueU32("padding", 32 * 3); + #else + // Values for Mac + mDepth = 4; + message.setValueU32("format", GL_BGRA_EXT); + #ifdef __BIG_ENDIAN__ + message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8_REV ); + #else + message.setValueU32("type", GL_UNSIGNED_INT_8_8_8_8); + #endif + + // Pad texture width to a multiple of 32 bytes, to line up with cache lines. + message.setValueU32("padding", 32); + #endif + message.setValueS32("depth", mDepth); + message.setValueU32("internalformat", GL_RGB); + message.setValueBoolean("coords_opengl", true); // true == use OpenGL-style coordinates, false == (0,0) is upper left. + message.setValueBoolean("allow_downsample", true); + sendMessage(message); + } + else if(message_name == "size_change") { std::string name = message_in.getValue("name"); S32 width = message_in.getValueS32("width"); diff --git a/indra/media_plugins/webkit/media_plugin_webkit.cpp b/indra/media_plugins/webkit/media_plugin_webkit.cpp index e66ac3049f57d533c504230f94d2a63c50568ed9..0462fce236273bf22fa727c5575a904d15b1189c 100644 --- a/indra/media_plugins/webkit/media_plugin_webkit.cpp +++ b/indra/media_plugins/webkit/media_plugin_webkit.cpp @@ -45,7 +45,7 @@ // set to 1 if you're using the version of llqtwebkit that's QPixmap-ified #if LL_LINUX -# define LL_QTWEBKIT_USES_PIXMAPS 1 +# define LL_QTWEBKIT_USES_PIXMAPS 0 #else # define LL_QTWEBKIT_USES_PIXMAPS 0 #endif // LL_LINUX @@ -88,10 +88,15 @@ class MediaPluginWebKit : private: std::string mProfileDir; + std::string mHostLanguage; + bool mCookiesEnabled; + bool mJavascriptEnabled; + bool mPluginsEnabled; enum { - INIT_STATE_UNINITIALIZED, // Browser instance hasn't been set up yet + INIT_STATE_UNINITIALIZED, // LLQtWebkit hasn't been set up yet + INIT_STATE_INITIALIZED, // LLQtWebkit has been set up, but no browser window has been created yet. INIT_STATE_NAVIGATING, // Browser instance has been set up and initial navigate to about:blank has been issued INIT_STATE_NAVIGATE_COMPLETE, // initial navigate to about:blank has completed INIT_STATE_WAIT_REDRAW, // First real navigate begin has been received, waiting for page changed event to start handling redraws @@ -191,13 +196,6 @@ class MediaPluginWebKit : if ( mInitState > INIT_STATE_UNINITIALIZED ) return true; - // not enough information to initialize the browser yet. - if ( mWidth < 0 || mHeight < 0 || mDepth < 0 || - mTextureWidth < 0 || mTextureHeight < 0 ) - { - return false; - }; - // set up directories char cwd[ FILENAME_MAX ]; // I *think* this is defined on all platforms we use if (NULL == getcwd( cwd, FILENAME_MAX - 1 )) @@ -208,12 +206,12 @@ class MediaPluginWebKit : std::string application_dir = std::string( cwd ); #if LL_DARWIN - // When running under the Xcode debugger, there's a setting called "Break on Debugger()/DebugStr()" which defaults to being turned on. - // This causes the environment variable USERBREAK to be set to 1, which causes these legacy calls to break into the debugger. - // This wouldn't cause any problems except for the fact that the current release version of the Flash plugin has a call to Debugger() in it - // which gets hit when the plugin is probed by webkit. - // Unsetting the environment variable here works around this issue. - unsetenv("USERBREAK"); + // When running under the Xcode debugger, there's a setting called "Break on Debugger()/DebugStr()" which defaults to being turned on. + // This causes the environment variable USERBREAK to be set to 1, which causes these legacy calls to break into the debugger. + // This wouldn't cause any problems except for the fact that the current release version of the Flash plugin has a call to Debugger() in it + // which gets hit when the plugin is probed by webkit. + // Unsetting the environment variable here works around this issue. + unsetenv("USERBREAK"); #endif #if LL_WINDOWS @@ -254,66 +252,89 @@ class MediaPluginWebKit : bool result = LLQtWebKit::getInstance()->init( application_dir, component_dir, mProfileDir, native_window_handle ); if ( result ) { - // create single browser window - mBrowserWindowId = LLQtWebKit::getInstance()->createBrowserWindow( mWidth, mHeight ); -#if LL_WINDOWS - // Enable plugins - LLQtWebKit::getInstance()->enablePlugins(true); -#elif LL_DARWIN - // Enable plugins - LLQtWebKit::getInstance()->enablePlugins(true); -#elif LL_LINUX - // Enable plugins - LLQtWebKit::getInstance()->enablePlugins(true); -#endif - // Enable cookies - LLQtWebKit::getInstance()->enableCookies( true ); + mInitState = INIT_STATE_INITIALIZED; + + return true; + }; + + return false; + }; + + //////////////////////////////////////////////////////////////////////////////// + // + bool initBrowserWindow() + { + // already initialized + if ( mInitState > INIT_STATE_INITIALIZED ) + return true; - // tell LLQtWebKit about the size of the browser window - LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight ); + // not enough information to initialize the browser yet. + if ( mWidth < 0 || mHeight < 0 || mDepth < 0 || + mTextureWidth < 0 || mTextureHeight < 0 ) + { + return false; + }; + + // Set up host language before creating browser window + if(!mHostLanguage.empty()) + { + LLQtWebKit::getInstance()->setHostLanguage(mHostLanguage); + } - // observer events that LLQtWebKit emits - LLQtWebKit::getInstance()->addObserver( mBrowserWindowId, this ); + // turn on/off cookies based on what host app tells us + LLQtWebKit::getInstance()->enableCookies( mCookiesEnabled ); + + // turn on/off plugins based on what host app tells us + LLQtWebKit::getInstance()->enablePlugins( mPluginsEnabled ); + + // turn on/off Javascript based on what host app tells us + LLQtWebKit::getInstance()->enableJavascript( mJavascriptEnabled ); + + // create single browser window + mBrowserWindowId = LLQtWebKit::getInstance()->createBrowserWindow( mWidth, mHeight ); - // append details to agent string - LLQtWebKit::getInstance()->setBrowserAgentId( "LLPluginMedia Web Browser" ); + // tell LLQtWebKit about the size of the browser window + LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight ); + + // observer events that LLQtWebKit emits + LLQtWebKit::getInstance()->addObserver( mBrowserWindowId, this ); + + // append details to agent string + LLQtWebKit::getInstance()->setBrowserAgentId( "LLPluginMedia Web Browser" ); #if !LL_QTWEBKIT_USES_PIXMAPS - // don't flip bitmap - LLQtWebKit::getInstance()->flipWindow( mBrowserWindowId, true ); + // don't flip bitmap + LLQtWebKit::getInstance()->flipWindow( mBrowserWindowId, true ); #endif // !LL_QTWEBKIT_USES_PIXMAPS - - // set background color - // convert background color channels from [0.0, 1.0] to [0, 255]; - LLQtWebKit::getInstance()->setBackgroundColor( mBrowserWindowId, int(mBackgroundR * 255.0f), int(mBackgroundG * 255.0f), int(mBackgroundB * 255.0f) ); - - // Set state _before_ starting the navigate, since onNavigateBegin might get called before this call returns. - setInitState(INIT_STATE_NAVIGATING); - - // Don't do this here -- it causes the dreaded "white flash" when loading a browser instance. - // FIXME: Re-added this because navigating to a "page" initializes things correctly - especially - // for the HTTP AUTH dialog issues (DEV-41731). Will fix at a later date. - // Build a data URL like this: "data:text/html,%3Chtml%3E%3Cbody bgcolor=%22#RRGGBB%22%3E%3C/body%3E%3C/html%3E" - // where RRGGBB is the background color in HTML style - std::stringstream url; - - url << "data:text/html,%3Chtml%3E%3Cbody%20bgcolor=%22#"; - // convert background color channels from [0.0, 1.0] to [0, 255]; - url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundR * 255.0f); - url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundG * 255.0f); - url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundB * 255.0f); - url << "%22%3E%3C/body%3E%3C/html%3E"; - - lldebugs << "data url is: " << url.str() << llendl; - - LLQtWebKit::getInstance()->navigateTo( mBrowserWindowId, url.str() ); -// LLQtWebKit::getInstance()->navigateTo( mBrowserWindowId, "about:blank" ); - - return true; - }; + + // set background color + // convert background color channels from [0.0, 1.0] to [0, 255]; + LLQtWebKit::getInstance()->setBackgroundColor( mBrowserWindowId, int(mBackgroundR * 255.0f), int(mBackgroundG * 255.0f), int(mBackgroundB * 255.0f) ); + + // Set state _before_ starting the navigate, since onNavigateBegin might get called before this call returns. + setInitState(INIT_STATE_NAVIGATING); + + // Don't do this here -- it causes the dreaded "white flash" when loading a browser instance. + // FIXME: Re-added this because navigating to a "page" initializes things correctly - especially + // for the HTTP AUTH dialog issues (DEV-41731). Will fix at a later date. + // Build a data URL like this: "data:text/html,%3Chtml%3E%3Cbody bgcolor=%22#RRGGBB%22%3E%3C/body%3E%3C/html%3E" + // where RRGGBB is the background color in HTML style + std::stringstream url; + + url << "data:text/html,%3Chtml%3E%3Cbody%20bgcolor=%22#"; + // convert background color channels from [0.0, 1.0] to [0, 255]; + url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundR * 255.0f); + url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundG * 255.0f); + url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundB * 255.0f); + url << "%22%3E%3C/body%3E%3C/html%3E"; + + lldebugs << "data url is: " << url.str() << llendl; + + LLQtWebKit::getInstance()->navigateTo( mBrowserWindowId, url.str() ); +// LLQtWebKit::getInstance()->navigateTo( mBrowserWindowId, "about:blank" ); - return false; - }; + return true; + } void setVolume(F32 vol); @@ -650,6 +671,10 @@ MediaPluginWebKit::MediaPluginWebKit(LLPluginInstance::sendMessageFunction host_ mBackgroundR = 0.0f; mBackgroundG = 0.0f; mBackgroundB = 0.0f; + + mHostLanguage = "en"; // default to english + mJavascriptEnabled = true; // default to on + mPluginsEnabled = true; // default to on } MediaPluginWebKit::~MediaPluginWebKit() @@ -676,9 +701,6 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) { if(message_name == "init") { - std::string user_data_path = message_in.getValue("user_data_path"); // n.b. always has trailing platform-specific dir-delimiter - mProfileDir = user_data_path + "browser_profile"; - LLPluginMessage message("base", "init_response"); LLSD versions = LLSD::emptyMap(); versions[LLPLUGIN_MESSAGE_CLASS_BASE] = LLPLUGIN_MESSAGE_CLASS_BASE_VERSION; @@ -690,23 +712,6 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) plugin_version += LLQtWebKit::getInstance()->getVersion(); message.setValue("plugin_version", plugin_version); sendMessage(message); - - // Plugin gets to decide the texture parameters to use. - mDepth = 4; - - message.setMessage(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); - message.setValueS32("default_width", 1024); - message.setValueS32("default_height", 1024); - message.setValueS32("depth", mDepth); - message.setValueU32("internalformat", GL_RGBA); -#if LL_QTWEBKIT_USES_PIXMAPS - message.setValueU32("format", GL_BGRA_EXT); // I hope this isn't system-dependant... is it? If so, we'll have to check the root window's pixel layout or something... yuck. -#else - message.setValueU32("format", GL_RGBA); -#endif // LL_QTWEBKIT_USES_PIXMAPS - message.setValueU32("type", GL_UNSIGNED_BYTE); - message.setValueBoolean("coords_opengl", true); - sendMessage(message); } else if(message_name == "idle") { @@ -771,7 +776,7 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) // std::cerr << "MediaPluginWebKit::receiveMessage: unknown base message: " << message_name << std::endl; } } - else if(message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA_TIME) + else if(message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA_TIME) { if(message_name == "set_volume") { @@ -781,7 +786,58 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) } else if(message_class == LLPLUGIN_MESSAGE_CLASS_MEDIA) { - if(message_name == "size_change") + if(message_name == "init") + { + // This is the media init message -- all necessary data for initialization should have been received. + if(initBrowser()) + { + + // Plugin gets to decide the texture parameters to use. + mDepth = 4; + + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params"); + message.setValueS32("default_width", 1024); + message.setValueS32("default_height", 1024); + message.setValueS32("depth", mDepth); + message.setValueU32("internalformat", GL_RGBA); + #if LL_QTWEBKIT_USES_PIXMAPS + message.setValueU32("format", GL_BGRA_EXT); // I hope this isn't system-dependant... is it? If so, we'll have to check the root window's pixel layout or something... yuck. + #else + message.setValueU32("format", GL_RGBA); + #endif // LL_QTWEBKIT_USES_PIXMAPS + message.setValueU32("type", GL_UNSIGNED_BYTE); + message.setValueBoolean("coords_opengl", true); + sendMessage(message); + } + else + { + // if initialization failed, we're done. + mDeleteMe = true; + } + + } + else if(message_name == "set_user_data_path") + { + std::string user_data_path = message_in.getValue("path"); // n.b. always has trailing platform-specific dir-delimiter + mProfileDir = user_data_path + "browser_profile"; + + // FIXME: Should we do anything with this if it comes in after the browser has been initialized? + } + else if(message_name == "set_language_code") + { + mHostLanguage = message_in.getValue("language"); + + // FIXME: Should we do anything with this if it comes in after the browser has been initialized? + } + else if(message_name == "plugins_enabled") + { + mPluginsEnabled = message_in.getValueBoolean("enable"); + } + else if(message_name == "javascript_enabled") + { + mJavascriptEnabled = message_in.getValueBoolean("enable"); + } + else if(message_name == "size_change") { std::string name = message_in.getValue("name"); S32 width = message_in.getValueS32("width"); @@ -803,29 +859,36 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) mWidth = width; mHeight = height; - // initialize (only gets called once) - initBrowser(); - - // size changed so tell the browser - LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight ); - -// std::cerr << "webkit plugin: set size to " << mWidth << " x " << mHeight -// << ", rowspan is " << LLQtWebKit::getInstance()->getBrowserRowSpan(mBrowserWindowId) << std::endl; - - S32 real_width = LLQtWebKit::getInstance()->getBrowserRowSpan(mBrowserWindowId) / LLQtWebKit::getInstance()->getBrowserDepth(mBrowserWindowId); - - // The actual width the browser will be drawing to is probably smaller... let the host know by modifying texture_width in the response. - if(real_width <= texture_width) + if(initBrowserWindow()) { - texture_width = real_width; + + // size changed so tell the browser + LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight ); + + // std::cerr << "webkit plugin: set size to " << mWidth << " x " << mHeight + // << ", rowspan is " << LLQtWebKit::getInstance()->getBrowserRowSpan(mBrowserWindowId) << std::endl; + + S32 real_width = LLQtWebKit::getInstance()->getBrowserRowSpan(mBrowserWindowId) / LLQtWebKit::getInstance()->getBrowserDepth(mBrowserWindowId); + + // The actual width the browser will be drawing to is probably smaller... let the host know by modifying texture_width in the response. + if(real_width <= texture_width) + { + texture_width = real_width; + } + else + { + // This won't work -- it'll be bigger than the allocated memory. This is a fatal error. + // std::cerr << "Fatal error: browser rowbytes greater than texture width" << std::endl; + mDeleteMe = true; + return; + } } else { - // This won't work -- it'll be bigger than the allocated memory. This is a fatal error. -// std::cerr << "Fatal error: browser rowbytes greater than texture width" << std::endl; + // Setting up the browser window failed. This is a fatal error. mDeleteMe = true; - return; } + mTextureWidth = texture_width; mTextureHeight = texture_height; @@ -975,8 +1038,18 @@ void MediaPluginWebKit::receiveMessage(const char *message_string) } else if(message_name == "enable_cookies") { - bool val = message_in.getValueBoolean("enable"); - LLQtWebKit::getInstance()->enableCookies( val ); + mCookiesEnabled = message_in.getValueBoolean("enable"); + LLQtWebKit::getInstance()->enableCookies( mCookiesEnabled ); + } + else if(message_name == "enable_plugins") + { + mPluginsEnabled = message_in.getValueBoolean("enable"); + LLQtWebKit::getInstance()->enablePlugins( mPluginsEnabled ); + } + else if(message_name == "enable_javascript") + { + mJavascriptEnabled = message_in.getValueBoolean("enable"); + //LLQtWebKit::getInstance()->enableJavascript( mJavascriptEnabled ); } else if(message_name == "proxy_setup") { diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 882430d5e3475fd273dda2ace47fb0266141564b..f087bc64c8f973f24e5497537ef6fe1f43285c20 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -1563,6 +1563,28 @@ <key>Value</key> <integer>1</integer> </map> + <key>BrowserJavascriptEnabled</key> + <map> + <key>Comment</key> + <string>Enable Javascript in the built-in Web browser?</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>1</integer> + </map> + <key>BrowserPluginsEnabled</key> + <map> + <key>Comment</key> + <string>Enable Web plugins in the built-in Web browser?</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>1</integer> + </map> <key>CreateToolCopyCenters</key> <map> <key>Comment</key> @@ -10369,7 +10391,7 @@ <key>Type</key> <string>Boolean</string> <key>Value</key> - <integer>1</integer> + <integer>0</integer> </map> <key>VivoxDebugLevel</key> <map> @@ -10677,7 +10699,7 @@ <key>Type</key> <string>S32</string> <key>Value</key> - <integer>700</integer> + <integer>738</integer> </map> <key>WindowMaximized</key> <map> @@ -10699,7 +10721,7 @@ <key>Type</key> <string>S32</string> <key>Value</key> - <integer>1000</integer> + <integer>1024</integer> </map> <key>WindowX</key> <map> diff --git a/indra/newview/cursors_mac/UI_CURSOR_TOOLBUY.tif b/indra/newview/cursors_mac/UI_CURSOR_TOOLBUY.tif new file mode 100644 index 0000000000000000000000000000000000000000..f366026c33150b9ee191c02e133d804ef17ce1c2 Binary files /dev/null and b/indra/newview/cursors_mac/UI_CURSOR_TOOLBUY.tif differ diff --git a/indra/newview/cursors_mac/UI_CURSOR_TOOLOPEN.tif b/indra/newview/cursors_mac/UI_CURSOR_TOOLOPEN.tif new file mode 100644 index 0000000000000000000000000000000000000000..e9e6a20cd90f08ac85de08fba05677194f0f3b61 Binary files /dev/null and b/indra/newview/cursors_mac/UI_CURSOR_TOOLOPEN.tif differ diff --git a/indra/newview/cursors_mac/UI_CURSOR_TOOLSIT.tif b/indra/newview/cursors_mac/UI_CURSOR_TOOLSIT.tif new file mode 100644 index 0000000000000000000000000000000000000000..bea3d9d4420de6a61a4f482239ca0f628337c26b Binary files /dev/null and b/indra/newview/cursors_mac/UI_CURSOR_TOOLSIT.tif differ diff --git a/indra/newview/installers/darwin/release-dmg/_DS_Store b/indra/newview/installers/darwin/release-dmg/_DS_Store index 495ec37f5347a38e228c305410c683bbf4166765..8f6c25c2f4406537ae70bce453c4d742649f8c33 100644 Binary files a/indra/newview/installers/darwin/release-dmg/_DS_Store and b/indra/newview/installers/darwin/release-dmg/_DS_Store differ diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 7b55282ee514addadf8399dd857a41e53fbc2373..ebadd8a1656f41ec4607c3cdd80ee13c9ec60647 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -443,6 +443,11 @@ void LLAgentWearables::saveWearable(const EWearableType type, const U32 index, B new_wearable->setItemID(old_item_id); // should this be in LLWearable::copyDataFrom()? setWearable(type,index,new_wearable); + // old_wearable may still be referred to by other inventory items. Revert + // unsaved changes so other inventory items aren't affected by the changes + // that were just saved. + old_wearable->revertValues(); + LLInventoryItem* item = gInventory.getItem(old_item_id); if (item) { @@ -545,6 +550,11 @@ void LLAgentWearables::saveWearableAs(const EWearableType type, category_id, new_name, cb); + + // old_wearable may still be referred to by other inventory items. Revert + // unsaved changes so other inventory items aren't affected by the changes + // that were just saved. + old_wearable->revertValues(); } void LLAgentWearables::revertWearable(const EWearableType type, const U32 index) @@ -1702,6 +1712,16 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it LLWearable* old_wearable = getWearable(type, 0); if (old_wearable) { + // Special case where you're putting on a wearable that has the same assetID + // as the previous (e.g. wear a shirt then wear a copy of that shirt) since in this + // case old_wearable == new_wearable. + if (old_wearable == new_wearable) + { + old_wearable->setLabelUpdated(); + new_wearable->setName(new_item->getName()); + new_wearable->setItemID(new_item->getUUID()); + } + const LLUUID& old_item_id = getWearableItemID(type, 0); if ((old_wearable->getAssetID() == new_wearable->getAssetID()) && (old_item_id == new_item->getUUID())) @@ -1717,7 +1737,7 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it continue; } } - + new_wearable->setItemID(new_item->getUUID()); setWearable(type,0,new_wearable); } @@ -1759,6 +1779,7 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it if (mAvatarObject) { + mAvatarObject->setCompositeUpdatesEnabled(TRUE); mAvatarObject->updateVisualParams(); mAvatarObject->invalidateAll(); } diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index f08d8decfe94c198dd20c4bf7093fb43da291f40..b3dfb8f1415e9a45d8c17d38bd8537aa1067cf43 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -399,7 +399,7 @@ bool LLWearableHoldingPattern::isFetchCompleted() bool LLWearableHoldingPattern::isTimedOut() { - static F32 max_wait_time = 20.0; // give up if wearable fetches haven't completed in max_wait_time seconds. + static F32 max_wait_time = 60.0; // give up if wearable fetches haven't completed in max_wait_time seconds. return mWaitTime.getElapsedTimeF32() > max_wait_time; } @@ -436,9 +436,9 @@ void LLWearableHoldingPattern::checkMissingWearables() } } + mWaitTime.reset(); if (!pollMissingWearables()) { - mWaitTime.reset(); doOnIdleRepeating(boost::bind(&LLWearableHoldingPattern::pollMissingWearables,this)); } } @@ -494,11 +494,12 @@ bool LLWearableHoldingPattern::pollFetchCompletion() bool completed = isFetchCompleted(); bool timed_out = isTimedOut(); bool done = completed || timed_out; - - llinfos << "polling, done status: " << completed << " timed out " << timed_out << " elapsed " << mWaitTime.getElapsedTimeF32() << llendl; if (done) { + llinfos << "polling, done status: " << completed << " timed out " << timed_out + << " elapsed " << mWaitTime.getElapsedTimeF32() << llendl; + mFired = true; if (timed_out) @@ -1129,6 +1130,22 @@ void LLAppearanceManager::updateAgentWearables(LLWearableHoldingPattern* holder, // dec_busy_count(); } +static void remove_non_link_items(LLInventoryModel::item_array_t &items) +{ + LLInventoryModel::item_array_t pruned_items; + for (LLInventoryModel::item_array_t::const_iterator iter = items.begin(); + iter != items.end(); + ++iter) + { + const LLViewerInventoryItem *item = (*iter); + if (item && item->getIsLinkType()) + { + pruned_items.push_back((*iter)); + } + } + items = pruned_items; +} + void LLAppearanceManager::updateAppearanceFromCOF() { // update dirty flag to see if the state of the COF matches @@ -1142,13 +1159,17 @@ void LLAppearanceManager::updateAppearanceFromCOF() bool follow_folder_links = true; LLUUID current_outfit_id = getCOF(); - // Find all the wearables that are in the COF's subtree. + // Find all the wearables that are in the COF's subtree. lldebugs << "LLAppearanceManager::updateFromCOF()" << llendl; LLInventoryModel::item_array_t wear_items; LLInventoryModel::item_array_t obj_items; LLInventoryModel::item_array_t gest_items; getUserDescendents(current_outfit_id, wear_items, obj_items, gest_items, follow_folder_links); - + // Get rid of non-links in case somehow the COF was corrupted. + remove_non_link_items(wear_items); + remove_non_link_items(obj_items); + remove_non_link_items(gest_items); + if(!wear_items.count()) { LLNotificationsUtil::add("CouldNotPutOnOutfit"); @@ -1172,7 +1193,7 @@ void LLAppearanceManager::updateAppearanceFromCOF() { LLViewerInventoryItem *item = wear_items.get(i); LLViewerInventoryItem *linked_item = item ? item->getLinkedItem() : NULL; - if (item && linked_item) + if (item && item->getIsLinkType() && linked_item) { LLFoundData found(linked_item->getUUID(), linked_item->getAssetUUID(), @@ -1199,11 +1220,11 @@ void LLAppearanceManager::updateAppearanceFromCOF() { if (!item) { - llwarns << "attempt to wear a null item " << llendl; + llwarns << "Attempt to wear a null item " << llendl; } else if (!linked_item) { - llwarns << "attempt to wear a broken link " << item->getName() << llendl; + llwarns << "Attempt to wear a broken link [ name:" << item->getName() << " ] " << llendl; } } } @@ -1733,6 +1754,13 @@ BOOL LLAppearanceManager::getIsProtectedCOFItem(const LLUUID& obj_id) const { if (!getIsInCOF(obj_id)) return FALSE; + // If a non-link somehow ended up in COF, allow deletion. + const LLInventoryObject *obj = gInventory.getObject(obj_id); + if (obj && !obj->getIsLinkType()) + { + return FALSE; + } + // For now, don't allow direct deletion from the COF. Instead, force users // to choose "Detach" or "Take Off". return TRUE; diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index e6206ba0d2ee907415f7de49b324805d449aa190..02902bc8a59df76507b2356e9acd23c445b97267 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -304,8 +304,7 @@ static std::string gLaunchFileOnQuit; // Used on Win32 for other apps to identify our window (eg, win_setup) const char* const VIEWER_WINDOW_CLASSNAME = "Second Life"; -static const S32 FIRST_RUN_WINDOW_WIDTH = 1024; -static const S32 FIRST_RUN_WINDOW_HRIGHT = 768; + //---------------------------------------------------------------------------- // List of entries from strings.xml to always replace @@ -2195,10 +2194,12 @@ bool LLAppViewer::initConfiguration() // Display splash screen. Must be after above check for previous // crash as this dialog is always frontmost. - std::ostringstream splash_msg; - splash_msg << "Loading " << LLTrans::getString("SECOND_LIFE") << "..."; + std::string splash_msg; + LLStringUtil::format_map_t args; + args["[APP_NAME]"] = LLTrans::getString("SECOND_LIFE"); + splash_msg = LLTrans::getString("StartupLoading", args); LLSplashScreen::show(); - LLSplashScreen::update(splash_msg.str()); + LLSplashScreen::update(splash_msg); //LLVolumeMgr::initClass(); LLVolumeMgr* volume_manager = new LLVolumeMgr(); @@ -2366,35 +2367,12 @@ bool LLAppViewer::initWindow() // store setting in a global for easy access and modification gNoRender = gSavedSettings.getBOOL("DisableRendering"); - S32 window_x = gSavedSettings.getS32("WindowX"); - S32 window_y = gSavedSettings.getS32("WindowY"); - S32 window_width = gSavedSettings.getS32("WindowWidth"); - S32 window_height = gSavedSettings.getS32("WindowHeight"); - - bool show_maximized = gSavedSettings.getBOOL("WindowMaximized"); - - bool first_run = gSavedSettings.getBOOL("FirstLoginThisInstall"); - - if (first_run)//for first login - { - window_width = FIRST_RUN_WINDOW_WIDTH;//yep hardcoded - window_height = FIRST_RUN_WINDOW_HRIGHT; - - //if screen resolution is lower then 1024*768 then show maximized - LLDisplayInfo display_info; - if(display_info.getDisplayWidth() <= FIRST_RUN_WINDOW_WIDTH - || display_info.getDisplayHeight()<=FIRST_RUN_WINDOW_HRIGHT) - { - show_maximized = true; - } - } - // always start windowed BOOL ignorePixelDepth = gSavedSettings.getBOOL("IgnorePixelDepth"); gViewerWindow = new LLViewerWindow(gWindowTitle, VIEWER_WINDOW_CLASSNAME, - window_x, window_y, - window_width, window_height, + gSavedSettings.getS32("WindowX"), gSavedSettings.getS32("WindowY"), + gSavedSettings.getS32("WindowWidth"), gSavedSettings.getS32("WindowHeight"), FALSE, ignorePixelDepth); LLNotificationsUI::LLNotificationManager::getInstance(); @@ -2405,7 +2383,7 @@ bool LLAppViewer::initWindow() gViewerWindow->toggleFullscreen(FALSE); } - if (show_maximized) + if (gSavedSettings.getBOOL("WindowMaximized")) { gViewerWindow->mWindow->maximize(); gViewerWindow->getWindow()->setNativeAspectRatio(gSavedSettings.getF32("FullScreenAspectRatio")); @@ -3062,11 +3040,11 @@ bool LLAppViewer::initCache() if (mPurgeCache) { - LLSplashScreen::update("Clearing cache..."); + LLSplashScreen::update(LLTrans::getString("StartupClearingCache")); purgeCache(); } - LLSplashScreen::update("Initializing Texture Cache..."); + LLSplashScreen::update(LLTrans::getString("StartupInitializingTextureCache")); // Init the texture cache // Allocate 80% of the cache size for textures @@ -3079,7 +3057,7 @@ bool LLAppViewer::initCache() S64 extra = LLAppViewer::getTextureCache()->initCache(LL_PATH_CACHE, texture_cache_size, read_only); texture_cache_size -= extra; - LLSplashScreen::update("Initializing VFS..."); + LLSplashScreen::update(LLTrans::getString("StartupInitializingVFS")); // Init the VFS S64 vfs_size = cache_size - texture_cache_size; @@ -3839,7 +3817,7 @@ void LLAppViewer::idleShutdown() S32 finished_uploads = total_uploads - pending_uploads; F32 percent = 100.f * finished_uploads / total_uploads; gViewerWindow->setProgressPercent(percent); - gViewerWindow->setProgressString("Saving your settings..."); + gViewerWindow->setProgressString(LLTrans::getString("SavingSettings")); return; } @@ -3851,7 +3829,7 @@ void LLAppViewer::idleShutdown() // Wait for a LogoutReply message gViewerWindow->setShowProgress(TRUE); gViewerWindow->setProgressPercent(100.f); - gViewerWindow->setProgressString("Logging out..."); + gViewerWindow->setProgressString(LLTrans::getString("LoggingOut")); return; } diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 12cff327803560a8ab6c62eab23c6f62aad04994..63d9ed19ad65b801e9b8d761def14f608bc32886 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -480,10 +480,12 @@ bool LLAppViewerWin32::initHardwareTest() gSavedSettings.setBOOL("ProbeHardwareOnStartup", FALSE); // Disable so debugger can work - std::ostringstream splash_msg; - splash_msg << LLTrans::getString("StartupLoading") << " " << LLAppViewer::instance()->getSecondLifeTitle() << "..."; + std::string splash_msg; + LLStringUtil::format_map_t args; + args["[APP_NAME]"] = LLAppViewer::instance()->getSecondLifeTitle(); + splash_msg = LLTrans::getString("StartupLoading", args); - LLSplashScreen::update(splash_msg.str()); + LLSplashScreen::update(splash_msg); } if (!restoreErrorTrap()) diff --git a/indra/newview/llassetuploadresponders.cpp b/indra/newview/llassetuploadresponders.cpp index a2322e28b4f4e752792216fdfaf8f7ab47a20d3b..844179621946a61850453ae15b800c2a3cbcfb8c 100644 --- a/indra/newview/llassetuploadresponders.cpp +++ b/indra/newview/llassetuploadresponders.cpp @@ -55,6 +55,7 @@ #include "llviewermenufile.h" #include "llviewerwindow.h" #include "lltexlayer.h" +#include "lltrans.h" // library includes #include "lldir.h" @@ -181,7 +182,10 @@ void LLAssetUploadResponder::uploadFailure(const LLSD& content) // deal with L$ errors if (reason == "insufficient funds") { - LLFloaterBuyCurrency::buyCurrency("Uploading costs", LLGlobalEconomy::Singleton::getInstance()->getPriceUpload()); + S32 price = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", price); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("uploading_costs", args), price); } else { diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index bf3e8795a559898796d0e6273efc3ec7401977fa..2934dc10101b49550fb49452cb6a9c6654b19895 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -447,6 +447,7 @@ LLChatHistory::LLChatHistory(const LLChatHistory::Params& p) : LLUICtrl(p), mMessageHeaderFilename(p.message_header), mMessageSeparatorFilename(p.message_separator), + mMessagePlaintextSeparatorFilename(p.message_plaintext_separator), mLeftTextPad(p.left_text_pad), mRightTextPad(p.right_text_pad), mLeftWidgetPad(p.left_widget_pad), @@ -534,6 +535,12 @@ LLView* LLChatHistory::getSeparator() return separator; } +LLView* LLChatHistory::getPlaintextSeparator() +{ + LLPanel* separator = LLUICtrlFactory::getInstance()->createFromFile<LLPanel>(mMessagePlaintextSeparatorFilename, NULL, LLPanel::child_registry_t::instance()); + return separator; +} + LLView* LLChatHistory::getHeader(const LLChat& chat,const LLStyle::Params& style_params) { LLChatHistoryHeader* header = LLChatHistoryHeader::createInstance(mMessageHeaderFilename); @@ -632,6 +639,16 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL if (use_plain_text_chat_history) { + // append plaintext separator + LLView* separator = getPlaintextSeparator(); + LLInlineViewSegment::Params p; + p.force_newline = true; + p.left_pad = mLeftWidgetPad; + p.right_pad = mRightWidgetPad; + p.view = separator; + //mEditor->appendWidget(p, "\n", false); // TODO: this is absolute minimal fix for EXT-3818 because it's late for 2.0 + mEditor->appendWidget(p, "", false); // This should be properly fixed in 2.1 + mEditor->appendText("[" + chat.mTimeStr + "] ", mEditor->getText().size() != 0, style_params); if (utf8str_trim(chat.mFromName).size() != 0) @@ -734,7 +751,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL LLNotificationPtr notification = LLNotificationsUtil::find(chat.mNotifId); if (notification != NULL) { - LLToastNotifyPanel* notify_box = new LLToastNotifyPanel( + LLIMToastNotifyPanel* notify_box = new LLIMToastNotifyPanel( notification); //we can't set follows in xml since it broke toasts behavior notify_box->setFollowsLeft(); @@ -743,11 +760,13 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL ctrl_list_t ctrls = notify_box->getControlPanel()->getCtrlList(); S32 offset = 0; - for (ctrl_list_t::iterator it = ctrls.begin(); it != ctrls.end(); it++) + // Children were added by addChild() which uses push_front to insert them into list, + // so to get buttons in correct order reverse iterator is used (EXT-5906) + for (ctrl_list_t::reverse_iterator it = ctrls.rbegin(); it != ctrls.rend(); it++) { LLButton * button = dynamic_cast<LLButton*> (*it); if (button != NULL) - { + { button->setOrigin( offset, button->getRect().mBottom); button->setLeftHPad(2 * HPAD); @@ -758,9 +777,9 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL button->getRect().mBottom)); button->setAutoResize(true); button->autoResize(); - offset += 2 * HPAD + button->getRect().getWidth(); + offset += HPAD + button->getRect().getWidth(); button->setFollowsNone(); - } + } } LLTextEditor* text_editor = notify_box->getChild<LLTextEditor>("text_editor_box", TRUE); @@ -817,7 +836,6 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL message = chat.mFromName + message; } - mEditor->appendText(message, FALSE, style_params); } mEditor->blockUndo(); diff --git a/indra/newview/llchathistory.h b/indra/newview/llchathistory.h index 950b32861bdd56b5e8d10c32aa84a7245816862b..dfe5ea98e66e50ad8db1930ed50dccef3240a29a 100644 --- a/indra/newview/llchathistory.h +++ b/indra/newview/llchathistory.h @@ -47,6 +47,8 @@ class LLChatHistory : public LLUICtrl Optional<std::string> message_header; //Message separator filename Optional<std::string> message_separator; + //Message plaintext separator filename + Optional<std::string> message_plaintext_separator; //Text left padding from the scroll rect Optional<S32> left_text_pad; //Text right padding from the scroll rect @@ -69,6 +71,7 @@ class LLChatHistory : public LLUICtrl Params() : message_header("message_header"), message_separator("message_separator"), + message_plaintext_separator("message_plaintext_separator"), left_text_pad("left_text_pad"), right_text_pad("right_text_pad"), left_widget_pad("left_widget_pad"), @@ -96,6 +99,11 @@ class LLChatHistory : public LLUICtrl * @return pointer to LLView separator object. */ LLView* getSeparator(); + /** + * Builds a message plaintext separator. + * @return pointer to LLView separator object. + */ + LLView* getPlaintextSeparator(); /** * Builds a message header. * @return pointer to LLView header object. @@ -133,6 +141,7 @@ class LLChatHistory : public LLUICtrl std::string mMessageHeaderFilename; std::string mMessageSeparatorFilename; + std::string mMessagePlaintextSeparatorFilename; S32 mLeftTextPad; S32 mRightTextPad; diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index 8efa814a2eb1b95f38eda7f252634e73571610ad..1f92686a43606edd7f9712be798612367f493b8b 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -1137,7 +1137,7 @@ void im_chiclet_callback(LLChicletPanel* panel, const LLSD& data){ S32 unread = data["participant_unread"].asInteger(); LLIMFloater* im_floater = LLIMFloater::findInstance(session_id); - if (im_floater && im_floater->getVisible()) + if (im_floater && im_floater->getVisible() && im_floater->hasFocus()) { unread = 0; } diff --git a/indra/newview/llfloaterbuy.cpp b/indra/newview/llfloaterbuy.cpp index fba557c65698b72e381f83e9cefe5cecb4463944..589f570d96f0416e3eefef3c812698701ade1099 100644 --- a/indra/newview/llfloaterbuy.cpp +++ b/indra/newview/llfloaterbuy.cpp @@ -246,7 +246,8 @@ void LLFloaterBuy::inventoryChanged(LLViewerObject* obj, // Compute icon for this item BOOL item_is_multi = FALSE; - if ( inv_item->getFlags() & LLInventoryItem::II_FLAGS_LANDMARK_VISITED ) + if ( inv_item->getFlags() & LLInventoryItem::II_FLAGS_LANDMARK_VISITED + || inv_item->getFlags() & LLInventoryItem::II_FLAGS_OBJECT_HAS_MULTIPLE_ITEMS) { item_is_multi = TRUE; } diff --git a/indra/newview/llfloaterbuycurrency.cpp b/indra/newview/llfloaterbuycurrency.cpp index 1642e6725ee9c1fe2e89d8c89b9bae6226351292..7fddd1fc5faa110aaf43946e19d63ffab8cc149f 100644 --- a/indra/newview/llfloaterbuycurrency.cpp +++ b/indra/newview/llfloaterbuycurrency.cpp @@ -234,8 +234,7 @@ void LLFloaterBuyCurrencyUI::updateUI() if (mHasTarget) { childSetVisible("buy_action", true); - childSetTextArg("buy_action", "[NAME]", mTargetName); - childSetTextArg("buy_action", "[PRICE]", llformat("%d",mTargetPrice)); + childSetTextArg("buy_action", "[ACTION]", mTargetName); } } diff --git a/indra/newview/llfloaterimagepreview.cpp b/indra/newview/llfloaterimagepreview.cpp index 9917593c91c1c7abe7a595b143c98d7b2da726b3..6b754bd0653107d65508d986444dad3e29ac3cbb 100644 --- a/indra/newview/llfloaterimagepreview.cpp +++ b/indra/newview/llfloaterimagepreview.cpp @@ -611,7 +611,6 @@ LLImagePreviewAvatar::LLImagePreviewAvatar(S32 width, S32 height) : LLViewerDyna mCameraZoom = 1.f; mDummyAvatar = (LLVOAvatar*)gObjectList.createObjectViewer(LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); - mDummyAvatar->initInstance(); mDummyAvatar->createDrawable(&gPipeline); mDummyAvatar->mIsDummy = TRUE; mDummyAvatar->mSpecialRenderMode = 2; diff --git a/indra/newview/llfloaterinventory.cpp b/indra/newview/llfloaterinventory.cpp index 844f0ac509f4e80ba80e3569ffabb8bf6c2312dd..6842d3dc74d890774dfd1bcff23e3e5586724599 100644 --- a/indra/newview/llfloaterinventory.cpp +++ b/indra/newview/llfloaterinventory.cpp @@ -64,42 +64,6 @@ BOOL LLFloaterInventory::postBuild() return TRUE; } - -void LLFloaterInventory::draw() -{ - updateTitle(); - LLFloater::draw(); -} - -void LLFloaterInventory::updateTitle() -{ - LLLocale locale(LLLocale::USER_LOCALE); - std::string item_count_string; - LLResMgr::getInstance()->getIntegerString(item_count_string, gInventory.getItemCount()); - - LLStringUtil::format_map_t string_args; - string_args["[ITEM_COUNT]"] = item_count_string; - string_args["[FILTER]"] = mPanelMainInventory->getFilterText(); - - if (LLInventoryModel::backgroundFetchActive()) - { - setTitle(getString("TitleFetching", string_args)); - } - else if (LLInventoryModel::isEverythingFetched()) - { - setTitle(getString("TitleCompleted", string_args)); - } - else - { - setTitle(getString("Title")); - } -} - -void LLFloaterInventory::changed(U32 mask) -{ - updateTitle(); -} - LLInventoryPanel* LLFloaterInventory::getPanel() { if (mPanelMainInventory) diff --git a/indra/newview/llfloaterinventory.h b/indra/newview/llfloaterinventory.h index b661c391a7e581cbae7f5acff23662165f4a0f73..473d2b189d699d1d0e6b171a0c9c6999587eefab 100644 --- a/indra/newview/llfloaterinventory.h +++ b/indra/newview/llfloaterinventory.h @@ -63,13 +63,9 @@ class LLFloaterInventory : public LLFloater static void cleanup(); // Inherited functionality - /*virtual*/ void changed(U32 mask); - /*virtual*/ void draw(); /*virtual*/ void onOpen(const LLSD& key); LLInventoryPanel* getPanel(); -protected: - void updateTitle(); private: LLPanelMainInventory* mPanelMainInventory; }; diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp index f09459d5dbf26d74f5f30659ce0035599531e09a..cb141926cad66bd24b4c6e37f700ef945fb6b1cb 100644 --- a/indra/newview/llfloaterland.cpp +++ b/indra/newview/llfloaterland.cpp @@ -86,6 +86,7 @@ static std::string OWNER_ONLINE = "0"; static std::string OWNER_OFFLINE = "1"; static std::string OWNER_GROUP = "2"; +static std::string MATURITY = "[MATURITY]"; // constants used in callbacks below - syntactic sugar. static const BOOL BUY_GROUP_LAND = TRUE; @@ -102,6 +103,22 @@ class LLParcelSelectionObserver : public LLParcelObserver virtual void changed() { LLFloaterLand::refreshAll(); } }; +// class needed to get full access to textbox inside checkbox, because LLCheckBoxCtrl::setLabel() has string as its argument. +// It was introduced while implementing EXT-4706 +class LLCheckBoxWithTBAcess : public LLCheckBoxCtrl +{ +public: + LLTextBox* getTextBox() + { + return mLabel; + } +}; + +// 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] +void insert_maturity_into_textbox(LLTextBox* target_textbox, LLFloater* names_floater, std::string str_to_parse); + //--------------------------------------------------------------------------- // LLFloaterLand //--------------------------------------------------------------------------- @@ -554,7 +571,7 @@ void LLPanelLandGeneral::refresh() if (regionp) { - mContentRating->setText(regionp->getSimAccessString()); + insert_maturity_into_textbox(mContentRating, gFloaterView->getParentFloater(this), MATURITY); mLandType->setText(regionp->getSimProductName()); } @@ -803,6 +820,8 @@ void LLPanelLandGeneral::refreshNames() } mTextGroup->setText(group); + if (parcel->getForSale()) + { const LLUUID& auth_buyer_id = parcel->getAuthorizedBuyerID(); if(auth_buyer_id.notNull()) { @@ -815,6 +834,7 @@ void LLPanelLandGeneral::refreshNames() mSaleInfoForSale2->setTextArg("[BUYER]", getString("anyone")); } } +} // virtual @@ -2057,8 +2077,14 @@ void LLPanelLandOptions::refresh() { // not teen so fill in the data for the maturity control mMatureCtrl->setVisible(TRUE); - mMatureCtrl->setLabel(getString("mature_check_mature")); - mMatureCtrl->setToolTip(getString("mature_check_mature_tooltip")); + LLStyle::Params style; + style.image(LLUI::getUIImage(gFloaterView->getParentFloater(this)->getString("maturity_icon_moderate"))); + LLCheckBoxWithTBAcess* fullaccess_mature_ctrl = (LLCheckBoxWithTBAcess*)mMatureCtrl; + fullaccess_mature_ctrl->getTextBox()->setText(std::string("icon"),style); + fullaccess_mature_ctrl->getTextBox()->appendText(getString("mature_check_mature"), false); + fullaccess_mature_ctrl->setToolTip(getString("mature_check_mature_tooltip")); + fullaccess_mature_ctrl->reshape(fullaccess_mature_ctrl->getRect().getWidth(), fullaccess_mature_ctrl->getRect().getHeight(), FALSE); + // they can see the checkbox, but its disposition depends on the // state of the region LLViewerRegion* regionp = LLViewerParcelMgr::getInstance()->getSelectionRegion(); @@ -2459,19 +2485,26 @@ void LLPanelLandAccess::refresh() } } + LLCheckBoxWithTBAcess* maturity_checkbox = (LLCheckBoxWithTBAcess*) getChild<LLCheckBoxCtrl>( "public_access"); LLViewerRegion* region = LLViewerParcelMgr::getInstance()->getSelectionRegion(); if(region) { - std::string region_access = "("; - region_access += region->getSimAccessString(); - region_access += ")"; - childSetLabelArg( "public_access", "[MATURITY]", region_access ); + LLTextBox* maturity_textbox = maturity_checkbox->getTextBox(); + insert_maturity_into_textbox(maturity_textbox, gFloaterView->getParentFloater(this), getString("allow_public_access")); + maturity_checkbox->reshape(maturity_checkbox->getRect().getWidth(), maturity_checkbox->getRect().getHeight(), FALSE); } else { - childSetLabelArg( "public_access", "[MATURITY]", std::string() ); + std::string maturity_string = getString("allow_public_access"); + size_t maturity_pos = maturity_string.find(MATURITY); + + if (maturity_pos != std::string::npos) + { + maturity_string.replace(maturity_pos, MATURITY.length(), std::string("")); } + maturity_checkbox->setLabel(maturity_string); + } if(parcel->getRegionDenyAnonymousOverride()) { @@ -2857,7 +2890,7 @@ void LLPanelLandCovenant::refresh() LLTextBox* region_maturity = getChild<LLTextBox>("region_maturity_text"); if (region_maturity) { - region_maturity->setText(region->getSimAccessString()); + insert_maturity_into_textbox(region_maturity, gFloaterView->getParentFloater(this), MATURITY); } LLTextBox* resellable_clause = getChild<LLTextBox>("resellable_clause"); @@ -2938,3 +2971,51 @@ void LLPanelLandCovenant::updateEstateOwnerName(const std::string& name) if (editor) editor->setText(name); } } + +// 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] +void insert_maturity_into_textbox(LLTextBox* target_textbox, LLFloater* names_floater, std::string str_to_parse) +{ + LLViewerRegion* region = LLViewerParcelMgr::getInstance()->getSelectionRegion(); + if (!region) + return; + + LLStyle::Params style; + + U8 sim_access = region->getSimAccess(); + + switch(sim_access) + { + case SIM_ACCESS_PG: + style.image(LLUI::getUIImage(names_floater->getString("maturity_icon_general"))); + break; + + case SIM_ACCESS_ADULT: + style.image(LLUI::getUIImage(names_floater->getString("maturity_icon_adult"))); + break; + + case SIM_ACCESS_MATURE: + style.image(LLUI::getUIImage(names_floater->getString("maturity_icon_moderate"))); + break; + + default: + break; + } + + size_t maturity_pos = str_to_parse.find(MATURITY); + + if (maturity_pos == std::string::npos) + { + return; + } + + std::string text_before_rating = str_to_parse.substr(0, maturity_pos); + std::string text_after_rating = str_to_parse.substr(maturity_pos + MATURITY.length()); + + target_textbox->setText(text_before_rating); + // any text may be here instead of "icon" except "" + target_textbox->appendText(std::string("icon"), false, style); + target_textbox->appendText(LLViewerParcelMgr::getInstance()->getSelectionRegion()->getSimAccessString(), false); + target_textbox->appendText(text_after_rating, false); +} diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index 8bffe9bf57a7aa8aa87eacf138db82356058fb20..3487f52f3551b2f852bc517fb304b9a3b42a5695 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -110,6 +110,9 @@ const F32 MAX_USER_FAR_CLIP = 512.f; const F32 MIN_USER_FAR_CLIP = 64.f; +//control value for middle mouse as talk2push button +const static std::string MIDDLE_MOUSE_CV = "MiddleMouse"; + class LLVoiceSetKeyDialog : public LLModalDialog { public: @@ -180,7 +183,6 @@ void LLVoiceSetKeyDialog::onCancel(void* user_data) // a static member and update all our static callbacks void handleNameTagOptionChanged(const LLSD& newvalue); -viewer_media_t get_web_media(); bool callback_clear_browser_cache(const LLSD& notification, const LLSD& response); //bool callback_skip_dialogs(const LLSD& notification, const LLSD& response, LLFloaterPreference* floater); @@ -188,23 +190,14 @@ bool callback_clear_browser_cache(const LLSD& notification, const LLSD& response void fractionFromDecimal(F32 decimal_val, S32& numerator, S32& denominator); -viewer_media_t get_web_media() -{ - viewer_media_t media_source = LLViewerMedia::newMediaImpl(LLUUID::null); - media_source->initializeMedia("text/html"); - return media_source; -} - - bool callback_clear_browser_cache(const LLSD& notification, const LLSD& response) { S32 option = LLNotificationsUtil::getSelectedOption(notification, response); if ( option == 0 ) // YES { // clean web - viewer_media_t media_source = get_web_media(); - if (media_source && media_source->hasMedia()) - media_source->getMediaPlugin()->clear_cache(); + LLViewerMedia::clearAllCaches(); + LLViewerMedia::clearAllCookies(); // clean nav bar history LLNavigationBar::getInstance()->clearHistoryCache(); @@ -426,17 +419,14 @@ void LLFloaterPreference::apply() std::string cache_location = gDirUtilp->getExpandedFilename(LL_PATH_CACHE, ""); childSetText("cache_location", cache_location); - viewer_media_t media_source = get_web_media(); - if (media_source && media_source->hasMedia()) + LLViewerMedia::setCookiesEnabled(childGetValue("cookies_enabled")); + + if(hasChild("web_proxy_enabled") &&hasChild("web_proxy_editor") && hasChild("web_proxy_port")) { - media_source->getMediaPlugin()->enable_cookies(childGetValue("cookies_enabled")); - if(hasChild("web_proxy_enabled") &&hasChild("web_proxy_editor") && hasChild("web_proxy_port")) - { - bool proxy_enable = childGetValue("web_proxy_enabled"); - std::string proxy_address = childGetValue("web_proxy_editor"); - int proxy_port = childGetValue("web_proxy_port"); - media_source->getMediaPlugin()->proxy_setup(proxy_enable, proxy_address, proxy_port); - } + bool proxy_enable = childGetValue("web_proxy_enabled"); + std::string proxy_address = childGetValue("web_proxy_editor"); + int proxy_port = childGetValue("web_proxy_port"); + LLViewerMedia::setProxyConfig(proxy_enable, proxy_address, proxy_port); } // LLWString busy_response = utf8str_to_wstring(getChild<LLUICtrl>("busy_response")->getValue().asString()); @@ -1008,9 +998,17 @@ void LLFloaterPreference::setKey(KEY key) void LLFloaterPreference::onClickSetMiddleMouse() { - childSetValue("modifier_combo", "MiddleMouse"); + LLUICtrl* p2t_line_editor = getChild<LLUICtrl>("modifier_combo"); + // update the control right away since we no longer wait for apply - getChild<LLUICtrl>("modifier_combo")->onCommit(); + p2t_line_editor->setControlValue(MIDDLE_MOUSE_CV); + + //push2talk button "middle mouse" control value is in English, need to localize it for presentation + LLPanel* advanced_preferences = dynamic_cast<LLPanel*>(p2t_line_editor->getParent()); + if (advanced_preferences) + { + p2t_line_editor->setValue(advanced_preferences->getString("middle_mouse")); + } } /* void LLFloaterPreference::onClickSkipDialogs() @@ -1302,6 +1300,16 @@ BOOL LLPanelPreference::postBuild() getChild<LLCheckBoxCtrl>("voice_call_friends_only_check")->setCommitCallback(boost::bind(&showFriendsOnlyWarning, _1, _2)); } + // Panel Advanced + if (hasChild("modifier_combo")) + { + //localizing if push2talk button is set to middle mouse + if (MIDDLE_MOUSE_CV == childGetValue("modifier_combo").asString()) + { + childSetValue("modifier_combo", getString("middle_mouse")); + } + } + apply(); return true; } diff --git a/indra/newview/llfloaterreporter.cpp b/indra/newview/llfloaterreporter.cpp index a97c21ff6c51897e3a77a529198929e86388af82..6a6c1937dd1f8d2a9ff6b97b8fed93361d1b757c 100644 --- a/indra/newview/llfloaterreporter.cpp +++ b/indra/newview/llfloaterreporter.cpp @@ -85,6 +85,8 @@ #include "llassetuploadresponders.h" #include "llagentui.h" +#include "lltrans.h" + const U32 INCLUDE_SCREENSHOT = 0x01 << 0; //----------------------------------------------------------------------------- @@ -372,8 +374,7 @@ void LLFloaterReporter::onClickSend(void *userdata) return; } - - LLUploadDialog::modalUploadDialog("Uploading...\n\nReport"); + LLUploadDialog::modalUploadDialog(LLTrans::getString("uploading_abuse_report")); // *TODO don't upload image if checkbox isn't checked std::string url = gAgent.getRegion()->getCapability("SendUserReport"); std::string sshot_url = gAgent.getRegion()->getCapability("SendUserReportWithScreenshot"); diff --git a/indra/newview/llfloaterscriptlimits.cpp b/indra/newview/llfloaterscriptlimits.cpp index d56bc7b75b5f41f05052b6279cfc9a4a48661d9b..d8d6f2535a0f9237d71d9e214298492a589789a3 100644 --- a/indra/newview/llfloaterscriptlimits.cpp +++ b/indra/newview/llfloaterscriptlimits.cpp @@ -110,7 +110,7 @@ BOOL LLFloaterScriptLimits::postBuild() if(!mTab) { - llinfos << "Error! couldn't get scriptlimits_panels, aborting Script Information setup" << llendl; + llwarns << "Error! couldn't get scriptlimits_panels, aborting Script Information setup" << llendl; return FALSE; } @@ -214,7 +214,7 @@ void fetchScriptLimitsRegionInfoResponder::result(const LLSD& content) LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(!instance) { - llinfos << "Failed to get llfloaterscriptlimits instance" << llendl; + llwarns << "Failed to get llfloaterscriptlimits instance" << llendl; } } @@ -227,7 +227,7 @@ void fetchScriptLimitsRegionInfoResponder::result(const LLSD& content) void fetchScriptLimitsRegionInfoResponder::error(U32 status, const std::string& reason) { - llinfos << "Error from responder " << reason << llendl; + llwarns << "Error from responder " << reason << llendl; } void fetchScriptLimitsRegionSummaryResponder::result(const LLSD& content_ref) @@ -281,26 +281,40 @@ void fetchScriptLimitsRegionSummaryResponder::result(const LLSD& content_ref) OSMessageBox(nice_llsd.str(), "summary response:", 0); - llinfos << "summary response:" << *content << llendl; + llwarns << "summary response:" << *content << llendl; #endif LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(!instance) { - llinfos << "Failed to get llfloaterscriptlimits instance" << llendl; + llwarns << "Failed to get llfloaterscriptlimits instance" << llendl; } else { LLTabContainer* tab = instance->getChild<LLTabContainer>("scriptlimits_panels"); + if(tab) + { LLPanelScriptLimitsRegionMemory* panel_memory = (LLPanelScriptLimitsRegionMemory*)tab->getChild<LLPanel>("script_limits_region_memory_panel"); + if(panel_memory) + { + panel_memory->childSetValue("loading_text", LLSD(std::string(""))); + + LLButton* btn = panel_memory->getChild<LLButton>("refresh_list_btn"); + if(btn) + { + btn->setEnabled(true); + } + panel_memory->setRegionSummary(content); } } + } +} void fetchScriptLimitsRegionSummaryResponder::error(U32 status, const std::string& reason) { - llinfos << "Error from responder " << reason << llendl; + llwarns << "Error from responder " << reason << llendl; } void fetchScriptLimitsRegionDetailsResponder::result(const LLSD& content_ref) @@ -383,7 +397,7 @@ result (map) if(!instance) { - llinfos << "Failed to get llfloaterscriptlimits instance" << llendl; + llwarns << "Failed to get llfloaterscriptlimits instance" << llendl; } else { @@ -397,19 +411,19 @@ result (map) } else { - llinfos << "Failed to get scriptlimits memory panel" << llendl; + llwarns << "Failed to get scriptlimits memory panel" << llendl; } } else { - llinfos << "Failed to get scriptlimits_panels" << llendl; + llwarns << "Failed to get scriptlimits_panels" << llendl; } } } void fetchScriptLimitsRegionDetailsResponder::error(U32 status, const std::string& reason) { - llinfos << "Error from responder " << reason << llendl; + llwarns << "Error from responder " << reason << llendl; } void fetchScriptLimitsAttachmentInfoResponder::result(const LLSD& content_ref) @@ -471,7 +485,7 @@ void fetchScriptLimitsAttachmentInfoResponder::result(const LLSD& content_ref) if(!instance) { - llinfos << "Failed to get llfloaterscriptlimits instance" << llendl; + llwarns << "Failed to get llfloaterscriptlimits instance" << llendl; } else { @@ -481,29 +495,46 @@ void fetchScriptLimitsAttachmentInfoResponder::result(const LLSD& content_ref) LLPanelScriptLimitsAttachment* panel = (LLPanelScriptLimitsAttachment*)tab->getChild<LLPanel>("script_limits_my_avatar_panel"); if(panel) { + panel->childSetValue("loading_text", LLSD(std::string(""))); + + LLButton* btn = panel->getChild<LLButton>("refresh_list_btn"); + if(btn) + { + btn->setEnabled(true); + } + panel->setAttachmentDetails(content); } else { - llinfos << "Failed to get script_limits_my_avatar_panel" << llendl; + llwarns << "Failed to get script_limits_my_avatar_panel" << llendl; } } else { - llinfos << "Failed to get scriptlimits_panels" << llendl; + llwarns << "Failed to get scriptlimits_panels" << llendl; } } } void fetchScriptLimitsAttachmentInfoResponder::error(U32 status, const std::string& reason) { - llinfos << "Error from responder " << reason << llendl; + llwarns << "Error from responder " << reason << llendl; } ///---------------------------------------------------------------------------- // Memory Panel ///---------------------------------------------------------------------------- +LLPanelScriptLimitsRegionMemory::~LLPanelScriptLimitsRegionMemory() +{ + if(!mParcelId.isNull()) + { + LLRemoteParcelInfoProcessor::getInstance()->removeObserver(mParcelId, this); + mParcelId.setNull(); + } +}; + BOOL LLPanelScriptLimitsRegionMemory::getLandScriptResources() { LLSD body; @@ -544,6 +575,11 @@ void LLPanelScriptLimitsRegionMemory::setParcelID(const LLUUID& parcel_id) { if (!parcel_id.isNull()) { + if(!mParcelId.isNull()) + { + LLRemoteParcelInfoProcessor::getInstance()->removeObserver(mParcelId, this); + mParcelId.setNull(); + } LLRemoteParcelInfoProcessor::getInstance()->addObserver(parcel_id, this); LLRemoteParcelInfoProcessor::getInstance()->sendParcelInfoRequest(parcel_id); } @@ -594,7 +630,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionDetails(LLSD content) if(!list) { - llinfos << "Error getting the scripts_list control" << llendl; + llwarns << "Error getting the scripts_list control" << llendl; return; } @@ -679,7 +715,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionDetails(LLSD content) { names_requested.push_back(owner_id); gCacheName->get(owner_id, is_group_owned, - boost::bind(&LLPanelScriptLimitsRegionMemory::onNameCache, + boost::bind(&LLPanelScriptLimitsRegionMemory::onNameCache, this, _1, _2)); } } @@ -742,8 +778,6 @@ void LLPanelScriptLimitsRegionMemory::setRegionDetails(LLSD content) // save the structure to make object return easier mContent = content; - - childSetValue("loading_text", LLSD(std::string(""))); } void LLPanelScriptLimitsRegionMemory::setRegionSummary(LLSD content) @@ -762,7 +796,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionSummary(LLSD content) } else { - llinfos << "summary doesn't contain memory info" << llendl; + llwarns << "summary doesn't contain memory info" << llendl; return; } @@ -780,7 +814,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionSummary(LLSD content) } else { - llinfos << "summary doesn't contain urls info" << llendl; + llwarns << "summary doesn't contain urls info" << llendl; return; } @@ -927,8 +961,6 @@ void LLPanelScriptLimitsRegionMemory::clearList() // static void LLPanelScriptLimitsRegionMemory::onClickRefresh(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickRefresh" << llendl; - LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -938,6 +970,13 @@ void LLPanelScriptLimitsRegionMemory::onClickRefresh(void* userdata) LLPanelScriptLimitsRegionMemory* panel_memory = (LLPanelScriptLimitsRegionMemory*)tab->getChild<LLPanel>("script_limits_region_memory_panel"); if(panel_memory) { + //To stop people from hammering the refesh button and accidentally dosing themselves - enough requests can crash the viewer! + //turn the button off, then turn it on when we get a response + LLButton* btn = panel_memory->getChild<LLButton>("refresh_list_btn"); + if(btn) + { + btn->setEnabled(false); + } panel_memory->clearList(); panel_memory->StartRequestChain(); @@ -977,7 +1016,6 @@ void LLPanelScriptLimitsRegionMemory::showBeacon() // static void LLPanelScriptLimitsRegionMemory::onClickHighlight(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickHighlight" << llendl; LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -1083,7 +1121,6 @@ void LLPanelScriptLimitsRegionMemory::returnObjects() // static void LLPanelScriptLimitsRegionMemory::onClickReturn(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickReturn" << llendl; LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -1186,6 +1223,12 @@ void LLPanelScriptLimitsAttachment::setAttachmentDetails(LLSD content) setAttachmentSummary(content); childSetValue("loading_text", LLSD(std::string(""))); + + LLButton* btn = getChild<LLButton>("refresh_list_btn"); + if(btn) + { + btn->setEnabled(true); + } } BOOL LLPanelScriptLimitsAttachment::postBuild() @@ -1226,7 +1269,7 @@ void LLPanelScriptLimitsAttachment::setAttachmentSummary(LLSD content) } else { - llinfos << "attachment details don't contain memory summary info" << llendl; + llwarns << "attachment details don't contain memory summary info" << llendl; return; } @@ -1244,7 +1287,7 @@ void LLPanelScriptLimitsAttachment::setAttachmentSummary(LLSD content) } else { - llinfos << "attachment details don't contain urls summary info" << llendl; + llwarns << "attachment details don't contain urls summary info" << llendl; return; } @@ -1276,15 +1319,22 @@ void LLPanelScriptLimitsAttachment::setAttachmentSummary(LLSD content) // static void LLPanelScriptLimitsAttachment::onClickRefresh(void* userdata) { - llinfos << "Refresh clicked" << llendl; - LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { LLTabContainer* tab = instance->getChild<LLTabContainer>("scriptlimits_panels"); LLPanelScriptLimitsAttachment* panel_attachments = (LLPanelScriptLimitsAttachment*)tab->getChild<LLPanel>("script_limits_my_avatar_panel"); + LLButton* btn = panel_attachments->getChild<LLButton>("refresh_list_btn"); + + //To stop people from hammering the refesh button and accidentally dosing themselves - enough requests can crash the viewer! + //turn the button off, then turn it on when we get a response + if(btn) + { + btn->setEnabled(false); + } panel_attachments->clearList(); panel_attachments->requestAttachmentDetails(); + return; } else diff --git a/indra/newview/llfloaterscriptlimits.h b/indra/newview/llfloaterscriptlimits.h index ce49209039b525af0810e0e60d6bf5b06dfbb461..ba6f930bee9d325220705661c8c3dc63840369fd 100644 --- a/indra/newview/llfloaterscriptlimits.h +++ b/indra/newview/llfloaterscriptlimits.h @@ -153,10 +153,7 @@ class LLPanelScriptLimitsRegionMemory : public LLPanelScriptLimitsInfo, LLRemote mParcelMemoryMax(0), mParcelMemoryUsed(0) {}; - ~LLPanelScriptLimitsRegionMemory() - { - LLRemoteParcelInfoProcessor::getInstance()->removeObserver(mParcelId, this); - }; + ~LLPanelScriptLimitsRegionMemory(); // LLPanel virtual BOOL postBuild(); diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index cc807c2370556363b002908568238379048d1fd2..f74d912842a6ca31cd42425dc10ac0e3fc332d0c 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -186,7 +186,7 @@ LLFolderView::LLFolderView(const Params& p) mNeedsAutoRename(FALSE), mDebugFilters(FALSE), mSortOrder(LLInventoryFilter::SO_FOLDERS_BY_NAME), // This gets overridden by a pref immediately - mFilter( new LLInventoryFilter(p.name) ), + mFilter( new LLInventoryFilter(p.title) ), mShowSelectionContext(FALSE), mShowSingleSelection(FALSE), mArrangeGeneration(0), @@ -417,11 +417,6 @@ S32 LLFolderView::arrange( S32* unused_width, S32* unused_height, S32 filter_gen S32 total_width = LEFT_PAD; S32 running_height = mDebugFilters ? llceil(LLFontGL::getFontMonospace()->getLineHeight()) : 0; S32 target_height = running_height; - if(!mHasVisibleChildren)// is there any filtered items ? - { - //Nope. We need to display status textbox, let's reserve some place for it - target_height += mStatusTextBox->getTextPixelHeight(); - } S32 parent_item_height = getRect().getHeight(); for (folders_t::iterator iter = mFolders.begin(); @@ -481,6 +476,13 @@ S32 LLFolderView::arrange( S32* unused_width, S32* unused_height, S32 filter_gen } } + if(!mHasVisibleChildren)// is there any filtered items ? + { + //Nope. We need to display status textbox, let's reserve some place for it + running_height = mStatusTextBox->getTextPixelHeight(); + target_height = running_height; + } + LLRect scroll_rect = mScrollContainer->getContentWindowRect(); reshape( llmax(scroll_rect.getWidth(), total_width), running_height ); @@ -837,11 +839,14 @@ void LLFolderView::sanitizeSelection() void LLFolderView::clearSelection() { - if (mSelectedItems.size() > 0) + for (selected_items_t::const_iterator item_it = mSelectedItems.begin(); + item_it != mSelectedItems.end(); + ++item_it) { - recursiveDeselect(FALSE); - mSelectedItems.clear(); + (*item_it)->setUnselected(); } + + mSelectedItems.clear(); mSelectThisID.setNull(); } @@ -1826,7 +1831,9 @@ BOOL LLFolderView::handleRightMouseDown( S32 x, S32 y, MASK mask ) BOOL handled = childrenHandleRightMouseDown(x, y, mask) != NULL; S32 count = mSelectedItems.size(); LLMenuGL* menu = (LLMenuGL*)mPopupMenuHandle.get(); - if(handled && (count > 0) && menu) + if ( handled + && ( count > 0 && (hasVisibleChildren() || mFilter->getShowFolderState() == LLInventoryFilter::SHOW_ALL_FOLDERS) ) // show menu only if selected items are visible + && menu ) { if (mCallbackRegistrar) mCallbackRegistrar->pushScope(); diff --git a/indra/newview/llfolderview.h b/indra/newview/llfolderview.h index 38255b3cea270dcf8387ea803a58319873c08976..42390dfd1766d2f333e873f31b660d2d014ac16f 100644 --- a/indra/newview/llfolderview.h +++ b/indra/newview/llfolderview.h @@ -93,8 +93,9 @@ class LLFolderView : public LLFolderViewFolder, public LLEditMenuHandler public: struct Params : public LLInitParam::Block<Params, LLFolderViewFolder::Params> { - Mandatory<LLPanel*> parent_panel; - Optional<LLUUID> task_id; + Mandatory<LLPanel*> parent_panel; + Optional<LLUUID> task_id; + Optional<std::string> title; }; LLFolderView(const Params&); virtual ~LLFolderView( void ); diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index 76607e48742b445ceef8184b03a85b12b7c0c834..bb4c75d3ac68d2a1455d377d1c315f5f5856cfef 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -121,7 +121,6 @@ LLFolderViewItem::LLFolderViewItem(const LLFolderViewItem::Params& p) mHasVisibleChildren(FALSE), mIndentation(0), mItemHeight(p.item_height), - mNumDescendantsSelected(0), mPassedFilter(FALSE), mLastFilterGeneration(-1), mStringMatchOffset(std::string::npos), @@ -256,11 +255,30 @@ void LLFolderViewItem::refreshFromListener() // temporary attempt to display the inventory folder in the user locale. // mantipov: *NOTE: be sure this code is synchronized with LLFriendCardsManager::findChildFolderUUID // it uses the same way to find localized string - if (LLFolderType::lookupIsProtectedType(preferred_type)) + + // HACK: EXT - 6028 ([HARD CODED]? Inventory > Library > "Accessories" folder) + // Translation of Accessories folder in Library inventory folder + bool accessories = false; + if(mLabel == std::string("Accessories")) + { + //To ensure that Accessories folder is in Library we have to check its parent folder. + //Due to parent LLFolderViewFloder is not set to this item yet we have to check its parent via Inventory Model + LLInventoryCategory* cat = gInventory.getCategory(mListener->getUUID()); + if(cat) + { + const LLUUID& parent_folder_id = cat->getParentUUID(); + accessories = (parent_folder_id == gInventory.getLibraryRootFolderID()); + } + } + + //"Accessories" inventory category has folder type FT_NONE. So, this folder + //can not be detected as protected with LLFolderType::lookupIsProtectedType + if (accessories || LLFolderType::lookupIsProtectedType(preferred_type)) { LLTrans::findString(mLabel, "InvFolder " + mLabel); }; + setToolTip(mLabel); setIcon(mListener->getIcon()); time_t creation_date = mListener->getCreationDate(); if (mCreationDate != creation_date) @@ -497,22 +515,6 @@ BOOL LLFolderViewItem::changeSelection(LLFolderViewItem* selection, BOOL selecte return FALSE; } -void LLFolderViewItem::recursiveDeselect(BOOL deselect_self) -{ - if (mIsSelected && deselect_self) - { - mIsSelected = FALSE; - - // update ancestors' count of selected descendents - LLFolderViewFolder* parent_folder = getParentFolder(); - while(parent_folder) - { - parent_folder->mNumDescendantsSelected--; - parent_folder = parent_folder->getParentFolder(); - } - } -} - BOOL LLFolderViewItem::isMovable() { @@ -1459,7 +1461,6 @@ BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL openitem { rv = TRUE; child_selected = TRUE; - mNumDescendantsSelected++; } } for (items_t::iterator iter = mItems.begin(); @@ -1470,7 +1471,6 @@ BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL openitem { rv = TRUE; child_selected = TRUE; - mNumDescendantsSelected++; } } if(openitem && child_selected) @@ -1503,14 +1503,6 @@ BOOL LLFolderViewFolder::changeSelection(LLFolderViewItem* selection, folders_t::iterator fit = iter++; if((*fit)->changeSelection(selection, selected)) { - if (selected) - { - mNumDescendantsSelected++; - } - else - { - mNumDescendantsSelected--; - } rv = TRUE; } } @@ -1520,14 +1512,6 @@ BOOL LLFolderViewFolder::changeSelection(LLFolderViewItem* selection, items_t::iterator iit = iter++; if((*iit)->changeSelection(selection, selected)) { - if (selected) - { - mNumDescendantsSelected++; - } - else - { - mNumDescendantsSelected--; - } rv = TRUE; } } @@ -1544,7 +1528,6 @@ S32 LLFolderViewFolder::extendSelection(LLFolderViewItem* selection, LLFolderVie { folders_t::iterator fit = iter++; num_selected += (*fit)->extendSelection(selection, last_selected, selected_items); - mNumDescendantsSelected += num_selected; } // handle selection of our immediate children... @@ -1637,7 +1620,6 @@ S32 LLFolderViewFolder::extendSelection(LLFolderViewItem* selection, LLFolderVie if (item->changeSelection(item, TRUE)) { selected_items.put(item); - mNumDescendantsSelected++; num_selected++; } } @@ -1648,7 +1630,6 @@ S32 LLFolderViewFolder::extendSelection(LLFolderViewItem* selection, LLFolderVie if (selection->changeSelection(selection, TRUE)) { selected_items.put(selection); - mNumDescendantsSelected++; num_selected++; } } @@ -1656,47 +1637,6 @@ S32 LLFolderViewFolder::extendSelection(LLFolderViewItem* selection, LLFolderVie return num_selected; } -void LLFolderViewFolder::recursiveDeselect(BOOL deselect_self) -{ - // make sure we don't have negative values - llassert(mNumDescendantsSelected >= 0); - - if (mIsSelected && deselect_self) - { - mIsSelected = FALSE; - - // update ancestors' count of selected descendents - LLFolderViewFolder* parent_folder = getParentFolder(); - while(parent_folder) - { - parent_folder->mNumDescendantsSelected--; - parent_folder = parent_folder->getParentFolder(); - } - } - - if (0 == mNumDescendantsSelected) - { - return; - } - - for (items_t::iterator iter = mItems.begin(); - iter != mItems.end();) - { - items_t::iterator iit = iter++; - LLFolderViewItem* item = (*iit); - item->recursiveDeselect(TRUE); - } - - for (folders_t::iterator iter = mFolders.begin(); - iter != mFolders.end();) - { - folders_t::iterator fit = iter++; - LLFolderViewFolder* folder = (*fit); - folder->recursiveDeselect(TRUE); - } - -} - void LLFolderViewFolder::destroyView() { for (items_t::iterator iter = mItems.begin(); @@ -1730,8 +1670,6 @@ BOOL LLFolderViewFolder::removeItem(LLFolderViewItem* item) { if(item->remove()) { - //RN: this seem unneccessary as remove() moves to trash - //removeView(item); return TRUE; } return FALSE; @@ -1746,7 +1684,6 @@ void LLFolderViewFolder::removeView(LLFolderViewItem* item) return; } // deselect without traversing hierarchy - item->recursiveDeselect(TRUE); getRoot()->removeFromSelectionList(item); extractItem(item); delete item; diff --git a/indra/newview/llfolderviewitem.h b/indra/newview/llfolderviewitem.h index be8e73a5a9d8a9d47c4b9fd3961ba588e6a95dff..655ad89e99000bd503892d4921b3ec6da28b6fdc 100644 --- a/indra/newview/llfolderviewitem.h +++ b/indra/newview/llfolderviewitem.h @@ -150,7 +150,6 @@ class LLFolderViewItem : public LLView BOOL mHasVisibleChildren; S32 mIndentation; S32 mItemHeight; - S32 mNumDescendantsSelected; BOOL mPassedFilter; S32 mLastFilterGeneration; std::string::size_type mStringMatchOffset; @@ -231,9 +230,6 @@ class LLFolderViewItem : public LLView // this method is used to group select items virtual S32 extendSelection(LLFolderViewItem* selection, LLFolderViewItem* last_selected, LLDynamicArray<LLFolderViewItem*>& items){ return FALSE; } - // this method is used to group select items - virtual void recursiveDeselect(BOOL deselect_self); - // gets multiple-element selection virtual BOOL getSelectionList(std::set<LLUUID> &selection) const {return TRUE;} @@ -246,10 +242,10 @@ class LLFolderViewItem : public LLView // destroys this item recursively virtual void destroyView(); - S32 getNumSelectedDescendants() { return mNumDescendantsSelected; } - BOOL isSelected() { return mIsSelected; } + void setUnselected() { mIsSelected = FALSE; } + void setIsCurSelection(BOOL select) { mIsCurSelection = select; } BOOL getIsCurSelection() { return mIsCurSelection; } @@ -441,8 +437,6 @@ class LLFolderViewFolder : public LLFolderViewItem // this method is used to group select items virtual S32 extendSelection(LLFolderViewItem* selection, LLFolderViewItem* last_selected, LLDynamicArray<LLFolderViewItem*>& items); - virtual void recursiveDeselect(BOOL deselect_self); - // Returns true is this object and all of its children can be removed. virtual BOOL isRemovable(); diff --git a/indra/newview/llgrouplist.cpp b/indra/newview/llgrouplist.cpp index bcfb516b81550c777efc898de1c66630021e6e31..8a056f836f215a84d8f7d2cf85b87e51af4cdc95 100644 --- a/indra/newview/llgrouplist.cpp +++ b/indra/newview/llgrouplist.cpp @@ -127,7 +127,7 @@ BOOL LLGroupList::handleRightMouseDown(S32 x, S32 y, MASK mask) BOOL handled = LLUICtrl::handleRightMouseDown(x, y, mask); LLMenuGL* context_menu = (LLMenuGL*)mContextMenuHandle.get(); - if (context_menu) + if (context_menu && size() > 0) { context_menu->buildDrawLabels(); context_menu->updateParent(LLMenuGL::sMenuContainer); diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp index aeac3841f992e73f349d57176d9cadae9b8b34cc..7f93a357decc0de926629e6cdbc2a303c70451d0 100644 --- a/indra/newview/llgroupmgr.cpp +++ b/indra/newview/llgroupmgr.cpp @@ -54,6 +54,7 @@ #include "llgroupactions.h" #include "llnotificationsutil.h" #include "lluictrlfactory.h" +#include "lltrans.h" #include <boost/regex.hpp> #if LL_MSVC @@ -1062,6 +1063,24 @@ void LLGroupMgr::processGroupRoleDataReply(LLMessageSystem* msg, void** data) msg->getU64("RoleData","Powers",powers,i); msg->getU32("RoleData","Members",member_count,i); + //there are 3 predifined roles - Owners, Officers, Everyone + //there names are defined in lldatagroups.cpp + //lets change names from server to localized strings + if(name == "Everyone") + { + name = LLTrans::getString("group_role_everyone"); + } + else if(name == "Officers") + { + name = LLTrans::getString("group_role_officers"); + } + else if(name == "Owners") + { + name = LLTrans::getString("group_role_owners"); + } + + + lldebugs << "Adding role data: " << name << " {" << role_id << "}" << llendl; LLGroupRoleData* rd = new LLGroupRoleData(role_id,name,title,desc,powers,member_count); group_data->mRoles[role_id] = rd; diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 77eaebb0bc70e7213a70b1301e0e2ed6b057ab3e..91f4f57e54458b55e673b3b743bc21a4af6d2a51 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -128,6 +128,11 @@ void LLIMFloater::onFocusReceived() LLIMModel::getInstance()->setActiveSessionID(mSessionID); LLBottomTray::getInstance()->getChicletPanel()->setChicletToggleState(mSessionID, true); + + if (getVisible()) + { + LLIMModel::instance().sendNoUnreadMessages(mSessionID); + } } // virtual @@ -454,7 +459,7 @@ void LLIMFloater::getAllowedRect(LLRect& rect) void LLIMFloater::setDocked(bool docked, bool pop_on_undock) { // update notification channel state - LLNotificationsUI::LLScreenChannel* channel = dynamic_cast<LLNotificationsUI::LLScreenChannel*> + LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> (LLNotificationsUI::LLChannelManager::getInstance()-> findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); @@ -473,7 +478,7 @@ void LLIMFloater::setDocked(bool docked, bool pop_on_undock) void LLIMFloater::setVisible(BOOL visible) { - LLNotificationsUI::LLScreenChannel* channel = dynamic_cast<LLNotificationsUI::LLScreenChannel*> + LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> (LLNotificationsUI::LLChannelManager::getInstance()-> findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); LLTransientDockableFloater::setVisible(visible); @@ -609,7 +614,16 @@ void LLIMFloater::updateMessages() bool use_plain_text_chat_history = gSavedSettings.getBOOL("PlainTextChatHistory"); std::list<LLSD> messages; - LLIMModel::instance().getMessages(mSessionID, messages, mLastMessageIndex+1); + + // we shouldn't reset unread message counters if IM floater doesn't have focus + if (hasFocus()) + { + LLIMModel::instance().getMessages(mSessionID, messages, mLastMessageIndex+1); + } + else + { + LLIMModel::instance().getMessagesSilently(mSessionID, messages, mLastMessageIndex+1); + } if (messages.size()) { @@ -642,6 +656,24 @@ void LLIMFloater::updateMessages() if (msg.has("notification_id")) { chat.mNotifId = msg["notification_id"].asUUID(); + // if notification exists - embed it + if (LLNotificationsUtil::find(chat.mNotifId) != NULL) + { + // remove embedded notification from channel + LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> + (LLNotificationsUI::LLChannelManager::getInstance()-> + findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); + if (getVisible()) + { + // toast will be automatically closed since it is not storable toast + channel->hideToast(chat.mNotifId); + } + } + // if notification doesn't exist - try to use next message which should be log entry + else + { + continue; + } } //process text message else @@ -651,6 +683,19 @@ void LLIMFloater::updateMessages() mChatHistory->appendMessage(chat, chat_args); mLastMessageIndex = msg["index"].asInteger(); + + // if it is a notification - next message is a notification history log, so skip it + if (chat.mNotifId.notNull() && LLNotificationsUtil::find(chat.mNotifId) != NULL) + { + if (++iter == iter_end) + { + break; + } + else + { + mLastMessageIndex++; + } + } } } } diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 2d3971ff433456f580594f728fc8e8ef8cd54b36..52ac2dbca4172746f9168feeb14cca977c3e8bc5 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -609,7 +609,7 @@ bool LLIMModel::clearSession(const LLUUID& session_id) return true; } -void LLIMModel::getMessages(const LLUUID& session_id, std::list<LLSD>& messages, int start_index) +void LLIMModel::getMessagesSilently(const LLUUID& session_id, std::list<LLSD>& messages, int start_index) { LLIMSession* session = findIMSession(session_id); if (!session) @@ -629,6 +629,16 @@ void LLIMModel::getMessages(const LLUUID& session_id, std::list<LLSD>& messages, messages.push_back(*iter); i--; } +} + +void LLIMModel::sendNoUnreadMessages(const LLUUID& session_id) +{ + LLIMSession* session = findIMSession(session_id); + if (!session) + { + llwarns << "session " << session_id << "does not exist " << llendl; + return; + } session->mNumUnread = 0; session->mParticipantUnreadMessageCount = 0; @@ -640,6 +650,13 @@ void LLIMModel::getMessages(const LLUUID& session_id, std::list<LLSD>& messages, mNoUnreadMsgsSignal(arg); } +void LLIMModel::getMessages(const LLUUID& session_id, std::list<LLSD>& messages, int start_index) +{ + getMessagesSilently(session_id, messages, start_index); + + sendNoUnreadMessages(session_id); +} + bool LLIMModel::addToHistory(const LLUUID& session_id, const std::string& from, const LLUUID& from_id, const std::string& utf8_text) { LLIMSession* session = findIMSession(session_id); @@ -718,13 +735,22 @@ LLIMModel::LLIMSession* LLIMModel::addMessageSilently(const LLUUID& session_id, return NULL; } - addToHistory(session_id, from, from_id, utf8_text); - if (log2file) logToFile(session_id, from, from_id, utf8_text); + // replace interactive system message marker with correct from string value + std::string from_name = from; + if (INTERACTIVE_SYSTEM_FROM == from) + { + from_name = SYSTEM_FROM; + } + + addToHistory(session_id, from_name, from_id, utf8_text); + if (log2file) logToFile(session_id, from_name, from_id, utf8_text); session->mNumUnread++; //update count of unread messages from real participant - if (!(from_id.isNull() || from_id == gAgentID || SYSTEM_FROM == from)) + if (!(from_id.isNull() || from_id == gAgentID || SYSTEM_FROM == from) + // we should increment counter for interactive system messages() + || INTERACTIVE_SYSTEM_FROM == from) { ++(session->mParticipantUnreadMessageCount); } diff --git a/indra/newview/llimview.h b/indra/newview/llimview.h index c5ceaf3a8983cfb5161a4b64a31a2354cafe9aa9..4055ce61217b1c21fc457b14e2caac611359cce0 100644 --- a/indra/newview/llimview.h +++ b/indra/newview/llimview.h @@ -177,6 +177,17 @@ class LLIMModel : public LLSingleton<LLIMModel> */ bool clearSession(const LLUUID& session_id); + /** + * Populate supplied std::list with messages starting from index specified by start_index without + * emitting no unread messages signal. + */ + void getMessagesSilently(const LLUUID& session_id, std::list<LLSD>& messages, int start_index = 0); + + /** + * Sends no unread messages signal. + */ + void sendNoUnreadMessages(const LLUUID& session_id); + /** * Populate supplied std::list with messages starting from index specified by start_index */ diff --git a/indra/newview/llinspectavatar.cpp b/indra/newview/llinspectavatar.cpp index 1c68c50ec6554ccb26cc9b9a5ed47b4052b133fc..1bb9c42cbfe2d8e5957300e40c3a1e83cd0799f2 100644 --- a/indra/newview/llinspectavatar.cpp +++ b/indra/newview/llinspectavatar.cpp @@ -563,7 +563,6 @@ void LLInspectAvatar::updateVolumeSlider() LLUICtrl* volume_slider = getChild<LLUICtrl>("volume_slider"); volume_slider->setEnabled( !is_muted ); - const F32 DEFAULT_VOLUME = 0.5f; F32 volume; if (is_muted) { @@ -574,13 +573,6 @@ void LLInspectAvatar::updateVolumeSlider() { // actual volume volume = gVoiceClient->getUserVolume(mAvatarID); - - // *HACK: Voice client doesn't have any data until user actually - // says something. - if (volume == 0.f) - { - volume = DEFAULT_VOLUME; - } } volume_slider->setValue( (F64)volume ); } diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 734e1767ac71d74da7afc24b679fe25cb51b54b2..bcf40ea5f9d6a8dac257abe2ddd213dd00cbd918 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -105,7 +105,7 @@ std::string ICON_NAME[ICON_NAME_COUNT] = "Inv_Script", "Inv_Clothing", "Inv_Object", - "Inv_Object", + "Inv_Object_Multi", "Inv_Notecard", "Inv_Skin", "Inv_Snapshot", @@ -685,14 +685,15 @@ void LLInvFVBridge::addTrashContextMenuOptions(menuentry_vec_t &items, void LLInvFVBridge::addDeleteContextMenuOptions(menuentry_vec_t &items, menuentry_vec_t &disabled_items) { + + const LLInventoryObject *obj = getInventoryObject(); + // Don't allow delete as a direct option from COF folder. - if (isCOFFolder()) + if (obj && obj->getIsLinkType() && isCOFFolder()) { return; } - const LLInventoryObject *obj = getInventoryObject(); - // "Remove link" and "Delete" are the same operation. if (obj && obj->getIsLinkType() && !get_is_item_worn(mUUID)) { @@ -2691,8 +2692,7 @@ void LLFolderBridge::buildContextMenu(LLMenuGL& menu, U32 flags) LLViewerInventoryCategory *cat = getCategory(); // BAP removed protected check to re-enable standard ops in untyped folders. // Not sure what the right thing is to do here. - if (!isCOFFolder() && cat && cat->getPreferredType()!=LLFolderType::FT_OUTFIT /*&& - LLAssetType::lookupIsProtectedCategoryType(cat->getPreferredType())*/) + if (!isCOFFolder() && cat && (cat->getPreferredType() != LLFolderType::FT_OUTFIT)) { // Do not allow to create 2-level subfolder in the Calling Card/Friends folder. EXT-694. if (!LLFriendCardsManager::instance().isCategoryInFriendFolder(cat)) @@ -3817,7 +3817,9 @@ std::string LLGestureBridge::getLabelSuffix() const { if( LLGestureManager::instance().isGestureActive(mUUID) ) { - return LLItemBridge::getLabelSuffix() + " (active)"; + LLStringUtil::format_map_t args; + args["[GESLABEL]"] = LLItemBridge::getLabelSuffix(); + return LLTrans::getString("ActiveGesture", args); } else { @@ -4166,7 +4168,7 @@ std::string LLObjectBridge::getLabelSuffix() const // e.g. "(worn on ...)" / "(attached to ...)" LLStringUtil::format_map_t args; - args["[ATTACHMENT_POINT]"] = attachment_point_name.c_str(); + args["[ATTACHMENT_POINT]"] = LLTrans::getString(attachment_point_name); return LLItemBridge::getLabelSuffix() + LLTrans::getString("WornOnAttachmentPoint", args); } else @@ -4285,7 +4287,7 @@ void LLObjectBridge::buildContextMenu(LLMenuGL& menu, U32 flags) items.push_back(std::string("Attach Separator")); items.push_back(std::string("Detach From Yourself")); } - else if (!isItemInTrash() && !isLinkedObjectInTrash() && !isLinkedObjectMissing()) + else if (!isItemInTrash() && !isLinkedObjectInTrash() && !isLinkedObjectMissing() && !isCOFFolder()) { items.push_back(std::string("Attach Separator")); items.push_back(std::string("Object Wear")); @@ -4711,7 +4713,7 @@ void LLWearableBridge::buildContextMenu(LLMenuGL& menu, U32 flags) disabled_items.push_back(std::string("Wearable Edit")); } // Don't allow items to be worn if their baseobj is in the trash. - if (isLinkedObjectInTrash() || isLinkedObjectMissing()) + if (isLinkedObjectInTrash() || isLinkedObjectMissing() || isCOFFolder()) { disabled_items.push_back(std::string("Wearable Wear")); disabled_items.push_back(std::string("Wearable Add")); @@ -5365,7 +5367,10 @@ LLUIImagePtr LLLinkItemBridge::getIcon() const { if (LLViewerInventoryItem *item = getItem()) { - return get_item_icon(item->getActualType(), item->getInventoryType(), 0, FALSE); + U32 attachment_point = (item->getFlags() & 0xff); // low byte of inventory flags + bool is_multi = LLInventoryItem::II_FLAGS_OBJECT_HAS_MULTIPLE_ITEMS & item->getFlags(); + + return get_item_icon(item->getActualType(), item->getInventoryType(), attachment_point, is_multi); } return get_item_icon(LLAssetType::AT_LINK, LLInventoryType::IT_NONE, 0, FALSE); } diff --git a/indra/newview/llinventoryobserver.cpp b/indra/newview/llinventoryobserver.cpp index 2fb8aea4e947db0272649e926fe1b59390fae1da..62c2d8060943a1e127353e01a41a415f78de0a4a 100644 --- a/indra/newview/llinventoryobserver.cpp +++ b/indra/newview/llinventoryobserver.cpp @@ -54,7 +54,6 @@ #include "llappviewer.h" #include "lldbstrings.h" #include "llviewerstats.h" -#include "llmutelist.h" #include "llnotificationsutil.h" #include "llcallbacklist.h" #include "llpreview.h" diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 8097985ade6dc4c78a9b5d4a3638ef5cc88917b0..d7720b735c6f6484178f9f9a32dee2e5ab3b4eb1 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -118,6 +118,7 @@ BOOL LLInventoryPanel::postBuild() 0); LLFolderView::Params p; p.name = getName(); + p.title = getLabel(); p.rect = folder_rect; p.parent_panel = this; p.tool_tip = p.name; @@ -292,9 +293,6 @@ void LLInventoryPanel::modelChanged(U32 mask) bridge->clearDisplayName(); view_item->refresh(); - - // Set the new tooltip with the new display name. - view_item->setToolTip(bridge->getDisplayName()); } } } diff --git a/indra/newview/llloginhandler.cpp b/indra/newview/llloginhandler.cpp index 1be3430e07ce653795aeeee44f8e619827e1bdf6..e3817eecc45571de5414a16d1bc1c3b5d6c7a3b1 100644 --- a/indra/newview/llloginhandler.cpp +++ b/indra/newview/llloginhandler.cpp @@ -35,6 +35,7 @@ #include "llloginhandler.h" // viewer includes +#include "lllogininstance.h" // to check if logged in yet #include "llpanellogin.h" // save_password_to_disk() #include "llstartup.h" // getStartupState() #include "llurlsimstring.h" @@ -169,6 +170,13 @@ bool LLLoginHandler::handle(const LLSD& tokens, const LLSD& query_map, LLMediaCtrl* web) { + // do nothing if we are already logged in + if (LLLoginInstance::getInstance()->authSuccess()) + { + LL_WARNS_ONCE("SLURL") << "Already logged in! Ignoring login SLapp." << LL_ENDL; + return true; + } + if (tokens.size() == 1 && tokens[0].asString() == "show") { diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 38a518c5fd7e9e2d7a515bd7f285191deddf5b2b..74e3f45a68e6240b463ffb92f9b5f9d9181e1f70 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -127,68 +127,26 @@ LLMute::LLMute(const LLUUID& id, const std::string& name, EType type, U32 flags) } -std::string LLMute::getDisplayName() const +std::string LLMute::getDisplayType() const { - std::string name_with_suffix = mName; switch (mType) { case BY_NAME: default: - name_with_suffix += " " + LLTrans::getString("MuteByName"); + return LLTrans::getString("MuteByName"); break; case AGENT: - name_with_suffix += " " + LLTrans::getString("MuteAgent"); + return LLTrans::getString("MuteAgent"); break; case OBJECT: - name_with_suffix += " " + LLTrans::getString("MuteObject"); + return LLTrans::getString("MuteObject"); break; case GROUP: - name_with_suffix += " " + LLTrans::getString("MuteGroup"); + return LLTrans::getString("MuteGroup"); break; } - return name_with_suffix; } -void LLMute::setFromDisplayName(const std::string& display_name) -{ - size_t pos = 0; - mName = display_name; - - pos = mName.rfind(" " + LLTrans::getString("MuteGroup")); - if (pos != std::string::npos) - { - mName.erase(pos); - mType = GROUP; - return; - } - - pos = mName.rfind(" " + LLTrans::getString("MuteObject")); - if (pos != std::string::npos) - { - mName.erase(pos); - mType = OBJECT; - return; - } - - pos = mName.rfind(" " + LLTrans::getString("MuteAgent")); - if (pos != std::string::npos) - { - mName.erase(pos); - mType = AGENT; - return; - } - - pos = mName.rfind(" " + LLTrans::getString("MuteByName")); - if (pos != std::string::npos) - { - mName.erase(pos); - mType = BY_NAME; - return; - } - - llwarns << "Unable to set mute from display name " << display_name << llendl; - return; -} /* static */ LLMuteList* LLMuteList::getInstance() @@ -487,13 +445,13 @@ BOOL LLMuteList::autoRemove(const LLUUID& agent_id, const EAutoReason reason) std::string full_name; if (gCacheName->getFullName(agent_id, full_name)) - { - // name in cache, call callback directly + { + // name in cache, call callback directly notify_automute_callback(agent_id, full_name, false, reason); - } - else - { - // not in cache, lookup name from cache + } + else + { + // not in cache, lookup name from cache gCacheName->get(agent_id, false, boost::bind(¬ify_automute_callback, _1, _2, _3, reason)); } diff --git a/indra/newview/llmutelist.h b/indra/newview/llmutelist.h index 777b4843c843c1e871ecaf8d1c78cf16c6e239fc..be61e1b528f72914713dadd2356579704584f69b 100644 --- a/indra/newview/llmutelist.h +++ b/indra/newview/llmutelist.h @@ -63,14 +63,8 @@ class LLMute LLMute(const LLUUID& id, const std::string& name = std::string(), EType type = BY_NAME, U32 flags = 0); - // Returns name + suffix based on type - // For example: "James Tester (resident)" - std::string getDisplayName() const; - - // Converts a UI name into just the agent or object name - // For example: "James Tester (resident)" sets the name to "James Tester" - // and the type to AGENT. - void setFromDisplayName(const std::string& display_name); + // Returns localized type name of muted item + std::string getDisplayType() const; public: LLUUID mID; // agent or object id diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index c3ff61aae37d60d1ba461bcc48eb0b07534334e0..f81f23d05b588b999aca2a24ab328c2d74b5c822 100644 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -142,11 +142,12 @@ void LLNameListCtrl::showInspector(const LLUUID& avatar_id, bool is_group) void LLNameListCtrl::mouseOverHighlightNthItem( S32 target_index ) { - if (getHighlightedItemInx()!= target_index) + S32 cur_index = getHighlightedItemInx(); + if (cur_index != target_index) { - if(getHighlightedItemInx()!=-1) + if(0 <= cur_index && cur_index < (S32)getItemList().size()) { - LLScrollListItem* item = getItemList()[getHighlightedItemInx()]; + LLScrollListItem* item = getItemList()[cur_index]; LLScrollListText* cell = dynamic_cast<LLScrollListText*>(item->getColumn(mNameColumnIndex)); if(cell) cell->setTextWidth(cell->getTextWidth() + info_icon_size); diff --git a/indra/newview/llnearbychatbar.cpp b/indra/newview/llnearbychatbar.cpp index 483756b16e5045f62da8ca6c964b182e7e8af71d..af711b6943aecaa2ac1e9d89c50047bf7cf959f4 100644 --- a/indra/newview/llnearbychatbar.cpp +++ b/indra/newview/llnearbychatbar.cpp @@ -96,11 +96,7 @@ LLGestureComboList::LLGestureComboList(const LLGestureComboList::Params& p) params.commit_on_keyboard_movement(false); mList = LLUICtrlFactory::create<LLScrollListCtrl>(params); - - // *HACK: adding list as a child to FloaterViewHolder to make it fully visible without - // making it top control (because it would cause problems). - gViewerWindow->getFloaterViewHolder()->addChild(mList); - mList->setVisible(FALSE); + addChild(mList); //****************************Gesture Part********************************/ @@ -115,7 +111,7 @@ LLGestureComboList::LLGestureComboList(const LLGestureComboList::Params& p) setFocusLostCallback(boost::bind(&LLGestureComboList::hideList, this)); } -BOOL LLGestureComboList::handleKey(KEY key, MASK mask, BOOL called_from_parent) +BOOL LLGestureComboList::handleKeyHere(KEY key, MASK mask) { BOOL handled = FALSE; @@ -126,7 +122,7 @@ BOOL LLGestureComboList::handleKey(KEY key, MASK mask, BOOL called_from_parent) } else { - handled = mList->handleKey(key, mask, called_from_parent); + handled = mList->handleKeyHere(key, mask); } return handled; @@ -135,18 +131,17 @@ BOOL LLGestureComboList::handleKey(KEY key, MASK mask, BOOL called_from_parent) void LLGestureComboList::showList() { LLRect rect = mList->getRect(); - LLRect screen; - mButton->localRectToScreen(getRect(), &screen); + LLRect button_rect = mButton->getRect(); // Calculating amount of space between the navigation bar and gestures combo LLNavigationBar* nb = LLNavigationBar::getInstance(); S32 x, nb_bottom; - nb->localPointToScreen(0, 0, &x, &nb_bottom); + nb->localPointToOtherView(0, 0, &x, &nb_bottom, this); - S32 max_height = nb_bottom - screen.mTop; + S32 max_height = nb_bottom - button_rect.mTop; mList->calcColumnWidths(); - rect.setOriginAndSize(screen.mLeft, screen.mTop, llmax(mList->getMaxContentWidth(),mButton->getRect().getWidth()), max_height); + rect.setOriginAndSize(button_rect.mLeft, button_rect.mTop, llmax(mList->getMaxContentWidth(),mButton->getRect().getWidth()), max_height); mList->setRect(rect); mList->fitContents( llmax(mList->getMaxContentWidth(),mButton->getRect().getWidth()), max_height); @@ -156,6 +151,7 @@ void LLGestureComboList::showList() // Show the list and push the button down mButton->setToggleState(TRUE); mList->setVisible(TRUE); + LLUI::addPopup(mList); } void LLGestureComboList::onButtonCommit() @@ -188,6 +184,7 @@ void LLGestureComboList::hideList() mButton->setToggleState(FALSE); mList->setVisible(FALSE); mList->mouseOverHighlightNthItem(-1); + LLUI::removePopup(mList); gFocusMgr.setKeyboardFocus(NULL); } } diff --git a/indra/newview/llnearbychatbar.h b/indra/newview/llnearbychatbar.h index 559c1ee091b740a9ed60f22dae0abb8f1d8865ee..dd467d79780e4c73b39ff4f2f017643df2863678 100644 --- a/indra/newview/llnearbychatbar.h +++ b/indra/newview/llnearbychatbar.h @@ -70,7 +70,7 @@ class LLGestureComboList LLCtrlListInterface* getListInterface() { return (LLCtrlListInterface*)mList; }; virtual void showList(); virtual void hideList(); - virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); + virtual BOOL handleKeyHere(KEY key, MASK mask); S32 getCurrentIndex() const; void onItemSelected(const LLSD& data); diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 08ae93c3a6a1f8d9212bd2d9d5f06cc0e6e4f008..e199f9f180e484de6ed8ab7878726c46ad7c32c6 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -268,24 +268,23 @@ void LLNearbyChatScreenChannel::showToastsBottom() } break; } - else - { - toast_rect = toast->getRect(); - toast_rect.setLeftTopAndSize(getRect().mLeft , toast_top, toast_rect.getWidth() ,toast_rect.getHeight()); - - toast->setRect(toast_rect); - toast->setIsHidden(false); - toast->setVisible(TRUE); + bottom = toast_top - toast->getTopPad(); + } - if(!toast->hasFocus()) - { - // Fixing Z-order of toasts (EXT-4862) - // Next toast will be positioned under this one. - gFloaterView->sendChildToBack(toast); - } - - bottom = toast->getRect().mTop - toast->getTopPad(); - } + // use reverse order to provide correct z-order and avoid toast blinking + for(std::vector<LLToast*>::reverse_iterator it = m_active_toasts.rbegin(); it != m_active_toasts.rend(); ++it) + { + LLToast* toast = (*it); + S32 toast_top = bottom + toast->getTopPad(); + + toast_rect = toast->getRect(); + toast_rect.setLeftTopAndSize(getRect().mLeft , toast_top, toast_rect.getWidth() ,toast_rect.getHeight()); + + toast->setRect(toast_rect); + toast->setIsHidden(false); + toast->setVisible(TRUE); + + bottom = toast->getRect().mBottom - margin; } } diff --git a/indra/newview/llnotificationhandler.h b/indra/newview/llnotificationhandler.h index a163b6fd625b2d9e320026e090bdbf8107bdfb53..1dc0e414a26698108afc73d8ed53476f6e18b107 100644 --- a/indra/newview/llnotificationhandler.h +++ b/indra/newview/llnotificationhandler.h @@ -290,6 +290,11 @@ class LLHandlerUtil */ static bool canAddNotifPanelToIM(const LLNotificationPtr& notification); + /** + * Checks whether notification can be used multiple times or not. + */ + static bool isNotificationReusable(const LLNotificationPtr& notification); + /** * Checks if passed notification can create IM session and be written into it. * @@ -297,6 +302,18 @@ class LLHandlerUtil */ static bool canSpawnSessionAndLogToIM(const LLNotificationPtr& notification); + /** + * Checks if passed notification can create toast. + * + * It returns false only for inventory accepted/declined notifications if respective IM window is open (EXT-5909) + */ + static bool canSpawnToast(const LLNotificationPtr& notification); + + /** + * Determines whether IM floater is opened. + */ + static bool isIMFloaterOpened(const LLNotificationPtr& notification); + /** * Writes notification message to IM session. */ @@ -343,6 +360,21 @@ class LLHandlerUtil * Adds notification panel to the IM floater. */ static void addNotifPanelToIM(const LLNotificationPtr& notification); + + /** + * Updates messages of IM floater. + */ + static void updateIMFLoaterMesages(const LLUUID& session_id); + + /** + * Updates messages of visible IM floater. + */ + static void updateVisibleIMFLoaterMesages(const LLNotificationPtr& notification); + + /** + * Decrements counter of IM messages. + */ + static void decIMMesageCounter(const LLNotificationPtr& notification); }; } diff --git a/indra/newview/llnotificationhandlerutil.cpp b/indra/newview/llnotificationhandlerutil.cpp index 125a55902b23a79026fbd05bbdf0472570d7d993..ef9bc2afc5311cad621b16c7704d47c54aab9ff3 100644 --- a/indra/newview/llnotificationhandlerutil.cpp +++ b/indra/newview/llnotificationhandlerutil.cpp @@ -129,7 +129,9 @@ const static std::string GRANTED_MODIFY_RIGHTS("GrantedModifyRights"), FRIENDSHIP_DECLINED_BYME("FriendshipDeclinedByMe"), FRIEND_ONLINE("FriendOnline"), FRIEND_OFFLINE("FriendOffline"), SERVER_OBJECT_MESSAGE("ServerObjectMessage"), - TELEPORT_OFFERED("TeleportOffered"); + TELEPORT_OFFERED("TeleportOffered"), + TELEPORT_OFFER_SENT("TeleportOfferSent"); + // static bool LLHandlerUtil::canLogToIM(const LLNotificationPtr& notification) @@ -141,11 +143,15 @@ bool LLHandlerUtil::canLogToIM(const LLNotificationPtr& notification) || PAYMENT_SENT == notification->getName() || OFFER_FRIENDSHIP == notification->getName() || FRIENDSHIP_OFFERED == notification->getName() + || FRIENDSHIP_ACCEPTED == notification->getName() || FRIENDSHIP_ACCEPTED_BYME == notification->getName() || FRIENDSHIP_DECLINED_BYME == notification->getName() || SERVER_OBJECT_MESSAGE == notification->getName() || INVENTORY_ACCEPTED == notification->getName() - || INVENTORY_DECLINED == notification->getName(); + || INVENTORY_DECLINED == notification->getName() + || USER_GIVE_ITEM == notification->getName() + || TELEPORT_OFFERED == notification->getName() + || TELEPORT_OFFER_SENT == notification->getName(); } // static @@ -162,19 +168,25 @@ bool LLHandlerUtil::canLogToNearbyChat(const LLNotificationPtr& notification) bool LLHandlerUtil::canSpawnIMSession(const LLNotificationPtr& notification) { return OFFER_FRIENDSHIP == notification->getName() - || FRIENDSHIP_ACCEPTED == notification->getName() || USER_GIVE_ITEM == notification->getName() - || INVENTORY_ACCEPTED == notification->getName() - || INVENTORY_DECLINED == notification->getName(); + || TELEPORT_OFFERED == notification->getName(); } // static bool LLHandlerUtil::canAddNotifPanelToIM(const LLNotificationPtr& notification) { return OFFER_FRIENDSHIP == notification->getName() - || USER_GIVE_ITEM == notification->getName(); + || USER_GIVE_ITEM == notification->getName() + || TELEPORT_OFFERED == notification->getName(); } +// static +bool LLHandlerUtil::isNotificationReusable(const LLNotificationPtr& notification) +{ + return OFFER_FRIENDSHIP == notification->getName() + || USER_GIVE_ITEM == notification->getName() + || TELEPORT_OFFERED == notification->getName(); +} // static bool LLHandlerUtil::canSpawnSessionAndLogToIM(const LLNotificationPtr& notification) @@ -182,19 +194,58 @@ bool LLHandlerUtil::canSpawnSessionAndLogToIM(const LLNotificationPtr& notificat return canLogToIM(notification) && canSpawnIMSession(notification); } +// static +bool LLHandlerUtil::canSpawnToast(const LLNotificationPtr& notification) +{ + bool cannot_spawn = isIMFloaterOpened(notification) && (INVENTORY_DECLINED == notification->getName() + || INVENTORY_ACCEPTED == notification->getName()); + + return !cannot_spawn; +} + +// static +bool LLHandlerUtil::isIMFloaterOpened(const LLNotificationPtr& notification) +{ + bool res = false; + + LLUUID from_id = notification->getPayload()["from_id"]; + LLUUID session_id = LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, + from_id); + + LLIMFloater* im_floater = LLFloaterReg::findTypedInstance<LLIMFloater>( + "impanel", session_id); + if (im_floater != NULL) + { + res = im_floater->getVisible() == TRUE; + } + + return res; +} + // static void LLHandlerUtil::logToIM(const EInstantMessage& session_type, const std::string& session_name, const std::string& from_name, const std::string& message, const LLUUID& session_owner_id, const LLUUID& from_id) { + std::string from = from_name; + if (from_name.empty()) + { + from = SYSTEM_FROM; + } + LLUUID session_id = LLIMMgr::computeSessionID(session_type, session_owner_id); LLIMModel::LLIMSession* session = LLIMModel::instance().findIMSession( session_id); if (session == NULL) { - LLIMModel::instance().logToFile(session_name, from_name, from_id, message); + // replace interactive system message marker with correct from string value + if (INTERACTIVE_SYSTEM_FROM == from_name) + { + from = SYSTEM_FROM; + } + LLIMModel::instance().logToFile(session_name, from, from_id, message); } else { @@ -205,8 +256,16 @@ void LLHandlerUtil::logToIM(const EInstantMessage& session_type, // set searched session as active to avoid IM toast popup LLIMModel::instance().setActiveSessionID(session_id); - LLIMModel::instance().addMessage(session_id, from_name, from_id, + S32 unread = session->mNumUnread; + S32 participant_unread = session->mParticipantUnreadMessageCount; + LLIMModel::instance().addMessageSilently(session_id, from, from_id, message); + // we shouldn't increment counters when logging, so restore them + session->mNumUnread = unread; + session->mParticipantUnreadMessageCount = participant_unread; + + // update IM floater messages + updateIMFLoaterMesages(session_id); // restore active session id if (active_session_id.isNull()) @@ -253,13 +312,13 @@ void LLHandlerUtil::logToIMP2P(const LLNotificationPtr& notification, bool to_fi if(to_file_only) { - logToIM(IM_NOTHING_SPECIAL, session_name, name, notification->getMessage(), + logToIM(IM_NOTHING_SPECIAL, session_name, "", notification->getMessage(), LLUUID(), LLUUID()); } else { - logToIM(IM_NOTHING_SPECIAL, session_name, name, notification->getMessage(), - from_id, from_id); + logToIM(IM_NOTHING_SPECIAL, session_name, INTERACTIVE_SYSTEM_FROM, notification->getMessage(), + from_id, LLUUID()); } } } @@ -327,7 +386,16 @@ std::string LLHandlerUtil::getSubstitutionName(const LLNotificationPtr& notifica if (res.empty()) { LLUUID from_id = notification->getPayload()["FROM_ID"]; - gCacheName->getFullName(from_id, res); + + //*TODO all keys everywhere should be made of the same case, there is a mix of keys in lower and upper cases + if (from_id.isNull()) + { + from_id = notification->getPayload()["from_id"]; + } + if(!gCacheName->getFullName(from_id, res)) + { + res = ""; + } } return res; } @@ -346,11 +414,60 @@ void LLHandlerUtil::addNotifPanelToIM(const LLNotificationPtr& notification) LLSD offer; offer["notification_id"] = notification->getID(); - offer["from_id"] = notification->getPayload()["from_id"]; - offer["from"] = name; - offer["time"] = LLLogChat::timestamp(true); + offer["from"] = SYSTEM_FROM; + offer["time"] = LLLogChat::timestamp(false); offer["index"] = (LLSD::Integer)session->mMsgs.size(); session->mMsgs.push_front(offer); - LLIMFloater::show(session_id); + + // update IM floater and counters + LLSD arg; + arg["session_id"] = session_id; + arg["num_unread"] = ++(session->mNumUnread); + arg["participant_unread"] = ++(session->mParticipantUnreadMessageCount); + LLIMModel::getInstance()->mNewMsgSignal(arg); +} + +// static +void LLHandlerUtil::updateIMFLoaterMesages(const LLUUID& session_id) +{ + LLIMFloater* im_floater = LLIMFloater::findInstance(session_id); + if (im_floater != NULL && im_floater->getVisible()) + { + im_floater->updateMessages(); + } +} + +// static +void LLHandlerUtil::updateVisibleIMFLoaterMesages(const LLNotificationPtr& notification) +{ + const std::string name = LLHandlerUtil::getSubstitutionName(notification); + LLUUID from_id = notification->getPayload()["from_id"]; + LLUUID session_id = spawnIMSession(name, from_id); + + updateIMFLoaterMesages(session_id); +} + +// static +void LLHandlerUtil::decIMMesageCounter(const LLNotificationPtr& notification) +{ + const std::string name = LLHandlerUtil::getSubstitutionName(notification); + LLUUID from_id = notification->getPayload()["from_id"]; + LLUUID session_id = LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, from_id); + + LLIMModel::LLIMSession * session = LLIMModel::getInstance()->findIMSession( + session_id); + + if (session == NULL) + { + return; + } + + LLSD arg; + arg["session_id"] = session_id; + session->mNumUnread--; + arg["num_unread"] = session->mNumUnread; + session->mParticipantUnreadMessageCount--; + arg["participant_unread"] = session->mParticipantUnreadMessageCount; + LLIMModel::getInstance()->mNewMsgSignal(arg); } diff --git a/indra/newview/llnotificationofferhandler.cpp b/indra/newview/llnotificationofferhandler.cpp index 8ebd5de258f7df11887ab61a06cd0587f5e0292b..e93aec9d018ee93c93a45e11250cbc4d5ecb7ffc 100644 --- a/indra/newview/llnotificationofferhandler.cpp +++ b/indra/newview/llnotificationofferhandler.cpp @@ -103,6 +103,8 @@ bool LLOfferHandler::processNotification(const LLSD& notify) } else { + notification->setReusable(LLHandlerUtil::isNotificationReusable(notification)); + LLUUID session_id; if (LLHandlerUtil::canSpawnIMSession(notification)) { @@ -113,35 +115,58 @@ bool LLOfferHandler::processNotification(const LLSD& notify) session_id = LLHandlerUtil::spawnIMSession(name, from_id); } - if (LLHandlerUtil::canAddNotifPanelToIM(notification)) + bool show_toast = true; + bool add_notid_to_im = LLHandlerUtil::canAddNotifPanelToIM(notification); + if (add_notid_to_im) { LLHandlerUtil::addNotifPanelToIM(notification); - LLHandlerUtil::logToIMP2P(notification, true); + if (LLHandlerUtil::isIMFloaterOpened(notification)) + { + show_toast = false; + } } - else if (notification->getPayload().has("SUPPRESS_TOAST") + + if (notification->getPayload().has("SUPPRESS_TOAST") && notification->getPayload()["SUPPRESS_TOAST"]) { - LLHandlerUtil::logToIMP2P(notification); LLNotificationsUtil::cancel(notification); } - else + else if(show_toast) { LLToastNotifyPanel* notify_box = new LLToastNotifyPanel(notification); - + // don't close notification on panel destroy since it will be used by IM floater + notify_box->setCloseNotificationOnDestroy(!add_notid_to_im); LLToast::Params p; p.notif_id = notification->getID(); p.notification = notification; p.panel = notify_box; p.on_delete_toast = boost::bind(&LLOfferHandler::onDeleteToast, this, _1); + // we not save offer notifications to the syswell floater that should be added to the IM floater + p.can_be_stored = !add_notid_to_im; LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel); if(channel) channel->addToast(p); - LLHandlerUtil::logToIMP2P(notification); + // if we not add notification to IM - add it to notification well + if (!add_notid_to_im) + { + // send a signal to the counter manager + mNewNotificationSignal(); + } + } - // send a signal to the counter manager - mNewNotificationSignal(); + if (LLHandlerUtil::canLogToIM(notification)) + { + // log only to file if notif panel can be embedded to IM and IM is opened + if (add_notid_to_im && LLHandlerUtil::isIMFloaterOpened(notification)) + { + LLHandlerUtil::logToIMP2P(notification, true); + } + else + { + LLHandlerUtil::logToIMP2P(notification); + } } } } @@ -155,6 +180,11 @@ bool LLOfferHandler::processNotification(const LLSD& notify) } else { + if (LLHandlerUtil::canAddNotifPanelToIM(notification) + && !LLHandlerUtil::isIMFloaterOpened(notification)) + { + LLHandlerUtil::decIMMesageCounter(notification); + } mChannel->killToastByNotificationID(notification->getID()); } } @@ -166,8 +196,11 @@ bool LLOfferHandler::processNotification(const LLSD& notify) void LLOfferHandler::onDeleteToast(LLToast* toast) { - // send a signal to the counter manager - mDelNotificationSignal(); + if (!LLHandlerUtil::canAddNotifPanelToIM(toast->getNotification())) + { + // send a signal to the counter manager + mDelNotificationSignal(); + } // send a signal to a listener to let him perform some action // in this case listener is a SysWellWindow and it will remove a corresponding item from its list @@ -181,7 +214,9 @@ void LLOfferHandler::onRejectToast(LLUUID& id) if (notification && LLNotificationManager::getInstance()->getHandlerForNotification( - notification->getType()) == this) + notification->getType()) == this + // don't delete notification since it may be used by IM floater + && !LLHandlerUtil::canAddNotifPanelToIM(notification)) { LLNotifications::instance().cancel(notification); } diff --git a/indra/newview/llnotificationtiphandler.cpp b/indra/newview/llnotificationtiphandler.cpp index 4e2c5085ed34df509983a5b2000e2dff133e3c6a..1f1afe293aa45d0d32c5c78db9f5288795764427 100644 --- a/indra/newview/llnotificationtiphandler.cpp +++ b/indra/newview/llnotificationtiphandler.cpp @@ -150,6 +150,12 @@ bool LLTipHandler::processNotification(const LLSD& notify) LLHandlerUtil::spawnIMSession(name, from_id); } + // don't spawn toast for inventory accepted/declined offers if respective IM window is open (EXT-5909) + if (!LLHandlerUtil::canSpawnToast(notification)) + { + return true; + } + LLToastPanel* notify_box = NULL; if("FriendOffline" == notification->getName() || "FriendOnline" == notification->getName()) { diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index 4680e3b7bf1f4435578af416653b14dbfd8aa453..7e65f66e5214bf4fee4e0c50aecfe1f2709abcc0 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -494,6 +494,7 @@ BOOL LLPanelAvatarProfile::postBuild() &LLPanelAvatarProfile::onMapButtonClick, this)), NULL); LLUICtrl::CommitCallbackRegistry::ScopedRegistrar registrar; + registrar.add("Profile.ShowOnMap", boost::bind(&LLPanelAvatarProfile::onMapButtonClick, this)); registrar.add("Profile.Pay", boost::bind(&LLPanelAvatarProfile::pay, this)); registrar.add("Profile.Share", boost::bind(&LLPanelAvatarProfile::share, this)); registrar.add("Profile.BlockUnblock", boost::bind(&LLPanelAvatarProfile::toggleBlock, this)); @@ -503,6 +504,7 @@ BOOL LLPanelAvatarProfile::postBuild() registrar.add("Profile.CSR", boost::bind(&LLPanelAvatarProfile::csr, this)); LLUICtrl::EnableCallbackRegistry::ScopedRegistrar enable; + enable.add("Profile.EnableShowOnMap", boost::bind(&LLPanelAvatarProfile::enableShowOnMap, this)); enable.add("Profile.EnableGod", boost::bind(&enable_god)); enable.add("Profile.EnableBlock", boost::bind(&LLPanelAvatarProfile::enableBlock, this)); enable.add("Profile.EnableUnblock", boost::bind(&LLPanelAvatarProfile::enableUnblock, this)); @@ -697,6 +699,15 @@ void LLPanelAvatarProfile::toggleBlock() LLAvatarActions::toggleBlock(getAvatarId()); } +bool LLPanelAvatarProfile::enableShowOnMap() +{ + bool is_buddy_online = LLAvatarTracker::instance().isBuddyOnline(getAvatarId()); + + bool enable_map_btn = (is_buddy_online && is_agent_mappable(getAvatarId())) + || gAgent.isGodlike(); + return enable_map_btn; +} + bool LLPanelAvatarProfile::enableBlock() { return LLAvatarActions::canBlock(getAvatarId()) && !LLAvatarActions::isBlocked(getAvatarId()); diff --git a/indra/newview/llpanelavatar.h b/indra/newview/llpanelavatar.h index 2bd23b6e9ca9fbc172b67680679e0d3ee377e794..bb8df2ff9c83f7c610881093a8b04dade93ca52f 100644 --- a/indra/newview/llpanelavatar.h +++ b/indra/newview/llpanelavatar.h @@ -202,6 +202,7 @@ class LLPanelAvatarProfile void unfreeze(); void csr(); + bool enableShowOnMap(); bool enableBlock(); bool enableUnblock(); bool enableGod(); diff --git a/indra/newview/llpanelblockedlist.cpp b/indra/newview/llpanelblockedlist.cpp index 362657a45862c08d5c8166db86cca81a3691c3d1..a186bc926c878eb39ad0c8bac41b9c52cc19fe54 100644 --- a/indra/newview/llpanelblockedlist.cpp +++ b/indra/newview/llpanelblockedlist.cpp @@ -119,8 +119,13 @@ void LLPanelBlockedList::refreshBlockedList() std::vector<LLMute>::iterator it; for (it = mutes.begin(); it != mutes.end(); ++it) { - std::string display_name = it->getDisplayName(); - mBlockedList->addStringUUIDItem(display_name, it->mID, ADD_BOTTOM, TRUE); + LLScrollListItem::Params item_p; + item_p.enabled(TRUE); + item_p.value(it->mID); // link UUID of blocked item with ScrollListItem + item_p.columns.add().column("item_name").value(it->mName);//.type("text"); + item_p.columns.add().column("item_type").value(it->getDisplayType());//.type("text").width(111); + + mBlockedList->addRow(item_p, ADD_BOTTOM); } } @@ -145,9 +150,7 @@ void LLPanelBlockedList::onRemoveBtnClick() { std::string name = mBlockedList->getSelectedItemLabel(); LLUUID id = mBlockedList->getStringUUIDSelectedItem(); - LLMute mute(id); - mute.setFromDisplayName(name); - // now mute.mName has the suffix trimmed off + LLMute mute(id, name); S32 last_selected = mBlockedList->getFirstSelectedIndex(); if (LLMuteList::getInstance()->remove(mute)) diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp index 9f24ddc7995db47ce4137eb9f2001648233ca684..70a7bf644b79bc307f2f77fc25d4403f6f392fa9 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -114,6 +114,23 @@ class LLDispatchClassifiedClickThrough : public LLDispatchHandler }; static LLDispatchClassifiedClickThrough sClassifiedClickThrough; +// Just to debug errors. Can be thrown away later. +class LLClassifiedClickMessageResponder : public LLHTTPClient::Responder +{ + LOG_CLASS(LLClassifiedClickMessageResponder); + +public: + // If we get back an error (not found, etc...), handle it here + virtual void errorWithContent( + U32 status, + const std::string& reason, + const LLSD& content) + { + llwarns << "Sending click message failed (" << status << "): [" << reason << "]" << llendl; + llwarns << "Content: [" << content << "]" << llendl; + } +}; + /* Re-expose this if we need to have classified ad HTML detail pages. JC @@ -1237,7 +1254,7 @@ void LLPanelClassifiedInfo::reshape(S32 width, S32 height, BOOL called_from_pare void LLPanelClassifiedInfo::onOpen(const LLSD& key) { - LLUUID avatar_id = key["avatar_id"]; + LLUUID avatar_id = key["classified_creator_id"]; if(avatar_id.isNull()) { return; @@ -1255,9 +1272,12 @@ void LLPanelClassifiedInfo::onOpen(const LLSD& key) scrollToTop(); setClassifiedId(key["classified_id"]); - setClassifiedName(key["name"]); - setDescription(key["desc"]); - setSnapshotId(key["snapshot_id"]); + setClassifiedName(key["classified_name"]); + setDescription(key["classified_desc"]); + setSnapshotId(key["classified_snapshot_id"]); + setFromSearch(key["from_search"]); + + llinfos << "Opening classified [" << getClassifiedName() << "] (" << getClassifiedId() << ")" << llendl; LLAvatarPropertiesProcessor::getInstance()->addObserver(getAvatarId(), this); LLAvatarPropertiesProcessor::getInstance()->sendClassifiedInfoRequest(getClassifiedId()); @@ -1274,6 +1294,10 @@ void LLPanelClassifiedInfo::onOpen(const LLSD& key) LLHTTPClient::post(url, body, new LLClassifiedStatsResponder(getClassifiedId())); } + // Update classified click stats. + // *TODO: Should we do this when opening not from search? + sendClickMessage("profile"); + setInfoLoaded(false); } @@ -1289,6 +1313,8 @@ void LLPanelClassifiedInfo::processProperties(void* data, EAvatarProcessorType t setSnapshotId(c_info->snapshot_id); setParcelId(c_info->parcel_id); setPosGlobal(c_info->pos_global); + setSimName(c_info->sim_name); + setClassifiedLocation(createLocationText(c_info->parcel_name, c_info->sim_name, c_info->pos_global)); childSetValue("category", LLClassifiedInfo::sCategories[c_info->category]); @@ -1299,6 +1325,8 @@ void LLPanelClassifiedInfo::processProperties(void* data, EAvatarProcessorType t bool mature = is_cf_mature(c_info->flags); childSetValue("content_type", mature ? mature_str : pg_str); + getChild<LLIconCtrl>("content_type_moderate")->setVisible(mature); + getChild<LLIconCtrl>("content_type_general")->setVisible(!mature); std::string auto_renew_str = is_cf_auto_renew(c_info->flags) ? getString("auto_renew_on") : getString("auto_renew_off"); @@ -1323,7 +1351,19 @@ void LLPanelClassifiedInfo::resetData() setClassifiedLocation(LLStringUtil::null); setClassifiedId(LLUUID::null); setSnapshotId(LLUUID::null); - mPosGlobal.clearVec(); + setPosGlobal(LLVector3d::zero); + setParcelId(LLUUID::null); + setSimName(LLStringUtil::null); + setFromSearch(false); + + // reset click stats + mTeleportClicksOld = 0; + mMapClicksOld = 0; + mProfileClicksOld = 0; + mTeleportClicksNew = 0; + mMapClicksNew = 0; + mProfileClicksNew = 0; + childSetText("category", LLStringUtil::null); childSetText("content_type", LLStringUtil::null); childSetText("click_through_text", LLStringUtil::null); @@ -1331,6 +1371,8 @@ void LLPanelClassifiedInfo::resetData() childSetText("auto_renew", LLStringUtil::null); childSetText("creation_date", LLStringUtil::null); childSetText("click_through_text", LLStringUtil::null); + getChild<LLIconCtrl>("content_type_moderate")->setVisible(FALSE); + getChild<LLIconCtrl>("content_type_general")->setVisible(FALSE); } void LLPanelClassifiedInfo::resetControls() @@ -1368,6 +1410,11 @@ void LLPanelClassifiedInfo::setClassifiedLocation(const std::string& location) childSetValue("classified_location", location); } +std::string LLPanelClassifiedInfo::getClassifiedLocation() +{ + return childGetValue("classified_location").asString(); +} + void LLPanelClassifiedInfo::setSnapshotId(const LLUUID& id) { mSnapshotCtrl->setValue(id); @@ -1444,6 +1491,13 @@ void LLPanelClassifiedInfo::setClickThrough( ct_str.setArg("[PROFILE]", llformat("%d", self->mProfileClicksNew + self->mProfileClicksOld)); self->childSetText("click_through_text", ct_str.getString()); + // *HACK: remove this when there is enough room for click stats in the info panel + self->childSetToolTip("click_through_text", ct_str.getString()); + + llinfos << "teleport: " << llformat("%d", self->mTeleportClicksNew + self->mTeleportClicksOld) + << ", map: " << llformat("%d", self->mMapClicksNew + self->mMapClicksOld) + << ", profile: " << llformat("%d", self->mProfileClicksNew + self->mProfileClicksOld) + << llendl; } } @@ -1532,8 +1586,46 @@ void LLPanelClassifiedInfo::scrollToTop() scrollContainer->goToTop(); } +// static +// *TODO: move out of the panel +void LLPanelClassifiedInfo::sendClickMessage( + const std::string& type, + bool from_search, + const LLUUID& classified_id, + const LLUUID& parcel_id, + const LLVector3d& global_pos, + const std::string& sim_name) +{ + // You're allowed to click on your own ads to reassure yourself + // that the system is working. + LLSD body; + body["type"] = type; + body["from_search"] = from_search; + body["classified_id"] = classified_id; + body["parcel_id"] = parcel_id; + body["dest_pos_global"] = global_pos.getValue(); + body["region_name"] = sim_name; + + std::string url = gAgent.getRegion()->getCapability("SearchStatTracking"); + llinfos << "Sending click msg via capability (url=" << url << ")" << llendl; + llinfos << "body: [" << body << "]" << llendl; + LLHTTPClient::post(url, body, new LLClassifiedClickMessageResponder()); +} + +void LLPanelClassifiedInfo::sendClickMessage(const std::string& type) +{ + sendClickMessage( + type, + fromSearch(), + getClassifiedId(), + getParcelId(), + getPosGlobal(), + getSimName()); +} + void LLPanelClassifiedInfo::onMapClick() { + sendClickMessage("map"); LLFloaterWorldMap::getInstance()->trackLocation(getPosGlobal()); LLFloaterReg::showInstance("world_map", "center"); } @@ -1542,6 +1634,7 @@ void LLPanelClassifiedInfo::onTeleportClick() { if (!getPosGlobal().isExactlyZero()) { + sendClickMessage("teleport"); gAgent.teleportViaLocation(getPosGlobal()); LLFloaterWorldMap::getInstance()->trackLocation(getPosGlobal()); } @@ -1563,6 +1656,7 @@ static const S32 CB_ITEM_PG = 1; LLPanelClassifiedEdit::LLPanelClassifiedEdit() : LLPanelClassifiedInfo() , mIsNew(false) + , mIsNewWithErrors(false) , mCanClose(false) , mPublishFloater(NULL) { @@ -1621,21 +1715,12 @@ BOOL LLPanelClassifiedEdit::postBuild() return TRUE; } -void LLPanelClassifiedEdit::onOpen(const LLSD& key) +void LLPanelClassifiedEdit::fillIn(const LLSD& key) { - LLUUID classified_id = key["classified_id"]; + setAvatarId(gAgent.getID()); - mIsNew = classified_id.isNull(); - - scrollToTop(); - - if(mIsNew) + if(key.isUndefined()) { - setAvatarId(gAgent.getID()); - - resetData(); - resetControls(); - setPosGlobal(gAgent.getPositionGlobal()); LLUUID snapshot_id = LLUUID::null; @@ -1658,25 +1743,55 @@ void LLPanelClassifiedEdit::onOpen(const LLSD& key) childSetValue("classified_name", makeClassifiedName()); childSetValue("classified_desc", desc); setSnapshotId(snapshot_id); - setClassifiedLocation(createLocationText(getLocationNotice(), region_name, getPosGlobal())); - // server will set valid parcel id setParcelId(LLUUID::null); + } + else + { + setClassifiedId(key["classified_id"]); + setClassifiedName(key["name"]); + setDescription(key["desc"]); + setSnapshotId(key["snapshot_id"]); + setCategory((U32)key["category"].asInteger()); + setContentType((U32)key["content_type"].asInteger()); + setClassifiedLocation(key["location_text"]); + childSetValue("auto_renew", key["auto_renew"]); + childSetValue("price_for_listing", key["price_for_listing"].asInteger()); + } +} - enableVerbs(true); - enableEditing(true); +void LLPanelClassifiedEdit::onOpen(const LLSD& key) +{ + mIsNew = key.isUndefined(); + + scrollToTop(); + + // classified is not created yet + bool is_new = isNew() || isNewWithErrors(); + + if(is_new) + { + resetData(); + resetControls(); + + fillIn(key); + + if(isNew()) + { + LLAvatarPropertiesProcessor::getInstance()->addObserver(getAvatarId(), this); + } } else { LLPanelClassifiedInfo::onOpen(key); - enableVerbs(false); - enableEditing(false); } - std::string save_btn_label = isNew() ? getString("publish_label") : getString("save_label"); + std::string save_btn_label = is_new ? getString("publish_label") : getString("save_label"); childSetLabelArg("save_changes_btn", "[LABEL]", save_btn_label); + enableVerbs(is_new); + enableEditing(is_new); resetDirty(); setInfoLoaded(false); } @@ -1688,6 +1803,14 @@ void LLPanelClassifiedEdit::processProperties(void* data, EAvatarProcessorType t LLAvatarClassifiedInfo* c_info = static_cast<LLAvatarClassifiedInfo*>(data); if(c_info && getClassifiedId() == c_info->classified_id) { + // see LLPanelClassifiedEdit::sendUpdate() for notes + mIsNewWithErrors = false; + // for just created classified - panel will probably be closed when we get here. + if(!getVisible()) + { + return; + } + enableEditing(true); setClassifiedName(c_info->name); @@ -1697,19 +1820,22 @@ void LLPanelClassifiedEdit::processProperties(void* data, EAvatarProcessorType t setClassifiedLocation(createLocationText(c_info->parcel_name, c_info->sim_name, c_info->pos_global)); // *HACK see LLPanelClassifiedEdit::sendUpdate() - getChild<LLComboBox>("category")->setCurrentByIndex(c_info->category - 1); - getChild<LLComboBox>("category")->resetDirty(); + setCategory(c_info->category - 1); bool mature = is_cf_mature(c_info->flags); bool auto_renew = is_cf_auto_renew(c_info->flags); - getChild<LLComboBox>("content_type")->setCurrentByIndex(mature ? CB_ITEM_MATURE : CB_ITEM_PG); + setContentType(mature ? CB_ITEM_MATURE : CB_ITEM_PG); childSetValue("auto_renew", auto_renew); childSetValue("price_for_listing", c_info->price_for_listing); childSetEnabled("price_for_listing", isNew()); resetDirty(); setInfoLoaded(true); + enableVerbs(false); + + // for just created classified - in case user opened edit panel before processProperties() callback + childSetLabelArg("save_changes_btn", "[LABEL]", getString("save_label")); } } } @@ -1740,7 +1866,12 @@ void LLPanelClassifiedEdit::resetDirty() LLPanelClassifiedInfo::resetDirty(); getChild<LLUICtrl>("classified_snapshot")->resetDirty(); getChild<LLUICtrl>("classified_name")->resetDirty(); - getChild<LLUICtrl>("classified_desc")->resetDirty(); + + LLTextEditor* desc = getChild<LLTextEditor>("classified_desc"); + // call blockUndo() to really reset dirty(and make isDirty work as intended) + desc->blockUndo(); + desc->resetDirty(); + getChild<LLUICtrl>("category")->resetDirty(); getChild<LLUICtrl>("content_type")->resetDirty(); getChild<LLUICtrl>("auto_renew")->resetDirty(); @@ -1789,15 +1920,31 @@ void LLPanelClassifiedEdit::stretchSnapshot() getChild<LLUICtrl>("edit_icon")->setShape(mSnapshotCtrl->getRect()); } +U32 LLPanelClassifiedEdit::getContentType() +{ + LLComboBox* ct_cb = getChild<LLComboBox>("content_type"); + return ct_cb->getCurrentIndex(); +} + +void LLPanelClassifiedEdit::setContentType(U32 content_type) +{ + LLComboBox* ct_cb = getChild<LLComboBox>("content_type"); + ct_cb->setCurrentByIndex(content_type); + ct_cb->resetDirty(); +} + +bool LLPanelClassifiedEdit::getAutoRenew() +{ + return childGetValue("auto_renew").asBoolean(); +} + void LLPanelClassifiedEdit::sendUpdate() { LLAvatarClassifiedInfo c_data; if(getClassifiedId().isNull()) { - LLUUID id; - id.generate(); - setClassifiedId(id); + setClassifiedId(LLUUID::generateNewID()); } c_data.agent_id = gAgent.getID(); @@ -1814,6 +1961,14 @@ void LLPanelClassifiedEdit::sendUpdate() c_data.price_for_listing = getPriceForListing(); LLAvatarPropertiesProcessor::getInstance()->sendClassifiedInfoUpdate(&c_data); + + if(isNew()) + { + // Lets assume there will be some error. + // Successful sendClassifiedInfoUpdate will trigger processProperties and + // let us know there was no error. + mIsNewWithErrors = true; + } } U32 LLPanelClassifiedEdit::getCategory() @@ -1822,6 +1977,13 @@ U32 LLPanelClassifiedEdit::getCategory() return cat_cb->getCurrentIndex(); } +void LLPanelClassifiedEdit::setCategory(U32 category) +{ + LLComboBox* cat_cb = getChild<LLComboBox>("category"); + cat_cb->setCurrentByIndex(category); + cat_cb->resetDirty(); +} + U8 LLPanelClassifiedEdit::getFlags() { bool auto_renew = childGetValue("auto_renew").asBoolean(); @@ -1917,17 +2079,14 @@ void LLPanelClassifiedEdit::onSaveClick() notifyInvalidName(); return; } - if(isNew()) + if(isNew() || isNewWithErrors()) { if(gStatusBar->getBalance() < getPriceForListing()) { LLNotificationsUtil::add("ClassifiedInsufficientFunds"); return; } - } - if(isNew()) - { mPublishFloater = LLFloaterReg::findTypedInstance<LLPublishClassifiedFloater>( "publish_classified", LLSD()); diff --git a/indra/newview/llpanelclassified.h b/indra/newview/llpanelclassified.h index 78f095a9bb31086f3917b75e3357c03206e6a6d9..1157649a168493406bdc5b5f9f4b76bf31dba480 100644 --- a/indra/newview/llpanelclassified.h +++ b/indra/newview/llpanelclassified.h @@ -221,6 +221,7 @@ class LLPublishClassifiedFloater : public LLFloater class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver { + LOG_CLASS(LLPanelClassifiedInfo); public: static LLPanelClassifiedInfo* create(); @@ -255,6 +256,8 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver void setClassifiedLocation(const std::string& location); + std::string getClassifiedLocation(); + void setPosGlobal(const LLVector3d& pos) { mPosGlobal = pos; } LLVector3d& getPosGlobal() { return mPosGlobal; } @@ -263,6 +266,14 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver LLUUID getParcelId() { return mParcelId; } + void setSimName(const std::string& sim_name) { mSimName = sim_name; } + + std::string getSimName() { return mSimName; } + + void setFromSearch(bool val) { mFromSearch = val; } + + bool fromSearch() { return mFromSearch; } + bool getInfoLoaded() { return mInfoLoaded; } void setInfoLoaded(bool loaded) { mInfoLoaded = loaded; } @@ -274,6 +285,14 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver S32 profile, bool from_new_table); + static void sendClickMessage( + const std::string& type, + bool from_search, + const LLUUID& classified_id, + const LLUUID& parcel_id, + const LLVector3d& global_pos, + const std::string& sim_name); + void setExitCallback(const commit_callback_t& cb); void setEditClassifiedCallback(const commit_callback_t& cb); @@ -296,6 +315,7 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver const LLVector3d& pos_global); void stretchSnapshot(); + void sendClickMessage(const std::string& type); LLRect getDefaultSnapshotRect(); @@ -315,6 +335,8 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver LLUUID mClassifiedId; LLVector3d mPosGlobal; LLUUID mParcelId; + std::string mSimName; + bool mFromSearch; bool mInfoLoaded; LLScrollContainer* mScrollContainer; @@ -337,6 +359,7 @@ class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver class LLPanelClassifiedEdit : public LLPanelClassifiedInfo { + LOG_CLASS(LLPanelClassifiedEdit); public: static LLPanelClassifiedEdit* create(); @@ -345,6 +368,8 @@ class LLPanelClassifiedEdit : public LLPanelClassifiedInfo /*virtual*/ BOOL postBuild(); + void fillIn(const LLSD& key); + /*virtual*/ void onOpen(const LLSD& key); /*virtual*/ void processProperties(void* data, EAvatarProcessorType type); @@ -361,28 +386,38 @@ class LLPanelClassifiedEdit : public LLPanelClassifiedInfo bool isNew() { return mIsNew; } + bool isNewWithErrors() { return mIsNewWithErrors; } + bool canClose(); void draw(); void stretchSnapshot(); + U32 getCategory(); + + void setCategory(U32 category); + + U32 getContentType(); + + void setContentType(U32 content_type); + + bool getAutoRenew(); + + S32 getPriceForListing(); + protected: LLPanelClassifiedEdit(); void sendUpdate(); - U32 getCategory(); - void enableVerbs(bool enable); void enableEditing(bool enable); std::string makeClassifiedName(); - S32 getPriceForListing(); - void setPriceForListing(S32 price); U8 getFlags(); @@ -408,6 +443,7 @@ class LLPanelClassifiedEdit : public LLPanelClassifiedInfo private: bool mIsNew; + bool mIsNewWithErrors; bool mCanClose; LLPublishClassifiedFloater* mPublishFloater; diff --git a/indra/newview/llpanelgroupgeneral.cpp b/indra/newview/llpanelgroupgeneral.cpp index 517204b232a251b4da923007547c941b50839d6f..0a83ba8212f1979b0ac8d81f0323919a34518056 100644 --- a/indra/newview/llpanelgroupgeneral.cpp +++ b/indra/newview/llpanelgroupgeneral.cpp @@ -820,15 +820,15 @@ void LLPanelGroupGeneral::reset() mCtrlListGroup->set(true); - mCtrlReceiveNotices->setEnabled(true); + mCtrlReceiveNotices->setEnabled(false); mCtrlReceiveNotices->setVisible(true); - mCtrlListGroup->setEnabled(true); + mCtrlListGroup->setEnabled(false); mGroupNameEditor->setEnabled(TRUE); mEditCharter->setEnabled(TRUE); - mCtrlShowInGroupList->setEnabled(TRUE); + mCtrlShowInGroupList->setEnabled(false); mComboMature->setEnabled(TRUE); mCtrlOpenEnrollment->setEnabled(TRUE); @@ -934,6 +934,8 @@ void LLPanelGroupGeneral::setGroupID(const LLUUID& id) mCtrlListGroup->setEnabled(data.mID.notNull()); } + mCtrlShowInGroupList->setEnabled(data.mID.notNull()); + mActiveTitleLabel = getChild<LLTextBox>("active_title_label"); mComboActiveTitle = getChild<LLComboBox>("active_title"); diff --git a/indra/newview/llpanellandmarkinfo.cpp b/indra/newview/llpanellandmarkinfo.cpp index e376fe4c328aea3a959aecdb6680fb6533388259..702d9a55ab9013758b4360945b7ed740a7aa392a 100644 --- a/indra/newview/llpanellandmarkinfo.cpp +++ b/indra/newview/llpanellandmarkinfo.cpp @@ -390,25 +390,44 @@ std::string LLPanelLandmarkInfo::getFullFolderName(const LLViewerInventoryCatego if (cat) { name = cat->getName(); - - // translate category name, if it's right below the root - // FIXME: it can throw notification about non existent string in strings.xml - if (cat->getParentUUID().notNull() && cat->getParentUUID() == gInventory.getRootFolderID()) - { - LLTrans::findString(name, "InvFolder " + name); - } + parent_id = cat->getParentUUID(); + bool is_under_root_category = parent_id == gInventory.getRootFolderID(); // we don't want "My Inventory" to appear in the name - while ((parent_id = cat->getParentUUID()).notNull() && parent_id != gInventory.getRootFolderID()) + while ((parent_id = cat->getParentUUID()).notNull()) { cat = gInventory.getCategory(parent_id); llassert(cat); if (cat) + { + if (is_under_root_category || cat->getParentUUID() == gInventory.getRootFolderID()) + { + std::string localized_name; + if (is_under_root_category) + { + // translate category name, if it's right below the root + // FIXME: it can throw notification about non existent string in strings.xml + bool is_found = LLTrans::findString(localized_name, "InvFolder " + name); + name = is_found ? localized_name : name; + } + else + { + // FIXME: it can throw notification about non existent string in strings.xml + bool is_found = LLTrans::findString(localized_name, "InvFolder " + cat->getName()); + + // add translated category name to folder's full name + name = (is_found ? localized_name : cat->getName()) + "/" + name; + } + + break; + } + else { name = cat->getName() + "/" + name; } } } + } return name; } diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp index 45a8dc4cbee855f94f9bf081bde786c9943c2703..e3b8581acaa154b9b5ce152e46bba3828cc0dbf0 100644 --- a/indra/newview/llpanellandmarks.cpp +++ b/indra/newview/llpanellandmarks.cpp @@ -534,7 +534,7 @@ void LLLandmarksPanel::initLandmarksInventoryPanel() // subscribe to have auto-rename functionality while creating New Folder mLandmarksInventoryPanel->setSelectCallback(boost::bind(&LLInventoryPanel::onSelectionChange, mLandmarksInventoryPanel, _1, _2)); - initAccordion("tab_landmarks", mLandmarksInventoryPanel, true); + mMyLandmarksAccordionTab = initAccordion("tab_landmarks", mLandmarksInventoryPanel, true); } void LLLandmarksPanel::initMyInventoryPanel() @@ -588,7 +588,7 @@ void LLLandmarksPanel::initLandmarksPanel(LLPlacesInventoryPanel* inventory_list inventory_list->saveFolderState(); } -void LLLandmarksPanel::initAccordion(const std::string& accordion_tab_name, LLPlacesInventoryPanel* inventory_list, bool expand_tab) +LLAccordionCtrlTab* LLLandmarksPanel::initAccordion(const std::string& accordion_tab_name, LLPlacesInventoryPanel* inventory_list, bool expand_tab) { LLAccordionCtrlTab* accordion_tab = getChild<LLAccordionCtrlTab>(accordion_tab_name); @@ -596,6 +596,7 @@ void LLLandmarksPanel::initAccordion(const std::string& accordion_tab_name, LLPl accordion_tab->setDropDownStateChangedCallback( boost::bind(&LLLandmarksPanel::onAccordionExpandedCollapsed, this, _2, inventory_list)); accordion_tab->setDisplayChildren(expand_tab); + return accordion_tab; } void LLLandmarksPanel::onAccordionExpandedCollapsed(const LLSD& param, LLPlacesInventoryPanel* inventory_list) @@ -656,9 +657,6 @@ void LLLandmarksPanel::initListCommandsHandlers() mListCommands->childSetAction(OPTIONS_BUTTON_NAME, boost::bind(&LLLandmarksPanel::onActionsButtonClick, this)); mListCommands->childSetAction(TRASH_BUTTON_NAME, boost::bind(&LLLandmarksPanel::onTrashButtonClick, this)); - mListCommands->getChild<LLButton>(ADD_BUTTON_NAME)->setHeldDownCallback(boost::bind(&LLLandmarksPanel::onAddButtonHeldDown, this)); - static const LLSD add_landmark_command("add_landmark"); - mListCommands->childSetAction(ADD_BUTTON_NAME, boost::bind(&LLLandmarksPanel::onAddAction, this, add_landmark_command)); LLDragAndDropButton* trash_btn = mListCommands->getChild<LLDragAndDropButton>(TRASH_BUTTON_NAME); trash_btn->setDragAndDropHandler(boost::bind(&LLLandmarksPanel::handleDragAndDropToTrash, this @@ -676,6 +674,8 @@ void LLLandmarksPanel::initListCommandsHandlers() mGearLandmarkMenu = LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_places_gear_landmark.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance()); mGearFolderMenu = LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_places_gear_folder.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance()); mMenuAdd = LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_place_add_button.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance()); + + mListCommands->childSetAction(ADD_BUTTON_NAME, boost::bind(&LLLandmarksPanel::showActionMenu, this, mMenuAdd, ADD_BUTTON_NAME)); } @@ -713,11 +713,6 @@ void LLLandmarksPanel::onActionsButtonClick() showActionMenu(menu,OPTIONS_BUTTON_NAME); } -void LLLandmarksPanel::onAddButtonHeldDown() -{ - showActionMenu(mMenuAdd,ADD_BUTTON_NAME); -} - void LLLandmarksPanel::showActionMenu(LLMenuGL* menu, std::string spawning_view_name) { if (menu) @@ -777,6 +772,17 @@ void LLLandmarksPanel::onAddAction(const LLSD& userdata) const "category"), gInventory.findCategoryUUIDForType( LLFolderType::FT_LANDMARK)); } + else + { + //in case My Landmarks tab is completely empty (thus cannot be determined as being selected) + menu_create_inventory_item(mLandmarksInventoryPanel->getRootFolder(), NULL, LLSD("category"), + gInventory.findCategoryUUIDForType(LLFolderType::FT_LANDMARK)); + + if (mMyLandmarksAccordionTab) + { + mMyLandmarksAccordionTab->changeOpenClose(false); + } + } } } @@ -917,7 +923,7 @@ bool LLLandmarksPanel::isActionEnabled(const LLSD& userdata) const return false; } } - else if (!root_folder_view) + else if (!root_folder_view && "category" != command_name) { return false; } @@ -940,7 +946,8 @@ bool LLLandmarksPanel::isActionEnabled(const LLSD& userdata) const ) { // disable some commands for multi-selection. EXT-1757 - if (root_folder_view->getSelectedCount() > 1) + if (root_folder_view && + root_folder_view->getSelectedCount() > 1) { return false; } @@ -953,7 +960,8 @@ bool LLLandmarksPanel::isActionEnabled(const LLSD& userdata) const // ... but except Received folder return !isReceivedFolderSelected(); } - else return false; + //"Add a folder" is enabled by default (case when My Landmarks is empty) + else return true; } else if("create_pick" == command_name) { diff --git a/indra/newview/llpanellandmarks.h b/indra/newview/llpanellandmarks.h index f1ce1a18b56447357f00dec3528f6315e018ed71..c9217a4b2f99fbf64c50ede1e832dae9027b9866 100644 --- a/indra/newview/llpanellandmarks.h +++ b/indra/newview/llpanellandmarks.h @@ -112,7 +112,7 @@ class LLLandmarksPanel : public LLPanelPlacesTab, LLRemoteParcelInfoObserver void initMyInventoryPanel(); void initLibraryInventoryPanel(); void initLandmarksPanel(LLPlacesInventoryPanel* inventory_list); - void initAccordion(const std::string& accordion_tab_name, LLPlacesInventoryPanel* inventory_list, bool expand_tab); + LLAccordionCtrlTab* initAccordion(const std::string& accordion_tab_name, LLPlacesInventoryPanel* inventory_list, bool expand_tab); void onAccordionExpandedCollapsed(const LLSD& param, LLPlacesInventoryPanel* inventory_list); void deselectOtherThan(const LLPlacesInventoryPanel* inventory_list); @@ -121,7 +121,6 @@ class LLLandmarksPanel : public LLPanelPlacesTab, LLRemoteParcelInfoObserver void updateListCommands(); void onActionsButtonClick(); void showActionMenu(LLMenuGL* menu, std::string spawning_view_name); - void onAddButtonHeldDown(); void onTrashButtonClick() const; void onAddAction(const LLSD& command_name) const; void onClipboardAction(const LLSD& command_name) const; @@ -170,6 +169,8 @@ class LLLandmarksPanel : public LLPanelPlacesTab, LLRemoteParcelInfoObserver typedef std::vector<LLAccordionCtrlTab*> accordion_tabs_t; accordion_tabs_t mAccordionTabs; + + LLAccordionCtrlTab* mMyLandmarksAccordionTab; }; #endif //LL_LLPANELLANDMARKS_H diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index e02224da84f545695200ddb1186536689238e31e..7fd9db900fbf847d2db43fbc6ee06fbcd391a04c 100644 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -700,6 +700,9 @@ void LLPanelLogin::refreshLocation( bool force_visible ) show_start = gSavedSettings.getBOOL("ShowStartLocation"); } + // Update the value of the location combo. + updateLocationUI(); + sInstance->childSetVisible("start_location_combo", show_start); sInstance->childSetVisible("start_location_text", show_start); diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 421c9df9a1584e8c1b913c07db9f991f61c7b685..d40141c91d3a6de090085d7a66fa419a62667eca 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -44,6 +44,7 @@ #include "llfiltereditor.h" #include "llfloaterreg.h" #include "llpreviewtexture.h" +#include "llresmgr.h" #include "llscrollcontainer.h" #include "llsdserialize.h" #include "llspinctrl.h" @@ -538,7 +539,7 @@ BOOL LLPanelMainInventory::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, // virtual void LLPanelMainInventory::changed(U32) { - // empty, but must have this defined for abstract base class. + updateItemcountText(); } @@ -550,6 +551,34 @@ void LLPanelMainInventory::draw() mFilterEditor->setText(mFilterSubString); } LLPanel::draw(); + updateItemcountText(); +} + +void LLPanelMainInventory::updateItemcountText() +{ + LLLocale locale(LLLocale::USER_LOCALE); + std::string item_count_string; + LLResMgr::getInstance()->getIntegerString(item_count_string, gInventory.getItemCount()); + + LLStringUtil::format_map_t string_args; + string_args["[ITEM_COUNT]"] = item_count_string; + string_args["[FILTER]"] = getFilterText(); + + std::string text = ""; + + if (LLInventoryModel::backgroundFetchActive()) + { + text = getString("ItemcountFetching", string_args); + } + else if (LLInventoryModel::isEverythingFetched()) + { + text = getString("ItemcountCompleted", string_args); + } + else + { + text = getString("ItemcountUnknown"); + } + childSetText("ItemcountText",text); } void LLPanelMainInventory::setFilterTextFromFilter() diff --git a/indra/newview/llpanelmaininventory.h b/indra/newview/llpanelmaininventory.h index d9ea0da2da78f1711dd8ba96009859b0a47186e0..b43e057f831bc09727bb13fb51a3649faa22dd2d 100644 --- a/indra/newview/llpanelmaininventory.h +++ b/indra/newview/llpanelmaininventory.h @@ -113,7 +113,8 @@ class LLPanelMainInventory : public LLPanel, LLInventoryObserver void setSortBy(const LLSD& userdata); void saveTexture(const LLSD& userdata); bool isSaveTextureEnabled(const LLSD& userdata); - + void updateItemcountText(); + private: LLFloaterInventoryFinder* getFinder(); diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index 6fcba80845a8ddda7b7bb602ec39036cb05ba996..c43cbf5819ae4574c1bd3b0e7586c4b9805d5de0 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -609,7 +609,9 @@ void LLTaskInvFVBridge::performAction(LLFolderView* folder, LLInventoryModel* mo { if (price > 0 && price > gStatusBar->getBalance()) { - LLFloaterBuyCurrency::buyCurrency("This costs", price); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", price); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("this_costs", args), price); } else { @@ -1188,7 +1190,8 @@ class LLTaskObjectBridge : public LLTaskInvFVBridge LLTaskObjectBridge( LLPanelObjectInventory* panel, const LLUUID& uuid, - const std::string& name); + const std::string& name, + U32 flags = 0); virtual LLUIImagePtr getIcon() const; }; @@ -1196,8 +1199,9 @@ class LLTaskObjectBridge : public LLTaskInvFVBridge LLTaskObjectBridge::LLTaskObjectBridge( LLPanelObjectInventory* panel, const LLUUID& uuid, - const std::string& name) : - LLTaskInvFVBridge(panel, uuid, name) + const std::string& name, + U32 flags) : + LLTaskInvFVBridge(panel, uuid, name, flags) { } @@ -1442,9 +1446,15 @@ LLTaskInvFVBridge* LLTaskInvFVBridge::createObjectBridge(LLPanelObjectInventory* // object->getName()); break; case LLAssetType::AT_OBJECT: + { + item = dynamic_cast<LLInventoryItem*>(object); + U32 flags = ( NULL == item ? 0 : item->getFlags() ); + new_bridge = new LLTaskObjectBridge(panel, object->getUUID(), - object->getName()); + object->getName(), + flags); + } break; case LLAssetType::AT_NOTECARD: new_bridge = new LLTaskNotecardBridge(panel, @@ -1575,9 +1585,10 @@ void LLPanelObjectInventory::reset() LLRect dummy_rect(0, 1, 1, 0); LLFolderView::Params p; p.name = "task inventory"; + p.title = "task inventory"; p.task_id = getTaskUUID(); p.parent_panel = this; - p.tool_tip= p.name; + p.tool_tip= LLTrans::getString("PanelContentsTooltip"); mFolders = LLUICtrlFactory::create<LLFolderView>(p); // this ensures that we never say "searching..." or "no items found" mFolders->getFilter()->setShowFolderState(LLInventoryFilter::SHOW_ALL_FOLDERS); @@ -1642,7 +1653,7 @@ void LLPanelObjectInventory::updateInventory() // We're still interested in this task's inventory. std::set<LLUUID> selected_items; BOOL inventory_has_focus = FALSE; - if (mHaveInventory && mFolders->getNumSelectedDescendants()) + if (mHaveInventory) { mFolders->getSelectionList(selected_items); inventory_has_focus = gFocusMgr.childHasKeyboardFocus(mFolders); diff --git a/indra/newview/llpanelpick.cpp b/indra/newview/llpanelpick.cpp index 5ac05875505d1f25ed2bbca6751711c87e6c9161..f0dc493ebee14f0a580c1b49212d6e530666a353 100644 --- a/indra/newview/llpanelpick.cpp +++ b/indra/newview/llpanelpick.cpp @@ -72,12 +72,6 @@ #define XML_BTN_ON_TXTR "edit_icon" #define XML_BTN_SAVE "save_changes_btn" -#define SAVE_BTN_LABEL "[WHAT]" -#define LABEL_PICK = "Pick" -#define LABEL_CHANGES = "Changes" - -std::string SET_LOCATION_NOTICE("(will update after save)"); - ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// @@ -150,8 +144,6 @@ BOOL LLPanelPickInfo::postBuild() { mSnapshotCtrl = getChild<LLTextureCtrl>(XML_SNAPSHOT); - childSetLabelArg(XML_BTN_SAVE, SAVE_BTN_LABEL, std::string("Pick")); - childSetAction("teleport_btn", boost::bind(&LLPanelPickInfo::onClickTeleport, this)); childSetAction("show_on_map_btn", boost::bind(&LLPanelPickInfo::onClickMap, this)); childSetAction("back_btn", boost::bind(&LLPanelPickInfo::onClickBack, this)); @@ -410,7 +402,7 @@ void LLPanelPickEdit::onOpen(const LLSD& key) childSetValue("pick_name", pick_name.empty() ? region_name : pick_name); childSetValue("pick_desc", pick_desc); setSnapshotId(snapshot_id); - setPickLocation(createLocationText(SET_LOCATION_NOTICE, pick_name, region_name, getPosGlobal())); + setPickLocation(createLocationText(getLocationNotice(), pick_name, region_name, getPosGlobal())); enableSaveButton(true); } @@ -578,7 +570,7 @@ void LLPanelPickEdit::onClickSetLocation() region_name = region->getName(); } - setPickLocation(createLocationText(SET_LOCATION_NOTICE, parcel_name, region_name, getPosGlobal())); + setPickLocation(createLocationText(getLocationNotice(), parcel_name, region_name, getPosGlobal())); mLocationChanged = true; enableSaveButton(TRUE); @@ -595,6 +587,12 @@ void LLPanelPickEdit::onClickSave() notifyParent(params); } +std::string LLPanelPickEdit::getLocationNotice() +{ + static std::string notice = getString("location_notice"); + return notice; +} + void LLPanelPickEdit::processProperties(void* data, EAvatarProcessorType type) { if(mNeedData) diff --git a/indra/newview/llpanelpick.h b/indra/newview/llpanelpick.h index 4f27760a8dec7d6703a2ec0c893ee74b585a5d8e..94ee2f83abcbe49bcbbe2823719a966b32546e6c 100644 --- a/indra/newview/llpanelpick.h +++ b/indra/newview/llpanelpick.h @@ -248,6 +248,8 @@ class LLPanelPickEdit : public LLPanelPickInfo */ void onClickSave(); + std::string getLocationNotice(); + protected: bool mLocationChanged; diff --git a/indra/newview/llpanelpicks.cpp b/indra/newview/llpanelpicks.cpp index 6b45cd82fd14dec4400a10eceb19313bedc8bab6..2239db96de2ea8f13fe2ee327f75dd79a9e4117e 100644 --- a/indra/newview/llpanelpicks.cpp +++ b/indra/newview/llpanelpicks.cpp @@ -140,10 +140,11 @@ class LLClassifiedHandler : params["open_tab_name"] = "panel_picks"; params["show_tab_panel"] = "classified_details"; params["classified_id"] = c_info->classified_id; - params["classified_avatar_id"] = c_info->creator_id; + params["classified_creator_id"] = c_info->creator_id; params["classified_snapshot_id"] = c_info->snapshot_id; params["classified_name"] = c_info->name; params["classified_desc"] = c_info->description; + params["from_search"] = true; LLSideTray::getInstance()->showPanel("panel_profile_view", params); } @@ -174,31 +175,6 @@ LLClassifiedHandler gClassifiedHandler; ////////////////////////////////////////////////////////////////////////// -/** - * Copy&Pasted from old LLPanelClassified. This class does nothing at the moment. - * Subscribing to "classifiedclickthrough" removes a few warnings. - */ -class LLClassifiedClickThrough : public LLDispatchHandler -{ -public: - - // "classifiedclickthrough" - // strings[0] = classified_id - // strings[1] = teleport_clicks - // strings[2] = map_clicks - // strings[3] = profile_clicks - virtual bool operator()( - const LLDispatcher* dispatcher, - const std::string& key, - const LLUUID& invoice, - const sparam_t& strings) - { - if (strings.size() != 4) - return false; - - return true; - } -}; //----------------------------------------------------------------------------- // LLPanelPicks @@ -216,13 +192,9 @@ LLPanelPicks::LLPanelPicks() mPicksAccTab(NULL), mClassifiedsAccTab(NULL), mPanelClassifiedInfo(NULL), - mPanelClassifiedEdit(NULL), - mClickThroughDisp(NULL), mNoClassifieds(false), mNoPicks(false) { - mClickThroughDisp = new LLClassifiedClickThrough(); - gGenericDispatcher.addHandler("classifiedclickthrough", mClickThroughDisp); } LLPanelPicks::~LLPanelPicks() @@ -231,8 +203,6 @@ LLPanelPicks::~LLPanelPicks() { LLAvatarPropertiesProcessor::getInstance()->removeObserver(getAvatarId(),this); } - - delete mClickThroughDisp; } void* LLPanelPicks::create(void* data /* = NULL */) @@ -414,6 +384,9 @@ BOOL LLPanelPicks::postBuild() registar.add("Pick.Teleport", boost::bind(&LLPanelPicks::onClickTeleport, this)); registar.add("Pick.Map", boost::bind(&LLPanelPicks::onClickMap, this)); registar.add("Pick.Delete", boost::bind(&LLPanelPicks::onClickDelete, this)); + LLUICtrl::EnableCallbackRegistry::ScopedRegistrar enable_registar; + enable_registar.add("Pick.Enable", boost::bind(&LLPanelPicks::onEnableMenuItem, this, _2)); + mPopupMenu = LLUICtrlFactory::getInstance()->createFromFile<LLContextMenu>("menu_picks.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance()); LLUICtrl::CommitCallbackRegistry::ScopedRegistrar plus_registar; @@ -450,6 +423,22 @@ bool LLPanelPicks::isActionEnabled(const LLSD& userdata) const return true; } +bool LLPanelPicks::isClassifiedPublished(LLClassifiedItem* c_item) +{ + if(c_item) + { + LLPanelClassifiedEdit* panel = mEditClassifiedPanels[c_item->getClassifiedId()]; + if(panel) + { + return !panel->isNewWithErrors(); + } + + // we've got this classified from server - it's published + return true; + } + return false; +} + void LLPanelPicks::onAccordionStateChanged(const LLAccordionCtrlTab* acc_tab) { if(!mPicksAccTab->getDisplayChildren()) @@ -607,7 +596,11 @@ void LLPanelPicks::onClickTeleport() if(pick_item) pos = pick_item->getPosGlobal(); else if(c_item) + { pos = c_item->getPosGlobal(); + LLPanelClassifiedInfo::sendClickMessage("teleport", false, + c_item->getClassifiedId(), LLUUID::null, pos, LLStringUtil::null); + } if (!pos.isExactlyZero()) { @@ -626,7 +619,11 @@ void LLPanelPicks::onClickMap() if (pick_item) pos = pick_item->getPosGlobal(); else if(c_item) + { + LLPanelClassifiedInfo::sendClickMessage("map", false, + c_item->getClassifiedId(), LLUUID::null, pos, LLStringUtil::null); pos = c_item->getPosGlobal(); + } LLFloaterWorldMap::getInstance()->trackLocation(pos); LLFloaterReg::showInstance("world_map", "center"); @@ -678,6 +675,12 @@ void LLPanelPicks::updateButtons() childSetEnabled(XML_BTN_INFO, has_selected); childSetEnabled(XML_BTN_TELEPORT, has_selected); childSetEnabled(XML_BTN_SHOW_ON_MAP, has_selected); + + LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); + if(c_item) + { + childSetEnabled(XML_BTN_INFO, isClassifiedPublished(c_item)); + } } void LLPanelPicks::setProfilePanel(LLPanelProfile* profile_panel) @@ -714,9 +717,10 @@ void LLPanelPicks::createNewPick() void LLPanelPicks::createNewClassified() { - createClassifiedEditPanel(); + LLPanelClassifiedEdit* panel = NULL; + createClassifiedEditPanel(&panel); - getProfilePanel()->openPanel(mPanelClassifiedEdit, LLSD()); + getProfilePanel()->openPanel(panel, LLSD()); } void LLPanelPicks::onClickInfo() @@ -756,26 +760,20 @@ void LLPanelPicks::openClassifiedInfo() if (selected_value.isUndefined()) return; LLClassifiedItem* c_item = getSelectedClassifiedItem(); + LLSD params; + params["classified_id"] = c_item->getClassifiedId(); + params["classified_creator_id"] = c_item->getAvatarId(); + params["classified_snapshot_id"] = c_item->getSnapshotId(); + params["classified_name"] = c_item->getClassifiedName(); + params["classified_desc"] = c_item->getDescription(); + params["from_search"] = false; - openClassifiedInfo(c_item->getClassifiedId(), c_item->getAvatarId(), - c_item->getSnapshotId(), c_item->getClassifiedName(), - c_item->getDescription()); + openClassifiedInfo(params); } -void LLPanelPicks::openClassifiedInfo(const LLUUID &classified_id, - const LLUUID &avatar_id, - const LLUUID &snapshot_id, - const std::string &name, const std::string &desc) +void LLPanelPicks::openClassifiedInfo(const LLSD ¶ms) { createClassifiedInfoPanel(); - - LLSD params; - params["classified_id"] = classified_id; - params["avatar_id"] = avatar_id; - params["snapshot_id"] = snapshot_id; - params["name"] = name; - params["desc"] = desc; - getProfilePanel()->openPanel(mPanelClassifiedInfo, params); } @@ -807,11 +805,10 @@ void LLPanelPicks::onPanelClassifiedSave(LLPanelClassifiedEdit* panel) if(panel->isNew()) { + mEditClassifiedPanels[panel->getClassifiedId()] = panel; + LLClassifiedItem* c_item = new LLClassifiedItem(getAvatarId(), panel->getClassifiedId()); - - c_item->setClassifiedName(panel->getClassifiedName()); - c_item->setDescription(panel->getDescription()); - c_item->setSnapshotId(panel->getSnapshotId()); + c_item->fillIn(panel); LLSD c_value; c_value.insert(CLASSIFIED_ID, c_item->getClassifiedId()); @@ -827,6 +824,15 @@ void LLPanelPicks::onPanelClassifiedSave(LLPanelClassifiedEdit* panel) mClassifiedsAccTab->changeOpenClose(false); showAccordion("tab_classifieds", true); } + else if(panel->isNewWithErrors()) + { + LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); + llassert(c_item); + if (c_item) + { + c_item->fillIn(panel); + } + } else { onPanelClassifiedClose(panel); @@ -853,13 +859,13 @@ void LLPanelPicks::onPanelClassifiedClose(LLPanelClassifiedInfo* panel) llassert(c_item); if (c_item) { - c_item->setClassifiedName(panel->getClassifiedName()); - c_item->setDescription(panel->getDescription()); - c_item->setSnapshotId(panel->getSnapshotId()); + c_item->setClassifiedName(panel->getClassifiedName()); + c_item->setDescription(panel->getDescription()); + c_item->setSnapshotId(panel->getSnapshotId()); + } } } } - } onPanelPickClose(panel); updateButtons(); @@ -887,15 +893,16 @@ void LLPanelPicks::createClassifiedInfoPanel() } } -void LLPanelPicks::createClassifiedEditPanel() +void LLPanelPicks::createClassifiedEditPanel(LLPanelClassifiedEdit** panel) { - if(!mPanelClassifiedEdit) + if(panel) { - mPanelClassifiedEdit = LLPanelClassifiedEdit::create(); - mPanelClassifiedEdit->setExitCallback(boost::bind(&LLPanelPicks::onPanelClassifiedClose, this, mPanelClassifiedEdit)); - mPanelClassifiedEdit->setSaveCallback(boost::bind(&LLPanelPicks::onPanelClassifiedSave, this, mPanelClassifiedEdit)); - mPanelClassifiedEdit->setCancelCallback(boost::bind(&LLPanelPicks::onPanelClassifiedClose, this, mPanelClassifiedEdit)); - mPanelClassifiedEdit->setVisible(FALSE); + LLPanelClassifiedEdit* new_panel = LLPanelClassifiedEdit::create(); + new_panel->setExitCallback(boost::bind(&LLPanelPicks::onPanelClassifiedClose, this, new_panel)); + new_panel->setSaveCallback(boost::bind(&LLPanelPicks::onPanelClassifiedSave, this, new_panel)); + new_panel->setCancelCallback(boost::bind(&LLPanelPicks::onPanelClassifiedClose, this, new_panel)); + new_panel->setVisible(FALSE); + *panel = new_panel; } } @@ -967,17 +974,32 @@ void LLPanelPicks::onPanelClassifiedEdit() } LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); - - createClassifiedEditPanel(); + llassert(c_item); + if (!c_item) + { + return; + } LLSD params; params["classified_id"] = c_item->getClassifiedId(); - params["avatar_id"] = c_item->getAvatarId(); + params["classified_creator_id"] = c_item->getAvatarId(); params["snapshot_id"] = c_item->getSnapshotId(); params["name"] = c_item->getClassifiedName(); params["desc"] = c_item->getDescription(); - - getProfilePanel()->openPanel(mPanelClassifiedEdit, params); + params["category"] = (S32)c_item->getCategory(); + params["content_type"] = (S32)c_item->getContentType(); + params["auto_renew"] = c_item->getAutoRenew(); + params["price_for_listing"] = c_item->getPriceForListing(); + params["location_text"] = c_item->getLocationText(); + + LLPanelClassifiedEdit* panel = mEditClassifiedPanels[c_item->getClassifiedId()]; + if(!panel) + { + createClassifiedEditPanel(&panel); + mEditClassifiedPanels[c_item->getClassifiedId()] = panel; + } + getProfilePanel()->openPanel(panel, params); + panel->setPosGlobal(c_item->getPosGlobal()); } void LLPanelPicks::onClickMenuEdit() @@ -992,6 +1014,20 @@ void LLPanelPicks::onClickMenuEdit() } } +bool LLPanelPicks::onEnableMenuItem(const LLSD& user_data) +{ + std::string param = user_data.asString(); + + LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); + if(c_item && "info" == param) + { + // dont show Info panel if classified was not created + return isClassifiedPublished(c_item); + } + + return true; +} + inline LLPanelProfile* LLPanelPicks::getProfilePanel() { llassert_always(NULL != mProfilePanel); @@ -1180,6 +1216,24 @@ void LLClassifiedItem::setValue(const LLSD& value) childSetVisible("selected_icon", value["selected"]); } +void LLClassifiedItem::fillIn(LLPanelClassifiedEdit* panel) +{ + if(!panel) + { + return; + } + + setClassifiedName(panel->getClassifiedName()); + setDescription(panel->getDescription()); + setSnapshotId(panel->getSnapshotId()); + setCategory(panel->getCategory()); + setContentType(panel->getContentType()); + setAutoRenew(panel->getAutoRenew()); + setPriceForListing(panel->getPriceForListing()); + setPosGlobal(panel->getPosGlobal()); + setLocationText(panel->getClassifiedLocation()); +} + void LLClassifiedItem::setClassifiedName(const std::string& name) { childSetValue("name", name); diff --git a/indra/newview/llpanelpicks.h b/indra/newview/llpanelpicks.h index 3f757e482e1494abc08fe50338b8cc9431d409d2..a98b8c413eda97b69def4e86b0137cc781f15200 100644 --- a/indra/newview/llpanelpicks.h +++ b/indra/newview/llpanelpicks.h @@ -55,7 +55,6 @@ class LLPanelPickEdit; class LLToggleableMenu; class LLPanelClassifiedInfo; class LLPanelClassifiedEdit; -class LLClassifiedClickThrough; // *TODO // Panel Picks has been consolidated with Classifieds (EXT-2095), give LLPanelPicks @@ -99,6 +98,8 @@ class LLPanelPicks void onPlusMenuItemClicked(const LLSD& param); bool isActionEnabled(const LLSD& userdata) const; + bool isClassifiedPublished(LLClassifiedItem* c_item); + void onListCommit(const LLFlatListView* f_list); void onAccordionStateChanged(const LLAccordionCtrlTab* acc_tab); @@ -115,14 +116,14 @@ class LLPanelPicks void onPanelClassifiedEdit(); void onClickMenuEdit(); + bool onEnableMenuItem(const LLSD& user_data); + void createNewPick(); void createNewClassified(); void openPickInfo(); void openClassifiedInfo(); - void openClassifiedInfo(const LLUUID &classified_id, const LLUUID &avatar_id, - const LLUUID &snapshot_id, const std::string &name, - const std::string &desc); + void openClassifiedInfo(const LLSD& params); friend class LLPanelProfile; void showAccordion(const std::string& name, bool show); @@ -143,7 +144,7 @@ class LLPanelPicks void createPickInfoPanel(); void createPickEditPanel(); void createClassifiedInfoPanel(); - void createClassifiedEditPanel(); + void createClassifiedEditPanel(LLPanelClassifiedEdit** panel); LLMenuGL* mPopupMenu; LLPanelProfile* mProfilePanel; @@ -152,15 +153,19 @@ class LLPanelPicks LLFlatListView* mClassifiedsList; LLPanelPickInfo* mPanelPickInfo; LLPanelClassifiedInfo* mPanelClassifiedInfo; - LLPanelClassifiedEdit* mPanelClassifiedEdit; LLPanelPickEdit* mPanelPickEdit; LLToggleableMenu* mPlusMenu; + // <classified_id, edit_panel> + typedef std::map<LLUUID, LLPanelClassifiedEdit*> panel_classified_edit_map_t; + + // This map is needed for newly created classifieds. The purpose of panel is to + // sit in this map and listen to LLPanelClassifiedEdit::processProperties callback. + panel_classified_edit_map_t mEditClassifiedPanels; + LLAccordionCtrlTab* mPicksAccTab; LLAccordionCtrlTab* mClassifiedsAccTab; - LLClassifiedClickThrough* mClickThroughDisp; - //true if picks list is empty after processing picks bool mNoPicks; //true if classifieds list is empty after processing classifieds @@ -250,6 +255,8 @@ class LLClassifiedItem : public LLPanel, public LLAvatarPropertiesObserver /*virtual*/ void setValue(const LLSD& value); + void fillIn(LLPanelClassifiedEdit* panel); + LLUUID getAvatarId() {return mAvatarId;} void setAvatarId(const LLUUID& avatar_id) {mAvatarId = avatar_id;} @@ -260,7 +267,11 @@ class LLClassifiedItem : public LLPanel, public LLAvatarPropertiesObserver void setPosGlobal(const LLVector3d& pos) { mPosGlobal = pos; } - const LLVector3d& getPosGlobal() { return mPosGlobal; } + const LLVector3d getPosGlobal() { return mPosGlobal; } + + void setLocationText(const std::string location) { mLocationText = location; } + + std::string getLocationText() { return mLocationText; } void setClassifiedName (const std::string& name); @@ -274,10 +285,31 @@ class LLClassifiedItem : public LLPanel, public LLAvatarPropertiesObserver LLUUID getSnapshotId(); + void setCategory(U32 cat) { mCategory = cat; } + + U32 getCategory() { return mCategory; } + + void setContentType(U32 ct) { mContentType = ct; } + + U32 getContentType() { return mContentType; } + + void setAutoRenew(U32 renew) { mAutoRenew = renew; } + + bool getAutoRenew() { return mAutoRenew; } + + void setPriceForListing(S32 price) { mPriceForListing = price; } + + S32 getPriceForListing() { return mPriceForListing; } + private: LLUUID mAvatarId; LLUUID mClassifiedId; LLVector3d mPosGlobal; + std::string mLocationText; + U32 mCategory; + U32 mContentType; + bool mAutoRenew; + S32 mPriceForListing; }; #endif // LL_LLPANELPICKS_H diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index 5fe24b15f647405ce84c22f318e6e50e3cc8987d..41ca237b1ec6beaa2540f3032b16c527ac9f000a 100644 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -572,9 +572,13 @@ void LLPanelPlaceProfile::onForSaleBannerClick() if(parcel->getLocalID() == mSelectedParcelID && mLastSelectedRegionID ==selected_region->getRegionID()) { - if(parcel->getSalePrice() - gStatusBar->getBalance() > 0) + S32 price = parcel->getSalePrice(); + + if(price - gStatusBar->getBalance() > 0) { - LLFloaterBuyCurrency::buyCurrency("Buying selected land ", parcel->getSalePrice()); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", price); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("buying_selected_land", args), price); } else { diff --git a/indra/newview/llpanelplaces.cpp b/indra/newview/llpanelplaces.cpp index 26b57c003b6c045fbf08eb5dc7f58db0eb8ae514..f9ba6f625d2aa7039a1b2306cbbf9836e62bd72b 100644 --- a/indra/newview/llpanelplaces.cpp +++ b/indra/newview/llpanelplaces.cpp @@ -278,6 +278,11 @@ BOOL LLPanelPlaces::postBuild() mFilterEditor = getChild<LLFilterEditor>("Filter"); if (mFilterEditor) { + //when list item is being clicked the filter editor looses focus + //committing on focus lost leads to detaching list items + //BUT a detached list item cannot be made selected and must not be clicked onto + mFilterEditor->setCommitOnFocusLost(false); + mFilterEditor->setCommitCallback(boost::bind(&LLPanelPlaces::onFilterEdit, this, _2, false)); } diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index b5d85dfd4bf7cfcc71958588c17b1565a29a8fc7..18da8dd48c7bfb91d338e1d84db282bbaed2ff1e 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -171,15 +171,13 @@ void LLPanelProfile::onOpen(const LLSD& key) } else if (panel == "classified_details") { - LLUUID classified_id = key["classified_id"].asUUID(); - LLUUID avatar_id = key["classified_avatar_id"].asUUID(); - LLUUID snapshot_id = key["classified_snapshot_id"].asUUID(); - std::string name = key["classified_name"].asString(); - std::string desc = key["classified_desc"].asString(); LLPanelPicks* picks = dynamic_cast<LLPanelPicks *>(getTabContainer()[PANEL_PICKS]); if (picks) { - picks->openClassifiedInfo(classified_id, avatar_id, snapshot_id, name, desc); + LLSD params = key; + params.erase("show_tab_panel"); + params.erase("open_tab_name"); + picks->openClassifiedInfo(params); } } } diff --git a/indra/newview/llplacesinventorypanel.cpp b/indra/newview/llplacesinventorypanel.cpp index f1e450a083a5c2fcfb557e8cf41f8b71cad0a2f1..ed0fb54051f12d2266d2218a95a3dba094523732 100644 --- a/indra/newview/llplacesinventorypanel.cpp +++ b/indra/newview/llplacesinventorypanel.cpp @@ -92,6 +92,7 @@ BOOL LLPlacesInventoryPanel::postBuild() 0); LLPlacesFolderView::Params p; p.name = getName(); + p.title = getLabel(); p.rect = folder_rect; p.parent_panel = this; mFolders = (LLFolderView*)LLUICtrlFactory::create<LLPlacesFolderView>(p); diff --git a/indra/newview/llpopupview.cpp b/indra/newview/llpopupview.cpp index d8ad59c90c0a7de89e847e41cdaddb321efecc33..b010f4d72f927522eb268135d700c1ef88c6f5de 100644 --- a/indra/newview/llpopupview.cpp +++ b/indra/newview/llpopupview.cpp @@ -207,11 +207,7 @@ void LLPopupView::addPopup(LLView* popup) { if (popup) { - popup_list_t::iterator iter = std::find(mPopups.begin(), mPopups.end(), popup->getHandle()); - if(iter != mPopups.end()) - { - mPopups.erase(iter); - } + mPopups.remove(popup->getHandle()); mPopups.push_front(popup->getHandle()); } } @@ -220,11 +216,7 @@ void LLPopupView::removePopup(LLView* popup) { if (popup) { - popup_list_t::iterator iter = std::find(mPopups.begin(), mPopups.end(), popup->getHandle()); - if(iter != mPopups.end()) - { - mPopups.erase(iter); - } + mPopups.remove(popup->getHandle()); popup->onTopLost(); } } diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index a4426b370e16ad427a96261199624e80677a5c57..dffb5e5e123ad97eb721319b3fd266042670eaef 100644 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -710,9 +710,7 @@ void LLScreenChannel::hideToast(const LLUUID& notification_id) if(mToastList.end() != it) { ToastElem te = *it; - te.toast->setVisible(FALSE); - te.toast->stopTimer(); - mToastList.erase(it); + te.toast->hide(); } } diff --git a/indra/newview/llscriptfloater.cpp b/indra/newview/llscriptfloater.cpp index eb71cc52c8e8e75ff54ab98bc01f34d0e58659e5..f35cb3516a81296fa4f5b09261625f802dea3503 100644 --- a/indra/newview/llscriptfloater.cpp +++ b/indra/newview/llscriptfloater.cpp @@ -154,14 +154,17 @@ void LLScriptFloater::createForm(const LLUUID& notification_id) } // create new form - mScriptForm = new LLToastNotifyPanel(notification); + LLRect toast_rect = getRect(); + // LLToastNotifyPanel will fit own content in vertical direction, + // but it needs an initial rect to properly calculate its width + // Use an initial rect of the script floater to make the floater window more configurable. + mScriptForm = new LLToastNotifyPanel(notification, toast_rect); addChild(mScriptForm); // position form on floater mScriptForm->setOrigin(0, 0); // make floater size fit form size - LLRect toast_rect = getRect(); LLRect panel_rect = mScriptForm->getRect(); toast_rect.setLeftTopAndSize(toast_rect.mLeft, toast_rect.mTop, panel_rect.getWidth(), panel_rect.getHeight() + getHeaderHeight()); setShape(toast_rect); diff --git a/indra/newview/llscrollingpanelparam.cpp b/indra/newview/llscrollingpanelparam.cpp index 32a915608eb0fe19cbd4c7ca811b9f0d781260a5..dc64296521e75347e5058c0071debb48ad6b3f38 100644 --- a/indra/newview/llscrollingpanelparam.cpp +++ b/indra/newview/llscrollingpanelparam.cpp @@ -168,25 +168,25 @@ void LLScrollingPanelParam::draw() LLPanel::draw(); // Draw the hints over the "less" and "more" buttons. - glPushMatrix(); + gGL.pushUIMatrix(); { const LLRect& r = mHintMin->getRect(); F32 left = (F32)(r.mLeft + BTN_BORDER); F32 bot = (F32)(r.mBottom + BTN_BORDER); - glTranslatef(left, bot, 0.f); + gGL.translateUI(left, bot, 0.f); mHintMin->draw(); } - glPopMatrix(); + gGL.popUIMatrix(); - glPushMatrix(); + gGL.pushUIMatrix(); { const LLRect& r = mHintMax->getRect(); F32 left = (F32)(r.mLeft + BTN_BORDER); F32 bot = (F32)(r.mBottom + BTN_BORDER); - glTranslatef(left, bot, 0.f); + gGL.translateUI(left, bot, 0.f); mHintMax->draw(); } - glPopMatrix(); + gGL.popUIMatrix(); // Draw labels on top of the buttons diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index d733574a9dfc068bfc569d318a914f7f11baf696..9147bd1cbab93f267d6fea20e7213c89c45d36e6 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -4936,17 +4936,18 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud) if (mSelectedObjects->getNumNodes()) { LLUUID inspect_item_id= LLUUID::null; -#if 0 LLFloaterInspect* inspect_instance = LLFloaterReg::getTypedInstance<LLFloaterInspect>("inspect"); - if(inspect_instance) + if(inspect_instance && inspect_instance->getVisible()) { inspect_item_id = inspect_instance->getSelectedUUID(); } -#endif - LLSidepanelTaskInfo *panel_task_info = LLSidepanelTaskInfo::getActivePanel(); - if (panel_task_info) + else { - inspect_item_id = panel_task_info->getSelectedUUID(); + LLSidepanelTaskInfo *panel_task_info = LLSidepanelTaskInfo::getActivePanel(); + if (panel_task_info) + { + inspect_item_id = panel_task_info->getSelectedUUID(); + } } LLUUID focus_item_id = LLViewerMediaFocus::getInstance()->getFocusedObjectID(); @@ -5534,13 +5535,12 @@ void dialog_refresh_all() LLFloaterProperties::dirtyAll(); -#if 0 LLFloaterInspect* inspect_instance = LLFloaterReg::getTypedInstance<LLFloaterInspect>("inspect"); if(inspect_instance) { inspect_instance->dirty(); } -#endif + LLSidepanelTaskInfo *panel_task_info = LLSidepanelTaskInfo::getActivePanel(); if (panel_task_info) { diff --git a/indra/newview/llspeakers.cpp b/indra/newview/llspeakers.cpp index 4e121021fcccea85fd2729610bb74eaa987e21de..5c09e39baa811b1ef35fbefa49e508374423bb59 100644 --- a/indra/newview/llspeakers.cpp +++ b/indra/newview/llspeakers.cpp @@ -37,7 +37,6 @@ #include "llagent.h" #include "llappviewer.h" #include "llimview.h" -#include "llmutelist.h" #include "llsdutil.h" #include "lluicolortable.h" #include "llviewerobjectlist.h" diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index cdbd9d8eb329bd19d8323ccc6434201c2ada0aa1..18792950eb0a4a21d347787f97024471ecd1411d 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1041,7 +1041,7 @@ bool idle_startup() if(STATE_LOGIN_PROCESS_RESPONSE == LLStartUp::getStartupState()) { std::ostringstream emsg; - emsg << "Login failed.\n"; + emsg << LLTrans::getString("LoginFailed") << "\n"; if(LLLoginInstance::getInstance()->authFailure()) { LL_INFOS("LLStartup") << "Login failed, LLLoginInstance::getResponse(): " diff --git a/indra/newview/lltexlayer.cpp b/indra/newview/lltexlayer.cpp index 6ed95f2cbf179da3fadacbd02be092325e1f4eb7..386b636367ac799faf6e11ce5d600a7ac9b82c55 100644 --- a/indra/newview/lltexlayer.cpp +++ b/indra/newview/lltexlayer.cpp @@ -1883,6 +1883,11 @@ LLTexLayer* LLTexLayerTemplate::getLayer(U32 i) /*virtual*/ BOOL LLTexLayerTemplate::render(S32 x, S32 y, S32 width, S32 height) { + if(!mInfo) + { + return FALSE ; + } + BOOL success = TRUE; updateWearableCache(); for (wearable_cache_t::const_iterator iter = mWearableCache.begin(); iter!= mWearableCache.end(); iter++) diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp index 4649b9cbef6a5dc7972b718b110815586f2794b1..7a0712f8aaf14c90e058d0ca97b128ba26c309de 100644 --- a/indra/newview/lltexturecache.cpp +++ b/indra/newview/lltexturecache.cpp @@ -550,7 +550,7 @@ bool LLTextureCacheRemoteWorker::doWrite() S32 cur_imagesize = 0; // Checks if this image is already in the entry list idx = mCache->getHeaderCacheEntry(mID, cur_imagesize); - if (idx >= 0 && (cur_imagesize >= 0)) + if (idx >= 0 && (cur_imagesize > 0)) { alreadyCached = true; // already there and non empty } @@ -846,9 +846,8 @@ bool LLTextureCache::updateTextureEntryList(const LLUUID& id, S32 bodysize) S32 idx = openAndReadEntry(id, entry, false); if (idx < 0) { - llwarns << "Failed to open entry: " << id << llendl; - removeHeaderCacheEntry(id); - LLAPRFile::remove(getTextureFileName(id), getLocalAPRFilePool()); + llwarns << "Failed to open entry: " << id << llendl; + removeCachedTexture(id) ; return false; } else if (oldbodysize != entry.mBodySize) @@ -857,11 +856,7 @@ bool LLTextureCache::updateTextureEntryList(const LLUUID& id, S32 bodysize) llerrs << "Entry mismatch in mTextureSizeMap / mHeaderIDMap" << " idx=" << idx << " oldsize=" << oldbodysize << " entrysize=" << entry.mBodySize << llendl; } - entry.mBodySize = bodysize; - writeEntryAndClose(idx, entry); - - mTexturesSizeTotal -= oldbodysize; - mTexturesSizeTotal += bodysize; + updateEntry(idx, entry, entry.mImageSize, bodysize); if (mTexturesSizeTotal > sCacheMaxTexturesSize) { @@ -1002,7 +997,10 @@ LLAPRFile* LLTextureCache::openHeaderEntriesFile(bool readonly, S32 offset) llassert_always(mHeaderAPRFile == NULL); apr_int32_t flags = readonly ? APR_READ|APR_BINARY : APR_READ|APR_WRITE|APR_BINARY; mHeaderAPRFile = new LLAPRFile(mHeaderEntriesFileName, flags, getLocalAPRFilePool()); - mHeaderAPRFile->seek(APR_SET, offset); + if(offset > 0) + { + mHeaderAPRFile->seek(APR_SET, offset); + } return mHeaderAPRFile; } @@ -1022,6 +1020,12 @@ void LLTextureCache::readEntriesHeader() LLAPRFile::readEx(mHeaderEntriesFileName, (U8*)&mHeaderEntriesInfo, 0, sizeof(EntriesInfo), getLocalAPRFilePool()); } + else //create an empty entries header. + { + mHeaderEntriesInfo.mVersion = sHeaderCacheVersion ; + mHeaderEntriesInfo.mEntries = 0 ; + writeEntriesHeader() ; + } } void LLTextureCache::writeEntriesHeader() @@ -1034,8 +1038,7 @@ void LLTextureCache::writeEntriesHeader() } } -static S32 mHeaderEntriesMaxWriteIdx = 0; - +//mHeaderMutex is locked before calling this. S32 LLTextureCache::openAndReadEntry(const LLUUID& id, Entry& entry, bool create) { S32 idx = -1; @@ -1075,8 +1078,7 @@ S32 LLTextureCache::openAndReadEntry(const LLUUID& id, Entry& entry, bool create if (iter3 != mHeaderIDMap.end() && iter3->second >= 0) { idx = iter3->second; - mHeaderIDMap.erase(oldid); - mTexturesSizeMap.erase(oldid); + removeCachedTexture(oldid) ;//remove the existing cached texture to release the entry index. break; } } @@ -1086,22 +1088,9 @@ S32 LLTextureCache::openAndReadEntry(const LLUUID& id, Entry& entry, bool create } if (idx >= 0) { - // Set the header index - mHeaderIDMap[id] = idx; - llassert_always(mTexturesSizeMap.erase(id) == 0); - // Initialize the entry (will get written later) - entry.init(id, time(NULL)); - // Update Header - writeEntriesHeader(); - - //the new entry, write immediately. - // Write Entry - S32 offset = sizeof(EntriesInfo) + idx * sizeof(Entry); - LLAPRFile* aprfile = openHeaderEntriesFile(false, offset); - S32 bytes_written = aprfile->write((void*)&entry, (S32)sizeof(Entry)); - llassert_always(bytes_written == sizeof(Entry)); - mHeaderEntriesMaxWriteIdx = llmax(mHeaderEntriesMaxWriteIdx, idx); - closeHeaderEntriesFile(); + entry.mID = id ; + entry.mImageSize = -1 ; //mark it is a brand-new entry. + entry.mBodySize = 0 ; } } } @@ -1117,32 +1106,108 @@ S32 LLTextureCache::openAndReadEntry(const LLUUID& id, Entry& entry, bool create } else { - S32 offset = sizeof(EntriesInfo) + idx * sizeof(Entry); - LLAPRFile* aprfile = openHeaderEntriesFile(true, offset); - S32 bytes_read = aprfile->read((void*)&entry, (S32)sizeof(Entry)); - llassert_always(bytes_read == sizeof(Entry)); - closeHeaderEntriesFile(); + readEntryFromHeaderImmediately(idx, entry) ; } - llassert_always(entry.mImageSize == 0 || entry.mImageSize == -1 || entry.mImageSize > entry.mBodySize); + llassert_always(entry.mImageSize > entry.mBodySize); } return idx; } -void LLTextureCache::writeEntryAndClose(S32 idx, Entry& entry) +//mHeaderMutex is locked before calling this. +void LLTextureCache::writeEntryToHeaderImmediately(S32 idx, Entry& entry, bool write_header) +{ + LLAPRFile* aprfile ; + S32 bytes_written ; + S32 offset = sizeof(EntriesInfo) + idx * sizeof(Entry); + if(write_header) + { + aprfile = openHeaderEntriesFile(false, 0); + bytes_written = aprfile->write((U8*)&mHeaderEntriesInfo, sizeof(EntriesInfo)) ; + llassert_always(bytes_written == sizeof(EntriesInfo)); + mHeaderAPRFile->seek(APR_SET, offset); + } + else + { + aprfile = openHeaderEntriesFile(false, offset); + } + bytes_written = aprfile->write((void*)&entry, (S32)sizeof(Entry)); + llassert_always(bytes_written == sizeof(Entry)); + closeHeaderEntriesFile(); + mUpdatedEntryMap.erase(idx) ; +} + +//mHeaderMutex is locked before calling this. +void LLTextureCache::readEntryFromHeaderImmediately(S32 idx, Entry& entry) +{ + S32 offset = sizeof(EntriesInfo) + idx * sizeof(Entry); + LLAPRFile* aprfile = openHeaderEntriesFile(true, offset); + S32 bytes_read = aprfile->read((void*)&entry, (S32)sizeof(Entry)); + llassert_always(bytes_read == sizeof(Entry)); + closeHeaderEntriesFile(); +} + +//mHeaderMutex is locked before calling this. +//update an existing entry time stamp, delay writing. +void LLTextureCache::updateEntryTimeStamp(S32 idx, Entry& entry) { + static const U32 MAX_ENTRIES_WITHOUT_TIME_STAMP = (U32)(LLTextureCache::sCacheMaxEntries * 0.75f) ; + + if(mHeaderEntriesInfo.mEntries < MAX_ENTRIES_WITHOUT_TIME_STAMP) + { + return ; //there are enough empty entry index space, no need to stamp time. + } + if (idx >= 0) { if (!mReadOnly) { - entry.mTime = time(NULL); - llassert_always(entry.mImageSize == 0 || entry.mImageSize == -1 || entry.mImageSize > entry.mBodySize); - if (entry.mBodySize > 0) + llassert_always(entry.mImageSize > entry.mBodySize); + + entry.mTime = time(NULL); + mUpdatedEntryMap[idx] = entry ; + } + } +} + +//mHeaderMutex is locked before calling this. +//update an existing entry, write to header file immediately. +void LLTextureCache::updateEntry(S32 idx, Entry& entry, S32 new_image_size, S32 new_body_size) +{ + llassert_always(new_image_size > -1) ; + + if(new_image_size == entry.mImageSize && new_body_size == entry.mBodySize) + { + updateEntryTimeStamp(idx, entry) ; //nothing changed. + } + else if (idx >= 0) + { + if (!mReadOnly) + { + llassert_always(new_image_size > new_body_size) ; + + bool update_header = false ; + if(entry.mImageSize < 0) //is a brand-new entry + { + mHeaderIDMap[entry.mID] = idx; + mTexturesSizeMap[entry.mID] = new_body_size ; + mTexturesSizeTotal += new_body_size ; + + // Update Header + update_header = true ; + } + else if (entry.mBodySize != new_body_size) { - mTexturesSizeMap[entry.mID] = entry.mBodySize; + //already in mHeaderIDMap. + mTexturesSizeMap[entry.mID] = new_body_size ; + mTexturesSizeTotal -= entry.mBodySize ; + mTexturesSizeTotal += new_body_size ; } -// llinfos << "Updating TE: " << idx << ": " << id << " Size: " << entry.mBodySize << " Time: " << entry.mTime << llendl; - mHeaderEntriesMaxWriteIdx = llmax(mHeaderEntriesMaxWriteIdx, idx); - mUpdatedEntryMap[idx] = entry ; + entry.mTime = time(NULL); + entry.mImageSize = new_image_size ; + entry.mBodySize = new_body_size ; + +// llinfos << "Updating TE: " << idx << ": " << id << " Size: " << entry.mBodySize << " Time: " << entry.mTime << llendl; + writeEntryToHeaderImmediately(idx, entry, update_header) ; } } } @@ -1156,8 +1221,9 @@ U32 LLTextureCache::openAndReadEntries(std::vector<Entry>& entries) mFreeList.clear(); mTexturesSizeTotal = 0; - LLAPRFile* aprfile = openHeaderEntriesFile(false, (S32)sizeof(EntriesInfo)); + LLAPRFile* aprfile = openHeaderEntriesFile(true, 0); updatedHeaderEntriesFile() ; + aprfile->seek(APR_SET, (S32)sizeof(EntriesInfo)); for (U32 idx=0; idx<num_entries; idx++) { Entry entry; @@ -1171,19 +1237,15 @@ U32 LLTextureCache::openAndReadEntries(std::vector<Entry>& entries) } entries.push_back(entry); // llinfos << "ENTRY: " << entry.mTime << " TEX: " << entry.mID << " IDX: " << idx << " Size: " << entry.mImageSize << llendl; - if (entry.mImageSize < 0) + if(entry.mImageSize > entry.mBodySize) { - mFreeList.insert(idx); + mHeaderIDMap[entry.mID] = idx; + mTexturesSizeMap[entry.mID] = entry.mBodySize; + mTexturesSizeTotal += entry.mBodySize; } else { - mHeaderIDMap[entry.mID] = idx; - if (entry.mBodySize > 0) - { - mTexturesSizeMap[entry.mID] = entry.mBodySize; - mTexturesSizeTotal += entry.mBodySize; - } - llassert_always(entry.mImageSize == 0 || entry.mImageSize > entry.mBodySize); + mFreeList.insert(idx); } } closeHeaderEntriesFile(); @@ -1203,7 +1265,6 @@ void LLTextureCache::writeEntriesAndClose(const std::vector<Entry>& entries) S32 bytes_written = aprfile->write((void*)(&entries[idx]), (S32)sizeof(Entry)); llassert_always(bytes_written == sizeof(Entry)); } - mHeaderEntriesMaxWriteIdx = llmax(mHeaderEntriesMaxWriteIdx, num_entries-1); closeHeaderEntriesFile(); } } @@ -1276,12 +1337,11 @@ void LLTextureCache::readHeaderCache() U32 empty_entries = 0; typedef std::pair<U32, S32> lru_data_t; std::set<lru_data_t> lru; - std::set<LLUUID> purge_list; + std::set<U32> purge_list; for (U32 i=0; i<num_entries; i++) { Entry& entry = entries[i]; - const LLUUID& id = entry.mID; - if (entry.mImageSize < 0) + if (entry.mImageSize <= 0) { // This will be in the Free List, don't put it in the LRU ++empty_entries; @@ -1294,9 +1354,8 @@ void LLTextureCache::readHeaderCache() if (entry.mBodySize > entry.mImageSize) { // Shouldn't happen, failsafe only - llwarns << "Bad entry: " << i << ": " << id << ": BodySize: " << entry.mBodySize << llendl; - purge_list.insert(entry.mID); - entry.mImageSize = -1; // empty/available + llwarns << "Bad entry: " << i << ": " << entry.mID << ": BodySize: " << entry.mBodySize << llendl; + purge_list.insert(i); } } } @@ -1311,14 +1370,9 @@ void LLTextureCache::readHeaderCache() { for (std::set<lru_data_t>::iterator iter = lru.begin(); iter != lru.end(); ++iter) { - S32 idx = iter->second; - if (entries[idx].mImageSize >= 0) - { - purge_list.insert(entries[idx].mID); - entries[idx].mImageSize = -1; - if (purge_list.size() >= entries_to_purge) - break; - } + purge_list.insert(iter->second); + if (purge_list.size() >= entries_to_purge) + break; } } llassert_always(purge_list.size() >= entries_to_purge); @@ -1328,9 +1382,7 @@ void LLTextureCache::readHeaderCache() S32 lru_entries = (S32)((F32)sCacheMaxEntries * TEXTURE_CACHE_LRU_SIZE); for (std::set<lru_data_t>::iterator iter = lru.begin(); iter != lru.end(); ++iter) { - S32 idx = iter->second; - const LLUUID& id = entries[idx].mID; - mLRU.insert(id); + mLRU.insert(entries[iter->second].mID); // llinfos << "LRU: " << iter->first << " : " << iter->second << llendl; if (--lru_entries <= 0) break; @@ -1339,12 +1391,10 @@ void LLTextureCache::readHeaderCache() if (purge_list.size() > 0) { - for (std::set<LLUUID>::iterator iter = purge_list.begin(); iter != purge_list.end(); ++iter) + for (std::set<U32>::iterator iter = purge_list.begin(); iter != purge_list.end(); ++iter) { - const LLUUID& id = *iter; - bool res = removeHeaderCacheEntry(id); // sets entry size on disk to -1 - llassert_always(res); - LLAPRFile::remove(getTextureFileName(id), getLocalAPRFilePool()); + std::string tex_filename = getTextureFileName(entries[*iter].mID); + removeEntry((S32)*iter, entries[*iter], tex_filename); } // If we removed any entries, we need to rebuild the entries list, // write the header, and call this again @@ -1352,13 +1402,14 @@ void LLTextureCache::readHeaderCache() for (U32 i=0; i<num_entries; i++) { const Entry& entry = entries[i]; - if (entry.mImageSize >=0) + if (entry.mImageSize > 0) { new_entries.push_back(entry); } } llassert_always(new_entries.size() <= sCacheMaxEntries); mHeaderEntriesInfo.mEntries = new_entries.size(); + writeEntriesHeader(); writeEntriesAndClose(new_entries); mHeaderMutex.unlock(); // unlock the mutex before calling again readHeaderCache(); // repeat with new entries file @@ -1366,7 +1417,7 @@ void LLTextureCache::readHeaderCache() } else { - writeEntriesAndClose(entries); + //entries are not changed, nothing here. } } } @@ -1394,6 +1445,7 @@ void LLTextureCache::purgeAllTextures(bool purge_directories) } if (purge_directories) { + gDirUtilp->deleteFilesInDir(mTexturesDirName,mask); LLFile::rmdir(mTexturesDirName); } } @@ -1431,7 +1483,6 @@ void LLTextureCache::purgeTextures(bool validate) U32 num_entries = openAndReadEntries(entries); if (!num_entries) { - writeEntriesAndClose(entries); return; // nothing to purge } @@ -1450,6 +1501,10 @@ void LLTextureCache::purgeTextures(bool validate) time_idx_set.insert(std::make_pair(entries[idx].mTime, idx)); // llinfos << "TIME: " << entries[idx].mTime << " TEX: " << entries[idx].mID << " IDX: " << idx << " Size: " << entries[idx].mImageSize << llendl; } + else + { + llerrs << "mTexturesSizeMap / mHeaderIDMap corrupted." << llendl ; + } } } @@ -1501,11 +1556,8 @@ void LLTextureCache::purgeTextures(bool validate) { purge_count++; LL_DEBUGS("TextureCache") << "PURGING: " << filename << LL_ENDL; - LLAPRFile::remove(filename, getLocalAPRFilePool()); + removeEntry(idx, entries[idx], filename) ; cache_size -= entries[idx].mBodySize; - mTexturesSizeTotal -= entries[idx].mBodySize; - entries[idx].mBodySize = 0; - mTexturesSizeMap.erase(entries[idx].mID); } } @@ -1560,7 +1612,7 @@ S32 LLTextureCache::getHeaderCacheEntry(const LLUUID& id, S32& imagesize) if (idx >= 0) { imagesize = entry.mImageSize; - writeEntryAndClose(idx, entry); // updates time + updateEntryTimeStamp(idx, entry); // updates time } return idx; } @@ -1574,8 +1626,7 @@ S32 LLTextureCache::setHeaderCacheEntry(const LLUUID& id, S32 imagesize) S32 idx = openAndReadEntry(id, entry, true); if (idx >= 0) { - entry.mImageSize = imagesize; - writeEntryAndClose(idx, entry); + updateEntry(idx, entry, imagesize, entry.mBodySize); mHeaderMutex.unlock(); } else // retry @@ -1714,34 +1765,56 @@ void LLTextureCache::addCompleted(Responder* responder, bool success) ////////////////////////////////////////////////////////////////////////////// -// Called from MAIN thread (endWork()) -// Ensure that mHeaderMutex is locked first! -bool LLTextureCache::removeHeaderCacheEntry(const LLUUID& id) +//called after mHeaderMutex is locked. +void LLTextureCache::removeCachedTexture(const LLUUID& id) { - Entry entry; - S32 idx = openAndReadEntry(id, entry, false); - if (idx >= 0) + if(mTexturesSizeMap.find(id) != mTexturesSizeMap.end()) + { + mTexturesSizeTotal -= mTexturesSizeMap[id] ; + mTexturesSizeMap.erase(id); + } + mHeaderIDMap.erase(id); + LLAPRFile::remove(getTextureFileName(id), getLocalAPRFilePool()); +} + +//called after mHeaderMutex is locked. +void LLTextureCache::removeEntry(S32 idx, Entry& entry, std::string& filename) +{ + if(idx >= 0) //valid entry { entry.mImageSize = -1; entry.mBodySize = 0; - writeEntryAndClose(idx, entry); - mFreeList.insert(idx); - mHeaderIDMap.erase(id); - mTexturesSizeMap.erase(id); - return true; + mHeaderIDMap.erase(entry.mID); + mTexturesSizeMap.erase(entry.mID); + + mTexturesSizeTotal -= entry.mBodySize; + mFreeList.insert(idx); } - return false; + + LLAPRFile::remove(filename, getLocalAPRFilePool()); } -void LLTextureCache::removeFromCache(const LLUUID& id) +bool LLTextureCache::removeFromCache(const LLUUID& id) { //llwarns << "Removing texture from cache: " << id << llendl; + bool ret = false ; if (!mReadOnly) { - LLMutexLock lock(&mHeaderMutex); - removeHeaderCacheEntry(id); - LLAPRFile::remove(getTextureFileName(id), getLocalAPRFilePool()); + lockHeaders() ; + + Entry entry; + S32 idx = openAndReadEntry(id, entry, false); + std::string tex_filename = getTextureFileName(id); + removeEntry(idx, entry, tex_filename) ; + if (idx >= 0) + { + writeEntryToHeaderImmediately(idx, entry); + ret = true; + } + + unlockHeaders() ; } + return ret ; } ////////////////////////////////////////////////////////////////////////////// diff --git a/indra/newview/lltexturecache.h b/indra/newview/lltexturecache.h index b840619c1f3bd25c853a03010b06679d65207e05..ca8815ee7e35aaa48e9036b33de9eb110877ac45 100644 --- a/indra/newview/lltexturecache.h +++ b/indra/newview/lltexturecache.h @@ -123,7 +123,7 @@ class LLTextureCache : public LLWorkerThread bool writeComplete(handle_t handle, bool abort = false); void prioritizeWrite(handle_t handle); - void removeFromCache(const LLUUID& id); + bool removeFromCache(const LLUUID& id); // For LLTextureCacheWorker::Responder LLTextureCacheWorker* getReader(handle_t handle); @@ -161,12 +161,16 @@ class LLTextureCache : public LLWorkerThread void readEntriesHeader(); void writeEntriesHeader(); S32 openAndReadEntry(const LLUUID& id, Entry& entry, bool create); - void writeEntryAndClose(S32 idx, Entry& entry); + void updateEntry(S32 idx, Entry& entry, S32 new_image_size, S32 new_body_size); + void updateEntryTimeStamp(S32 idx, Entry& entry) ; U32 openAndReadEntries(std::vector<Entry>& entries); void writeEntriesAndClose(const std::vector<Entry>& entries); + void readEntryFromHeaderImmediately(S32 idx, Entry& entry) ; + void writeEntryToHeaderImmediately(S32 idx, Entry& entry, bool write_header = false) ; + void removeEntry(S32 idx, Entry& entry, std::string& filename); + void removeCachedTexture(const LLUUID& id) ; S32 getHeaderCacheEntry(const LLUUID& id, S32& imagesize); S32 setHeaderCacheEntry(const LLUUID& id, S32 imagesize); - bool removeHeaderCacheEntry(const LLUUID& id); void writeUpdatedEntries() ; void updatedHeaderEntriesFile() ; void lockHeaders() { mHeaderMutex.lock(); } diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index b1b3ae473cf6740c63ae7edfe016317089f09233..1c7b3a0fe0740464975d72542ae07d315936fcb3 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -571,7 +571,7 @@ bool LLTextureFetchWorker::doWork(S32 param) if ((mFetcher->isQuitting() || mImagePriority < 1.0f || getFlags(LLWorkerClass::WCF_DELETE_REQUESTED))) { - if (mState < WRITE_TO_CACHE) + if (mState < DECODE_IMAGE) { return true; // abort } diff --git a/indra/newview/lltextureview.cpp b/indra/newview/lltextureview.cpp index 6cd8a78b25354976d1f344c336ffb57ab258b388..43913f3632636b49c22c072d6ed6fcdade4ecbe8 100644 --- a/indra/newview/lltextureview.cpp +++ b/indra/newview/lltextureview.cpp @@ -660,8 +660,9 @@ struct compare_decode_pair struct KillView { - void operator()(LLView* viewp) const + void operator()(LLView* viewp) { + viewp->getParent()->removeChild(viewp); viewp->die(); } }; @@ -676,8 +677,12 @@ void LLTextureView::draw() for_each(mTextureBars.begin(), mTextureBars.end(), KillView()); mTextureBars.clear(); - delete mGLTexMemBar; - mGLTexMemBar = 0; + if (mGLTexMemBar) + { + removeChild(mGLTexMemBar); + mGLTexMemBar->die(); + mGLTexMemBar = 0; + } typedef std::multiset<decode_pair_t, compare_decode_pair > display_list_t; display_list_t display_image_list; diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp index c47c017143aaf41d7e46177f05840895032e96cf..907740a88e27f46ec826b79df6b498a08c234029 100644 --- a/indra/newview/lltoastnotifypanel.cpp +++ b/indra/newview/lltoastnotifypanel.cpp @@ -44,6 +44,7 @@ #include "llrect.h" #include "lltrans.h" #include "llnotificationsutil.h" +#include "llviewermessage.h" const S32 BOTTOM_PAD = VPAD * 3; const S32 IGNORE_BTN_TOP_DELTA = 3*VPAD;//additional ignore_btn padding @@ -53,16 +54,23 @@ S32 BUTTON_WIDTH = 90; const LLFontGL* LLToastNotifyPanel::sFont = NULL; const LLFontGL* LLToastNotifyPanel::sFontSmall = NULL; -LLToastNotifyPanel::LLToastNotifyPanel(LLNotificationPtr& notification) : +LLToastNotifyPanel::button_click_signal_t LLToastNotifyPanel::sButtonClickSignal; + +LLToastNotifyPanel::LLToastNotifyPanel(LLNotificationPtr& notification, const LLRect& rect) : LLToastPanel(notification), mTextBox(NULL), mInfoPanel(NULL), mControlPanel(NULL), mNumOptions(0), mNumButtons(0), -mAddedDefaultBtn(false) +mAddedDefaultBtn(false), +mCloseNotificationOnDestroy(true) { LLUICtrlFactory::getInstance()->buildPanel(this, "panel_notification.xml"); + if(rect != LLRect::null) + { + this->setShape(rect); + } mInfoPanel = getChild<LLPanel>("info_panel"); mControlPanel = getChild<LLPanel>("control_panel"); BUTTON_WIDTH = gSavedSettings.getS32("ToastButtonWidth"); @@ -159,7 +167,12 @@ mAddedDefaultBtn(false) * for a scriptdialog toast h_pad can be < 2*HPAD if we have a lot of buttons. * In last case set default h_pad to avoid heaping of buttons */ - h_pad = 2*HPAD; + S32 button_per_row = button_panel_width / BUTTON_WIDTH; + h_pad = (button_panel_width % BUTTON_WIDTH) / (button_per_row - 1);// -1 because we do not need space after last button in a row + if(h_pad < 2*HPAD) // still not enough space between buttons ? + { + h_pad = 2*HPAD; + } } if (mIsScriptDialog) { @@ -184,11 +197,25 @@ mAddedDefaultBtn(false) // we need to keep min width and max height to make visible all buttons, because width of the toast can not be changed adjustPanelForScriptNotice(button_panel_width, button_panel_height); updateButtonsLayout(buttons, h_pad); + // save buttons for later use in disableButtons() + mButtons.assign(buttons.begin(), buttons.end()); } } // adjust panel's height to the text size mInfoPanel->setFollowsAll(); snapToMessageHeight(mTextBox, MAX_LENGTH); + + if(notification->isReusable()) + { + mButtonClickConnection = sButtonClickSignal.connect( + boost::bind(&LLToastNotifyPanel::onToastPanelButtonClicked, this, _1, _2)); + + if(notification->isRespondedTo()) + { + // User selected an option in toast, now disable required buttons in IM window + disableRespondedOptions(notification); + } + } } void LLToastNotifyPanel::addDefaultButton() { @@ -224,7 +251,7 @@ LLButton* LLToastNotifyPanel::createButton(const LLSD& form_element, BOOL is_opt p.click_callback.function(boost::bind(&LLToastNotifyPanel::onClickButton, userdata)); p.rect.width = BUTTON_WIDTH; p.auto_resize = false; - p.follows.flags(FOLLOWS_RIGHT | FOLLOWS_LEFT | FOLLOWS_BOTTOM); + p.follows.flags(FOLLOWS_LEFT | FOLLOWS_BOTTOM); if (mIsCaution) { p.image_color(LLUIColorTable::instance().getColor("ButtonCautionImageColor")); @@ -256,9 +283,13 @@ LLButton* LLToastNotifyPanel::createButton(const LLSD& form_element, BOOL is_opt LLToastNotifyPanel::~LLToastNotifyPanel() { + mButtonClickConnection.disconnect(); + std::for_each(mBtnCallbackData.begin(), mBtnCallbackData.end(), DeletePointer()); - if (LLNotificationsUtil::find(mNotification->getID()) != NULL) + if (mCloseNotificationOnDestroy && LLNotificationsUtil::find(mNotification->getID()) != NULL) { + // let reusable notification be deleted + mNotification->setReusable(false); LLNotifications::getInstance()->cancel(mNotification); } } @@ -333,6 +364,104 @@ void LLToastNotifyPanel::adjustPanelForTipNotice() } } +typedef std::set<std::string> button_name_set_t; +typedef std::map<std::string, button_name_set_t> disable_button_map_t; + +disable_button_map_t initUserGiveItemDisableButtonMap() +{ + // see EXT-5905 for disable rules + + disable_button_map_t disable_map; + button_name_set_t buttons; + + buttons.insert("Show"); + disable_map.insert(std::make_pair("Show", buttons)); + + buttons.insert("Discard"); + disable_map.insert(std::make_pair("Discard", buttons)); + + buttons.insert("Mute"); + disable_map.insert(std::make_pair("Mute", buttons)); + + return disable_map; +} + +disable_button_map_t initTeleportOfferedDisableButtonMap() +{ + disable_button_map_t disable_map; + button_name_set_t buttons; + + buttons.insert("Teleport"); + buttons.insert("Cancel"); + + disable_map.insert(std::make_pair("Teleport", buttons)); + disable_map.insert(std::make_pair("Cancel", buttons)); + + return disable_map; +} + +disable_button_map_t initFriendshipOfferedDisableButtonMap() +{ + disable_button_map_t disable_map; + button_name_set_t buttons; + + buttons.insert("Accept"); + buttons.insert("Decline"); + + disable_map.insert(std::make_pair("Accept", buttons)); + disable_map.insert(std::make_pair("Decline", buttons)); + + return disable_map; +} + +button_name_set_t getButtonDisableList(const std::string& notification_name, const std::string& button_name) +{ + static disable_button_map_t user_give_item_disable_map = initUserGiveItemDisableButtonMap(); + static disable_button_map_t teleport_offered_disable_map = initTeleportOfferedDisableButtonMap(); + static disable_button_map_t friendship_offered_disable_map = initFriendshipOfferedDisableButtonMap(); + + disable_button_map_t::const_iterator it; + disable_button_map_t::const_iterator it_end; + disable_button_map_t search_map; + + if("UserGiveItem" == notification_name) + { + search_map = user_give_item_disable_map; + } + else if("TeleportOffered" == notification_name) + { + search_map = teleport_offered_disable_map; + } + else if("OfferFriendship" == notification_name) + { + search_map = friendship_offered_disable_map; + } + + it = search_map.find(button_name); + it_end = search_map.end(); + + if(it_end != it) + { + return it->second; + } + return button_name_set_t(); +} + +void LLToastNotifyPanel::disableButtons(const std::string& notification_name, const std::string& selected_button) +{ + button_name_set_t buttons = getButtonDisableList(notification_name, selected_button); + + std::vector<index_button_pair_t>::const_iterator it = mButtons.begin(); + for ( ; it != mButtons.end(); it++) + { + LLButton* btn = it->second; + if(buttons.find(btn->getName()) != buttons.end()) + { + btn->setEnabled(FALSE); + } + } +} + // static void LLToastNotifyPanel::onClickButton(void* data) { @@ -345,8 +474,81 @@ void LLToastNotifyPanel::onClickButton(void* data) { response[button_name] = true; } + + bool is_reusable = self->mNotification->isReusable(); + // When we call respond(), LLOfferInfo will delete itself in inventory_offer_callback(), + // lets copy it while it's still valid. + LLOfferInfo* old_info = static_cast<LLOfferInfo*>(self->mNotification->getResponder()); + LLOfferInfo* new_info = NULL; + if(is_reusable && old_info) + { + new_info = new LLOfferInfo(*old_info); + self->mNotification->setResponder(new_info); + } + self->mNotification->respond(response); - // disable all buttons - self->mControlPanel->setEnabled(FALSE); + if(is_reusable) + { + sButtonClickSignal(self->mNotification->getID(), button_name); + + if(new_info) + { + self->mNotification->setResponseFunctor( + boost::bind(&LLOfferInfo::inventory_offer_callback, new_info, _1, _2)); + } + } + else + { + // disable all buttons + self->mControlPanel->setEnabled(FALSE); + } +} + +void LLToastNotifyPanel::onToastPanelButtonClicked(const LLUUID& notification_id, const std::string btn_name) +{ + if(mNotification->getID() == notification_id) + { + disableButtons(mNotification->getName(), btn_name); + } +} + +void LLToastNotifyPanel::disableRespondedOptions(LLNotificationPtr& notification) +{ + LLSD response = notification->getResponse(); + for (LLSD::map_const_iterator response_it = response.beginMap(); + response_it != response.endMap(); ++response_it) + { + if (response_it->second.isBoolean() && response_it->second.asBoolean()) + { + // that after multiple responses there can be many pressed buttons + // need to process them all + disableButtons(notification->getName(), response_it->first); + } + } +} + + +////////////////////////////////////////////////////////////////////////// + +LLIMToastNotifyPanel::LLIMToastNotifyPanel(LLNotificationPtr& pNotification, const LLRect& rect /* = LLRect::null */) + : LLToastNotifyPanel(pNotification, rect) +{ + mTextBox->setFollowsAll(); } + +void LLIMToastNotifyPanel::reshape(S32 width, S32 height, BOOL called_from_parent /* = TRUE */) +{ + S32 text_height = mTextBox->getTextBoundingRect().getHeight(); + S32 widget_height = mTextBox->getRect().getHeight(); + S32 delta = text_height - widget_height; + LLRect rc = getRect(); + + rc.setLeftTopAndSize(rc.mLeft, rc.mTop, width, height + delta); + height = rc.getHeight(); + width = rc.getWidth(); + + LLToastPanel::reshape(width, height, called_from_parent); +} + +// EOF diff --git a/indra/newview/lltoastnotifypanel.h b/indra/newview/lltoastnotifypanel.h index e791eea469c12d4be1c6e5ef39708be34c2d23fa..a8d2d0323614ee041737951316a700004403ee94 100644 --- a/indra/newview/lltoastnotifypanel.h +++ b/indra/newview/lltoastnotifypanel.h @@ -53,10 +53,19 @@ class LLNotificationForm; class LLToastNotifyPanel: public LLToastPanel { public: - LLToastNotifyPanel(LLNotificationPtr&); + /** + * Constructor for LLToastNotifyPanel. + * + * @param pNotification a shared pointer to LLNotification + * @param rect an initial rectangle of the toast panel. + * If it is null then a loaded from xml rectangle will be used. + * @see LLNotification + */ + LLToastNotifyPanel(LLNotificationPtr& pNotification, const LLRect& rect = LLRect::null); virtual ~LLToastNotifyPanel(); LLPanel * getControlPanel() { return mControlPanel; } + void setCloseNotificationOnDestroy(bool close) { mCloseNotificationOnDestroy = close; } protected: LLButton* createButton(const LLSD& form_element, BOOL is_option); @@ -68,7 +77,7 @@ class LLToastNotifyPanel: public LLToastPanel }; std::vector<InstanceAndS32*> mBtnCallbackData; -private: + bool mCloseNotificationOnDestroy; typedef std::pair<int,LLButton*> index_button_pair_t; void adjustPanelForScriptNotice(S32 max_width, S32 max_height); @@ -77,11 +86,18 @@ class LLToastNotifyPanel: public LLToastPanel /* * It lays out buttons of the notification in mControlPanel. * Buttons will be placed from BOTTOM to TOP. - * @param h_pad horizontal space between buttons. It is depent on number of buttons. + * @param h_pad horizontal space between buttons. It is depend on number of buttons. * @param buttons vector of button to be added. */ void updateButtonsLayout(const std::vector<index_button_pair_t>& buttons, S32 h_pad); + /** + * Disable specific button(s) based on notification name and clicked button + */ + void disableButtons(const std::string& notification_name, const std::string& selected_button); + + std::vector<index_button_pair_t> mButtons; + // panel elements LLTextBase* mTextBox; LLPanel* mInfoPanel; // a panel, that contains an information @@ -90,6 +106,21 @@ class LLToastNotifyPanel: public LLToastPanel // internal handler for button being clicked static void onClickButton(void* data); + typedef boost::signals2::signal <void (const LLUUID& notification_id, const std::string btn_name)> + button_click_signal_t; + static button_click_signal_t sButtonClickSignal; + boost::signals2::connection mButtonClickConnection; + + /** + * handle sButtonClickSignal (to disable buttons) across all panels with given notification_id + */ + void onToastPanelButtonClicked(const LLUUID& notification_id, const std::string btn_name); + + /** + * Process response data. Will disable selected options + */ + void disableRespondedOptions(LLNotificationPtr& notification); + bool mIsTip; bool mAddedDefaultBtn; bool mIsScriptDialog; @@ -103,4 +134,13 @@ class LLToastNotifyPanel: public LLToastPanel static const LLFontGL* sFontSmall; }; +class LLIMToastNotifyPanel : public LLToastNotifyPanel +{ +public: + + LLIMToastNotifyPanel(LLNotificationPtr& pNotification, const LLRect& rect = LLRect::null); + + /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); +}; + #endif /* LLTOASTNOTIFYPANEL_H_ */ diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp index 125c62474ec11fb7fd29ffe3d6bb7fbab0456e80..47e60a966e02f75456c39a99e206e33118b5ce22 100644 --- a/indra/newview/lltooldraganddrop.cpp +++ b/indra/newview/lltooldraganddrop.cpp @@ -1503,15 +1503,38 @@ void LLToolDragAndDrop::commitGiveInventoryItem(const LLUUID& to_agent, LLMuteList::getInstance()->autoRemove(to_agent, LLMuteList::AR_INVENTORY); + logInventoryOffer(to_agent, im_session_id); + + // add buddy to recent people list + LLRecentPeople::instance().add(to_agent); +} + +//static +void LLToolDragAndDrop::logInventoryOffer(const LLUUID& to_agent, const LLUUID &im_session_id) +{ + // compute id of possible IM session with agent that has "to_agent" id + LLUUID session_id = LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, to_agent); // If this item was given by drag-and-drop into an IM panel, log this action in the IM panel chat. - if (im_session_id != LLUUID::null) + if (im_session_id.notNull()) { LLSD args; gIMMgr->addSystemMessage(im_session_id, "inventory_item_offered", args); } - - // add buddy to recent people list - LLRecentPeople::instance().add(to_agent); + // If this item was given by drag-and-drop on avatar while IM panel was open, log this action in the IM panel chat. + else if (LLIMModel::getInstance()->findIMSession(session_id)) + { + LLSD args; + gIMMgr->addSystemMessage(session_id, "inventory_item_offered", args); + } + // If this item was given by drag-and-drop on avatar while IM panel wasn't open, log this action to IM history. + else + { + std::string full_name; + if (gCacheName->getFullName(to_agent, full_name)) + { + LLIMModel::instance().logToFile(full_name, LLTrans::getString("SECOND_LIFE"), im_session_id, LLTrans::getString("inventory_item_offered-im")); + } + } } void LLToolDragAndDrop::giveInventoryCategory(const LLUUID& to_agent, @@ -1723,12 +1746,7 @@ void LLToolDragAndDrop::commitGiveInventoryCategory(const LLUUID& to_agent, LLMuteList::getInstance()->autoRemove(to_agent, LLMuteList::AR_INVENTORY); - // If this item was given by drag-and-drop into an IM panel, log this action in the IM panel chat. - if (im_session_id != LLUUID::null) - { - LLSD args; - gIMMgr->addSystemMessage(im_session_id, "inventory_item_offered", args); - } + logInventoryOffer(to_agent, im_session_id); } } diff --git a/indra/newview/lltooldraganddrop.h b/indra/newview/lltooldraganddrop.h index 79b2bc32a376950623c80652ab6e416e6266f325..0da13dac8bf4fbf8ccda821bec8da65c4b48f232 100644 --- a/indra/newview/lltooldraganddrop.h +++ b/indra/newview/lltooldraganddrop.h @@ -227,6 +227,10 @@ class LLToolDragAndDrop : public LLTool, public LLSingleton<LLToolDragAndDrop> LLInventoryCategory* cat, const LLUUID &im_session_id = LLUUID::null); + // log "Inventory item offered" to IM + static void logInventoryOffer(const LLUUID& to_agent, + const LLUUID &im_session_id = LLUUID::null); + public: // helper functions static BOOL isInventoryDropAcceptable(LLViewerObject* obj, LLInventoryItem* item) { return (ACCEPT_YES_COPY_SINGLE <= willObjectAcceptInventory(obj, item)); } diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index e345784f71ad9e1814eae154ab126795dc10e597..4bf0e181232945efe90a5f4c09c9162545227cea 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -413,24 +413,24 @@ ECursorType cursor_from_object(LLViewerObject* object) case CLICK_ACTION_SIT: if ((gAgent.getAvatarObject() != NULL) && (!gAgent.getAvatarObject()->isSitting())) // not already sitting? { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLSIT; } break; case CLICK_ACTION_BUY: - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLBUY; break; case CLICK_ACTION_OPEN: // Open always opens the parent. if (parent && parent->allowOpen()) { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLOPEN; } break; case CLICK_ACTION_PAY: if ((object && object->flagTakesMoney()) || (parent && parent->flagTakesMoney())) { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLBUY; } break; case CLICK_ACTION_ZOOM: @@ -918,6 +918,16 @@ BOOL LLToolPie::handleTooltipObject( LLViewerObject* hover_object, std::string l || !existing_inspector->getVisible() || existing_inspector->getKey()["object_id"].asUUID() != hover_object->getID())) { + + // Add price to tooltip for items on sale + bool for_sale = for_sale_selection(nodep); + if(for_sale) + { + LLStringUtil::format_map_t args; + args["[PRICE]"] = llformat ("%d", nodep->mSaleInfo.getSalePrice()); + tooltip_msg.append(LLTrans::getString("TooltipPrice", args) ); + } + if (nodep->mName.empty()) { tooltip_msg.append(LLTrans::getString("TooltipNoName")); @@ -948,7 +958,7 @@ BOOL LLToolPie::handleTooltipObject( LLViewerObject* hover_object, std::string l if (media_impl.notNull() && (media_impl->hasMedia())) { is_media_displaying = true; - LLStringUtil::format_map_t args; + //LLStringUtil::format_map_t args; media_plugin = media_impl->getMediaPlugin(); if(media_plugin) @@ -972,10 +982,13 @@ BOOL LLToolPie::handleTooltipObject( LLViewerObject* hover_object, std::string l } } - // Avoid showing tip over media that's displaying + + // Avoid showing tip over media that's displaying unless it's for sale // also check the primary node since sometimes it can have an action even though // the root node doesn't - bool needs_tip = !is_media_displaying && + + bool needs_tip = (!is_media_displaying || + for_sale) && (has_media || needs_tooltip(nodep) || needs_tooltip(LLSelectMgr::getInstance()->getPrimaryHoverNode())); diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 85efe2724e44e26536ba45f42e6532b2a27e6844..2fcd3f11140c369fcc25bdecc136cb5247d83467 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -982,6 +982,119 @@ bool LLViewerMedia::isParcelAudioPlaying() return (LLViewerMedia::hasParcelAudio() && gAudiop && LLAudioEngine::AUDIO_PLAYING == gAudiop->isInternetStreamPlaying()); } +///////////////////////////////////////////////////////////////////////////////////////// +// static +void LLViewerMedia::clearAllCookies() +{ + // Clear all cookies for all plugins + impl_list::iterator iter = sViewerMediaImplList.begin(); + impl_list::iterator end = sViewerMediaImplList.end(); + for (; iter != end; iter++) + { + LLViewerMediaImpl* pimpl = *iter; + if(pimpl->mMediaSource) + { + pimpl->mMediaSource->clear_cookies(); + } + } + + // FIXME: this may not be sufficient, since the on-disk cookie file won't get written until some browser instance exits cleanly. + // It also won't clear cookies for other accounts, or for any account if we're not logged in, and won't do anything at all if there are no webkit plugins loaded. + // Until such time as we can centralize cookie storage, the following hack should cover these cases: + + // HACK: Look for cookie files in all possible places and delete them. + // NOTE: this assumes knowledge of what happens inside the webkit plugin (it's what adds 'browser_profile' to the path and names the cookie file) + + // Places that cookie files can be: + // <getOSUserAppDir>/browser_profile/cookies + // <getOSUserAppDir>/first_last/browser_profile/cookies (note that there may be any number of these!) + + std::string base_dir = gDirUtilp->getOSUserAppDir() + gDirUtilp->getDirDelimiter(); + std::string target; + std::string filename; + + lldebugs << "base dir = " << base_dir << llendl; + + // The non-logged-in version is easy + target = base_dir; + target += "browser_profile"; + target += gDirUtilp->getDirDelimiter(); + target += "cookies"; + lldebugs << "target = " << target << llendl; + if(LLFile::isfile(target)) + { + LLFile::remove(target); + } + + // the hard part: iterate over all user directories and delete the cookie file from each one + while(gDirUtilp->getNextFileInDir(base_dir, "*_*", filename, false)) + { + target = base_dir; + target += filename; + target += gDirUtilp->getDirDelimiter(); + target += "browser_profile"; + target += gDirUtilp->getDirDelimiter(); + target += "cookies"; + lldebugs << "target = " << target << llendl; + if(LLFile::isfile(target)) + { + LLFile::remove(target); + } + } + + +} + +///////////////////////////////////////////////////////////////////////////////////////// +// static +void LLViewerMedia::clearAllCaches() +{ + // Clear all plugins' caches + impl_list::iterator iter = sViewerMediaImplList.begin(); + impl_list::iterator end = sViewerMediaImplList.end(); + for (; iter != end; iter++) + { + LLViewerMediaImpl* pimpl = *iter; + pimpl->clearCache(); + } +} + +///////////////////////////////////////////////////////////////////////////////////////// +// static +void LLViewerMedia::setCookiesEnabled(bool enabled) +{ + // Set the "cookies enabled" flag for all loaded plugins + impl_list::iterator iter = sViewerMediaImplList.begin(); + impl_list::iterator end = sViewerMediaImplList.end(); + for (; iter != end; iter++) + { + LLViewerMediaImpl* pimpl = *iter; + if(pimpl->mMediaSource) + { + pimpl->mMediaSource->enable_cookies(enabled); + } + } +} + +///////////////////////////////////////////////////////////////////////////////////////// +// static +void LLViewerMedia::setProxyConfig(bool enable, const std::string &host, int port) +{ + // Set the proxy config for all loaded plugins + impl_list::iterator iter = sViewerMediaImplList.begin(); + impl_list::iterator end = sViewerMediaImplList.end(); + for (; iter != end; iter++) + { + LLViewerMediaImpl* pimpl = *iter; + if(pimpl->mMediaSource) + { + pimpl->mMediaSource->proxy_setup(enable, host, port); + } + } +} + +///////////////////////////////////////////////////////////////////////////////////////// +// static bool LLViewerMedia::hasInWorldMedia() { if (sInWorldMediaDisabled) return false; @@ -1258,7 +1371,22 @@ LLPluginClassMedia* LLViewerMediaImpl::newSourceFromMediaType(std::string media_ { LLPluginClassMedia* media_source = new LLPluginClassMedia(owner); media_source->setSize(default_width, default_height); - if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"), user_data_path)) + media_source->setUserDataPath(user_data_path); + media_source->setLanguageCode(LLUI::getLanguage()); + + // collect 'cookies enabled' setting from prefs and send to embedded browser + bool cookies_enabled = gSavedSettings.getBOOL( "CookiesEnabled" ); + media_source->enable_cookies( cookies_enabled ); + + // collect 'plugins enabled' setting from prefs and send to embedded browser + bool plugins_enabled = gSavedSettings.getBOOL( "BrowserPluginsEnabled" ); + media_source->setPluginsEnabled( plugins_enabled ); + + // collect 'javascript enabled' setting from prefs and send to embedded browser + bool javascript_enabled = gSavedSettings.getBOOL( "BrowserJavascriptEnabled" ); + media_source->setJavascriptEnabled( javascript_enabled ); + + if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"))) { return media_source; } @@ -1319,6 +1447,8 @@ bool LLViewerMediaImpl::initializePlugin(const std::string& media_type) media_source->focus(mHasFocus); media_source->setBackgroundColor(mBackgroundColor); + media_source->proxy_setup(gSavedSettings.getBOOL("BrowserProxyEnabled"), gSavedSettings.getString("BrowserProxyAddress"), gSavedSettings.getS32("BrowserProxyPort")); + if(mClearCache) { mClearCache = false; diff --git a/indra/newview/llviewermedia.h b/indra/newview/llviewermedia.h index bc51e713a199bfe620da2ae1265e33322e692572..f9870fb3b9a5947298e9957abb05a22b4543d067 100644 --- a/indra/newview/llviewermedia.h +++ b/indra/newview/llviewermedia.h @@ -133,6 +133,18 @@ class LLViewerMedia static bool isParcelMediaPlaying(); static bool isParcelAudioPlaying(); + // Clear all cookies for all plugins + static void clearAllCookies(); + + // Clear all plugins' caches + static void clearAllCaches(); + + // Set the "cookies enabled" flag for all loaded plugins + static void setCookiesEnabled(bool enabled); + + // Set the proxy config for all loaded plugins + static void setProxyConfig(bool enable, const std::string &host, int port); + private: static void onTeleportFinished(); }; diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 689476f5f1ec1b302aeb6eecf63c20a8853eaab1..a9e705b6ef507c7b0a68feac16d86835b07eea42 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -87,6 +87,7 @@ #include "lltoolmgr.h" #include "lltoolpie.h" #include "lltoolselectland.h" +#include "lltrans.h" #include "llviewergenericmessage.h" #include "llviewerhelp.h" #include "llviewermenufile.h" // init_menu_file() @@ -3222,7 +3223,9 @@ void handle_buy_object(LLSaleInfo sale_info) if (price > 0 && price > gStatusBar->getBalance()) { - LLFloaterBuyCurrency::buyCurrency("This object costs", price); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", price); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("this_object_costs", args), price); return; } @@ -4348,8 +4351,10 @@ void handle_buy_or_take() } else { + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", total_price); LLFloaterBuyCurrency::buyCurrency( - "Buying this costs", total_price); + LLTrans::getString("BuyingCosts", args), total_price); } } else @@ -5298,14 +5303,14 @@ void handle_look_at_selection(const LLSD& param) distance = llmin(distance, (F32) orig_distance.length()); gAgent.setCameraPosAndFocusGlobal(LLSelectMgr::getInstance()->getSelectionCenterGlobal() + LLVector3d(obj_to_cam * distance), - LLSelectMgr::getInstance()->getSelectionCenterGlobal(), - object_id ); + LLSelectMgr::getInstance()->getSelectionCenterGlobal(), + object_id ); } else { gAgent.setFocusGlobal( LLSelectMgr::getInstance()->getSelectionCenterGlobal(), object_id ); - } + } } } @@ -6992,7 +6997,7 @@ LLVOAvatar* find_avatar_from_object( const LLUUID& object_id ) void handle_disconnect_viewer(void *) { - LLAppViewer::instance()->forceDisconnect("Testing viewer disconnect"); + LLAppViewer::instance()->forceDisconnect(LLTrans::getString("TestingDisconnect")); } void force_error_breakpoint(void *) diff --git a/indra/newview/llviewermenufile.cpp b/indra/newview/llviewermenufile.cpp index 84b270f8cc7a8b24ff2875b458eaf71159566dfd..dfde9a9d1d1619d1d35ac1de9c829f003beb9aa7 100644 --- a/indra/newview/llviewermenufile.cpp +++ b/indra/newview/llviewermenufile.cpp @@ -811,10 +811,10 @@ void upload_done_callback(const LLUUID& uuid, void* user_data, S32 result, LLExt if(!(can_afford_transaction(expected_upload_cost))) { - LLFloaterBuyCurrency::buyCurrency( - llformat(LLTrans::getString("UploadingCosts").c_str(), - data->mAssetInfo.getName().c_str()), - expected_upload_cost); + LLStringUtil::format_map_t args; + args["NAME"] = data->mAssetInfo.getName(); + args["AMOUNT"] = llformat("%d", expected_upload_cost); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("UploadingCosts", args), expected_upload_cost); is_balance_sufficient = FALSE; } else if(region) @@ -1001,7 +1001,9 @@ void upload_new_resource(const LLTransactionID &tid, LLAssetType::EType asset_ty if (balance < expected_upload_cost) { // insufficient funds, bail on this upload - LLFloaterBuyCurrency::buyCurrency("Uploading costs", expected_upload_cost); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", expected_upload_cost); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("uploading_costs", args), expected_upload_cost); return; } } diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index a1ff0f37479e4f1e03aa86c85e071c8e61e3dd65..1491febd7830228ed29afd920d4d5781da0f6f3b 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -276,7 +276,9 @@ void give_money(const LLUUID& uuid, LLViewerRegion* region, S32 amount, BOOL is_ } else { - LLFloaterBuyCurrency::buyCurrency("Giving", amount); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", amount); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("giving", args), amount); } } @@ -937,7 +939,7 @@ void open_inventory_offer(const std::vector<LLUUID>& items, const std::string& f // TODO* LLPanelPlaces dependency is going to be removed. See EXT-4347. //if("create_landmark" == places_panel->getPlaceInfoType() && !places_panel->getItem()) //{ - //places_panel->setItem(item); + // places_panel->setItem(item); //} //else // we are opening a group notice attachment @@ -1081,6 +1083,21 @@ LLOfferInfo::LLOfferInfo(const LLSD& sd) mHost = LLHost(sd["sender"].asString()); } +LLOfferInfo::LLOfferInfo(const LLOfferInfo& info) +{ + mIM = info.mIM; + mFromID = info.mFromID; + mFromGroup = info.mFromGroup; + mFromObject = info.mFromObject; + mTransactionID = info.mTransactionID; + mFolderID = info.mFolderID; + mObjectID = info.mObjectID; + mType = info.mType; + mFromName = info.mFromName; + mDesc = info.mDesc; + mHost = info.mHost; +} + LLSD LLOfferInfo::asLLSD() { LLSD sd; @@ -1500,7 +1517,9 @@ void inventory_offer_handler(LLOfferInfo* info) std::string typestr = ll_safe_string(LLAssetType::lookupHumanReadable(info->mType)); if (!typestr.empty()) { - args["OBJECTTYPE"] = typestr; + // human readable matches string name from strings.xml + // lets get asset type localized name + args["OBJECTTYPE"] = LLTrans::getString(typestr); } else { @@ -1533,7 +1552,7 @@ void inventory_offer_handler(LLOfferInfo* info) } else { - args["NAME_SLURL"] = LLSLURL::buildCommand("agent", info->mFromID, "about"); + args["NAME_SLURL"] = LLSLURL::buildCommand("agent", info->mFromID, "about"); } std::string verb = "select?name=" + LLURI::escape(msg); args["ITEM_SLURL"] = LLSLURL::buildCommand("inventory", info->mObjectID, verb.c_str()); @@ -1553,7 +1572,11 @@ void inventory_offer_handler(LLOfferInfo* info) } else // Agent -> Agent Inventory Offer { + p.responder = info; // Note: sets inventory_offer_callback as the callback + // *TODO fix memory leak + // inventory_offer_callback() is not invoked if user received notification and + // closes viewer(without responding the notification) p.substitutions(args).payload(payload).functor.function(boost::bind(&LLOfferInfo::inventory_offer_callback, info, _1, _2)); p.name = "UserGiveItem"; @@ -3176,7 +3199,7 @@ void process_agent_movement_complete(LLMessageSystem* msg, void**) << x << ":" << y << " current pos " << gAgent.getPositionGlobal() << LL_ENDL; - LLAppViewer::instance()->forceDisconnect("You were sent to an invalid region."); + LLAppViewer::instance()->forceDisconnect(LLTrans::getString("SentToInvalidRegion")); return; } @@ -4613,7 +4636,108 @@ void process_money_balance_reply( LLMessageSystem* msg, void** ) if(!desc.empty() && gSavedSettings.getBOOL("NotifyMoneyChange") && (std::find(recent.rbegin(), recent.rend(), tid) == recent.rend())) { - show_money_balance_notification(desc); + // Make the user confirm the transaction, since they might + // have missed something during an event. + // *TODO: Translate + LLSD args; + + + // this is a marker to retrieve avatar name from server message: + // "<avatar name> paid you L$" + const std::string marker = "paid you L$"; + + args["MESSAGE"] = desc; + + // extract avatar name from system message + S32 marker_pos = desc.find(marker, 0); + + std::string base_name = desc.substr(0, marker_pos); + + std::string name = base_name; + LLStringUtil::trim(name); + + // if name extracted and name cache contains avatar id send loggable notification + LLUUID from_id; + if(name.size() > 0 && gCacheName->getUUID(name, from_id)) + { + //description always comes not localized. lets fix this + + //ammount paid + std::string ammount = desc.substr(marker_pos + marker.length(),desc.length() - marker.length() - marker_pos); + + //reform description + LLStringUtil::format_map_t str_args; + str_args["NAME"] = base_name; + str_args["AMOUNT"] = ammount; + std::string new_description = LLTrans::getString("paid_you_ldollars", str_args); + + + args["MESSAGE"] = new_description; + args["NAME"] = name; + LLSD payload; + payload["from_id"] = from_id; + LLNotificationsUtil::add("PaymentReceived", args, payload); + } + //AD *HACK: Parsing incoming string to localize messages that come from server! EXT-5986 + // It's only a temporarily and ineffective measure. It doesn't affect performance much + // because we get here only for specific type of messages, but anyway it is not right to do it! + // *TODO: Server-side changes should be made and this code removed. + else + { + if(desc.find("You paid")==0) + { + // Regular expression for message parsing- change it in case of server-side changes. + // Each set of parenthesis will later be used to find arguments of message we generate + // in the end of this if- (.*) gives us name of money receiver, (\\d+)-amount of money we pay + // and ([^$]*)- reason of payment + boost::regex expr("You paid (?:.{0}|(.*) )L\\$(\\d+)\\s?([^$]*)\\."); + boost::match_results <std::string::const_iterator> matches; + if(boost::regex_match(desc, matches, expr)) + { + // Name of full localizable notification string + // there are three types of this string- with name of receiver and reason of payment, + // without name and without reason (but not simultaneously) + // example of string without name - You paid L$100 to create a group. + // example of string without reason - You paid Smdby Linden L$100. + // example of string with reason and name - You paid Smbdy Linden L$100 for a land access pass. + std::string line = "you_paid_ldollars_no_name"; + + // arguments of string which will be in notification + LLStringUtil::format_map_t str_args; + + // extracting amount of money paid (without L$ symbols). It is always present. + str_args["[AMOUNT]"] = std::string(matches[2]); + + // extracting name of person/group you are paying (it may be absent) + std::string name = std::string(matches[1]); + if(!name.empty()) + { + str_args["[NAME]"] = name; + line = "you_paid_ldollars"; + } + + // extracting reason of payment (it may be absent) + std::string reason = std::string(matches[3]); + if (reason.empty()) + { + line = "you_paid_ldollars_no_reason"; + } + else + { + std::string localized_reason; + // if we haven't found localized string for reason of payment leave it as it was + str_args["[REASON]"] = LLTrans::findString(localized_reason, reason) ? localized_reason : reason; + } + + // forming final message string by retrieving localized version from xml + // and applying previously found arguments + line = LLTrans::getString(line, str_args); + args["MESSAGE"] = line; + } + } + + LLNotificationsUtil::add("SystemMessage", args); + } // Once the 'recent' container gets large enough, chop some // off the beginning. @@ -5596,6 +5720,8 @@ bool handle_lure_callback(const LLSD& notification, const LLSD& response) args["TO_NAME"] = target_name; LLSD payload; + + //*TODO please rewrite all keys to the same case, lower or upper payload["from_id"] = target_id; payload["SESSION_NAME"] = target_name; payload["SUPPRESS_TOAST"] = true; diff --git a/indra/newview/llviewermessage.h b/indra/newview/llviewermessage.h index 7dd629dcfd3869400934416009745b639b9b38d7..88f9697037fd33c8f4872f08073afc9251791f3c 100644 --- a/indra/newview/llviewermessage.h +++ b/indra/newview/llviewermessage.h @@ -215,6 +215,8 @@ struct LLOfferInfo mIM(IM_NOTHING_SPECIAL), mType(LLAssetType::AT_NONE) {}; LLOfferInfo(const LLSD& sd); + LLOfferInfo(const LLOfferInfo& info); + void forceResponse(InventoryOfferResponse response); EInstantMessage mIM; diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index daa48e70540f13c6ccd283fbb6d16d621d0e3769..f6c9abd53d58303b472c1221715026e05d627404 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -4030,7 +4030,8 @@ LLBBox LLViewerObject::getBoundingBoxAgent() const avatar_parent = (LLViewerObject*)root_edit->getParent(); } - if (avatar_parent && avatar_parent->isAvatar() && root_edit && root_edit->mDrawable.notNull()) + if (avatar_parent && avatar_parent->isAvatar() && + root_edit && root_edit->mDrawable.notNull() && root_edit->mDrawable->getXform()->getParent()) { LLXform* parent_xform = root_edit->mDrawable->getXform()->getParent(); position_agent = (getPositionEdit() * parent_xform->getWorldRotation()) + parent_xform->getWorldPosition(); diff --git a/indra/newview/llviewerparcelmedia.cpp b/indra/newview/llviewerparcelmedia.cpp index 2c5c0a37e8f3c8d3898f78bbbd82ccbaf041cef4..b967436df6f536380f64b6db0e16342b7e4dec53 100644 --- a/indra/newview/llviewerparcelmedia.cpp +++ b/indra/newview/llviewerparcelmedia.cpp @@ -210,25 +210,29 @@ void LLViewerParcelMedia::play(LLParcel* parcel) // A new impl will be created below. } } - - if(!sMediaImpl) + + // Don't ever try to play if the media type is set to "none/none" + if(stricmp(mime_type.c_str(), "none/none") != 0) { - LL_DEBUGS("Media") << "new media impl with mime type " << mime_type << ", url " << media_url << LL_ENDL; - - // There is no media impl, make a new one - sMediaImpl = LLViewerMedia::newMediaImpl( - placeholder_texture_id, - media_width, - media_height, - media_auto_scale, - media_loop); - sMediaImpl->setIsParcelMedia(true); - sMediaImpl->navigateTo(media_url, mime_type, true); - } + if(!sMediaImpl) + { + LL_DEBUGS("Media") << "new media impl with mime type " << mime_type << ", url " << media_url << LL_ENDL; + + // There is no media impl, make a new one + sMediaImpl = LLViewerMedia::newMediaImpl( + placeholder_texture_id, + media_width, + media_height, + media_auto_scale, + media_loop); + sMediaImpl->setIsParcelMedia(true); + sMediaImpl->navigateTo(media_url, mime_type, true); + } - //LLFirstUse::useMedia(); + //LLFirstUse::useMedia(); - LLViewerParcelMediaAutoPlay::playStarted(); + LLViewerParcelMediaAutoPlay::playStarted(); + } } // static @@ -312,11 +316,14 @@ std::string LLViewerParcelMedia::getURL() if(sMediaImpl.notNull()) url = sMediaImpl->getMediaURL(); - if (url.empty()) - url = LLViewerParcelMgr::getInstance()->getAgentParcel()->getMediaCurrentURL(); - - if (url.empty()) - url = LLViewerParcelMgr::getInstance()->getAgentParcel()->getMediaURL(); + if(stricmp(LLViewerParcelMgr::getInstance()->getAgentParcel()->getMediaType().c_str(), "none/none") != 0) + { + if (url.empty()) + url = LLViewerParcelMgr::getInstance()->getAgentParcel()->getMediaCurrentURL(); + + if (url.empty()) + url = LLViewerParcelMgr::getInstance()->getAgentParcel()->getMediaURL(); + } return url; } diff --git a/indra/newview/llviewerparcelmediaautoplay.cpp b/indra/newview/llviewerparcelmediaautoplay.cpp index ad2723b66b242f2798ca9fcfeef40446ea6bfed6..f55d6d89c4eea08929f0b78b5986ba58761396ff 100644 --- a/indra/newview/llviewerparcelmediaautoplay.cpp +++ b/indra/newview/llviewerparcelmediaautoplay.cpp @@ -86,6 +86,7 @@ BOOL LLViewerParcelMediaAutoPlay::tick() LLParcel *this_parcel = NULL; LLViewerRegion *this_region = NULL; std::string this_media_url; + std::string this_media_type; LLUUID this_media_texture_id; S32 this_parcel_id = 0; LLUUID this_region_id; @@ -101,7 +102,9 @@ BOOL LLViewerParcelMediaAutoPlay::tick() if (this_parcel) { - this_media_url = std::string(this_parcel->getMediaURL()); + this_media_url = this_parcel->getMediaURL(); + + this_media_type = this_parcel->getMediaType(); this_media_texture_id = this_parcel->getMediaID(); @@ -118,14 +121,15 @@ BOOL LLViewerParcelMediaAutoPlay::tick() mLastRegionID = this_region_id; } - mTimeInParcel += mPeriod; // increase mTimeInParcel by the amount of time between ticks + mTimeInParcel += mPeriod; // increase mTimeInParcel by the amount of time between ticks - if ((!mPlayed) && // if we've never played - (mTimeInParcel > AUTOPLAY_TIME) && // and if we've been here for so many seconds - (this_media_url.size() != 0) && // and if the parcel has media - (LLViewerParcelMedia::sMediaImpl.isNull())) // and if the media is not already playing + if ((!mPlayed) && // if we've never played + (mTimeInParcel > AUTOPLAY_TIME) && // and if we've been here for so many seconds + (!this_media_url.empty()) && // and if the parcel has media + (stricmp(this_media_type.c_str(), "none/none") != 0) && + (LLViewerParcelMedia::sMediaImpl.isNull())) // and if the media is not already playing { - if (this_media_texture_id.notNull()) // and if the media texture is good + if (this_media_texture_id.notNull()) // and if the media texture is good { LLViewerMediaTexture *image = LLViewerTextureManager::getMediaTexture(this_media_texture_id, FALSE) ; diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index 8059f866ba58afb448e479e08417f174ffb544a7..41d9f6d067069a706ea29f22d31acf59f559adf9 100644 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -827,7 +827,11 @@ void send_stats() S32 window_height = gViewerWindow->getWindowHeightRaw(); S32 window_size = (window_width * window_height) / 1024; misc["string_1"] = llformat("%d", window_size); - // misc["string_2"] = + if (gDebugTimers.find(0) != gDebugTimers.end() && gFrameTimeSeconds > 0) + { + misc["string_2"] = llformat("Texture Time: %.2f, Total Time: %.2f", gDebugTimers[0].getElapsedTimeF32(), gFrameTimeSeconds); + } + // misc["int_1"] = LLSD::Integer(gSavedSettings.getU32("RenderQualityPerformance")); // Steve: 1.21 // misc["int_2"] = LLSD::Integer(gFrameStalls); // Steve: 1.21 diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index ea8af223c39a82cd1b3bb7745ae271644efec659..c9b3886fefa082fce84a699d2d02d1fd08d5597b 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -524,7 +524,10 @@ LLUIImagePtr LLEmbeddedItems::getItemImage(llwchar ext_char) const break; case LLAssetType::AT_SOUND: img_name = "Inv_Sound"; break; case LLAssetType::AT_CLOTHING: img_name = "Inv_Clothing"; break; - case LLAssetType::AT_OBJECT: img_name = "Inv_Object"; break; + case LLAssetType::AT_OBJECT: + img_name = LLInventoryItem::II_FLAGS_OBJECT_HAS_MULTIPLE_ITEMS & item->getFlags() ? + "Inv_Object_Multi" : "Inv_Object"; + break; case LLAssetType::AT_CALLINGCARD: img_name = "Inv_CallingCard"; break; case LLAssetType::AT_LANDMARK: img_name = "Inv_Landmark"; break; case LLAssetType::AT_NOTECARD: img_name = "Inv_Notecard"; break; diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index b21758d3b312c6805060755bf0fcb1b7ffe6e0d8..9fbffdac35e0afbf4f3120985f6d68792a4a8830 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -82,7 +82,7 @@ LLTexturePipelineTester* LLViewerTextureManager::sTesterp = NULL ; S32 LLViewerTexture::sImageCount = 0; S32 LLViewerTexture::sRawCount = 0; S32 LLViewerTexture::sAuxCount = 0; -LLTimer LLViewerTexture::sEvaluationTimer; +LLFrameTimer LLViewerTexture::sEvaluationTimer; F32 LLViewerTexture::sDesiredDiscardBias = 0.f; F32 LLViewerTexture::sDesiredDiscardScale = 1.1f; S32 LLViewerTexture::sBoundTextureMemoryInBytes = 0; @@ -102,7 +102,7 @@ F32 LLViewerTexture::sCurrentTime = 0.0f ; BOOL LLViewerTexture::sUseTextureAtlas = FALSE ; const F32 desired_discard_bias_min = -2.0f; // -max number of levels to improve image quality by -const F32 desired_discard_bias_max = 1.5f; // max number of levels to reduce image quality by +const F32 desired_discard_bias_max = (F32)MAX_DISCARD_LEVEL; // max number of levels to reduce image quality by const F64 log_2 = log(2.0); //---------------------------------------------------------------------------------------------- @@ -369,7 +369,7 @@ S32 LLViewerTexture::getCategoryFromIndex(S32 index) } // tuning params -const F32 discard_bias_delta = .05f; +const F32 discard_bias_delta = .25f; const F32 discard_delta_time = 0.5f; const S32 min_non_tex_system_mem = (128<<20); // 128 MB // non-const (used externally @@ -1546,8 +1546,7 @@ F32 LLViewerFetchedTexture::calcDecodePriority() } else { - // Leave the priority as-is - return mDecodePriority; + priority = -1.f; //stop fetching } } else if (cur_discard < 0) @@ -2262,11 +2261,14 @@ void LLViewerFetchedTexture::destroyRawImage() { sRawCount--; - if(mForceToSaveRawImage) + if(mIsRawImageValid) { - saveRawImage() ; - } - setCachedRawImage() ; + if(mForceToSaveRawImage) + { + saveRawImage() ; + } + setCachedRawImage() ; + } } mRawImage = NULL; @@ -2741,7 +2743,7 @@ void LLViewerLODTexture::processTextureStats() mCalculatedDiscardLevel = discard_level; } } - if (mBoostLevel < LLViewerTexture::BOOST_HIGH) + if (mBoostLevel < LLViewerTexture::BOOST_SCULPTED) { discard_level += sDesiredDiscardBias; discard_level *= sDesiredDiscardScale; // scale @@ -2767,8 +2769,7 @@ void LLViewerLODTexture::processTextureStats() // S32 current_discard = getDiscardLevel(); - if ((sDesiredDiscardBias > 0.0f) && - (current_discard >= 0 && mDesiredDiscardLevel >= current_discard)) + if (sDesiredDiscardBias > 0.0f && mBoostLevel < LLViewerTexture::BOOST_SCULPTED && current_discard >= 0) { // Limit the amount of GL memory bound each frame if ( BYTES_TO_MEGA_BYTES(sBoundTextureMemoryInBytes) > sMaxBoundTextureMemInMegaBytes * texmem_middle_bound_scale && diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h index 6dc18085e05f8ba3a036cbafabd5b5ab7f9790f3..a09a711cc746b6f47658bb885a716c0bf94c20be 100644 --- a/indra/newview/llviewertexture.h +++ b/indra/newview/llviewertexture.h @@ -300,7 +300,7 @@ class LLViewerTexture : public LLTexture static S32 sImageCount; static S32 sRawCount; static S32 sAuxCount; - static LLTimer sEvaluationTimer; + static LLFrameTimer sEvaluationTimer; static F32 sDesiredDiscardBias; static F32 sDesiredDiscardScale; static S32 sBoundTextureMemoryInBytes; diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index fd609637a6c2018e487c161a61e09422015b71d3..c38fec3c5573a459d41a22ac628acfa13f7f1d92 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1125,7 +1125,7 @@ BOOL LLViewerWindow::handleActivate(LLWindow *window, BOOL activated) { // if we're in world, show a progress bar to hide reloading of textures llinfos << "Restoring GL during activate" << llendl; - restoreGL("Restoring..."); + restoreGL(LLTrans::getString("ProgressRestoring")); } else { @@ -1382,7 +1382,7 @@ LLViewerWindow::LLViewerWindow( if (NULL == mWindow) { - LLSplashScreen::update("Shutting down..."); + LLSplashScreen::update(LLTrans::getString("ShuttingDown")); #if LL_LINUX || LL_SOLARIS llwarns << "Unable to create window, be sure screen is set at 32-bit color and your graphics driver is configured correctly. See README-linux.txt or README-solaris.txt for further information." << llendl; @@ -1605,8 +1605,8 @@ void LLViewerWindow::initWorldUI() gIMMgr = LLIMMgr::getInstance(); - getRootView()->sendChildToFront(gFloaterView); - getRootView()->sendChildToFront(gSnapshotFloaterView); + //getRootView()->sendChildToFront(gFloaterView); + //getRootView()->sendChildToFront(gSnapshotFloaterView); // new bottom panel LLPanel* bottom_tray_container = getRootView()->getChild<LLPanel>("bottom_tray_container"); @@ -1741,7 +1741,7 @@ void LLViewerWindow::shutdownViews() // destroy the nav bar, not currently part of gViewerWindow // *TODO: Make LLNavigationBar part of gViewerWindow delete LLNavigationBar::getInstance(); - + // destroy menus after instantiating navbar above, as it needs // access to gMenuHolder cleanup_menus(); @@ -4755,7 +4755,7 @@ void LLViewerWindow::restartDisplay(BOOL show_progress_bar) stopGL(); if (show_progress_bar) { - restoreGL("Changing Resolution..."); + restoreGL(LLTrans::getString("ProgressChangingResolution")); } else { @@ -4842,7 +4842,7 @@ BOOL LLViewerWindow::changeDisplaySettings(BOOL fullscreen, LLCoordScreen size, llinfos << "Restoring GL during resolution change" << llendl; if (show_progress_bar) { - restoreGL("Changing Resolution..."); + restoreGL(LLTrans::getString("ProgressChangingResolution")); } else { diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index f3850d58a1337681df2ccbabc60e92e72c623b72..67ae5b1eb09f8d07d14e577b737dd9408858beec 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -2696,18 +2696,18 @@ void LLVOAvatar::idleUpdateNameTag(const LLVector3& root_pos_last) return; } - BOOL new_name = FALSE; - if (visible_chat != mVisibleChat) - { - mVisibleChat = visible_chat; - new_name = TRUE; - } - - if (sRenderGroupTitles != mRenderGroupTitles) - { - mRenderGroupTitles = sRenderGroupTitles; - new_name = TRUE; - } + BOOL new_name = FALSE; + if (visible_chat != mVisibleChat) + { + mVisibleChat = visible_chat; + new_name = TRUE; + } + + if (sRenderGroupTitles != mRenderGroupTitles) + { + mRenderGroupTitles = sRenderGroupTitles; + new_name = TRUE; + } // IDEVO HACK to force refresh if (LLAvatarNameCache::useDisplayNames() != mUseDisplayNames) @@ -2716,30 +2716,30 @@ void LLVOAvatar::idleUpdateNameTag(const LLVector3& root_pos_last) new_name = TRUE; } - // First Calculate Alpha - // If alpha > 0, create mNameText if necessary, otherwise delete it - F32 alpha = 0.f; - if (mAppAngle > 5.f) - { - const F32 START_FADE_TIME = NAME_SHOW_TIME - FADE_DURATION; - if (!visible_chat && sRenderName == RENDER_NAME_FADE && time_visible > START_FADE_TIME) - { - alpha = 1.f - (time_visible - START_FADE_TIME) / FADE_DURATION; - } - else - { - // ...not fading, full alpha - alpha = 1.f; - } - } - else if (mAppAngle > 2.f) - { - // far away is faded out also - alpha = (mAppAngle-2.f)/3.f; - } + // First Calculate Alpha + // If alpha > 0, create mNameText if necessary, otherwise delete it + F32 alpha = 0.f; + if (mAppAngle > 5.f) + { + const F32 START_FADE_TIME = NAME_SHOW_TIME - FADE_DURATION; + if (!visible_chat && sRenderName == RENDER_NAME_FADE && time_visible > START_FADE_TIME) + { + alpha = 1.f - (time_visible - START_FADE_TIME) / FADE_DURATION; + } + else + { + // ...not fading, full alpha + alpha = 1.f; + } + } + else if (mAppAngle > 2.f) + { + // far away is faded out also + alpha = (mAppAngle-2.f)/3.f; + } if (alpha <= 0.f) - { + { if (mNameText) { mNameText->markDead(); @@ -2749,33 +2749,33 @@ void LLVOAvatar::idleUpdateNameTag(const LLVector3& root_pos_last) return; } - if (!mNameText) - { + if (!mNameText) + { mNameText = static_cast<LLHUDNameTag*>( LLHUDObject::addHUDObject( LLHUDObject::LL_HUD_NAME_TAG) ); //mNameText->setMass(10.f); - mNameText->setSourceObject(this); + mNameText->setSourceObject(this); mNameText->setVertAlignment(LLHUDNameTag::ALIGN_VERT_TOP); - mNameText->setVisibleOffScreen(TRUE); - mNameText->setMaxLines(11); - mNameText->setFadeDistance(CHAT_NORMAL_RADIUS, 5.f); - sNumVisibleChatBubbles++; - new_name = TRUE; - } - + mNameText->setVisibleOffScreen(TRUE); + mNameText->setMaxLines(11); + mNameText->setFadeDistance(CHAT_NORMAL_RADIUS, 5.f); + sNumVisibleChatBubbles++; + new_name = TRUE; + } + LLVector3 name_position = idleUpdateNameTagPosition(root_pos_last); mNameText->setPositionAgent(name_position); - + idleUpdateNameTagText(new_name); - + idleUpdateNameTagAlpha(new_name, alpha); } void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) -{ - LLNameValue *title = getNVPair("Title"); - LLNameValue* firstname = getNVPair("FirstName"); - LLNameValue* lastname = getNVPair("LastName"); + { + LLNameValue *title = getNVPair("Title"); + LLNameValue* firstname = getNVPair("FirstName"); + LLNameValue* lastname = getNVPair("LastName"); // Avatars must have a first and last name if (!firstname || !lastname) return; @@ -2784,14 +2784,14 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) bool is_busy = mSignaledAnimations.find(ANIM_AGENT_BUSY) != mSignaledAnimations.end(); bool is_appearance = mSignaledAnimations.find(ANIM_AGENT_CUSTOMIZE) != mSignaledAnimations.end(); bool is_muted; - if (isSelf()) - { + if (isSelf()) + { is_muted = false; - } - else - { - is_muted = LLMuteList::getInstance()->isMuted(getID()); - } + } + else + { + is_muted = LLMuteList::getInstance()->isMuted(getID()); + } bool is_friend = LLAvatarTracker::instance().isBuddy(getID()); // Rebuild name tag if state change detected @@ -2804,21 +2804,21 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) || is_muted != mNameMute || is_appearance != mNameAppearance || is_friend != mNameFriend) - { + { LLColor4 name_tag_color = getNameTagColor(is_friend); clearNameTag(); if (is_away || is_muted || is_busy || is_appearance) - { + { std::string line; - if (is_away) - { - line += LLTrans::getString("AvatarAway"); + if (is_away) + { + line += LLTrans::getString("AvatarAway"); line += ", "; - } - if (is_busy) - { + } + if (is_busy) + { line += LLTrans::getString("AvatarBusy"); line += ", "; } @@ -2828,10 +2828,10 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) line += ", "; } if (is_appearance) - { + { line += LLTrans::getString("AvatarEditingAppearance"); - line += ", "; - } + line += ", "; + } // trim last ", " line.resize( line.length() - 2 ); LLColor4 status_color = @@ -2849,7 +2849,7 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) LLStringFn::replace_ascii_controlchars(title_str,LL_UNKNOWN_CHAR); addNameTagLine(title_str, group_color, LLFontGL::NORMAL, LLFontGL::getFontSansSerifSmall()); - } + } static LLUICachedControl<bool> show_display_names("NameTagShowDisplayNames"); static LLUICachedControl<bool> show_slids("NameTagShowSLIDs"); @@ -2858,7 +2858,7 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) { LLAvatarName av_name; if (!LLAvatarNameCache::get(getID(), &av_name)) - { + { // ...call this function back when the name arrives // and force a rebuild LLAvatarNameCache::get(getID(), @@ -2867,111 +2867,111 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) // Might be blank if name not available yet, that's OK if (show_slids) - { + { // JAMESDEBUG HACK LLColor4 slid_color = name_tag_color * 0.8f; addNameTagLine(av_name.mSLID, slid_color, LLFontGL::NORMAL, LLFontGL::getFontSansSerifSmall()); - } + } if (show_display_names) { addNameTagLine(av_name.mDisplayName, name_tag_color, LLFontGL::NORMAL, LLFontGL::getFontSansSerif()); - } - } + } + } else - { + { static LLUICachedControl<bool> small_avatar_names("SmallAvatarNames"); const LLFontGL* font = (small_avatar_names ? LLFontGL::getFontSansSerif() : LLFontGL::getFontSansSerifBig() ); std::string full_name = LLCacheName::buildFullName( firstname->getString(), lastname->getString() ); addNameTagLine(full_name, name_tag_color, LLFontGL::NORMAL, font); - } + } - mNameAway = is_away; - mNameBusy = is_busy; - mNameMute = is_muted; - mNameAppearance = is_appearance; + mNameAway = is_away; + mNameBusy = is_busy; + mNameMute = is_muted; + mNameAppearance = is_appearance; mNameFriend = is_friend; - mTitle = title ? title->getString() : ""; - LLStringFn::replace_ascii_controlchars(mTitle,LL_UNKNOWN_CHAR); - new_name = TRUE; - } + mTitle = title ? title->getString() : ""; + LLStringFn::replace_ascii_controlchars(mTitle,LL_UNKNOWN_CHAR); + new_name = TRUE; + } if (mVisibleChat) - { - mNameText->setFont(LLFontGL::getFontSansSerif()); + { + mNameText->setFont(LLFontGL::getFontSansSerif()); mNameText->setTextAlignment(LLHUDNameTag::ALIGN_TEXT_LEFT); - mNameText->setFadeDistance(CHAT_NORMAL_RADIUS * 2.f, 5.f); - - char line[MAX_STRING]; /* Flawfinder: ignore */ - line[0] = '\0'; - std::deque<LLChat>::iterator chat_iter = mChats.begin(); - mNameText->clearString(); + mNameText->setFadeDistance(CHAT_NORMAL_RADIUS * 2.f, 5.f); + + char line[MAX_STRING]; /* Flawfinder: ignore */ + line[0] = '\0'; + std::deque<LLChat>::iterator chat_iter = mChats.begin(); + mNameText->clearString(); LLColor4 new_chat = LLUIColorTable::instance().getColor( "NameTagChat" ); - LLColor4 normal_chat = lerp(new_chat, LLColor4(0.8f, 0.8f, 0.8f, 1.f), 0.7f); - LLColor4 old_chat = lerp(normal_chat, LLColor4(0.6f, 0.6f, 0.6f, 1.f), 0.7f); - if (mTyping && mChats.size() >= MAX_BUBBLE_CHAT_UTTERANCES) - { - ++chat_iter; - } + LLColor4 normal_chat = lerp(new_chat, LLColor4(0.8f, 0.8f, 0.8f, 1.f), 0.7f); + LLColor4 old_chat = lerp(normal_chat, LLColor4(0.6f, 0.6f, 0.6f, 1.f), 0.7f); + if (mTyping && mChats.size() >= MAX_BUBBLE_CHAT_UTTERANCES) + { + ++chat_iter; + } - for(; chat_iter != mChats.end(); ++chat_iter) - { - F32 chat_fade_amt = llclamp((F32)((LLFrameTimer::getElapsedSeconds() - chat_iter->mTime) / CHAT_FADE_TIME), 0.f, 4.f); - LLFontGL::StyleFlags style; - switch(chat_iter->mChatType) - { - case CHAT_TYPE_WHISPER: - style = LLFontGL::ITALIC; - break; - case CHAT_TYPE_SHOUT: - style = LLFontGL::BOLD; - break; - default: - style = LLFontGL::NORMAL; - break; - } - if (chat_fade_amt < 1.f) - { - F32 u = clamp_rescale(chat_fade_amt, 0.9f, 1.f, 0.f, 1.f); + for(; chat_iter != mChats.end(); ++chat_iter) + { + F32 chat_fade_amt = llclamp((F32)((LLFrameTimer::getElapsedSeconds() - chat_iter->mTime) / CHAT_FADE_TIME), 0.f, 4.f); + LLFontGL::StyleFlags style; + switch(chat_iter->mChatType) + { + case CHAT_TYPE_WHISPER: + style = LLFontGL::ITALIC; + break; + case CHAT_TYPE_SHOUT: + style = LLFontGL::BOLD; + break; + default: + style = LLFontGL::NORMAL; + break; + } + if (chat_fade_amt < 1.f) + { + F32 u = clamp_rescale(chat_fade_amt, 0.9f, 1.f, 0.f, 1.f); mNameText->addLine(chat_iter->mText, lerp(new_chat, normal_chat, u), style); - } - else if (chat_fade_amt < 2.f) - { - F32 u = clamp_rescale(chat_fade_amt, 1.9f, 2.f, 0.f, 1.f); + } + else if (chat_fade_amt < 2.f) + { + F32 u = clamp_rescale(chat_fade_amt, 1.9f, 2.f, 0.f, 1.f); mNameText->addLine(chat_iter->mText, lerp(normal_chat, old_chat, u), style); - } - else if (chat_fade_amt < 3.f) - { - // *NOTE: only remove lines down to minimum number + } + else if (chat_fade_amt < 3.f) + { + // *NOTE: only remove lines down to minimum number mNameText->addLine(chat_iter->mText, old_chat, style); - } - } - mNameText->setVisibleOffScreen(TRUE); + } + } + mNameText->setVisibleOffScreen(TRUE); - if (mTyping) - { - S32 dot_count = (llfloor(mTypingTimer.getElapsedTimeF32() * 3.f) + 2) % 3 + 1; - switch(dot_count) - { - case 1: - mNameText->addLine(".", new_chat); - break; - case 2: - mNameText->addLine("..", new_chat); - break; - case 3: - mNameText->addLine("...", new_chat); - break; - } + if (mTyping) + { + S32 dot_count = (llfloor(mTypingTimer.getElapsedTimeF32() * 3.f) + 2) % 3 + 1; + switch(dot_count) + { + case 1: + mNameText->addLine(".", new_chat); + break; + case 2: + mNameText->addLine("..", new_chat); + break; + case 3: + mNameText->addLine("...", new_chat); + break; + } - } - } - else - { + } + } + else + { // ...not using chat bubbles, just names mNameText->setTextAlignment(LLHUDNameTag::ALIGN_TEXT_CENTER); mNameText->setFadeDistance(CHAT_NORMAL_RADIUS, 5.f); @@ -2980,16 +2980,16 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name) } void LLVOAvatar::addNameTagLine(const std::string& line, const LLColor4& color, S32 style, const LLFontGL* font) -{ + { llassert(mNameText); if (mVisibleChat) { mNameText->addLabel(line); - } - else - { + } + else + { mNameText->addLine(line, color, (LLFontGL::StyleFlags)style, font); - } + } mNameString += line; mNameString += '\n'; } @@ -2998,8 +2998,8 @@ void LLVOAvatar::clearNameTag() { mNameString.clear(); if (mNameText) - { - mNameText->setLabel( "" ); + { + mNameText->setLabel(""); mNameText->setString( "" ); } } @@ -3038,7 +3038,7 @@ LLVector3 LLVOAvatar::idleUpdateNameTagPosition(const LLVector3& root_pos_last) (projected_vec(local_camera_at * root_rot, camera_to_av)); name_position += pixel_up_vec * 15.f; return name_position; -} + } void LLVOAvatar::idleUpdateNameTagAlpha(BOOL new_name, F32 alpha) { @@ -3049,8 +3049,8 @@ void LLVOAvatar::idleUpdateNameTagAlpha(BOOL new_name, F32 alpha) { mNameText->setAlpha(alpha); mNameAlpha = alpha; - } -} + } + } LLColor4 LLVOAvatar::getNameTagColor(bool is_friend) { @@ -3066,7 +3066,7 @@ LLColor4 LLVOAvatar::getNameTagColor(bool is_friend) if (LLAvatarNameCache::useDisplayNames() && LLAvatarNameCache::get(getID(), &av_name) && av_name.mIsLegacy) - { + { color_name = "NameTagLegacy"; } } @@ -5897,11 +5897,6 @@ void LLVOAvatar::invalidateAll() { } -// virtual -void LLVOAvatar::setCompositeUpdatesEnabled( BOOL b ) -{ -} - void LLVOAvatar::onGlobalColorChanged(const LLTexGlobalColor* global_color, BOOL upload_bake ) { if (global_color == mTexSkinColor) diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index 65343c9058dd29e4dac4fb72e17c02e606222671..4e0275deb51cc14037dca6fa059ab065c2d370ab 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -533,7 +533,9 @@ class LLVOAvatar : public: virtual void invalidateComposite(LLTexLayerSet* layerset, BOOL upload_result); virtual void invalidateAll(); - virtual void setCompositeUpdatesEnabled(BOOL b); + virtual void setCompositeUpdatesEnabled(bool b) {} + virtual void setCompositeUpdatesEnabled(U32 index, bool b) {} + virtual bool isCompositeUpdateEnabled(U32 index) { return false; } //-------------------------------------------------------------------- // Static texture/mesh/baked dictionary diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 7dc8772753b149d0e895755c748053ce79bea86a..98ca76ed01e2e457e47dadaa5f5499f4442d57f6 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -489,7 +489,7 @@ BOOL LLVOAvatarSelf::buildMenus() { LLMenuItemCallGL::Params item_params; item_params.name = attachment->getName(); - item_params.label = attachment->getName(); + item_params.label = LLTrans::getString(attachment->getName()); item_params.on_click.function_name = "Object.AttachToAvatar"; item_params.on_click.parameter = attach_index; item_params.on_enable.function_name = "Object.EnableWear"; @@ -765,6 +765,7 @@ void LLVOAvatarSelf::removeMissingBakedTextures() { for (U32 i = 0; i < mBakedTextureDatas.size(); i++) { + mBakedTextureDatas[i].mTexLayerSet->setUpdatesEnabled(TRUE); invalidateComposite(mBakedTextureDatas[i].mTexLayerSet, FALSE); } updateMeshTextures(); @@ -952,6 +953,7 @@ void LLVOAvatarSelf::wearableUpdated( EWearableType type, BOOL upload_result ) { if (mBakedTextureDatas[index].mTexLayerSet) { + mBakedTextureDatas[index].mTexLayerSet->setUpdatesEnabled(true); invalidateComposite(mBakedTextureDatas[index].mTexLayerSet, upload_result); } break; @@ -1364,17 +1366,31 @@ void LLVOAvatarSelf::invalidateAll() //----------------------------------------------------------------------------- // setCompositeUpdatesEnabled() //----------------------------------------------------------------------------- -void LLVOAvatarSelf::setCompositeUpdatesEnabled( BOOL b ) +void LLVOAvatarSelf::setCompositeUpdatesEnabled( bool b ) { for (U32 i = 0; i < mBakedTextureDatas.size(); i++) { - if (mBakedTextureDatas[i].mTexLayerSet ) - { - mBakedTextureDatas[i].mTexLayerSet->setUpdatesEnabled( b ); - } + setCompositeUpdatesEnabled(i, b); + } +} + +void LLVOAvatarSelf::setCompositeUpdatesEnabled(U32 index, bool b) +{ + if (mBakedTextureDatas[index].mTexLayerSet ) + { + mBakedTextureDatas[index].mTexLayerSet->setUpdatesEnabled( b ); } } +bool LLVOAvatarSelf::isCompositeUpdateEnabled(U32 index) +{ + if (mBakedTextureDatas[index].mTexLayerSet) + { + return mBakedTextureDatas[index].mTexLayerSet->getUpdatesEnabled(); + } + return false; +} + void LLVOAvatarSelf::setupComposites() { for (U32 i = 0; i < mBakedTextureDatas.size(); i++) diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h index df3493c434f375335daa14e53daef4318bf90534..9514abc5bca48ffafb9ecef4ae8638f807a1e3ec 100644 --- a/indra/newview/llvoavatarself.h +++ b/indra/newview/llvoavatarself.h @@ -232,7 +232,9 @@ class LLVOAvatarSelf : public: /* virtual */ void invalidateComposite(LLTexLayerSet* layerset, BOOL upload_result); /* virtual */ void invalidateAll(); - /* virtual */ void setCompositeUpdatesEnabled(BOOL b); // only works for self + /* virtual */ void setCompositeUpdatesEnabled(bool b); // only works for self + /* virtual */ void setCompositeUpdatesEnabled(U32 index, bool b); + /* virtual */ bool isCompositeUpdateEnabled(U32 index); void setupComposites(); void updateComposites(); diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 223ebc0081b2c4496df2cade5d524c3d454137ab..4b40f0d26a9b7b08ac8feb8c1a73e29a511c23e2 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -4598,7 +4598,15 @@ void LLVoiceClient::participantUpdatedEvent( { participant->mPower = 0.0f; } + + // *HACK: Minimal hack to fix EXT-6508, ignore the incoming volume if it is zero. + // This happens because we send volume zero to Vivox when someone is muted, + // Vivox then send it back to us, overwriting the previous volume. + // Remove this hack once volume refactoring from EXT-6031 is applied. + if (volume != 0) + { participant->mVolume = volume; + } // *HACK: mantipov: added while working on EXT-3544 diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 86d8204473d34bbc558c5be390a608a2203d8607..cb362d557c6c3335c0b1de4198b5cad914f2e937 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -962,8 +962,11 @@ void LLVOVolume::updateSculptTexture() if (isSculpted()) { LLSculptParams *sculpt_params = (LLSculptParams *)getParameterEntry(LLNetworkData::PARAMS_SCULPT); - LLUUID id = sculpt_params->getSculptTexture(); - mSculptTexture = LLViewerTextureManager::getFetchedTexture(id, TRUE, LLViewerTexture::BOOST_NONE, LLViewerTexture::LOD_TEXTURE); + LLUUID id = sculpt_params->getSculptTexture(); + if (id.notNull()) + { + mSculptTexture = LLViewerTextureManager::getFetchedTexture(id, TRUE, LLViewerTexture::BOOST_NONE, LLViewerTexture::LOD_TEXTURE); + } } else { diff --git a/indra/newview/llwearable.cpp b/indra/newview/llwearable.cpp index acfbc23f62e1015c051124511ecf511a796437df..3334c17a8f613d7101295d1cd25b3666709fe355 100644 --- a/indra/newview/llwearable.cpp +++ b/indra/newview/llwearable.cpp @@ -56,6 +56,35 @@ using namespace LLVOAvatarDefines; // static S32 LLWearable::sCurrentDefinitionVersion = 1; +// support class - remove for 2.1 (hackity hack hack) +class LLOverrideBakedTextureUpdate +{ +public: + LLOverrideBakedTextureUpdate(bool temp_state) + { + mAvatar = gAgent.getAvatarObject(); + U32 num_bakes = (U32) LLVOAvatarDefines::BAKED_NUM_INDICES; + for( U32 index = 0; index < num_bakes; ++index ) + { + composite_enabled[index] = mAvatar->isCompositeUpdateEnabled(index); + } + mAvatar->setCompositeUpdatesEnabled(temp_state); + } + + ~LLOverrideBakedTextureUpdate() + { + U32 num_bakes = (U32)LLVOAvatarDefines::BAKED_NUM_INDICES; + for( U32 index = 0; index < num_bakes; ++index ) + { + mAvatar->setCompositeUpdatesEnabled(index, composite_enabled[index]); + } + } + +private: + bool composite_enabled[LLVOAvatarDefines::BAKED_NUM_INDICES]; + LLVOAvatarSelf *mAvatar; +}; + // Private local functions static std::string terse_F32_to_string(F32 f); static std::string asset_id_to_filename(const LLUUID &asset_id); @@ -216,6 +245,10 @@ BOOL LLWearable::importFile( LLFILE* file ) char text_buffer[2048]; /* Flawfinder: ignore */ S32 fields_read = 0; + // suppress texlayerset updates while wearables are being imported. Layersets will be updated + // when the wearables are "worn", not loaded. Note state will be restored when this object is destroyed. + LLOverrideBakedTextureUpdate stop_bakes(false); + // read header and version fields_read = fscanf( file, "LLWearable version %d\n", &mDefinitionVersion ); if( fields_read != 1 ) diff --git a/indra/newview/llwearablelist.h b/indra/newview/llwearablelist.h index cf1a9bddff62db7c13717a5f21605736b5db6737..5e564ba953e8e6f3c20eaa128776e9ad6e3f5f1d 100644 --- a/indra/newview/llwearablelist.h +++ b/indra/newview/llwearablelist.h @@ -39,6 +39,12 @@ #include "llassetstorage.h" // Globally constructed; be careful that there's no dependency with gAgent. +/* + BUG: mList's system of mapping between assetIDs and wearables is flawed + since LLWearable* has an associated itemID, and you can have multiple + inventory items pointing to the same asset (i.e. more than one ItemID + per assetID). EXT-6252 +*/ class LLWearableList : public LLSingleton<LLWearableList> { public: diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index d7e5b464a65dbeba861aa8b94970b0fa49264835..19f303ab8877b99dc341bea32945cd1221c7d416 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -45,6 +45,7 @@ #include "llhttpnode.h" #include "llregionhandle.h" #include "llsurface.h" +#include "lltrans.h" #include "llviewercamera.h" #include "llviewertexture.h" #include "llviewertexturelist.h" @@ -258,7 +259,7 @@ void LLWorld::removeRegion(const LLHost &host) llwarns << "gFrameTimeSeconds " << gFrameTimeSeconds << llendl; llwarns << "Disabling region " << regionp->getName() << " that agent is in!" << llendl; - LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in."); + LLAppViewer::instance()->forceDisconnect(LLTrans::getString("YouHaveBeenDisconnected")); return; } diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp index 5edf72d4ae22055d6a67dd14670013007610e180..27757d19e54566a92d5e06571965e430a11aaae0 100644 --- a/indra/newview/llworldmapview.cpp +++ b/indra/newview/llworldmapview.cpp @@ -45,6 +45,7 @@ #include "llagent.h" #include "llcallingcard.h" +#include "llcommandhandler.h" #include "llviewercontrol.h" #include "llfloatermap.h" #include "llfloaterworldmap.h" @@ -1726,7 +1727,10 @@ BOOL LLWorldMapView::handleDoubleClick( S32 x, S32 y, MASK mask ) id.toString(uuid_str); uuid_str = uuid_str.substr(28); sscanf(uuid_str.c_str(), "%X", &event_id); - LLFloaterReg::showInstance("search", LLSD().with("category", "events").with("id", event_id)); + // Invoke the event details floater if someone is clicking on an event. + LLSD params(LLSD::emptyArray()); + params.append(event_id); + LLCommandDispatcher::dispatch("event", params, LLSD(), NULL, true); break; } case MAP_ITEM_LAND_FOR_SALE: diff --git a/indra/newview/res-sdl/ll_icon.BMP b/indra/newview/res-sdl/ll_icon.BMP index 4a44aafbfaeefcc50b9a461693f9de9bc29b8930..6f9366df41ea2e93bad37ae347c7ec7b07541b75 100644 Binary files a/indra/newview/res-sdl/ll_icon.BMP and b/indra/newview/res-sdl/ll_icon.BMP differ diff --git a/indra/newview/res/ll_icon.png b/indra/newview/res/ll_icon.png index 414b703111a6b0c1513e824f40688f8e79836228..ae573b3874a253c24d8050f2ef4439742f51ee94 100644 Binary files a/indra/newview/res/ll_icon.png and b/indra/newview/res/ll_icon.png differ diff --git a/indra/newview/res/toolbuy.cur b/indra/newview/res/toolbuy.cur new file mode 100644 index 0000000000000000000000000000000000000000..7fd552a78e97ad980e6138a25ec9ede085731112 Binary files /dev/null and b/indra/newview/res/toolbuy.cur differ diff --git a/indra/newview/res/toolopen.cur b/indra/newview/res/toolopen.cur new file mode 100644 index 0000000000000000000000000000000000000000..1562f5bc95517983e4cc60ca02ba599b7c48c180 Binary files /dev/null and b/indra/newview/res/toolopen.cur differ diff --git a/indra/newview/res/toolsit.cur b/indra/newview/res/toolsit.cur new file mode 100644 index 0000000000000000000000000000000000000000..a1f99cfe6d4b0ee3bb726d6b49b4d5f9acb2c84a Binary files /dev/null and b/indra/newview/res/toolsit.cur differ diff --git a/indra/newview/res/viewerRes.rc b/indra/newview/res/viewerRes.rc index 38291e45c933417911212e67d2d4b758bd2287c7..7a965cf57e50bc3cf38a666484781fdf6db88996 100644 --- a/indra/newview/res/viewerRes.rc +++ b/indra/newview/res/viewerRes.rc @@ -2,19 +2,12 @@ // #include "resource.h" -#ifdef IDC_STATIC -#undef IDC_STATIC -#endif -#define IDC_STATIC (-1) -#include "winresrc.h" - #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 2 resource. // -// Commented out because it only compiles if you have MFC installed. -//#include "winres.h" +#include "winres.h" ///////////////////////////////////////////////////////////////////////////// #undef APSTUDIO_READONLY_SYMBOLS @@ -34,18 +27,18 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // TEXTINCLUDE // -1 TEXTINCLUDE +1 TEXTINCLUDE BEGIN "resource.h\0" END -2 TEXTINCLUDE +2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" "\0" END -3 TEXTINCLUDE +3 TEXTINCLUDE BEGIN "\r\n" "\0" @@ -84,9 +77,8 @@ END // #ifdef APSTUDIO_INVOKED -GUIDELINES DESIGNINFO +GUIDELINES DESIGNINFO BEGIN - "SPLASHSCREEN", DIALOG BEGIN LEFTMARGIN, 7 @@ -127,6 +119,9 @@ TOOLPIPETTE CURSOR "toolpipette.cur" TOOLPLAY CURSOR "toolplay.cur" TOOLPAUSE CURSOR "toolpause.cur" TOOLMEDIAOPEN CURSOR "toolmediaopen.cur" +TOOLOPEN CURSOR "toolopen.cur" +TOOLSIT CURSOR "toolsit.cur" +TOOLBUY CURSOR "toolbuy.cur" ///////////////////////////////////////////////////////////////////////////// // @@ -134,8 +129,8 @@ TOOLMEDIAOPEN CURSOR "toolmediaopen.cur" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,0,0,200030 - PRODUCTVERSION 2,0,0,200030 + FILEVERSION 2,0,0,3422 + PRODUCTVERSION 2,0,0,3422 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -166,12 +161,6 @@ BEGIN END END - -///////////////////////////////////////////////////////////////////////////// -// -// Bitmap -// - #endif // English (U.S.) resources ///////////////////////////////////////////////////////////////////////////// diff --git a/indra/newview/skins/default/colors.xml b/indra/newview/skins/default/colors.xml index c259e0391d39308085d7e5951277ab38c17f55de..1d6c667f248a344e092e565c521574642c230c60 100644 --- a/indra/newview/skins/default/colors.xml +++ b/indra/newview/skins/default/colors.xml @@ -389,7 +389,7 @@ reference="Yellow" /> <color name="HighlightInspectColor" - value="1 0.5 0 1" /> + value="1 0 1 1" /> <color name="HighlightParentColor" value="0.67 0.83 0.96 1" /> diff --git a/indra/newview/skins/default/textures/icons/Inv_Object_Multi.png b/indra/newview/skins/default/textures/icons/Inv_Object_Multi.png new file mode 100644 index 0000000000000000000000000000000000000000..11f4871ad8d1c3514209072be9f91cc11d4451c6 Binary files /dev/null and b/indra/newview/skins/default/textures/icons/Inv_Object_Multi.png differ diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml index 82bce8c069f88a8f7f5b42e7d648116c9ddf813e..5b537b1072d409dcee5ae7f24387a286ffc7b11c 100644 --- a/indra/newview/skins/default/textures/textures.xml +++ b/indra/newview/skins/default/textures/textures.xml @@ -247,6 +247,7 @@ with the same filename but different name <texture name="Inv_Landmark" file_name="icons/Inv_Landmark.png" preload="false" /> <texture name="Inv_Notecard" file_name="icons/Inv_Notecard.png" preload="false" /> <texture name="Inv_Object" file_name="icons/Inv_Object.png" preload="false" /> + <texture name="Inv_Object_Multi" file_name="icons/Inv_Object_Multi.png" preload="false" /> <texture name="Inv_Pants" file_name="icons/Inv_Pants.png" preload="false" /> <texture name="Inv_Script" file_name="icons/Inv_Script.png" preload="false" /> <texture name="Inv_Shirt" file_name="icons/Inv_Shirt.png" preload="false" /> @@ -618,12 +619,15 @@ with the same filename but different name <texture name="Toolbar_Divider" file_name="containers/Toolbar_Divider.png" preload="false" /> <texture name="Toolbar_Left_Off" file_name="containers/Toolbar_Left_Off.png" preload="false" scale.left="5" scale.bottom="4" scale.top="24" scale.right="30" /> + <texture name="Toolbar_Left_Over" file_name="containers/Toolbar_Left_Over.png" preload="false" scale.left="5" scale.bottom="4" scale.top="24" scale.right="30" /> <texture name="Toolbar_Left_Press" file_name="containers/Toolbar_Left_Press.png" preload="false" scale.left="5" scale.bottom="4" scale.top="24" scale.right="30" /> <texture name="Toolbar_Left_Selected" file_name="containers/Toolbar_Left_Selected.png" preload="false" scale.left="5" scale.bottom="4" scale.top="24" scale.right="30" /> <texture name="Toolbar_Middle_Off" file_name="containers/Toolbar_Middle_Off.png" preload="false" scale.left="1" scale.bottom="2" scale.top="24" scale.right="30" /> + <texture name="Toolbar_Middle_Over" file_name="containers/Toolbar_Middle_Over.png" preload="false" scale.left="1" scale.bottom="2" scale.top="24" scale.right="30" /> <texture name="Toolbar_Middle_Press" file_name="containers/Toolbar_Middle_Press.png" preload="false" scale.left="1" scale.bottom="2" scale.top="24" scale.right="30" /> <texture name="Toolbar_Middle_Selected" file_name="containers/Toolbar_Middle_Selected.png" preload="false" scale.left="1" scale.bottom="2" scale.top="24" scale.right="30" /> <texture name="Toolbar_Right_Off" file_name="containers/Toolbar_Right_Off.png" preload="false" scale.left="1" scale.bottom="4" scale.top="24" scale.right="26" /> + <texture name="Toolbar_Right_Over" file_name="containers/Toolbar_Right_Over.png" preload="false" scale.left="1" scale.bottom="4" scale.top="24" scale.right="26" /> <texture name="Toolbar_Right_Press" file_name="containers/Toolbar_Right_Press.png" preload="false" scale.left="1" scale.bottom="4" scale.top="24" scale.right="26" /> <texture name="Toolbar_Right_Selected" file_name="containers/Toolbar_Right_Selected.png" preload="false" scale.left="1" scale.bottom="4" scale.top="24" scale.right="26" /> diff --git a/indra/newview/skins/default/xui/da/floater_about_land.xml b/indra/newview/skins/default/xui/da/floater_about_land.xml index 9bda1397bc918952ce3f56eeeae217037bab388f..fd1fe4aa19a33be167a09d5ad6f330627dcd84da 100644 --- a/indra/newview/skins/default/xui/da/floater_about_land.xml +++ b/indra/newview/skins/default/xui/da/floater_about_land.xml @@ -1,5 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floaterland" title="OM LAND"> + <floater.string name="maturity_icon_general"> + "Parcel_PG_Dark" + </floater.string> + <floater.string name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> <floater.string name="Minutes"> [MINUTES] minutter </floater.string> @@ -15,7 +24,7 @@ <tab_container name="landtab"> <panel label="GENERELT" name="land_general_panel"> <panel.string name="new users only"> - Kun nye brugere + Kun nye beboere </panel.string> <panel.string name="anyone"> Alle @@ -84,9 +93,9 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel <text name="GroupText"> Leyla Linden </text> - <button label="Vælg..." label_selected="Vælg..." name="Set..."/> + <button label="Vælg" name="Set..."/> <check_box label="Tillad dedikering til gruppe" name="check deed" tool_tip="En gruppe administrator kan dedikere denne jord til gruppen, sÃ¥ det vil blive støttet af gruppen's jord tildeling."/> - <button label="Dedikér..." label_selected="Dedikér..." name="Deed..." tool_tip="Du kan kun dedikere jord, hvis du er en administrator i den valgte gruppe."/> + <button label="Dedikér" name="Deed..." tool_tip="Du kan kun dedikere jord, hvis du er en administrator i den valgte gruppe."/> <check_box label="Ejer bidrager ved dedikering" name="check contrib" tool_tip="NÃ¥r land dedikeres til gruppe, kan den tidligere bidrage med nok land til at dække krav."/> <text name="For Sale:"> Til salg: @@ -97,7 +106,7 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel <text name="For Sale: Price L$[PRICE]."> Pris: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> - <button label="Sælg land..." label_selected="Sælg land..." name="Sell Land..."/> + <button label="Sælg land" name="Sell Land..."/> <text name="For sale to"> Til salg til: [BUYER] </text> @@ -126,13 +135,13 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel <text name="DwellText"> 0 </text> - <button label="Køb land..." label_selected="Køb land..." name="Buy Land..."/> + <button label="Køb land" name="Buy Land..."/> <button label="Script Info" name="Scripts..."/> - <button label="Køb til gruppe..." label_selected="Køb til gruppe..." name="Buy For Group..."/> - <button label="Køb adgang..." label_selected="Køb adgang..." name="Buy Pass..." tool_tip="Giver adgang til midlertidig adgang til dette omrÃ¥de."/> - <button label="Efterlad land..." label_selected="Efterlad land..." name="Abandon Land..."/> - <button label="Kræv tilbage..." label_selected="Kræv tilbage..." name="Reclaim Land..."/> - <button label="Linden salg..." label_selected="Linden salg..." name="Linden Sale..." tool_tip="Land skal være ejet, indholdsrating sat og ikke allerede pÃ¥ auktion."/> + <button label="Køb til gruppe" name="Buy For Group..."/> + <button label="Køb adgang" name="Buy Pass..." tool_tip="Giver adgang til midlertidig adgang til dette omrÃ¥de."/> + <button label="Efterlad land" name="Abandon Land..."/> + <button label="Kræv tilbage" name="Reclaim Land..."/> + <button label="Linden salg" name="Linden Sale..." tool_tip="Land skal være ejet, indholdsrating sat og ikke allerede pÃ¥ auktion."/> </panel> <panel label="REGLER" name="land_covenant_panel"> <panel.string name="can_resell"> @@ -231,7 +240,7 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel [COUNT] </text> <button label="Vis" label_selected="Vis" name="ShowOwner"/> - <button label="Returnér..." label_selected="Returnér..." name="ReturnOwner..." tool_tip="Returnér objekter til deres ejere."/> + <button label="Returnér" name="ReturnOwner..." tool_tip="Returnér objekter til deres ejere."/> <text name="Set to group:"> Sat til gruppe: </text> @@ -239,7 +248,7 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel [COUNT] </text> <button label="Vis" label_selected="Vis" name="ShowGroup"/> - <button label="Returnér..." label_selected="Returnér..." name="ReturnGroup..." tool_tip="Returnér objekter til deres ejere."/> + <button label="Returnér" name="ReturnGroup..." tool_tip="Returnér objekter til deres ejere."/> <text name="Owned by others:"> Ejet af andre: </text> @@ -247,7 +256,7 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel [COUNT] </text> <button label="Vis" label_selected="Vis" name="ShowOther"/> - <button label="Returnér..." label_selected="Returnér..." name="ReturnOther..." tool_tip="Returnér objekter til deres ejere."/> + <button label="Returnér" name="ReturnOther..." tool_tip="Returnér objekter til deres ejere."/> <text name="Selected / sat upon:"> Valgt/siddet pÃ¥: </text> @@ -261,7 +270,7 @@ GÃ¥ til 'Verden' > 'Om land' eller vælg en anden parcel Objekt ejere: </text> <button label="Gentegn liste" label_selected="Gentegn liste" name="Refresh List" tool_tip="Refresh Object List"/> - <button label="Returnér objekter..." label_selected="Returnér objekter..." name="Return objects..."/> + <button label="Returnér objekter" name="Return objects..."/> <name_list name="owner list"> <name_list.columns label="Type" name="type"/> <name_list.columns label="Navn" name="name"/> @@ -383,7 +392,7 @@ Kun større parceller kan vises i søgning. <text left="4" name="at URL:"> Hjemmeside: </text> - <button label="Vælg..." label_selected="Vælg..." name="set_media_url"/> + <button label="Vælg" name="set_media_url"/> <check_box label="Skjul medie URL" name="hide_media_url" tool_tip="Klik her for at skjule medie adressen sÃ¥ det kun er dig og evt. parcel gruppens ejer/administratorer der kan se den."/> <text left="4" name="Description:"> Beskrivelse: @@ -421,6 +430,9 @@ Kun større parceller kan vises i søgning. <panel.string name="access_estate_defined"> (Defineret via estate) </panel.string> + <panel.string name="allow_public_access"> + Tillad adgang for alle ([MATURITY]) + </panel.string> <panel.string name="estate_override"> En eller flere af disse valg er indstillet pÃ¥ estate niveau </panel.string> diff --git a/indra/newview/skins/default/xui/da/floater_build_options.xml b/indra/newview/skins/default/xui/da/floater_build_options.xml index 9196f19b7859739562ac03f3fd0dcf801e1f574a..d3c3ac189966dd9929776f429847f81bae5b6c94 100644 --- a/indra/newview/skins/default/xui/da/floater_build_options.xml +++ b/indra/newview/skins/default/xui/da/floater_build_options.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="build options floater" title="GITTER VALG"> - <spinner label="Gitter enheder (meter)" label_width="136" name="GridResolution" width="200"/> - <spinner label="Gitter rækkevidde (meter)" label_width="136" name="GridDrawSize" width="200"/> + <spinner label="Enheder (meter)" label_width="136" name="GridResolution" width="200"/> + <spinner label="Rækkevidde (meter)" label_width="136" name="GridDrawSize" width="200"/> <check_box label="Aktivér lÃ¥sning til underenheder" name="GridSubUnit"/> <check_box label="Vis 'cross-sections'" name="GridCrossSection"/> <text name="grid_opacity_label" tool_tip="Gitter synlighed"> diff --git a/indra/newview/skins/default/xui/da/floater_buy_currency.xml b/indra/newview/skins/default/xui/da/floater_buy_currency.xml index 49c22649567b02bf48f254cd91a01f04d34dd7ae..ec6ac5b2a842309134e2f1a221b4328d4bb0ed2d 100644 --- a/indra/newview/skins/default/xui/da/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/da/floater_buy_currency.xml @@ -37,7 +37,7 @@ Estimerer... </text> <text name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text name="total_label"> Min nye beholdning vil være diff --git a/indra/newview/skins/default/xui/da/floater_buy_land.xml b/indra/newview/skins/default/xui/da/floater_buy_land.xml index 57bcc7ad9d0308cd96737cd7e2b9c5a83a0ca5b9..970491b41f599949c8aef1479027ad0233ba50f7 100644 --- a/indra/newview/skins/default/xui/da/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/da/floater_buy_land.xml @@ -41,7 +41,7 @@ Prøv at vælge et mindre omrÃ¥de. Det valgte omrÃ¥de har ingen offentlige arealer. </floater.string> <floater.string name="not_owned_by_you"> - Jord, der ejes af en anden bruger er valgt. + Land ejet af en anden beboer valgt. Prøv at vælge et mindre omrÃ¥de. </floater.string> <floater.string name="processing"> diff --git a/indra/newview/skins/default/xui/da/floater_camera.xml b/indra/newview/skins/default/xui/da/floater_camera.xml index 25965596090bd1c414c6fcf95aef7582ac630b5c..37e3307960e5fb9e0cfb7be35f09127d0abdb4a1 100644 --- a/indra/newview/skins/default/xui/da/floater_camera.xml +++ b/indra/newview/skins/default/xui/da/floater_camera.xml @@ -9,6 +9,18 @@ <floater.string name="move_tooltip"> Flyt kamera op og ned, til venstre og højre </floater.string> + <floater.string name="orbit_mode_title"> + Kredsløb + </floater.string> + <floater.string name="pan_mode_title"> + Panorér + </floater.string> + <floater.string name="avatar_view_mode_title"> + Forvalg + </floater.string> + <floater.string name="free_mode_title"> + Se objekt + </floater.string> <panel name="controls"> <joystick_track name="cam_track_stick" tool_tip="Flyt kamera op og ned, til venstre og højre"/> <panel name="zoom" tool_tip="Zoom kamera mod fokus"> @@ -25,7 +37,7 @@ <panel name="buttons"> <button label="" name="orbit_btn" tool_tip="Rotér kamera"/> <button label="" name="pan_btn" tool_tip="Panorér kamera"/> - <button label="" name="avatarview_btn" tool_tip="Se som avatar"/> + <button label="" name="avatarview_btn" tool_tip="Forvalg"/> <button label="" name="freecamera_btn" tool_tip="Se objekt"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/da/floater_event.xml b/indra/newview/skins/default/xui/da/floater_event.xml index 267a36b26ce11c9ada1f8de9f24897cba34be03d..1816144b45457e4f74547fb9b60b82ab5b892970 100644 --- a/indra/newview/skins/default/xui/da/floater_event.xml +++ b/indra/newview/skins/default/xui/da/floater_event.xml @@ -9,6 +9,18 @@ <floater.string name="dont_notify"> Meddel ikke </floater.string> + <floater.string name="moderate"> + Moderat + </floater.string> + <floater.string name="adult"> + Voksent + </floater.string> + <floater.string name="general"> + Generelt + </floater.string> + <floater.string name="unknown"> + Ukendt + </floater.string> <layout_stack name="layout"> <layout_panel name="profile_stack"> <text name="event_name"> @@ -21,12 +33,21 @@ Afholdt af: </text> <text initial_value="(henter)" name="event_runby"/> + <text name="event_date_label"> + Dato: + </text> <text name="event_date"> 10/10/2010 </text> + <text name="event_duration_label"> + Varighed: + </text> <text name="event_duration"> 1 time </text> + <text name="event_covercharge_label"> + Pris: + </text> <text name="event_cover"> Gratis </text> @@ -36,6 +57,9 @@ <text name="event_location" value="SampleParcel, Name Long (145, 228, 26)"/> <text name="rating_label" value="Rating:"/> <text name="rating_value" value="ukendt"/> + <expandable_text name="event_desc"> + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </expandable_text> </layout_panel> <layout_panel name="button_panel"> <button name="create_event_btn" tool_tip="Opret event"/> diff --git a/indra/newview/skins/default/xui/da/floater_god_tools.xml b/indra/newview/skins/default/xui/da/floater_god_tools.xml index ea045538c5913157bcd852f120b5824c0acf5973..6b7f9ef209926131704d5804f2ebedb4ea69ad9e 100644 --- a/indra/newview/skins/default/xui/da/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/da/floater_god_tools.xml @@ -1,6 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="godtools floater" title="GOD TOOLS"> <tab_container name="GodTools Tabs"> + <panel label="Grid" name="grid"> + <button label="Spark alle beboere" label_selected="Spark alle beboere" name="Kick all users"/> + </panel> <panel label="Region" name="region"> <check_box label="Reset Home On Teleport" name="check reset home" tool_tip="NÃ¥r beboere teleporterer væk, sÃ¥ sæt deres hjemmeadresse til deres destinations position."/> </panel> diff --git a/indra/newview/skins/default/xui/da/floater_im.xml b/indra/newview/skins/default/xui/da/floater_im.xml index 2ef8a7ce36b532c5058082632437b51f52da426a..776bc9ab1391fb1a61a3d1cd197e603a4a24db3a 100644 --- a/indra/newview/skins/default/xui/da/floater_im.xml +++ b/indra/newview/skins/default/xui/da/floater_im.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <multi_floater name="im_floater" title="Personlig samtale (IM)"> <string name="only_user_message"> - Du er den eneste deltager i denne samtale + Du er den eneste beboer i denne session. </string> <string name="offline_message"> [FIRST] [LAST] er ikke logget pÃ¥. @@ -31,7 +31,7 @@ Du er blevet "blokeret". </string> <string name="add_session_event"> - Ikke muligt at tilføge brugere til samtale med [RECIPIENT]. + Kunne ikke tilføje beboere til chat session med [RECIPIENT]. </string> <string name="message_session_event"> Ikke muligt at sende din besked til samtalen med [RECIPIENT]. diff --git a/indra/newview/skins/default/xui/da/floater_moveview.xml b/indra/newview/skins/default/xui/da/floater_moveview.xml index 258af489e751e0086a57293750b090f5da10e435..8385924bda908c409405978439430bbfb91afa9b 100644 --- a/indra/newview/skins/default/xui/da/floater_moveview.xml +++ b/indra/newview/skins/default/xui/da/floater_moveview.xml @@ -18,6 +18,15 @@ <string name="fly_back_tooltip"> Flyv baglæns (Tryk pÃ¥ Ned piletast eller S) </string> + <string name="walk_title"> + GÃ¥ + </string> + <string name="run_title"> + Løb + </string> + <string name="fly_title"> + Flyv + </string> <panel name="panel_actions"> <button label="" label_selected="" name="turn left btn" tool_tip="xxx Drej til venstre (Tryk pÃ¥ venstre piletast eller A)"/> <button label="" label_selected="" name="turn right btn" tool_tip="Drej til højre (Tryk pÃ¥ højre piletast eller D)"/> @@ -30,6 +39,5 @@ <button label="" name="mode_walk_btn" tool_tip="GÃ¥ tilstand"/> <button label="" name="mode_run_btn" tool_tip="Løbe tilstand"/> <button label="" name="mode_fly_btn" tool_tip="Flyve tilstand"/> - <button label="Stop flyvning" name="stop_fly_btn" tool_tip="Stop flyvning"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/da/floater_publish_classified.xml b/indra/newview/skins/default/xui/da/floater_publish_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..220042f01543dde8b0ade496f885101329c1b2ff --- /dev/null +++ b/indra/newview/skins/default/xui/da/floater_publish_classified.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="publish_classified" title="Publicerer annoncer"> + <text name="explanation_text"> + Din annonce vil blive vist i en uge fra den dato den publiceres. + +Husk, annonceomkostninger kan ikke refunderes. + </text> + <spinner label="Pris for annonce:" name="price_for_listing" tool_tip="Pris for optagelse af annonce." value="50"/> + <text name="l$_text" value="L$"/> + <text name="more_info_text"> + Mere info (link til hjælp om annoncer) + </text> + <button label="Publicér" name="publish_btn"/> + <button label="Annullér" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/da/floater_tools.xml b/indra/newview/skins/default/xui/da/floater_tools.xml index 2e358111338fcde3a2efdc7b3a3834801378ab9f..a39a7e869830b579ba95b1798ff1ee14f49b3cd5 100644 --- a/indra/newview/skins/default/xui/da/floater_tools.xml +++ b/indra/newview/skins/default/xui/da/floater_tools.xml @@ -63,7 +63,7 @@ <radio_item label="Stræk (Ctrl+Shift)" name="radio stretch"/> <radio_item label="Vælg overflade" name="radio select face"/> </radio_group> - <check_box label="Redigér sammenlænkede dele" name="checkbox edit linked parts"/> + <check_box label="Redigér lænkede" name="checkbox edit linked parts"/> <text name="RenderingCost" tool_tip="Hvis beregnede rendering omkostninger for dette objekt"> þ: [COUNT] </text> @@ -184,12 +184,12 @@ Klik for at: </text> <combo_box name="clickaction"> - <combo_box.item label="Rør (Standard)" name="Touch/grab(default)"/> - <combo_box.item label="Sid pÃ¥ objekt" name="Sitonobject"/> - <combo_box.item label="Køb objekt" name="Buyobject"/> - <combo_box.item label="Betal objekt" name="Payobject"/> - <combo_box.item label="Ã…ben" name="Open"/> - <combo_box.item label="Zoom" name="Zoom"/> + <combo_box.item label="Røre (Standard)" name="Touch/grab(default)"/> + <combo_box.item label="Sidde pÃ¥ objekt" name="Sitonobject"/> + <combo_box.item label="Købe objekt" name="Buyobject"/> + <combo_box.item label="Betale objekt" name="Payobject"/> + <combo_box.item label="Ã…bne" name="Open"/> + <combo_box.item label="Zoome" name="Zoom"/> </combo_box> <check_box label="Til salg:" name="checkbox for sale"/> <combo_box name="sale type"> @@ -206,8 +206,8 @@ <text name="Anyone can:"> Enhver: </text> - <check_box label="Flyt" name="checkbox allow everyone move"/> - <check_box label="Kopi" name="checkbox allow everyone copy"/> + <check_box label="Flytte" name="checkbox allow everyone move"/> + <check_box label="Kopiere" name="checkbox allow everyone copy"/> <text name="Next owner can:"> Næste ejer: </text> @@ -417,21 +417,21 @@ <combo_box.item label="Ingen" name="None"/> <combo_box.item label="Lysintensitet" name="Brightness"/> <combo_box.item label="Mørke" name="Darkness"/> - <combo_box.item label="træårer" name="woodgrain"/> - <combo_box.item label="bark" name="bark"/> - <combo_box.item label="mursten" name="bricks"/> - <combo_box.item label="tern" name="checker"/> - <combo_box.item label="beton" name="concrete"/> - <combo_box.item label="rustik flise" name="crustytile"/> + <combo_box.item label="Træårer" name="woodgrain"/> + <combo_box.item label="Bark" name="bark"/> + <combo_box.item label="Mursten" name="bricks"/> + <combo_box.item label="Tern" name="checker"/> + <combo_box.item label="Beton" name="concrete"/> + <combo_box.item label="Rustik flise" name="crustytile"/> <combo_box.item label="SkÃ¥ret sten" name="cutstone"/> - <combo_box.item label="plader" name="discs"/> - <combo_box.item label="grus" name="gravel"/> - <combo_box.item label="petriskÃ¥l" name="petridish"/> - <combo_box.item label="udvendig beklædning" name="siding"/> - <combo_box.item label="stenflise" name="stonetile"/> - <combo_box.item label="puds" name="stucco"/> - <combo_box.item label="rør" name="suction"/> - <combo_box.item label="væv" name="weave"/> + <combo_box.item label="Plader" name="discs"/> + <combo_box.item label="Grus" name="gravel"/> + <combo_box.item label="PetriskÃ¥l" name="petridish"/> + <combo_box.item label="Udvendig beklædning" name="siding"/> + <combo_box.item label="Stenflise" name="stonetile"/> + <combo_box.item label="Puds" name="stucco"/> + <combo_box.item label="Rør" name="suction"/> + <combo_box.item label="Væv" name="weave"/> </combo_box> <text name="tex scale"> Gentagelser pÃ¥ overflade @@ -440,8 +440,8 @@ <check_box label="Vend" name="checkbox flip s"/> <spinner label="Lodret (V)" name="TexScaleV"/> <check_box label="Vend" name="checkbox flip t"/> - <spinner label="RotationËš" left="125" name="TexRot" width="55"/> - <spinner label="Gentagelser pr. meter" left="125" name="rptctrl" width="55"/> + <spinner label="RotationËš"/> + <spinner label="Gentagelser pr. m."/> <button label="Gem" label_selected="Gem" left_delta="62" name="button apply"/> <text name="tex offset"> Tekstur offset @@ -488,7 +488,7 @@ GrÃ¥ = Offentligt ejet"/> <button label="Opdel" label_selected="Opdel" name="button subdivide land"/> <button label="Saml" label_selected="Saml" name="button join land"/> <text name="label_parcel_trans"> - Transaktioner for land + Transaktioner - land </text> <button label="Køb land" label_selected="Køb land" name="button buy land"/> <button label="Efterlad land" label_selected="Efterlad land" name="button abandon land"/> diff --git a/indra/newview/skins/default/xui/da/floater_tos.xml b/indra/newview/skins/default/xui/da/floater_tos.xml index 6f61d9b310bb77f40c6e2dbf31cc4e4fb0cb23be..c87fe8162f2b129b7feffae563fa0fb1b2197688 100644 --- a/indra/newview/skins/default/xui/da/floater_tos.xml +++ b/indra/newview/skins/default/xui/da/floater_tos.xml @@ -2,9 +2,9 @@ <floater name="modal container" title=""> <button label="Fortsæt" label_selected="Fortsæt" name="Continue"/> <button label="Annullér" label_selected="Annullér" name="Cancel"/> - <check_box label="Jeg accepterer vilkÃ¥rene for brug af tjenesten" name="agree_chk"/> + <check_box label="Jeg er enig med "Terms of Service and Privacy Policy"" name="agree_chk"/> <text name="tos_heading"> - Læs venligst følgende servicebetingelser grundigt. For at kunne logge pÃ¥ [SECOND_LIFE], skal du acceptere aftalen. + Læs venligst følgende "Terms of Service and Privacy Policy" grundigt. For at fortsætte med at logge pÃ¥ [SECOND_LIFE], skal du acceptere aftale. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/da/floater_water.xml b/indra/newview/skins/default/xui/da/floater_water.xml index 103feaa879454316f284257f4883cd7cbcdb772c..aedd1b442c6419b9db8cd7d50fbe2af1fc59cce4 100644 --- a/indra/newview/skins/default/xui/da/floater_water.xml +++ b/indra/newview/skins/default/xui/da/floater_water.xml @@ -7,7 +7,7 @@ <button label="Gem" label_selected="Gem" name="WaterSavePreset"/> <button label="Slet" label_selected="Slet" name="WaterDeletePreset"/> <tab_container name="Water Tabs"> - <panel label="Opsætning" name="Settings"> + <panel label="INDSTILLINGER" name="Settings"> <text name="BHText"> VandtÃ¥ge farve </text> @@ -65,7 +65,7 @@ <button label="?" name="WaterBlurMultiplierHelp"/> <slider label="" name="WaterBlurMult"/> </panel> - <panel label="Billede" name="Waves"> + <panel label="BILLEDE" name="Waves"> <text name="BHText"> Retning for store bølger </text> diff --git a/indra/newview/skins/default/xui/da/floater_windlight_options.xml b/indra/newview/skins/default/xui/da/floater_windlight_options.xml index 4786609b53930b739ba3497ab4e9e6f636dd4d06..56f94b24e9a9625df222e776b2856426f658f9aa 100644 --- a/indra/newview/skins/default/xui/da/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/da/floater_windlight_options.xml @@ -8,7 +8,7 @@ <button label="Slet" label_selected="Slet" name="WLDeletePreset" /> <button label="Dags cyklus" label_selected="Dags cyklus" name="WLDayCycleMenuButton" /> <tab_container name="WindLight Tabs"> - <panel label="Atmosfære" name="Atmosphere"> + <panel label="ATMOSFÆRE" name="Atmosphere"> <text name="BHText"> BlÃ¥ - horisont </text> @@ -75,7 +75,7 @@ <button label="?" name="WLMaxAltitudeHelp" /> <slider label="" name="WLMaxAltitude" /> </panel> - <panel label="Lys" name="Lighting"> + <panel label="LYS" name="Lighting"> <text name="SLCText"> Sol/MÃ¥ne farve </text> @@ -143,7 +143,7 @@ <button label="?" name="WLStarBrightnessHelp" /> <slider label="" name="WLStarAlpha" /> </panel> - <panel label="Skyer" name="Clouds"> + <panel label="SKYER" name="Clouds"> <text name="WLCloudColorText"> Farve pÃ¥ skyer </text> diff --git a/indra/newview/skins/default/xui/da/floater_world_map.xml b/indra/newview/skins/default/xui/da/floater_world_map.xml index 7d4a81d65565e6068e6e5d49d543b5cb7c398fc7..898d291f1c9db5e5d16ce824351a56b35b240710 100644 --- a/indra/newview/skins/default/xui/da/floater_world_map.xml +++ b/indra/newview/skins/default/xui/da/floater_world_map.xml @@ -5,30 +5,66 @@ Forklaring </text> </panel> - <panel> + <panel name="layout_panel_2"> + <button name="Show My Location" tool_tip="Centrer kortet pÃ¥ din avatars lokation"/> <text name="me_label"> Mig </text> <text name="person_label"> Person </text> + <text name="infohub_label"> + Infohub + </text> + <text name="land_sale_label"> + Land til salg + </text> <text name="by_owner_label"> efter ejer </text> <text name="auction_label"> land auktion </text> + <button name="Go Home" tool_tip="Teleportér til min hjemmelokation"/> + <text name="Home_label"> + Hjem + </text> + <text name="events_label"> + Events: + </text> <text name="pg_label"> Generelt </text> + <check_box initial_value="sandt" name="event_mature_chk"/> <text name="mature_label"> Moderat </text> <text name="adult_label"> - Voksen + Voksent </text> </panel> - <panel> + <panel name="layout_panel_3"> + <text name="find_on_map_label"> + Find pÃ¥ kort + </text> + </panel> + <panel name="layout_panel_4"> + <combo_box label="Venner online" name="friend combo" tool_tip="Vis venner pÃ¥ kortet"> + <combo_box.item label="Mine venner som er online" name="item1"/> + </combo_box> + <combo_box label="Mine landemærker" name="landmark combo" tool_tip="Landemærke der skal vises pÃ¥ kort"> + <combo_box.item label="Mine landemærker" name="item1"/> + </combo_box> + <search_editor label="Regioner efter navn" name="location" tool_tip="Indtast navn pÃ¥ en region"/> + <button label="Find" name="DoSearch" tool_tip="Led efter region"/> <button name="Clear" tool_tip="Fjern søgelinier og nulstil kort"/> + <button label="Teleport" name="Teleport" tool_tip="Teleportér til valgte sted"/> + <button label="Kopiér SLurl" name="copy_slurl" tool_tip="Kopierer nuværende lokation som SLurl der kan sendes pÃ¥ web."/> + <button label="Vis valgte" name="Show Destination" tool_tip="Centrér kortet pÃ¥ valgte lokation"/> + </panel> + <panel name="layout_panel_5"> + <text name="zoom_label"> + Zoom + </text> </panel> </floater> diff --git a/indra/newview/skins/default/xui/da/menu_mini_map.xml b/indra/newview/skins/default/xui/da/menu_mini_map.xml index 667638c52918b271080e7862cf4c1376af9009bf..38486cdecb38ac4afa10322f85f37942ca0a32e8 100644 --- a/indra/newview/skins/default/xui/da/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/da/menu_mini_map.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom tæt" name="Zoom Close"/> <menu_item_call label="Zoom mellem" name="Zoom Medium"/> <menu_item_call label="Zoom langt" name="Zoom Far"/> <menu_item_check label="Rotér kort" name="Rotate Map"/> - <menu_item_call label="Stop Tracking" name="Stop Tracking"/> + <menu_item_call label="Fjern ref." name="Stop Tracking"/> <menu_item_call label="Verdenskort" name="World Map"/> </menu> diff --git a/indra/newview/skins/default/xui/da/menu_object.xml b/indra/newview/skins/default/xui/da/menu_object.xml index 232f3f64e28185e1b2aa3f3351538cd5abf7335f..c98a07e140c280eae955c462eac6d4a5c19c0f29 100644 --- a/indra/newview/skins/default/xui/da/menu_object.xml +++ b/indra/newview/skins/default/xui/da/menu_object.xml @@ -5,6 +5,7 @@ <menu_item_call label="Byg" name="Build"/> <menu_item_call label="Ã…ben" name="Open"/> <menu_item_call label="Sid her" name="Object Sit"/> + <menu_item_call label="StÃ¥ op" name="Object Stand Up"/> <menu_item_call label="Objekt profil" name="Object Inspect"/> <menu_item_call label="Zoom In" name="Zoom In"/> <context_menu label="Tag pÃ¥ â–¶" name="Put On"> diff --git a/indra/newview/skins/default/xui/da/menu_profile_overflow.xml b/indra/newview/skins/default/xui/da/menu_profile_overflow.xml index 9609b424a193870ff990289a32d7b73b9746e106..6745007c996451c9210851f99518d2883caa3f40 100644 --- a/indra/newview/skins/default/xui/da/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/da/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Kort" name="show_on_map"/> <menu_item_call label="Betal" name="pay"/> <menu_item_call label="Del" name="share"/> <menu_item_call label="Blokér" name="block"/> diff --git a/indra/newview/skins/default/xui/da/menu_viewer.xml b/indra/newview/skins/default/xui/da/menu_viewer.xml index 18ad7cfffa0c39eba70be40c803ef852a7e3a97d..7e7d1b190a71412d76017da555c92bf6b6969bf9 100644 --- a/indra/newview/skins/default/xui/da/menu_viewer.xml +++ b/indra/newview/skins/default/xui/da/menu_viewer.xml @@ -36,7 +36,7 @@ <menu_item_call label="Mit land" name="My Land"/> <menu label="Vis" name="LandShow"> <menu_item_check label="Bevægelses kontrol" name="Movement Controls"/> - <menu_item_check label="Vis kontroller" name="Camera Controls"/> + <menu_item_check label="Kontroller" name="Camera Controls"/> <menu_item_check label="'Ingen adgang' markering" name="Ban Lines"/> <menu_item_check label="Pejlelys" name="beacons"/> <menu_item_check label="Parcel skel" name="Property Lines"/> @@ -75,7 +75,7 @@ <menu_item_call label="Vælg alt" name="Select All"/> <menu_item_call label="Fravælg" name="Deselect"/> </menu> - <menu_item_call label="Sammenkæde" name="Link"/> + <menu_item_call label="Sammenkæd" name="Link"/> <menu_item_call label="Adskil" name="Unlink"/> <menu_item_check label="Redigér sammekædede objekter" name="Edit Linked Parts"/> <menu_item_call label="Fokusér pÃ¥ valgte" name="Focus on Selection"/> @@ -88,10 +88,10 @@ <menu_item_call label="Opdater ændringer i indhold til objekt" name="Save Object Back to Object Contents"/> </menu> <menu label="Scripts" name="Scripts"> - <menu_item_call label="Rekompilér scripts (Mono)" name="Mono"/> + <menu_item_call label="Genoversæt scripts (Mono)" name="Mono"/> <menu_item_call label="Genoversæt scripts (LSL)" name="LSL"/> <menu_item_call label="Genstart scripts" name="Reset Scripts"/> - <menu_item_call label="sæt scripts til "Running"" name="Set Scripts to Running"/> + <menu_item_call label="Sæt scripts til "Running"" name="Set Scripts to Running"/> <menu_item_call label="Sæt scripts til "Not Running"" name="Set Scripts to Not Running"/> </menu> <menu label="Valg" name="Options"> @@ -111,7 +111,7 @@ <menu label="Vis lænkede dele" name="Select Linked Parts"> <menu_item_call label="Vælg næste del" name="Select Next Part"/> <menu_item_call label="Vælg forrige del" name="Select Previous Part"/> - <menu_item_call label="Inkludér næste valg" name="Include Next Part"/> + <menu_item_call label="Inkludér næste del" name="Include Next Part"/> <menu_item_call label="Inkludér forrige del" name="Include Previous Part"/> </menu> </menu> @@ -128,7 +128,7 @@ <menu_item_check label="Begræns valg afstand" name="Limit Select Distance"/> <menu_item_check label="Fjern kamerabegrænsninger" name="Disable Camera Distance"/> <menu_item_check label="Højopløsningsfoto" name="HighResSnapshot"/> - <menu_item_check label="Lydløse foto's til disk" name="QuietSnapshotsToDisk"/> + <menu_item_check label="Lydløse fotos til disk" name="QuietSnapshotsToDisk"/> <menu_item_check label="Komprimér fotos til disk" name="CompressSnapshotsToDisk"/> <menu label="Værktøjer til ydelse" name="Performance Tools"> <menu_item_call label="Lag meter" name="Lag Meter"/> @@ -149,7 +149,7 @@ <menu_item_check label="Alpha" name="Alpha"/> <menu_item_check label="Træer" name="Tree"/> <menu_item_check label="Avatarer" name="Character"/> - <menu_item_check label="SurfacePath" name="SurfacePath"/> + <menu_item_check label="Overflade" name="SurfacePath"/> <menu_item_check label="Himmel" name="Sky"/> <menu_item_check label="Vand" name="Water"/> <menu_item_check label="Jord" name="Ground"/> @@ -168,7 +168,7 @@ <menu_item_check label="TÃ¥ge" name="Fog"/> <menu_item_check label="Fleksible objekter" name="Flexible Objects"/> </menu> - <menu_item_check label="Kør flere trÃ¥de" name="Run Multiple Threads"/> + <menu_item_check label="Kør flere 'threats'" name="Run Multiple Threads"/> <menu_item_call label="Tøm gruppe cache" name="ClearGroupCache"/> <menu_item_check label="Muse udjævning" name="Mouse Smoothing"/> <menu label="Shortcuts" name="Shortcuts"> diff --git a/indra/newview/skins/default/xui/da/notifications.xml b/indra/newview/skins/default/xui/da/notifications.xml index 9193bd43e8e82d171afd6e8bdc92b6749c8f3e8f..30e19ee901dcc3209c610cec2a016840cef60953 100644 --- a/indra/newview/skins/default/xui/da/notifications.xml +++ b/indra/newview/skins/default/xui/da/notifications.xml @@ -107,7 +107,7 @@ Vælg kun en genstand, og prøv igen. </notification> <notification name="FriendsAndGroupsOnly"> 'Ikke-venner' vil ikke vide, at du har valgt at ignorere deres opkald og personlige beskeder (IM) - <usetemplate name="okbutton" yestext="Ja"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="GrantModifyRights"> At give redigerings rettigheder til en anden beboer, giver dem mulighed for at ændre, slette eller tage ALLE genstande, du mÃ¥tte have i verden. Vær MEGET forsigtig nÃ¥r uddeler denne tilladelse. @@ -228,7 +228,7 @@ Er du sikker pÃ¥ at du vil fortsætte? Cache vil blive tømt ved næste genstart af [APP_NAME]. </notification> <notification name="CacheWillBeMoved"> - Cache vil blive flyttet ved næste genstart af [APP_NAME]. + Cache vil blive fjernet ved næste genstart af [APP_NAME]. Note: This will clear the cache. </notification> <notification name="ChangeConnectionPort"> @@ -243,9 +243,9 @@ Indtast venligst navn pÃ¥ region i Start lokation feltet eller vælg "Min s <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="UnsupportedHardware"> - Bare sÃ¥ du ved det, din computer opfylder ikke minimumskravene til [APP_NAME]. Du kan opleve dÃ¥rlig hastighed. Desværre kan [SUPPORT_SITE] ikke give teknisk support til ikke-supporterede konfigurationer. -MINSPECS -Besøg [_URL] for mere information? + Din computer opfylder ikke minimumskravene til [APP_NAME]. Du kan risikere nedsat hastighed. Desværre kan [SUPPORT_SITE] ikke tilbyde teknisk support til konfigurationer der ikke er understøttet. + +Besøg [_URL] for yderligere information? <usetemplate ignoretext="Din computer hardware understøttes ikke" name="okcancelignore" notext="No" yestext="Yes"/> </notification> <notification name="UnknownGPU"> @@ -525,6 +525,10 @@ Download til dit Program bibliotek? <notification name="ReturnToOwner"> <usetemplate ignoretext="Bekræft før objekter returneres til deres ejere" name="okcancelignore" notext="Cancel" yestext="OK"/> </notification> + <notification name="ConfirmKick"> + Er du SIKKER pÃ¥ at du vil sparke alle beboere ud? + <usetemplate name="okcancelbuttons" notext="Cancel" yestext="Spark alle beboere ud"/> + </notification> <notification name="MuteLinden"> Beklager, men du kan ikke blokere en Linden. </notification> @@ -547,6 +551,15 @@ Chat og personlige beskeder vil blive skjult. Personlige beskeder vil fÃ¥ din &a Du er oppe pÃ¥ det maksimale antal grupper. Forlad venligst en gruppe inden du melder dig ind i enndnu en gruppe eller opretter en ny. <usetemplate name="okbutton" yestext="OK"/> </notification> + <notification name="KickUser"> + Spark beboere ud med hvilken besked? + </notification> + <notification name="FreezeUser"> + Frys beboeren med hvilken besked? + </notification> + <notification name="UnFreezeUser"> + Fjern frysning af beboeren med hvilken besked? + </notification> <notification name="OfferTeleport"> <form name="form"> <input name="message"> @@ -556,6 +569,9 @@ Chat og personlige beskeder vil blive skjult. Personlige beskeder vil fÃ¥ din &a <button name="Cancel" text="Annullér"/> </form> </notification> + <notification name="OfferTeleportFromGod"> + Tilkald beboer til din lokation? + </notification> <notification name="TeleportFromLandmark"> Er du sikker pÃ¥ at du vil teleportere til <nolink>[LOCATION]</nolink>? <usetemplate ignoretext="Bekræft at jeg vil teleportere til et landemærke" name="okcancelignore" notext="Cancel" yestext="Teleport"/> @@ -568,6 +584,13 @@ Chat og personlige beskeder vil blive skjult. Personlige beskeder vil fÃ¥ din &a Teleport til [CLASSIFIED]? <usetemplate ignoretext="Bekræft at du ønsker at teleportere til lokation in annoncer" name="okcancelignore" notext="Annullér" yestext="Teleport"/> </notification> + <notification label="Change Linden Estate" name="ChangeLindenEstate"> + Du er i færd med at ændre et Linden ejet estate (mainland, teeen grid, orientation etc.). + +Dette er EKSTREMT FARLIGT da det kan ændre beboernes oplevelse fundamentalt. PÃ¥ mainland vil dette betyde ændring af tusinder af regioner og fÃ¥ spaceserveren til at kløjs i det. + +Fortsæt? + </notification> <notification name="RegionEntryAccessBlocked"> Du har ikke adgang til denne region pÃ¥ grund af din valgte indholdsrating. Dette kan skyldes manglende validering af din alder. @@ -1273,14 +1296,6 @@ Tillad denne anmodning? <button name="Ignore" text="Ignorér"/> </form> </notification> - <notification name="ScriptToast"> - [FIRST] [LAST]'s '[TITLE]' ønsker bruger-input. - <form name="form"> - <button name="Open" text="Ã…ben dialog"/> - <button name="Ignore" text="Ignorér"/> - <button name="Block" text="Blokér"/> - </form> - </notification> <notification name="BuyLindenDollarSuccess"> Tak for din betaling! @@ -1407,7 +1422,7 @@ De vil blive blokeret nogle fÃ¥ sekunder af sikkerhedsmæssige Ã¥rsager. </notification> <notification name="ConfirmCloseAll"> Er du sikker pÃ¥ at du vil lukke alle personlige samtaler (IM)? - <usetemplate name="okcancelignore" notext="Annullér" yestext="OK"/> + <usetemplate ignoretext="Bekræft før du lukker alle IMer" name="okcancelignore" notext="Annullér" yestext="OK"/> </notification> <notification name="AttachmentSaved"> Vedhæng er blevet gemt. diff --git a/indra/newview/skins/default/xui/da/panel_classified_info.xml b/indra/newview/skins/default/xui/da/panel_classified_info.xml index 6eba024981975c0abdeef25f8a022b15dd9a1864..0bb52b8fa6bed7f1e56755a1677dbe08c88588f8 100644 --- a/indra/newview/skins/default/xui/da/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/da/panel_classified_info.xml @@ -3,16 +3,46 @@ <panel.string name="l$_price"> L$[PRICE] </panel.string> + <panel.string name="click_through_text_fmt"> + [TELEPORT] teleport, [MAP] kort, [PROFILE] profil + </panel.string> + <panel.string name="date_fmt"> + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + </panel.string> + <panel.string name="auto_renew_on"> + Aktiv + </panel.string> + <panel.string name="auto_renew_off"> + Ikke aktiv + </panel.string> <text name="title" value="Annonce info"/> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> <text_editor name="classified_name" value="[name]"/> + <text name="classified_location_label" value="Sted:"/> <text_editor name="classified_location" value="[loading...]"/> + <text name="content_type_label" value="Indholdsype:"/> <text_editor name="content_type" value="[content type]"/> + <text name="category_label" value="Kategori:"/> <text_editor name="category" value="[category]"/> - <check_box label="Forny automatisk hver uge" name="auto_renew"/> - <text_editor name="price_for_listing" tool_tip="Pris for optagelse."/> + <text name="creation_date_label" value="Oprettet d.:"/> + <text_editor name="creation_date" tool_tip="Oprettet d." value="[date]"/> + <text name="price_for_listing_label" value="Pris for optagelse i lister:"/> + <text_editor name="price_for_listing" tool_tip="Pris for optagelse." value="[price]"/> + <layout_stack name="descr_stack"> + <layout_panel name="clickthrough_layout_panel"> + <text name="click_through_label" value="Klik:"/> + <text_editor name="click_through_text" tool_tip="Klik gennem data" value="[clicks]"/> + </layout_panel> + <layout_panel name="price_layout_panel"> + <text name="auto_renew_label" value="Forny automatisk:"/> + <text name="auto_renew" value="Aktiv"/> + </layout_panel> + <layout_panel name="descr_layout_panel"> + <text name="classified_desc_label" value="Beskrivelse:"/> <text_editor name="classified_desc" value="[description]"/> + </layout_panel> + </layout_stack> </panel> </scroll_container> <panel name="buttons"> diff --git a/indra/newview/skins/default/xui/da/panel_edit_classified.xml b/indra/newview/skins/default/xui/da/panel_edit_classified.xml index 18689105aec5d7cc05fc4d882bbe21e470b8147a..7fb2f930fa8deb759155b68a99dd1bdbda80fbb2 100644 --- a/indra/newview/skins/default/xui/da/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/da/panel_edit_classified.xml @@ -3,12 +3,20 @@ <panel.string name="location_notice"> (vil blive opdateret efter gemning) </panel.string> + <string name="publish_label"> + Publicér + </string> + <string name="save_label"> + Gem + </string> <text name="title"> Rediger annonce </text> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <icon label="" name="edit_icon" tool_tip="Klik for at forstørre billede"/> + <panel name="snapshot_panel"> + <icon label="" name="edit_icon" tool_tip="Klik for at vælge et billede"/> + </panel> <text name="Name:"> Titel: </text> @@ -22,12 +30,19 @@ henter... </text> <button label="Sæt til nuværende lokation" name="set_to_curr_location_btn"/> + <text name="category_label" value="Kategori:"/> + <text name="content_type_label" value="Indholdstype:"/> + <icons_combo_box label="Generelt" name="content_type"> + <icons_combo_box.item label="Moderat" name="mature_ci" value="Voksent"/> + <icons_combo_box.item label="Generelt" name="pg_ci" value="PG"/> + </icons_combo_box> + <text name="price_for_listing_label" value="Pris for optagelse:"/> <spinner label="L$" name="price_for_listing" tool_tip="Pris for optagelse." value="50"/> <check_box label="Forny automatisk hver uge" name="auto_renew"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Gem" name="save_changes_btn"/> + <button label="[LABEL]" name="save_changes_btn"/> <button label="Annullér" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/da/panel_edit_pick.xml b/indra/newview/skins/default/xui/da/panel_edit_pick.xml index 41db2be5e8db6e3653d80a777822caa8cc4adfed..dcc4e7a4b6d68f4c22f26f8cbcf441902f1c6d3b 100644 --- a/indra/newview/skins/default/xui/da/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/da/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Redigér Pick" name="panel_edit_pick"> + <panel.string name="location_notice"> + (vil blive opdateret ved gemning) + </panel.string> <text name="title"> Redigér favorit </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Gem [WHAT]" name="save_changes_btn"/> + <button label="Gem favorit Pick" name="save_changes_btn"/> <button label="Annullér" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/da/panel_im_control_panel.xml b/indra/newview/skins/default/xui/da/panel_im_control_panel.xml index 1ba6b8b97f5ddf583975a1b684b2dc328c4e5446..be9bfab1f6327b27a082d0ba1265f36dbb086325 100644 --- a/indra/newview/skins/default/xui/da/panel_im_control_panel.xml +++ b/indra/newview/skins/default/xui/da/panel_im_control_panel.xml @@ -13,7 +13,7 @@ <layout_panel name="share_btn_panel"> <button label="Del" name="share_btn"/> </layout_panel> - <layout_panel name="share_btn_panel"> + <layout_panel name="pay_btn_panel"> <button label="Betal" name="pay_btn"/> </layout_panel> <layout_panel name="call_btn_panel"> diff --git a/indra/newview/skins/default/xui/da/panel_landmarks.xml b/indra/newview/skins/default/xui/da/panel_landmarks.xml index 8adce2c819ab9ae5e1024d087ad79f623aebeebb..9a0a2fb207e3152f616e254720e50d2b18a14777 100644 --- a/indra/newview/skins/default/xui/da/panel_landmarks.xml +++ b/indra/newview/skins/default/xui/da/panel_landmarks.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="Landmarks"> <accordion name="landmarks_accordion"> - <accordion_tab name="tab_favorites" title="Favorites bjælke"/> + <accordion_tab name="tab_favorites" title="Favoritter"/> <accordion_tab name="tab_landmarks" title="Mine landmærker"/> <accordion_tab name="tab_inventory" title="Min beholdning"/> <accordion_tab name="tab_library" title="Bibliotek"/> diff --git a/indra/newview/skins/default/xui/da/panel_main_inventory.xml b/indra/newview/skins/default/xui/da/panel_main_inventory.xml index ac3a2844db2f252bc0df3279416a7a90c54a175c..16bd22c21a422d7660b7861ee9376d982ca32333 100644 --- a/indra/newview/skins/default/xui/da/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/da/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Ting" name="main inventory panel"> - <panel.string name="Title"> - Ting + <panel.string name="ItemcountFetching"> + Henter [ITEM_COUNT] Genstande... [FILTER] </panel.string> - <filter_editor label="Filter" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Alle ting" name="All Items"/> - <inventory_panel label="Nye ting" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Vis flere valgmuligheder"/> - <button name="add_btn" tool_tip="Opret ny genstand"/> - <dnd_button name="trash_btn" tool_tip="Fjern valgt genstand"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] Genstande [FILTER] + </panel.string> + <text name="ItemcountText"> + Genstande: + </text> <menu_bar name="Inventory Menu"> <menu label="Filer" name="File"> <menu_item_call label="Ã…ben" name="Open"/> @@ -61,4 +57,14 @@ <menu_item_check label="System-mapper i toppen" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filter" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="Alle ting" name="All Items"/> + <inventory_panel label="Nye ting" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Vis flere valgmuligheder"/> + <button name="add_btn" tool_tip="Opret ny genstand"/> + <dnd_button name="trash_btn" tool_tip="Fjern valgt genstand"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/da/panel_navigation_bar.xml b/indra/newview/skins/default/xui/da/panel_navigation_bar.xml index 79f7e81b3561af4f05dd698555f7bc3450cbd852..2ee87433a462b06caaaa25ed1bba9858ea358457 100644 --- a/indra/newview/skins/default/xui/da/panel_navigation_bar.xml +++ b/indra/newview/skins/default/xui/da/panel_navigation_bar.xml @@ -11,7 +11,7 @@ </panel> <favorites_bar name="favorite" tool_tip="Træk landemærker hertil for at fÃ¥ hurtig adgang til dine favoritsteder i Second Life!"> <label name="favorites_bar_label" tool_tip="Træk landemærker hertil for at fÃ¥ hurtig adgang til dine favoritsteder i Second Life!"> - Favorit bar + Favoritter </label> <chevron_button name=">>" tool_tip="Søg mere af mine favoritter"/> </favorites_bar> diff --git a/indra/newview/skins/default/xui/da/panel_nearby_media.xml b/indra/newview/skins/default/xui/da/panel_nearby_media.xml index 32905a2deb50024e59e989b02b63e557028945a0..7a8b5a6389315704a91caebaf75894c5ff4ae553 100644 --- a/indra/newview/skins/default/xui/da/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/da/panel_nearby_media.xml @@ -19,10 +19,17 @@ <button label="Mere >>" label_selected="Mindre <<" name="more_less_btn" tool_tip="Avanceret opsætning"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + Media i nærheden + </text> + <text name="show"> + Vis: + </text> <combo_box name="show_combo"> <combo_box.item label="Overalt" name="All"/> <combo_box.item label="PÃ¥ dette sted" name="WithinParcel"/> <combo_box.item label="Udenfor dette sted" name="OutsideParcel"/> + <combo_box.item label="PÃ¥ andre avatarer" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="I nærheden" name="media_proximity"/> @@ -31,7 +38,7 @@ <scroll_list.columns label="Navn" name="media_name"/> <scroll_list.columns label="Debug" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> <button name="stop_btn" tool_tip="Stop valgte medie"/> diff --git a/indra/newview/skins/default/xui/da/panel_people.xml b/indra/newview/skins/default/xui/da/panel_people.xml index ecfac67b1a8b62ba9f8dec73109971cc4f336e89..93aac7d08b409e8097c2fa6a61d2ac103c5a56e4 100644 --- a/indra/newview/skins/default/xui/da/panel_people.xml +++ b/indra/newview/skins/default/xui/da/panel_people.xml @@ -7,6 +7,8 @@ <string name="no_friends" value="Ingen venner"/> <string name="people_filter_label" value="Filtrér personer"/> <string name="groups_filter_label" value="Filtrér grupper"/> + <string name="no_filtered_groups_msg" value="[secondlife:///app/search/groups Try finding the group in search?]"/> + <string name="no_groups_msg" value="[secondlife:///app/search/groups Try searching for some groups to join.]"/> <filter_editor label="Filtrér" name="filter_input"/> <tab_container name="tabs"> <panel label="TÆT PÃ…" name="nearby_panel"> diff --git a/indra/newview/skins/default/xui/da/panel_place_profile.xml b/indra/newview/skins/default/xui/da/panel_place_profile.xml index c1ed95f58027d2a6d7f005d1ff774d1df99e7396..05ef22328f49a213e25bc7cb2669f6aa837fe33a 100644 --- a/indra/newview/skins/default/xui/da/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/da/panel_place_profile.xml @@ -48,10 +48,63 @@ <text name="owner_label" value="Ejer:"/> <text name="maturity_value" value="ukendt"/> <accordion name="advanced_info_accordion"> - <accordion_tab name="parcel_characteristics_tab" title="Parcel"/> - <accordion_tab name="region_information_tab" title="Region"/> - <accordion_tab name="estate_information_tab" title="Estate"/> - <accordion_tab name="sales_tab" title="Til salg"/> + <accordion_tab name="parcel_characteristics_tab" title="Parcel"> + <panel name="parcel_characteristics_panel"> + <text name="rating_label" value="Rating:"/> + <text name="rating_value" value="ukendt"/> + <text name="voice_label" value="Stemme:"/> + <text name="voice_value" value="Til"/> + <text name="fly_label" value="Flyv:"/> + <text name="fly_value" value="Til"/> + <text name="push_label" value="Skub:"/> + <text name="push_value" value="Fra"/> + <text name="build_label" value="Bygge:"/> + <text name="build_value" value="Til"/> + <text name="scripts_label" value="Scripts:"/> + <text name="scripts_value" value="Til"/> + <text name="damage_label" value="Skade:"/> + <text name="damage_value" value="Fra"/> + <button label="Om land" name="about_land_btn"/> + </panel> + </accordion_tab> + <accordion_tab name="region_information_tab" title="Region"> + <panel name="region_information_panel"> + <text name="region_name_label" value="Region:"/> + <text name="region_name" value="Mooseland"/> + <text name="region_type_label" value="Type:"/> + <text name="region_type" value="Moose"/> + <text name="region_rating_label" value="Rating:"/> + <text name="region_rating" value="Voksent"/> + <text name="region_owner_label" value="Ejer:"/> + <text name="region_owner" value="moose Van Moose"/> + <text name="region_group_label" value="Gruppe:"/> + <text name="region_group"> + The Mighty Moose of mooseville soundvillemoose + </text> + <button label="Region/Estate" name="region_info_btn"/> + </panel> + </accordion_tab> + <accordion_tab name="estate_information_tab" title="Estate"> + <panel name="estate_information_panel"> + <text name="estate_name_label" value="Estate:"/> + <text name="estate_rating_label" value="Rating:"/> + <text name="estate_owner_label" value="Ejer:"/> + <text name="covenant_label" value="Regler:"/> + </panel> + </accordion_tab> + <accordion_tab name="sales_tab" title="Til salg"> + <panel name="sales_panel"> + <text name="sales_price_label" value="Pris:"/> + <text name="area_label" value="Areal:"/> + <text name="traffic_label" value="Trafik:"/> + <text name="primitives_label" value="Prims:"/> + <text name="parcel_scripts_label" value="Scripts:"/> + <text name="terraform_limits_label" value="Begræns terrænredigering:"/> + <text name="subdivide_label" value="Opdel/saml mulighed:"/> + <text name="resale_label" value="Mulighed for videresalg:"/> + <text name="sale_to_label" value="Til salg til:"/> + </panel> + </accordion_tab> </accordion> </panel> </scroll_container> diff --git a/indra/newview/skins/default/xui/da/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/da/panel_preferences_advanced.xml index 30665dfa0ea531cb6b691a180583a453682d87fb..1570960745b73dc7ac8f1ead8ec7e935654c2026 100644 --- a/indra/newview/skins/default/xui/da/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/da/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + Midterste mus + </panel.string> <slider label="Synsvinkel" name="camera_fov"/> <slider label="Distance" name="camera_offset_scale"/> <text name="heading2"> @@ -15,7 +18,7 @@ <check_box label="Tast-tast-hold for at løbe" name="tap_tap_hold_to_run"/> <check_box label="Bevæg avatarlæber nÃ¥r der tales" name="enable_lip_sync"/> <check_box label="Talebobler" name="bubble_text_chat"/> - <slider label="Gennemsigtighed" name="bubble_chat_opacity"/> + <slider label="Synlighed" name="bubble_chat_opacity"/> <color_swatch name="background" tool_tip="Vælg farve for talebobler"/> <check_box label="Vis script fejl i:" name="show_script_errors"/> <radio_group name="show_location"> diff --git a/indra/newview/skins/default/xui/da/panel_preferences_chat.xml b/indra/newview/skins/default/xui/da/panel_preferences_chat.xml index 3345bceff741a9b503c7a937ef6910e794a0da9c..df97193598ed98735979abd176b7841f2c684fa7 100644 --- a/indra/newview/skins/default/xui/da/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/da/panel_preferences_chat.xml @@ -1,10 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Tekst chat" name="chat"> + <text name="font_size"> + Skriftstørrelse: + </text> <radio_group name="chat_font_size"> <radio_item label="Lille" name="radio" value="0"/> <radio_item label="Mellem" name="radio2" value="1"/> <radio_item label="Stor" name="radio3" value="2"/> </radio_group> + <text name="font_colors"> + Skriftfarve: + </text> <color_swatch label="Dig" name="user"/> <text name="text_box1"> Dig @@ -39,6 +45,12 @@ </text> <check_box initial_value="true" label="Afspil skrive animation ved chat" name="play_typing_animation"/> <check_box label="Send e-mail til mig nÃ¥r jeg modtager IM og er offline" name="send_im_to_email"/> + <text name="show_ims_in_label"> + Vis IM'er i: + </text> + <text name="requires_restart_label"> + (kræver genstart) + </text> <radio_group name="chat_window" tool_tip="Vise dine personlige beskeder i separate vinduer, eller i ét vindue med flere faner (Kræver genstart)"> <radio_item label="Separate vinduer" name="radio" value="0"/> <radio_item label="Faner" name="radio2" value="1"/> diff --git a/indra/newview/skins/default/xui/da/panel_preferences_general.xml b/indra/newview/skins/default/xui/da/panel_preferences_general.xml index f2c59f3d81f5be842989da60f8e8e857b1cb9847..e70cb4826264dc892765c727f2bd013660ced4e7 100644 --- a/indra/newview/skins/default/xui/da/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/da/panel_preferences_general.xml @@ -23,7 +23,7 @@ <text name="maturity_desired_textbox"/> <combo_box name="maturity_desired_combobox"> <combo_box.item label="PG, Mature og Adult" name="Desired_Adult"/> - <combo_box.item label="PG and Mature" name="Desired_Mature"/> + <combo_box.item label="PG og Mature" name="Desired_Mature"/> <combo_box.item label="PG" name="Desired_PG"/> </combo_box> <text name="start_location_textbox"> diff --git a/indra/newview/skins/default/xui/da/panel_preferences_setup.xml b/indra/newview/skins/default/xui/da/panel_preferences_setup.xml index 279e2880967750ef5013f1cce50d933ecaa5a407..8202c789472cc47f42710b42b28c92b6773ce574 100644 --- a/indra/newview/skins/default/xui/da/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/da/panel_preferences_setup.xml @@ -34,9 +34,12 @@ Web: </text> <radio_group name="use_external_browser"> - <radio_item label="Benyt den indbyggede browser" name="internal" tool_tip="Brug den indbyggede web browser til hjælp, web links m.v. Denne browser Ã¥bner et nyt vindue i [APP_NAME]." value="0"/> <radio_item label="Benyt min browser(IE, Firefox, Safari)" name="external" tool_tip="Brug systemets standard web browser til hjælp, web links, m.v. Ikke anbefalet hvis du kører i fuld-skærm." value="1"/> + <radio_item label="Benyt den indbyggede browser" name="internal" tool_tip="Brug den indbyggede web browser til hjælp, web links m.v. Denne browser Ã¥bner et nyt vindue i [APP_NAME]." value=""/> </radio_group> + <check_box initial_value="sand" label="Aktivér plugins" name="browser_plugins_enabled"/> + <check_box initial_value="sand" label="Acceptér cookies" name="cookies_enabled"/> + <check_box initial_value="sand" label="Aktivér Javascript" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Aktivér web proxy" name="web_proxy_enabled"/> <text name="Proxy location"> Proxy placering: diff --git a/indra/newview/skins/default/xui/da/panel_region_covenant.xml b/indra/newview/skins/default/xui/da/panel_region_covenant.xml index 564d8e6665f70d651bf4a6c6469740b7f78c21f0..4b9c7539ea3a269ea85441864b190dfa89e40b08 100644 --- a/indra/newview/skins/default/xui/da/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/da/panel_region_covenant.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Covenant" name="Covenant"> +<panel label="Regler" name="Covenant"> <text name="estate_section_lbl"> Estate </text> diff --git a/indra/newview/skins/default/xui/da/panel_region_estate.xml b/indra/newview/skins/default/xui/da/panel_region_estate.xml index c21fd9db37a61b66b4298c8d8bb6103d3aa41f63..65948ce4811f6c41ee00ee66e641cee783fae8b4 100644 --- a/indra/newview/skins/default/xui/da/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/da/panel_region_estate.xml @@ -39,7 +39,7 @@ </string> <button label="?" name="abuse_email_address_help"/> <button label="Gem" name="apply_btn"/> - <button label="Smid bruger ud fra estate..." name="kick_user_from_estate_btn"/> + <button label="Fjern en beboer fra estate..." name="kick_user_from_estate_btn"/> <button label="Send besked til estate..." name="message_estate_btn"/> <text name="estate_manager_label"> Administratorer: diff --git a/indra/newview/skins/default/xui/da/panel_region_general.xml b/indra/newview/skins/default/xui/da/panel_region_general.xml index 6ffe1f34f3bed4ecc26473b5cb36cd6dd7bffab4..5b5dd411ac4b347de4b2a39379d90b8ee94893ae 100644 --- a/indra/newview/skins/default/xui/da/panel_region_general.xml +++ b/indra/newview/skins/default/xui/da/panel_region_general.xml @@ -19,35 +19,25 @@ ukendt </text> <check_box label="Blokér for redigering af terræn" name="block_terraform_check"/> - <button label="?" name="terraform_help"/> <check_box label="Blokér for flyvning" name="block_fly_check"/> - <button label="?" name="fly_help"/> <check_box label="Tillad skader" name="allow_damage_check"/> - <button label="?" name="damage_help"/> <check_box label="Begræns skubning" name="restrict_pushobject"/> - <button label="?" name="restrict_pushobject_help"/> <check_box label="Tillad at sælge land" name="allow_land_resell_check"/> - <button label="?" name="land_resell_help"/> <check_box label="Tillad at samle/dele land" name="allow_parcel_changes_check"/> - <button label="?" name="parcel_changes_help"/> <check_box label="Blokér visning af land i Søgning" name="block_parcel_search_check" tool_tip="Lad beboere se denne region og dens parceller i søgeresultater"/> - <button label="?" name="parcel_search_help"/> <spinner label="Max besøgende" name="agent_limit_spin"/> - <button label="?" name="agent_limit_help"/> <spinner label="Objekt bonus" name="object_bonus_spin"/> - <button label="?" name="object_bonus_help"/> <text label="Indhold" name="access_text"> Rating: </text> - <combo_box label="Mature" name="access_combo"> - <combo_box.item label="Adult" name="Adult"/> - <combo_box.item label="Mature" name="Mature"/> - <combo_box.item label="PG" name="PG"/> - </combo_box> - <button label="?" name="access_help"/> + <icons_combo_box label="Mature" name="access_combo"> + <icons_combo_box.item label="Adult" name="Adult" value="42"/> + <icons_combo_box.item label="Mature" name="Mature" value="21"/> + <icons_combo_box.item label="PG" name="PG" value="13"/> + </icons_combo_box> <button label="Gem" name="apply_btn"/> - <button label="Send en beboer hjem ..." name="kick_btn"/> - <button label="Send alle beboere hjem..." name="kick_all_btn"/> + <button label="Teleportér en beboer hjem..." name="kick_btn"/> + <button label="Teleportér alle beboere hjem..." name="kick_all_btn"/> <button label="Send besked til region..." name="im_btn"/> <button label="Vedligehold telehub..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/da/panel_region_general_layout.xml b/indra/newview/skins/default/xui/da/panel_region_general_layout.xml index 467684f712a45418a883e57ce6ab68a0310d07e1..f3c32d6169732b2c54ff9a0a56945c50d83469fe 100644 --- a/indra/newview/skins/default/xui/da/panel_region_general_layout.xml +++ b/indra/newview/skins/default/xui/da/panel_region_general_layout.xml @@ -36,8 +36,8 @@ <combo_box.item label="Generel" name="PG"/> </combo_box> <button label="Gem" name="apply_btn"/> - <button label="Send en beboer hjem ..." name="kick_btn"/> - <button label="Send alle beboere hjem..."" name="kick_all_btn"/> + <button label="Teleportér en beboer hjem..." name="kick_btn"/> + <button label="Teleportér alle beboere hjem..." name="kick_all_btn"/> <button label="Send besked til region..." name="im_btn"/> <button label="Vedligehold telehub..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/da/panel_region_texture.xml b/indra/newview/skins/default/xui/da/panel_region_texture.xml index 8e324ab7776c0a5d35cbd0e7d3ae87ae472e4ec3..45946fd222a2a8aed3ee4312c695814a27a534b4 100644 --- a/indra/newview/skins/default/xui/da/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/da/panel_region_texture.xml @@ -25,16 +25,16 @@ Texture højde intervaller </text> <text name="height_text_lbl6"> - Sydvest + Nordvest </text> <text name="height_text_lbl7"> - Nordvest + Nordøst </text> <text name="height_text_lbl8"> - Sydøst + Sydvest </text> <text name="height_text_lbl9"> - Nordøst + Sydøst </text> <spinner label="Lav" name="height_start_spin_0"/> <spinner label="Lav" name="height_start_spin_1"/> diff --git a/indra/newview/skins/default/xui/da/panel_side_tray.xml b/indra/newview/skins/default/xui/da/panel_side_tray.xml index ec430d6fd47924136336a08e9e413d2de71c2efd..66c3e6990487bd6997fa68eca1603e400fd8e598 100644 --- a/indra/newview/skins/default/xui/da/panel_side_tray.xml +++ b/indra/newview/skins/default/xui/da/panel_side_tray.xml @@ -3,27 +3,27 @@ partially on screen to hold tab buttons. --> <side_tray name="sidebar"> <sidetray_tab description="Ã…bn/luk sidebar" name="sidebar_openclose" tab_title="Ã…bn/luk sidebar"/> - <sidetray_tab description="Hjem." name="sidebar_home" tab_title="Home"> + <sidetray_tab description="Hjem." name="sidebar_home" tab_title="Hjem"> <panel label="hjem" name="panel_home"/> </sidetray_tab> - <sidetray_tab description="Redigér din profile og favoritter." name="sidebar_me" tab_title="My Profile"> + <sidetray_tab description="Redigér din profile og favoritter." name="sidebar_me" tab_title="Min profil"> <panel_container name="panel_container"> <panel label="Mig" name="panel_me"/> </panel_container> </sidetray_tab> - <sidetray_tab description="Find venner, kontakter og personer tæt pÃ¥." name="sidebar_people" tab_title="People"> + <sidetray_tab description="Find venner, kontakter og personer tæt pÃ¥." name="sidebar_people" tab_title="Personer"> <panel_container name="panel_container"> <panel label="Gruppe profil" name="panel_group_info_sidetray"/> <panel label="Blokerede beboere og objekter" name="panel_block_list_sidetray"/> </panel_container> </sidetray_tab> - <sidetray_tab description="Find steder du vil hen og steder du har været før." label="Steder" name="sidebar_places" tab_title="Places"> + <sidetray_tab description="Find steder du vil hen og steder du har været før." label="Steder" name="sidebar_places" tab_title="Steder"> <panel label="Steder" name="panel_places"/> </sidetray_tab> - <sidetray_tab description="Browse din beholdning." name="sidebar_inventory" tab_title="My Inventory"> + <sidetray_tab description="Browse din beholdning." name="sidebar_inventory" tab_title="Min beholdning"> <panel label="Redigér beholdning" name="sidepanel_inventory"/> </sidetray_tab> - <sidetray_tab description="Ændre dit nuværende udseende" name="sidebar_appearance" tab_title="My Appearance"> - <panel label="Redigér fremtoning" name="sidepanel_appearance"/> + <sidetray_tab description="Ændre dit nuværende udseende" name="sidebar_appearance" tab_title="Mit udseende"> + <panel label="Redigér udseende" name="sidepanel_appearance"/> </sidetray_tab> </side_tray> diff --git a/indra/newview/skins/default/xui/da/panel_status_bar.xml b/indra/newview/skins/default/xui/da/panel_status_bar.xml index 08ffafd5a6e322f8ceb38ff202a0c6ce50f82818..4618fe536dde23900101f5899885eb14c19a1d4d 100644 --- a/indra/newview/skins/default/xui/da/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/da/panel_status_bar.xml @@ -22,7 +22,7 @@ L$ [AMT] </panel.string> <button label="" label_selected="" name="buycurrency" tool_tip="Min balance"/> - <button label="Køb L$" name="buyL" tool_tip="Klik for at købe flere L$"/> + <button label="Køb" name="buyL" tool_tip="Klik for at købe flere L$"/> <text name="TimeText" tool_tip="Nuværende tid (Pacific)"> 24:00 PST </text> diff --git a/indra/newview/skins/default/xui/da/panel_teleport_history.xml b/indra/newview/skins/default/xui/da/panel_teleport_history.xml index a1859b64d8801eab030240212e474205a43e4a50..8a01659ffa7a761ef539875af75dfe28bd7d569a 100644 --- a/indra/newview/skins/default/xui/da/panel_teleport_history.xml +++ b/indra/newview/skins/default/xui/da/panel_teleport_history.xml @@ -13,6 +13,6 @@ <accordion_tab name="6_months_and_older" title="6 mÃ¥neder eller ældre"/> </accordion> <panel name="bottom_panel"> - <button name="gear_btn" tool_tip="Vi flere valgmuligheder"/> + <button name="gear_btn" tool_tip="Vis flere valgmuligheder"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/da/sidepanel_item_info.xml b/indra/newview/skins/default/xui/da/sidepanel_item_info.xml index 77db828c201273700eda9c34af30fd4c3a5eda1a..701a59bade9a15ec058cc9613d427e4589f74bae 100644 --- a/indra/newview/skins/default/xui/da/sidepanel_item_info.xml +++ b/indra/newview/skins/default/xui/da/sidepanel_item_info.xml @@ -42,27 +42,27 @@ <text name="perm_modify"> Du kan: </text> - <check_box label="Redigér" name="CheckOwnerModify"/> - <check_box label="Kopi" name="CheckOwnerCopy"/> - <check_box label="Giv væk" name="CheckOwnerTransfer"/> + <check_box label="Redigere" name="CheckOwnerModify"/> + <check_box label="Kopiere" name="CheckOwnerCopy"/> + <check_box label="Give væk" name="CheckOwnerTransfer"/> <text name="AnyoneLabel"> Enhver: </text> - <check_box label="Kopi" name="CheckEveryoneCopy"/> + <check_box label="Kopiere" name="CheckEveryoneCopy"/> <text name="GroupLabel"> Gruppe: </text> - <check_box label="Del" name="CheckShareWithGroup" tool_tip="Tillad alle medlemmer i den aktive gruppe at dele dine 'redigere' rettigheder for dette objekt. Du skal dedikere for at Ã¥bne for rolle begrænsninger."/> + <check_box label="Dele" name="CheckShareWithGroup" tool_tip="Tillad alle medlemmer i den aktive gruppe at dele dine 'redigere' rettigheder for dette objekt. Du skal dedikere for at Ã¥bne for rolle begrænsninger."/> <text name="NextOwnerLabel"> Næste ejer: </text> <check_box label="Redigere" name="CheckNextOwnerModify"/> - <check_box label="Kopi" name="CheckNextOwnerCopy"/> - <check_box label="Giv væk" name="CheckNextOwnerTransfer" tool_tip="Næste ejer kan give væk eller sælge dette objekt"/> + <check_box label="Kopiere" name="CheckNextOwnerCopy"/> + <check_box label="Give væk" name="CheckNextOwnerTransfer" tool_tip="Næste ejer kan give væk eller sælge dette objekt"/> </panel> <check_box label="Til salg" name="CheckPurchase"/> <combo_box name="combobox sale copy"> - <combo_box.item label="Kopiér" name="Copy"/> + <combo_box.item label="Kopi" name="Copy"/> <combo_box.item label="Original" name="Original"/> </combo_box> <spinner label="Pris: L$" name="Edit Cost"/> diff --git a/indra/newview/skins/default/xui/da/sidepanel_task_info.xml b/indra/newview/skins/default/xui/da/sidepanel_task_info.xml index add2fa3c731963d9728603a5836ef5c4000f104b..bec97734e434a0bba80cb57b9cd5113de4220373 100644 --- a/indra/newview/skins/default/xui/da/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/da/sidepanel_task_info.xml @@ -38,16 +38,41 @@ </panel.string> <text name="title" value="Objekt profil"/> <text name="where" value="(verden)"/> - <panel label=""> + <panel label="" name="properties_panel"> + <text name="Name:"> + Navn: + </text> + <text name="Description:"> + Beskrivelse: + </text> <text name="CreatorNameLabel"> - Skaber + Skaber: </text> <text name="Creator Name"> Erica Linden </text> + <text name="Owner:"> + Ejer: + </text> + <text name="Owner Name"> + Erica Linden + </text> <text name="Group_label"> Gruppe: </text> + <button name="button set group" tool_tip="Vælg en gruppe for at dele dette objekts rettigheder"/> + <name_box initial_value="Henter..." name="Group Name Proxy"/> + <button label="Dedikér" label_selected="Dedikér" name="button deed" tool_tip="Dedikering giver denne genstand væk med den næste ejers rettigheder. Gruppe delte objekter kan dedikeres af en gruppe administrator."/> + <text name="label click action"> + Klik for at: + </text> + <combo_box name="clickaction"> + <combo_box.item label="Berøre (standard)" name="Touch/grab(default)"/> + <combo_box.item label="Sidde pÃ¥ objekt" name="Sitonobject"/> + <combo_box.item label="Købe objekt" name="Buyobject"/> + <combo_box.item label="Betale objekt" name="Payobject"/> + <combo_box.item label="Ã…bne" name="Open"/> + </combo_box> <panel name="perms_inv"> <text name="perm_modify"> Du kan redigere dette objekt @@ -55,31 +80,38 @@ <text name="Anyone can:"> Enhver: </text> - <check_box label="Kopi" name="checkbox allow everyone copy"/> - <check_box label="Flyt" name="checkbox allow everyone move"/> + <check_box label="Kopiere" name="checkbox allow everyone copy"/> + <check_box label="Flytte" name="checkbox allow everyone move"/> <text name="GroupLabel"> Gruppe: </text> - <check_box label="Del" name="checkbox share with group" tool_tip="Tillad alle medlemmer i den aktive gruppe at dele dine 'rediger' rettigheder for dette objekt. Du skal dedikere for at Ã¥bne for rolle begrænsninger."/> + <check_box label="Dele" name="checkbox share with group" tool_tip="Tillad alle gruppemedlemmer i den valgte gruppe at dele dine redigeringsrettigheder for dette objekt. Du skal dedikere for at aktivere rollebegrænsninger"/> <text name="NextOwnerLabel"> Næste ejer: </text> <check_box label="Redigere" name="checkbox next owner can modify"/> - <check_box label="Kopi" name="checkbox next owner can copy"/> - <check_box label="Give væk" name="checkbox next owner can transfer" tool_tip="Næste ejer kan give væk eller sælge objekt"/> + <check_box label="Kopiere" name="checkbox next owner can copy"/> + <check_box label="Overføre" name="checkbox next owner can transfer" tool_tip="Næste ejer kan give væk eller sælge dette objekt"/> </panel> <check_box label="Til salg" name="checkbox for sale"/> + <combo_box name="sale type"> + <combo_box.item label="Kopi" name="Copy"/> + <combo_box.item label="Indhold" name="Contents"/> + <combo_box.item label="Original" name="Original"/> + </combo_box> + <spinner label="Pris: L$" name="Edit Cost"/> + <check_box label="Vis i søgning" name="search_check" tool_tip="Lad personer se dette objekt i søgeresultater"/> <text name="B:"> - B: + S: </text> <text name="O:"> - O: + E: </text> <text name="G:"> G: </text> <text name="E:"> - E: + A: </text> <text name="N:"> N: @@ -92,5 +124,6 @@ <button label="Ã…ben" name="open_btn"/> <button label="Betal" name="pay_btn"/> <button label="Køb" name="buy_btn"/> + <button label="Detaljer" name="details_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/da/strings.xml b/indra/newview/skins/default/xui/da/strings.xml index 412f946acce5d44ea0df2680b0c7d0c5215ad415..37501a35345d5ac3b0a6437e01a673ecb58d1181 100644 --- a/indra/newview/skins/default/xui/da/strings.xml +++ b/indra/newview/skins/default/xui/da/strings.xml @@ -14,7 +14,22 @@ Detekterer hardware... </string> <string name="StartupLoading"> - Indlæser + Henter [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Tømmer cache... + </string> + <string name="StartupInitializingTextureCache"> + Initialiserer tekstur cache... + </string> + <string name="StartupInitializingVFS"> + Initialiserer VFS... + </string> + <string name="ProgressRestoring"> + Gendanner... + </string> + <string name="ProgressChangingResolution"> + Ændrer opløsning... </string> <string name="LoginInProgress"> Logger p. [APP_NAME] kan virke laast. Vent venligst. @@ -41,7 +56,7 @@ Klargør multimedia... </string> <string name="LoginInitializingFonts"> - Indlæser fonts... + Indlæser skriftstyper... </string> <string name="LoginVerifyingCache"> Checker cache filer (kan tage 60-90 sekunder)... @@ -76,12 +91,33 @@ <string name="LoginFailedNoNetwork"> Netværksfejl: Kunne ikke etablere forbindelse, check venligst din netværksforbindelse. </string> + <string name="LoginFailed"> + Login fejlede. + </string> <string name="Quit"> Afslut </string> <string name="AgentLostConnection"> Denne region kan have problemer. Tjek venligst din forbindelse til internettet. </string> + <string name="SavingSettings"> + Gemmer indstillinger... + </string> + <string name="LoggingOut"> + Logger ud... + </string> + <string name="ShuttingDown"> + Lukker ned... + </string> + <string name="YouHaveBeenDisconnected"> + Du er blevet frakoblet den region du var i. + </string> + <string name="SentToInvalidRegion"> + Du blev sendt til en ugyldig region. + </string> + <string name="TestingDisconnect"> + Tester frakobling af klient + </string> <string name="TooltipPerson"> Person </string> @@ -136,6 +172,24 @@ <string name="TooltipAgentUrl"> Klik for at se beboers profil </string> + <string name="TooltipAgentMute"> + Klik for at slukke for denne beboer + </string> + <string name="TooltipAgentUnmute"> + Klik for at fjern slukning for denne beboer + </string> + <string name="TooltipAgentIM"> + Klik for at sende IM til denne beboer + </string> + <string name="TooltipAgentPay"> + Klik for at betale denne beboer + </string> + <string name="TooltipAgentOfferTeleport"> + Klik for at tilbyde teleport til denne beboer + </string> + <string name="TooltipAgentRequestFriend"> + Klik for at sende venneforespørgsel + </string> <string name="TooltipGroupUrl"> Klik for at se denne gruppes beskrivelse </string> @@ -161,12 +215,31 @@ Klik for at starte secondlife:// kommando </string> <string name="CurrentURL" value=" Nuværende URL: [CurrentURL]"/> + <string name="TooltipPrice" value="L$[PRICE]-"/> <string name="SLurlLabelTeleport"> Teleportér til </string> <string name="SLurlLabelShowOnMap"> Vis kort for </string> + <string name="SLappAgentMute"> + Sluk + </string> + <string name="SLappAgentUnmute"> + Fjern sluk + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + Betal + </string> + <string name="SLappAgentOfferTeleport"> + Tilbyd teleport til + </string> + <string name="SLappAgentRequestFriend"> + Venneforespørgsel + </string> <string name="BUTTON_CLOSE_DARWIN"> Luk (⌘W) </string> @@ -317,6 +390,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link til mappe + </string> <string name="AvatarAway"> Væk </string> @@ -734,6 +810,9 @@ <string name="invalid"> ugyldig </string> + <string name="NewWearable"> + Ny [WEARABLE_ITEM] + </string> <string name="next"> Næste </string> @@ -765,7 +844,7 @@ Teleport tilbud </string> <string name="StartUpNotifications"> - %d nye beskeder modtaget mens du var væk...... + Nye beskeder modtaget mens du var væk...... </string> <string name="OverflowInfoChannelString"> Du har %d mere besked(er) @@ -813,8 +892,8 @@ <string name="no_modify" value=" (ikke redigere)"/> <string name="no_copy" value=" (ikke kopiere)"/> <string name="worn" value=" (bÃ¥ret)"/> - <string name="link" value=" (sammenkæde)"/> - <string name="broken_link" value=" (brudt_kæde)"/> + <string name="link" value=" (link)"/> + <string name="broken_link" value=" (brudt link)"/> <string name="LoadingContents"> Henter indhold... </string> @@ -822,6 +901,7 @@ Intet indhold </string> <string name="WornOnAttachmentPoint" value=" (bÃ¥ret pÃ¥ [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (aktiv)"/> <string name="Chat" value=" Chat : "/> <string name="Sound" value=" Lyd : "/> <string name="Wait" value=" --- Vent : "/> @@ -915,6 +995,9 @@ <string name="InvFolder My Outfits"> Mine sæt </string> + <string name="InvFolder Accessories"> + Tilbehør + </string> <string name="InvFolder Friends"> Venner </string> @@ -1432,6 +1515,12 @@ <string name="PanelContentsNewScript"> Nyt script </string> + <string name="PanelContentsTooltip"> + Indhold i objekt + </string> + <string name="BusyModeResponseDefault"> + Beboeren du sendte en besked er 'optaget', hvilket betyder at han/hun ikke vil forstyrres. Din besked vil blive vis i hans/hendes IM panel til senere visning. + </string> <string name="MuteByName"> (efter navn) </string> @@ -1546,7 +1635,10 @@ Annullér </string> <string name="UploadingCosts"> - Uploader [%s] omkostninger + Uploader [NAME] pris L$ [AMOUNT] + </string> + <string name="BuyingCosts"> + At købe dette koster L$ [AMOUNT] </string> <string name="UnknownFileExtension"> Ukendt fil efternavn [.%s] @@ -1703,7 +1795,7 @@ Forventet .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Enhver </string> <string name="You"> - Dig + Du </string> <string name="Multiple Media"> Flere medietyper @@ -2512,7 +2604,7 @@ Hvis du bliver ved med at modtage denne besked, kontakt venligst [SUPPORT_SITE]. Mere </string> <string name="More Gravity"> - More + Mere </string> <string name="More Lipstick"> Mere læbestift @@ -3184,10 +3276,10 @@ Hvis du bliver ved med at modtage denne besked, kontakt venligst [SUPPORT_SITE]. (Moderator) </string> <string name="started_call"> - Startet et stemme opkald + startede et stemme opkald </string> <string name="joined_call"> - Tilsluttet stemme opkaldet + tilsluttede stemme opkald </string> <string name="ringing-im"> Tilslutter stemme opkald... @@ -3264,4 +3356,120 @@ Hvis du bliver ved med at modtage denne besked, kontakt venligst [SUPPORT_SITE]. <string name="unread_chat_multiple"> [SOURCES] har sagt noget nyt </string> + <string name="paid_you_ldollars"> + [NAME] betalte dig L$[AMOUNT] + </string> + <string name="you_paid_ldollars"> + Du betalte [NAME] L$[AMOUNT] [REASON]. + </string> + <string name="you_paid_ldollars_no_reason"> + Du betalte [NAME] L$[AMOUNT]. + </string> + <string name="you_paid_ldollars_no_name"> + Du betalte L$[AMOUNT] [REASON]. + </string> + <string name="for a parcel of land"> + for en parcel land + </string> + <string name="for a land access pass"> + for en billet til land + </string> + <string name="for deeding land"> + for dedikering af land + </string> + <string name="to create a group"> + for at oprette gruppe + </string> + <string name="to join a group"> + for at blive medlem i gruppe + </string> + <string name="to upload"> + for at uploade + </string> + <string name="giving"> + Giver L$ [AMOUNT] + </string> + <string name="uploading_costs"> + Pris for upload er L$ [AMOUNT] + </string> + <string name="this_costs"> + Prisen er L$ [AMOUNT] + </string> + <string name="buying_selected_land"> + Køber valgte land L$ [AMOUNT] + </string> + <string name="this_object_costs"> + Dette objekt koster L$ [AMOUNT] + </string> + <string name="group_role_everyone"> + Enhver + </string> + <string name="group_role_officers"> + Administratorer + </string> + <string name="group_role_owners"> + Ejere + </string> + <string name="uploading_abuse_report"> + Uploader... + +Krænkelsesanmeldelse + </string> + <string name="New Shape"> + Ny kropsbygning + </string> + <string name="New Skin"> + Ny hud + </string> + <string name="New Hair"> + Nyt hÃ¥r + </string> + <string name="New Eyes"> + Nye øjne + </string> + <string name="New Shirt"> + Ny trøje + </string> + <string name="New Pants"> + Nye bukser + </string> + <string name="New Shoes"> + Nye sko + </string> + <string name="New Socks"> + Nye strømper + </string> + <string name="New Jacket"> + Ny jakke + </string> + <string name="New Gloves"> + Nye handsker + </string> + <string name="New Undershirt"> + Ny undertrøje + </string> + <string name="New Underpants"> + Nye underbukser + </string> + <string name="New Skirt"> + Ny nederdel + </string> + <string name="New Alpha"> + Ny alpha + </string> + <string name="New Tattoo"> + Ny tatovering + </string> + <string name="Invalid Wearable"> + Kan ikke tages pÃ¥ + </string> + <string name="New Script"> + Nyt script + </string> + <string name="New Folder"> + Ny folder + </string> + <string name="Contents"> + Indhold + </string> </strings> diff --git a/indra/newview/skins/default/xui/da/teleport_strings.xml b/indra/newview/skins/default/xui/da/teleport_strings.xml index 43f8e5144d6d3fb363e183d972223d16df4dfa71..071aab46f43d8af28477c81998a84729c78610aa 100644 --- a/indra/newview/skins/default/xui/da/teleport_strings.xml +++ b/indra/newview/skins/default/xui/da/teleport_strings.xml @@ -63,6 +63,9 @@ Prøv evt. igen om lidt. <message name="completing"> Fuldfører teleport. </message> + <message name="completed_from"> + Teleport fuldført fra [T_SLURL] + </message> <message name="resolving"> Finder destination. </message> 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 186c2932c3d31e94b2650acfb984ee4d9e1037d3..5322febe27533adad0b90da07d7c92a599aeb3a8 100644 --- a/indra/newview/skins/default/xui/de/floater_about_land.xml +++ b/indra/newview/skins/default/xui/de/floater_about_land.xml @@ -24,7 +24,7 @@ <tab_container name="landtab" tab_min_width="40" width="489"> <panel label="ALLGEMEIN" name="land_general_panel"> <panel.string name="new users only"> - Nur neue Einwohner + Nur neue Benutzer </panel.string> <panel.string name="anyone"> Jeder @@ -151,15 +151,13 @@ Gekauftes Land in dieser Region kann nicht wiederverkauft werden. </panel.string> <panel.string name="can_change"> - Gekauftes Land in dieser Region kann zusammengelegt und -geteilt werden. + Gekauftes Land in dieser Region kann zusammengelegt und geteilt werden. </panel.string> <panel.string name="can_not_change"> - Gekauftes Land in dieser Region kann nicht zusammengelegt -und geteilt werden. + Gekauftes Land in dieser Region kann nicht zusammengelegt und geteilt werden. </panel.string> <text name="estate_section_lbl"> - Grundstück: + Grundbesitz: </text> <text name="estate_name_text"> Mainland @@ -171,7 +169,7 @@ und geteilt werden. (keiner) </text> <text_editor name="covenant_editor"> - Für dieses Grundstück fehlt der Vertrag. + Für diesen Grundbesitz fehlt der Vertrag. </text_editor> <text name="covenant_timestamp_text"> Letzte Änderung am Mittwoch, den 31. Dez. 1969, 16:00:00 @@ -278,8 +276,8 @@ werden. <name_list name="owner list"> <name_list.columns label="Typ" name="type"/> <name_list.columns label="Name" name="name"/> - <name_list.columns label="Zählen" name="count" width="80"/> - <name_list.columns label="Aktuellster" name="mostrecent"/> + <name_list.columns label="Anzahl" name="count" width="80"/> + <name_list.columns label="Aktuellstes" name="mostrecent"/> </name_list> </panel> <panel label="OPTIONEN" name="land_options_panel"> @@ -337,8 +335,8 @@ Nur große Parzellen können in der Suche aufgeführt werden. <text name="land_options_label"> Landoptionen: </text> - <check_box label="Sicher (kein Schaden)" name="check safe" tool_tip="Falls aktiviert, wird Land auf Option „Sicher“ eingestellt, Kampfschäden sind deaktiviert. Falls nicht aktiviert, sind Kampfschäden aktiviert."/> - <check_box label="Kein Stoßen" name="PushRestrictCheck" tool_tip="Verhindert Skripte am Stoßen. Durch Aktivieren dieser Option verhindern Sie störendes Verhalten auf Ihrem Land."/> + <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"/> @@ -377,7 +375,7 @@ Nur große Parzellen können in der Suche aufgeführt werden. <text name="landing_point"> Landepunkt: [LANDING] </text> - <button label="Festlegen" label_selected="Festlegen" left="234" name="Set" right="-88" tool_tip="Legt den Landepunkt fest, an dem Besucher ankommen. Legt die Position Ihres Avatars innerhalb dieser Parzelle fest." width="70"/> + <button label="Festlegen" label_selected="Festlegen" left="234" name="Set" right="-88" tool_tip="Legt Ihren Standort als Landepunkt fest, an dem Besucher ankommen. Legt die Position Ihres Avatars innerhalb dieser Parzelle fest." width="70"/> <button label="Löschen" label_selected="Löschen" left="312" name="Clear" tool_tip="Landepunkt löschen" width="70"/> <text name="Teleport Routing: "> Teleport-Route: @@ -396,7 +394,7 @@ Nur große Parzellen können in der Suche aufgeführt werden. <text name="at URL:"> Homepage: </text> - <button label="Festlegen" label_selected="Einstellen..." name="set_media_url"/> + <button label="Festlegen" name="set_media_url"/> <check_box label="URL ausblenden" name="hide_media_url" tool_tip="Aktivieren Sie diese Option, wenn Sie nicht möchten, dass unautorisierte Personen die Medien-URL sehen können. Diese Option ist für HTML-Medien nicht verfügbar."/> <text name="Description:"> Inhalt: @@ -436,15 +434,18 @@ Nur große Parzellen können in der Suche aufgeführt werden. Voice: </text> <check_box label="Voice aktivieren" name="parcel_enable_voice_channel"/> - <check_box label="Voice aktivieren (vom Grundstück eingerichtet)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Voice aktivieren (vom Grundbesitz eingerichtet)" name="parcel_enable_voice_channel_is_estate_disabled"/> <check_box label="Voice auf diese Parzelle beschränken" name="parcel_enable_voice_channel_local"/> </panel> <panel label="ZUGANG" name="land_access_panel"> <panel.string name="access_estate_defined"> - (Durch Grundstück festgelegt) + (Durch Grundbesitz festgelegt) + </panel.string> + <panel.string name="allow_public_access"> + Öffentlichen Zugang erlauben ([MATURITY]) </panel.string> <panel.string name="estate_override"> - Eine oder mehrere dieser Optionen gelten auf Grundstücksebene + Eine oder mehrere dieser Optionen gelten auf Grundbesitzebene </panel.string> <text name="Limit access to this parcel to:"> Zugang zu dieser Parzelle @@ -453,8 +454,8 @@ Nur große Parzellen können in der Suche aufgeführt werden. <text name="Only Allow" width="400"> Zugang auf Einwohner beschränken, die überprüft wurden von: </text> - <check_box label="Zahlungsinformation gespeichert [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Nicht identifizierte Einwohner verbannen."/> - <check_box label="Altersüberprüfung [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Einwohner ohne Altersüberprüfung verbannen. Weitere Informationen finden Sie auf [SUPPORT_SITE]."/> + <check_box label="Zahlungsinformation gespeichert [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Einwohner ohne Zahlungsinformation nicht zulassen."/> + <check_box label="Altersüberprüfung [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Einwohner ohne Altersüberprüfung nicht zulassen. Weitere Informationen finden Sie im [SUPPORT_SITE]."/> <check_box label="Gruppenzugang erlauben: [GROUP]" name="GroupCheck" tool_tip="Gruppe im Register „Allgemein“ festlegen."/> <check_box label="Pässe verkaufen an:" name="PassCheck" tool_tip="Ermöglicht befristeten Zugang zu dieser Parzelle"/> <combo_box name="pass_combo"> diff --git a/indra/newview/skins/default/xui/de/floater_build_options.xml b/indra/newview/skins/default/xui/de/floater_build_options.xml index b70c859490823016ba9ce33f6a332c133652acc5..e90eb2c00bc5280728f4ea12bad0663d150baa40 100644 --- a/indra/newview/skins/default/xui/de/floater_build_options.xml +++ b/indra/newview/skins/default/xui/de/floater_build_options.xml @@ -2,7 +2,7 @@ <floater name="build options floater" title="RASTER-OPTIONEN"> <spinner label="Raster-Einheiten (Meter)" name="GridResolution"/> <spinner label="Rastergröße (Meter)" name="GridDrawSize"/> - <check_box label="Einrasten von Untereinheiten aktivieren" name="GridSubUnit"/> + <check_box label="An Untereinheiten ausrichten" name="GridSubUnit"/> <check_box label="Ãœberschneidungen anzeigen" name="GridCrossSection"/> <text name="grid_opacity_label" tool_tip="Raster-Deckkraft"> Deckkraft: diff --git a/indra/newview/skins/default/xui/de/floater_buy_currency.xml b/indra/newview/skins/default/xui/de/floater_buy_currency.xml index d0d36284488e9103aa89664a98e98fbb3728528d..21e3bd280ff0d0286619fd134aa667f860430232 100644 --- a/indra/newview/skins/default/xui/de/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/de/floater_buy_currency.xml @@ -37,7 +37,7 @@ Schätzung erfolgt... </text> <text name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text name="total_label"> Mein neuer Kontostand wird sein @@ -59,7 +59,7 @@ </text> <button label="Jetzt kaufen" name="buy_btn"/> <button label="Abbrechen" name="cancel_btn"/> - <text name="info_cannot_buy" left="160" width="200" height="40"> + <text height="40" left="160" name="info_cannot_buy" width="200"> Kauf nicht möglich </text> diff --git a/indra/newview/skins/default/xui/de/floater_buy_land.xml b/indra/newview/skins/default/xui/de/floater_buy_land.xml index f380393163a05fde66fabf4caddddd2ec55d2aab..5708a3f80a294b9e55a3ed3a8250da52e7396796 100644 --- a/indra/newview/skins/default/xui/de/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/de/floater_buy_land.xml @@ -41,8 +41,8 @@ Verkleinern Sie Ihre Auswahl. Das ausgewählte Land beinhaltet kein öffentliches Land. </floater.string> <floater.string name="not_owned_by_you"> - Sie haben Land ausgewählt, das einem anderen Einwohner gehört. -Wählen Sie ein kleineres Gebiet aus. + Sie haben Land ausgewählt, das einer anderen Person gehört. +Verkleinern Sie Ihre Auswahl. </floater.string> <floater.string name="processing"> Kauf wird abgewickelt... @@ -140,13 +140,13 @@ unterstützt [AMOUNT2] Objekte (unbekannt) </text> <text name="estate_name_label"> - Grundstück: + Grundbesitz: </text> <text left="680" left_delta="140" name="estate_name_text"> (unbekannt) </text> <text name="estate_owner_label" right="600" width="200"> - Grundstückseigentümer: + Grundbesitzer: </text> <text left="680" left_delta="140" name="estate_owner_text"> (unbekannt) @@ -161,7 +161,7 @@ unterstützt [AMOUNT2] Objekte Darft oder darf nicht zusammengelegt/unterteilt werden. </text> <text left="410" name="covenant_text"> - Sie müssen dem Grundstücksvertrag zustimmen: + Sie müssen dem Grundbesitzvertrag zustimmen: </text> <text left="470" name="covenant_timestamp_text"/> <text_editor left="470" name="covenant_editor"> diff --git a/indra/newview/skins/default/xui/de/floater_day_cycle_options.xml b/indra/newview/skins/default/xui/de/floater_day_cycle_options.xml index 9baf30fb5340012101dad22d71f0f6caf29a19d4..54a8a43edf7c343d55d2f2fdcac7eb9440603c1c 100644 --- a/indra/newview/skins/default/xui/de/floater_day_cycle_options.xml +++ b/indra/newview/skins/default/xui/de/floater_day_cycle_options.xml @@ -86,7 +86,7 @@ </text> <button label="Start" label_selected="Start" name="WLAnimSky" /> <button label="Stopp" label_selected="Stopp" name="WLStopAnimSky" /> - <button label="Grundstückszeit verw" label_selected="Zur Grundstückszeit" + <button label="Grundbesitzzeit verw" label_selected="Zur Grundbesitzzeit" name="WLUseLindenTime" /> <button label="Testtag speichern" label_selected="Testtag speichern" name="WLSaveDayCycle" /> diff --git a/indra/newview/skins/default/xui/de/floater_env_settings.xml b/indra/newview/skins/default/xui/de/floater_env_settings.xml index 0f2370771f76e15368d0ef9bd973b7f4f2b15553..0c78909108333aa1a72d73dec36ac5dabee5b50f 100644 --- a/indra/newview/skins/default/xui/de/floater_env_settings.xml +++ b/indra/newview/skins/default/xui/de/floater_env_settings.xml @@ -20,7 +20,7 @@ Wasser- trübung </text> - <button label="Grundstückszeit verw." name="EnvUseEstateTimeButton"/> + <button label="Grundbesitzzeit verw." name="EnvUseEstateTimeButton"/> <button label="Himmel (erweitert)" name="EnvAdvancedSkyButton"/> <button label="Wasser (erweitert)" name="EnvAdvancedWaterButton"/> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_gesture.xml b/indra/newview/skins/default/xui/de/floater_gesture.xml index 0b27b362c38b4b3fed2b860fa3a4678f19c49bcd..7b35da8d5cd8619d5713af10f669e6c89d431a17 100644 --- a/indra/newview/skins/default/xui/de/floater_gesture.xml +++ b/indra/newview/skins/default/xui/de/floater_gesture.xml @@ -9,7 +9,7 @@ <floater.string name="copy_name"> Kopie von [COPY_NAME] </floater.string> - <scroll_list bottom_delta="-385" height="360" name="gesture_list"> + <scroll_list name="gesture_list"> <scroll_list.columns label="Name" name="name"/> <scroll_list.columns label="Chat" name="trigger"/> <scroll_list.columns label="" name="key"/> diff --git a/indra/newview/skins/default/xui/de/floater_god_tools.xml b/indra/newview/skins/default/xui/de/floater_god_tools.xml index 108baee4a4f95ec0938e696293534ae24d5cbea2..b9c2cf81e10b9b27ee761c431c5ee0404132190a 100644 --- a/indra/newview/skins/default/xui/de/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/de/floater_god_tools.xml @@ -2,7 +2,7 @@ <floater name="godtools floater" title="GOTT-WERKZEUGE"> <tab_container name="GodTools Tabs"> <panel label="Raster" name="grid"> - <button label="Alle Einwohner hinauswerfen" label_selected="Alle Einwohner hinauswerfen" name="Kick all users" width="175"/> + <button label="Alle Benutzer hinauswerfen" label_selected="Alle Benutzer hinauswerfen" name="Kick all users" width="175"/> <button label="Sichtbarkeits-Cache dieser Regionskarte leeren" label_selected="Sichtbarkeits-Cache dieser Regionskarte leeren" name="Flush This Region's Map Visibility Caches" width="285"/> </panel> <panel label="Region" name="region"> @@ -10,7 +10,7 @@ Sim: </text> <check_box label="Startbereich Einleitung" name="check prelude" tool_tip="Diese Region zu einem Startbereich machen."/> - <check_box label="Sonne fest" name="check fixed sun" tool_tip="Fixiert den Sonnenstand (wie in „Region/Grundstück“ > „Terrain“."/> + <check_box label="Sonne fest" name="check fixed sun" tool_tip="Fixiert den Sonnenstand (wie in „Region/Grundbesitz“ > „Terrain“."/> <check_box label="Zuhause auf Teleport zurücksetzen" name="check reset home" tool_tip="Wenn Einwohner weg teleportieren, ihr Zuhause auf Zielposition setzen."/> <check_box label="Sichtbar" name="check visible" tool_tip="Diese Region für Nicht-Götter sichtbar machen."/> <check_box label="Schaden" name="check damage" tool_tip="Schaden in dieser Region aktivieren."/> @@ -21,12 +21,12 @@ <button label="Terrain zurücksetzen" label_selected="Terrain zurücksetzen" name="Revert Terrain" tool_tip="Das aktuelle Terrain mit dem Standard ersetzen." width="120"/> <button label="Terrain tauschen" label_selected="Terrain tauschen" name="Swap Terrain" tool_tip="Aktuelles Terrain gegen Standard austauschen." width="120"/> <text name="estate id"> - Grundstücks-ID: + Grundbesitz-ID: </text> <text name="parent id"> Parent ID: </text> - <line_editor name="parentestate" tool_tip="Das übergeordnete Grundstück dieser Region"/> + <line_editor name="parentestate" tool_tip="Der übergeordnete Grundbesitz dieser Region"/> <text name="Grid Pos: "> Raster-Pos.: </text> @@ -35,7 +35,7 @@ <text name="Redirect to Grid: " width="110"> Auf Raster umleiten: </text> - <line_editor left_delta="110" left_pad="0" name="redirectx" width="35"/> + <line_editor left_delta="110" name="redirectx" width="35" left_pad="0"/> <line_editor left_delta="45" name="redirecty" width="35"/> <text font="SansSerifSmall" name="billable factor text"> Abrechnungsfaktor: diff --git a/indra/newview/skins/default/xui/de/floater_region_info.xml b/indra/newview/skins/default/xui/de/floater_region_info.xml index 354cdaa272fbbcb98470dd777d734601f579b3af..c0dc47a67d16b586d072c6fc3fd5e706c9eeada7 100644 --- a/indra/newview/skins/default/xui/de/floater_region_info.xml +++ b/indra/newview/skins/default/xui/de/floater_region_info.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="regioninfo" title="REGION/GRUNDSTÃœCK"/> +<floater name="regioninfo" title="REGION/GRUNDBESITZ"/> diff --git a/indra/newview/skins/default/xui/de/floater_sys_well.xml b/indra/newview/skins/default/xui/de/floater_sys_well.xml index d7db97722cc49180b5737aa185ffdd052c8a70c7..ec79b862b4183d2943875a034ffb39d49d3ba14b 100644 --- a/indra/newview/skins/default/xui/de/floater_sys_well.xml +++ b/indra/newview/skins/default/xui/de/floater_sys_well.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="notification_chiclet" title="MELDUNGEN"> +<floater name="sys_well_window" title="MELDUNGEN"> <string name="title_im_well_window"> GESPRÄCHE </string> diff --git a/indra/newview/skins/default/xui/de/floater_tools.xml b/indra/newview/skins/default/xui/de/floater_tools.xml index 7091e35a6e680a54eecc04808c1cebbcfeb53fec..bb28f1b33f51dfb970874076f54d79346db2a8f3 100644 --- a/indra/newview/skins/default/xui/de/floater_tools.xml +++ b/indra/newview/skins/default/xui/de/floater_tools.xml @@ -7,7 +7,7 @@ Klicken und ziehen, um die ausgewählte Seite zu dehnen </floater.string> <floater.string name="status_move"> - Maus verschiebt, Umschalt-Taste und Maus kopiert + Maus verschiebt, Umschalt + Maus kopiert </floater.string> <floater.string name="status_modifyland"> Klicken und halten, um das Land zu bearbeiten @@ -70,7 +70,7 @@ <check_box label="Beide Seiten dehnen" name="checkbox uniform"/> <check_box initial_value="true" label="Texturen dehnen" name="checkbox stretch textures"/> <check_box initial_value="true" label="An Raster ausrichten" name="checkbox snap to grid" top_pad="10"/> - <combo_box name="combobox grid mode" tool_tip="Wählen Sie das Rasterlineal aus, um das Objekt zu positionieren."> + <combo_box name="combobox grid mode" tool_tip="Wählen Sie ein Rasterlineal zum Positionieren des Objekts aus."> <combo_box.item label="Globales Raster" name="World"/> <combo_box.item label="Lokales Raster" name="Local"/> <combo_box.item label="Referenzraster" name="Reference"/> @@ -238,10 +238,10 @@ </panel> </panel> <panel label="Objekt" name="Object"> - <check_box label="Gesperrt" name="checkbox locked" tool_tip="Verhindert, dass Objekt verschoben oder gelöscht wird. Oft beim Bauen nützlich, um unbeabsichtigte Bearbeitungen zu vermeiden."/> - <check_box label="Physisch" name="Physical Checkbox Ctrl" tool_tip="Gestattet, das Objekt geschoben und von Schwerkraft beeinflusst wird"/> + <check_box label="Gesperrt" name="checkbox locked" tool_tip="Verhindert, dass das Objekt verschoben oder gelöscht wird. Oft beim Bauen nützlich, um unbeabsichtigte Bearbeitungen zu vermeiden."/> + <check_box label="Physisch" name="Physical Checkbox Ctrl" tool_tip="Gestattet, dass das Objekt geschoben und von Schwerkraft beeinflusst wird"/> <check_box label="Temporär" name="Temporary Checkbox Ctrl" tool_tip="Bewirkt, dass das Objekt 1 Minute nach seiner Erstellung gelöscht wird."/> - <check_box label="Phantom" name="Phantom Checkbox Ctrl" tool_tip="Verursacht, dass Objekt nicht mit anderen Objekten oder Avataren kollidiert"/> + <check_box label="Phantom" name="Phantom Checkbox Ctrl" tool_tip="Verhindert, dass das Objekt mit anderen Objekten oder Avataren kollidiert"/> <text name="label position"> Position (Meter) </text> @@ -477,7 +477,7 @@ <text name="label_area"> Gebiet: [AREA] m². </text> - <button label="Ãœber Land" label_selected="Ãœber Land" name="button about land"/> + <button label="Land-Info" label_selected="Land-Info" name="button about land"/> <check_box label="Eigentümer anzeigen" name="checkbox show owners" tool_tip="Die Parzellen farblich nach Eigentümtertyp anzeigen Grün = Ihr Land Blau = Das Land Ihrer Gruppe Rot = Im Eigentum anderer Geld = Zum Verkauf Lila = Zur Auktion Grau = Öffentlich"/> <text name="label_parcel_modify"> Parzelle ändern diff --git a/indra/newview/skins/default/xui/de/floater_tos.xml b/indra/newview/skins/default/xui/de/floater_tos.xml index e11b453b419bc84cf44aded7c5ac878902f20303..27c15a0337b0df521d33f80dbc0138d46aa766b4 100644 --- a/indra/newview/skins/default/xui/de/floater_tos.xml +++ b/indra/newview/skins/default/xui/de/floater_tos.xml @@ -3,15 +3,15 @@ <button label="Weiter" label_selected="Weiter" name="Continue"/> <button label="Abbrechen" label_selected="Abbrechen" name="Cancel"/> <radio_group name="tos_agreement"> - <radio_item label="Ich stimme den Nutzungsbedingungen nicht zu" name="radio_disagree"/> - <radio_item label="Ich stimme den Nutzungsbedingungen zu" name="radio_agree"/> + <radio_item label="Ich stimme den Servicebedingungen nicht zu" name="radio_disagree"/> + <radio_item label="Ich stimme den Servicebedingungen zu" name="radio_agree"/> </radio_group> <text name="tos_title"> Nutzungsvereinbarung </text> - <check_box label="Ich stimme den Nutzungsbedingungen zu" name="agree_chk"/> + <check_box label="Ich stimme den Servicebedingungen und Datenschutzbestimmungen zu." name="agree_chk"/> <text name="tos_heading"> - Lesen Sie die folgenden Servicebedingungen sorgfältig durch. Sie müssen den Servicebedinungen zustimmen, um [SECOND_LIFE] weiterhin verwenden zu können. + Lesen Sie die folgenden Servicebedingungen und Datenbestimmungen sorgfältig durch. Sie müssen den Servicebedingungen zustimmen, um sich bei [SECOND_LIFE] anmelden zu können. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/de/floater_world_map.xml b/indra/newview/skins/default/xui/de/floater_world_map.xml index 008a9d63b70dd3269a09467242a86495d4a1a507..a1f41f53ad22ca72c882fea4b4896e936f6508fb 100644 --- a/indra/newview/skins/default/xui/de/floater_world_map.xml +++ b/indra/newview/skins/default/xui/de/floater_world_map.xml @@ -30,7 +30,7 @@ </text> <button label="Nach Hause" label_selected="Nach Hause" name="Go Home" tool_tip="Nach Hause teleportieren"/> <text name="Home_label"> - Startseite + Zuhause </text> <text name="events_label"> Events: diff --git a/indra/newview/skins/default/xui/de/menu_land.xml b/indra/newview/skins/default/xui/de/menu_land.xml index 9b1e6727b7bde562bc5764d44e5436337095ed0b..de679da3d8e8f0b4b67060128dedee3fe3dd5777 100644 --- a/indra/newview/skins/default/xui/de/menu_land.xml +++ b/indra/newview/skins/default/xui/de/menu_land.xml @@ -5,5 +5,5 @@ <menu_item_call label="Dieses Land kaufen" name="Land Buy"/> <menu_item_call label="Pass kaufen" name="Land Buy Pass"/> <menu_item_call label="Bauen" name="Create"/> - <menu_item_call label="Terrain bearbeiten" name="Edit Terrain"/> + <menu_item_call label="Land bearbeiten" name="Edit Terrain"/> </context_menu> diff --git a/indra/newview/skins/default/xui/de/menu_mini_map.xml b/indra/newview/skins/default/xui/de/menu_mini_map.xml index a3ebfb3b1003c7f6c0b4758ca87a57fd5736aab5..7139b98965d95fcc8f1b54d4b6be29e0206251b5 100644 --- a/indra/newview/skins/default/xui/de/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/de/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom Nah" name="Zoom Close"/> <menu_item_call label="Zoom Mittel" name="Zoom Medium"/> <menu_item_call label="Zoom Weit" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/de/menu_profile_overflow.xml b/indra/newview/skins/default/xui/de/menu_profile_overflow.xml index 03bc19aa3f5e9953f4b7425b182d0cb91d65cbfe..9f3fcbca1d21856d26d0dae3c82135fb9219898d 100644 --- a/indra/newview/skins/default/xui/de/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/de/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Karte" name="show_on_map"/> <menu_item_call label="Bezahlen" name="pay"/> <menu_item_call label="Teilen" name="share"/> <menu_item_call label="Ignorieren" name="block"/> diff --git a/indra/newview/skins/default/xui/de/menu_viewer.xml b/indra/newview/skins/default/xui/de/menu_viewer.xml index c628cb4b6118049d65cf2249b01d8e6e86398b6f..84ed19e253761589014f6380dee5b07d5de2bd72 100644 --- a/indra/newview/skins/default/xui/de/menu_viewer.xml +++ b/indra/newview/skins/default/xui/de/menu_viewer.xml @@ -32,7 +32,7 @@ <menu_item_call label="Landmarke für diesen Ort setzen" name="Create Landmark Here"/> <menu label="Ortsprofil" name="Land"> <menu_item_call label="Land-Info" name="About Land"/> - <menu_item_call label="Region/Grundstück" name="Region/Estate"/> + <menu_item_call label="Region/Grundbesitz" name="Region/Estate"/> </menu> <menu_item_call label="Dieses Land kaufen" name="Buy Land"/> <menu_item_call label="Mein Land" name="My Land"/> @@ -53,7 +53,7 @@ <menu_item_call label="Mittag" name="Noon"/> <menu_item_call label="Sonnenuntergang" name="Sunset"/> <menu_item_call label="Mitternacht" name="Midnight"/> - <menu_item_call label="Grundstückszeit" name="Revert to Region Default"/> + <menu_item_call label="Grundbesitzzeit" name="Revert to Region Default"/> <menu_item_call label="Umwelt-Editor" name="Environment Editor"/> </menu> </menu> diff --git a/indra/newview/skins/default/xui/de/mime_types.xml b/indra/newview/skins/default/xui/de/mime_types.xml index e01649e9112720cde73ff2c677f78a1fa751e1a7..de93107e94b3ed60c2606768afce604481912551 100644 --- a/indra/newview/skins/default/xui/de/mime_types.xml +++ b/indra/newview/skins/default/xui/de/mime_types.xml @@ -22,14 +22,6 @@ Video wiedergeben </playtip> </widgetset> - <widgetset name="none"> - <label name="none_label"> - Keine Inhalte - </label> - <tooltip name="none_tooltip"> - Keine Medien gefunden - </tooltip> - </widgetset> <widgetset name="image"> <label name="image_label"> Bild diff --git a/indra/newview/skins/default/xui/de/notifications.xml b/indra/newview/skins/default/xui/de/notifications.xml index 2db126bcb0d197e674588d126efdc5ccadcdf771..c2f25c84b8988c92a4039bd421932bdd86df0e3a 100644 --- a/indra/newview/skins/default/xui/de/notifications.xml +++ b/indra/newview/skins/default/xui/de/notifications.xml @@ -107,10 +107,10 @@ Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. </notification> <notification name="FriendsAndGroupsOnly"> Leute, die nicht auf Ihrer Freundesliste stehen, werden nicht wissen, dass Sie deren Anrufe oder Sofortnachrichten ignoriert haben. - <usetemplate name="okbutton" yestext="OK"/> + <usetemplate name="okbutton" yestext="Ja"/> </notification> <notification name="GrantModifyRights"> - Wenn Sie einem anderen Einwohner, das die Erlaubnis zum Bearbeiten erteilen, dann kann dieser JEDES Objekt, das Sie inworld besitzen, verändern, löschen oder nehmen. Seien Sie SEHR vorsichtig, wenn Sie diese Erlaubnis gewähren! + Wenn Sie einem anderen Einwohner die Erlaubnis zum Bearbeiten erteilen, dann kann dieser JEDES Objekt, das Sie inworld besitzen, verändern, löschen oder nehmen. Seien Sie SEHR vorsichtig, wenn Sie diese Erlaubnis gewähren! Möchten Sie [FIRST_NAME] [LAST_NAME] die Erlaubnis zum Bearbeiten gewähren? <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> </notification> @@ -1189,7 +1189,7 @@ Ersetzen Sie die Textur [TEXTURE_NUM] mit einer Bilddatei von maximal 512x512 un Es sind maximal [MAX_MANAGER] verbannte Einwohner erlaub. </notification> <notification name="OwnerCanNotBeDenied"> - Der Eigentümer des Grundstücks kann nicht zur Liste der „Verbannten Einwohner“ hinzugefügt werden. + Der Eigentümer des Grundbesitzes kann nicht zur Liste der „Verbannten Einwohner“ hinzugefügt werden. </notification> <notification name="CanNotChangeAppearanceUntilLoaded"> Das Aussehen lässt sich erst ändern, wenn Kleider und Form/Gestalt geladen sind. @@ -1314,8 +1314,8 @@ Diese Gruppe verlassen? <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> </notification> <notification name="ConfirmKick"> - Möchten Sie WIRKLICH alle Einwohner aus dem Grid werfen? - <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Alle Einwohner hinauswerfen"/> + Möchten Sie WIRKLICH alle Benutzer aus dem Grid werfen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Alle Benutzer hinauswerfen"/> </notification> <notification name="MuteLinden"> Lindens können nicht ignoriert werden. @@ -1355,7 +1355,7 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="KickUser"> - Beim Hinauswerfen dieses Einwohners welche Meldung anzeigen? + Beim Hinauswerfen dieses Benutzers welche Meldung anzeigen? <form name="form"> <input name="message"> Sie wurden von einem Administrator abgemeldet. @@ -1375,7 +1375,7 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht </form> </notification> <notification name="FreezeUser"> - Beim Einfrieren dieses Einwohners welche Meldung anzeigen? + Beim Einfrieren dieses Benutzers welche Meldung anzeigen? <form name="form"> <input name="message"> Sie wurden eingefroren. Bewegen oder Chatten ist nicht mehr möglich. Ein Administrator wird sich über IM an Sie wenden @@ -1385,7 +1385,7 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht </form> </notification> <notification name="UnFreezeUser"> - Beim Auftauen dieses Einwohners welche Meldung anzeigen? + Beim Auftauen dieses Benutzers welche Meldung anzeigen? <form name="form"> <input name="message"> Sie sind nicht mehr eingefroren. @@ -1405,7 +1405,7 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht </form> </notification> <notification name="OfferTeleportFromGod"> - Einwohner an Ihrem Standort herbeirufen? + Einwohner zu Ihrem Standort einladen? <form name="form"> <input name="message"> Triff mich in [REGION] @@ -1426,67 +1426,67 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht Zu [CLASSIFIED] teleportieren? <usetemplate ignoretext="Bestätigen, dass ich zu einer Position in Anzeigen teleportieren möchte." name="okcancelignore" notext="Abbrechen" yestext="Teleportieren"/> </notification> - <notification label="Nachricht an alle auf diesem Grundstück" name="MessageEstate"> - Geben Sie eine kurze Nachricht ein, die an jede Person auf Ihrem Grundstück gesendet wird. + <notification label="Nachricht an alle auf diesem Grundbesitz" name="MessageEstate"> + Geben Sie eine kurze Nachricht ein, die an jede Person auf Ihrem Grundbesitz gesendet wird. <form name="form"> <input name="message"/> <button name="OK" text="OK"/> <button name="Cancel" text="Abbrechen"/> </form> </notification> - <notification label="Linden-Grundstück ändern" name="ChangeLindenEstate"> - Sie sind im Begriff, ein Grundstück in Linden-Besitz (Mainland, Teen-Grid, Orientation, usw.) zu verändern. + <notification label="Linden-Grundbesitz ändern" name="ChangeLindenEstate"> + Sie sind im Begriff, einen Grundbesitz in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. -Dies hat EXTREME KONSEQUENZEN und wirkt sich auf die Einwohner aus! Auf dem Mainland kann dies zu Veränderungen in Tausenden von Regionen und zu Problemen mit dem Spaceserver führen! +Dies ist ÄUSSERST GEFÄHRLICH, da es grundlegende Auswirkungen auf das Benutzererlebnis hat. Auf dem Mainland werden tausende Regionen geändert, was den Spaceserver stark belastet. Fortfahren? <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> </notification> - <notification label="Zugang zu Linden-Grundstück ändern" name="ChangeLindenAccess"> - Sie sind im Begriff, die Zugangsliste für ein Grundstück in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. + <notification label="Zugang zu Linden-Grundbesitz ändern" name="ChangeLindenAccess"> + Sie sind im Begriff, die Zugangsliste für einen Grundbesitz in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. Dies ist GEFÄHRLICH und sollte nur erfolgen, um Objekte/L$ per Hack in und aus dem Raster zu entfernen. Tausende Regionen werden verändert und der Spaceserver wird dadurch stark belastet. <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> </notification> - <notification label="Grundstück wählen" name="EstateAllowedAgentAdd"> - Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Erlaubnisliste hinzufügen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateAllowedAgentAdd"> + Nur für diesen Grundbesitz oder für alle [ALL_ESTATES] zur Erlaubnisliste hinzufügen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Dieser Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateAllowedAgentRemove"> - Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Erlaubnisliste entfernen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateAllowedAgentRemove"> + Nur für diesen Grundbesitz oder für alle [ALL_ESTATES] von Erlaubnisliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateAllowedGroupAdd"> - Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Gruppen-Erlaubnisliste hinzufügen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateAllowedGroupAdd"> + Nur für diesen Grundbesitz oder für alle [ALL_ESTATES] zur Gruppen-Erlaubnisliste hinzufügen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateAllowedGroupRemove"> - Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Gruppen-Erlaubnisliste entfernen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateAllowedGroupRemove"> + Nur für diesen Grundbesitz oder für alle [ALL_ESTATES] von Gruppen-Erlaubnisliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateBannedAgentAdd"> - Zugang nur für dieses Grundstück oder für [ALL_ESTATES] verweigern? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateBannedAgentAdd"> + Zugang nur für diesen Grundbesitz oder für [ALL_ESTATES] verweigern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateBannedAgentRemove"> - Einwohner nur für dieses Grundstück oder für alle [ALL_ESTATES] von der Bannliste entfernen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateBannedAgentRemove"> + Einwohner nur für diesen Grundbesitz oder für alle [ALL_ESTATES] von der Bannliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateManagerAdd"> - Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] festlegen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateManagerAdd"> + Verwalter nur für diesen Grundbesitz oder für [ALL_ESTATES] festlegen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundbesitze" yestext="Diesen Grundbesitz"/> </notification> - <notification label="Grundstück wählen" name="EstateManagerRemove"> - Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] entfernen? - <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + <notification label="Grundbesitz wählen" name="EstateManagerRemove"> + 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="Rauswurf bestätigen" name="EstateKickUser"> - Benutzer [EVIL_USER] von diesem Grundstück werfen? + Benutzer [EVIL_USER] von diesem Grundbesitz werfen? <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> </notification> <notification name="EstateChangeCovenant"> - Möchten Sie den Grundstücksvertrag wirklich ändern? + Möchten Sie den Grundbesitzvertrag wirklich ändern? <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> </notification> <notification name="RegionEntryAccessBlocked"> @@ -1570,14 +1570,14 @@ Klicken Sie auf „Einstellung ändern“, um Ihre Einstellung für Altereinstuf <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="ProblemImportingEstateCovenant"> - Problem beim Import des Grundstückvertrags. + Problem beim Import des Grundbesitzvertrags. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="ProblemAddingEstateManager"> - Es gibt Probleme beim Hinzufügen eines neuen Grundstücksverwalters. Bei mindestens einem Grundstück ist die Verwalterliste voll. + Es gibt Probleme beim Hinzufügen eines neuen Grundbesitzverwalters. Bei mindestens einem Grundbesitz ist die Verwalterliste voll. </notification> <notification name="ProblemAddingEstateGeneric"> - Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. + Problem beim Hinzufügen zu dieser Grundbesitzliste. Bei mindestens einem Grundbesitz ist die Liste voll. </notification> <notification name="UnableToLoadNotecardAsset"> Notizkarten-Asset konnte nicht geladen werden. @@ -2287,7 +2287,7 @@ Versuchen Sie es in einigen Minuten erneut. <form name="form"> <button name="Show" text="Anzeigen"/> <button name="Discard" text="Verwerfen"/> - <button name="Mute" text="Ignorieren"/> + <button name="Mute" text="Blockieren"/> </form> </notification> <notification name="GodMessage"> @@ -2433,7 +2433,7 @@ Anfrage gestatten? </form> </notification> <notification name="ScriptToast"> - [FIRST] [LAST]s '[TITLE]' fordert Eingaben vom Einwohner an. + [FIRST] [LAST]s '[TITLE]' fordert Eingaben vom Benutzer an. <form name="form"> <button name="Open" text="Dialog öffnen"/> <button name="Ignore" text="Ignorieren"/> diff --git a/indra/newview/skins/default/xui/de/panel_bottomtray.xml b/indra/newview/skins/default/xui/de/panel_bottomtray.xml index d3f89b0ad3c7ae3705c7db21d34ed00d0f97912d..d52b8dcf4d3ce534cdf476178a987240cfe828b4 100644 --- a/indra/newview/skins/default/xui/de/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/de/panel_bottomtray.xml @@ -9,7 +9,7 @@ <layout_stack name="toolbar_stack"> <layout_panel name="speak_panel"> <talk_button name="talk"> - <speak_button label="Sprechen" label_selected="Sprechen" name="speak_btn"/> + <speak_button label="Sprechen" label_selected="Sprechen" name="speak_btn" halign="right" /> </talk_button> </layout_panel> <layout_panel name="gesture_panel"> diff --git a/indra/newview/skins/default/xui/de/panel_classified_info.xml b/indra/newview/skins/default/xui/de/panel_classified_info.xml index 6480b640cdf900c67a0868983adcc6b04bba2c0f..ac1cd7ba8897da9de54230a39e68e7038f2c3f20 100644 --- a/indra/newview/skins/default/xui/de/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/de/panel_classified_info.xml @@ -26,7 +26,7 @@ <panel name="scroll_content_panel"> <text_editor name="classified_name" value="[name]"/> <text name="classified_location_label" value="Standort:"/> - <text_editor name="classified_location" value="[wird geladen...]"/> + <text_editor name="classified_location" value="[loading...]"/> <text name="content_type_label" value="Inhaltsart:"/> <text_editor name="content_type" value="[Inhalts-Art]"/> <text name="category_label" value="Kategorie:"/> diff --git a/indra/newview/skins/default/xui/de/panel_edit_pick.xml b/indra/newview/skins/default/xui/de/panel_edit_pick.xml index 0cb14177af96671225108c05986c87dbfdd0d5a9..1ec4f0916126736e20a6bfb01ad10b2766114cec 100644 --- a/indra/newview/skins/default/xui/de/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/de/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Auswahl bearbeiten" name="panel_edit_pick"> + <panel.string name="location_notice"> + (wird nach Speichern aktualisiert) + </panel.string> <text name="title"> Auswahl bearbeiten </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="[WHAT] speichern" name="save_changes_btn"/> + <button label="Auswahl speichern" name="save_changes_btn"/> <button label="Abbrechen" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/de/panel_main_inventory.xml b/indra/newview/skins/default/xui/de/panel_main_inventory.xml index 7d57a3b3f26554101ba2cf85456e148b41ae381e..d3eb9ae04c2ae0b5bfe0c9556657997a6170e7ab 100644 --- a/indra/newview/skins/default/xui/de/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/de/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Sonstiges" name="main inventory panel"> - <panel.string name="Title"> - Sonstiges + <panel.string name="ItemcountFetching"> + Inventar ([ITEM_COUNT] Artikel werden abgerufen... [FILTER] </panel.string> - <filter_editor label="Inventar filtern" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="MEIN INVENTAR" name="All Items"/> - <inventory_panel label="AKTUELL" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Zusätzliche Optionen anzeigen"/> - <button name="add_btn" tool_tip="Neues Objekt hinzufügen"/> - <dnd_button name="trash_btn" tool_tip="Auswahl löschen"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] Objekte [FILTER] + </panel.string> + <text name="ItemcountText"> + Objekte: + </text> <menu_bar name="Inventory Menu"> <menu label="Datei" name="File"> <menu_item_call label="Öffnen" name="Open"/> @@ -61,4 +57,14 @@ <menu_item_check label="Systemordner nach oben" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Inventar filtern" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="MEIN INVENTAR" name="All Items"/> + <inventory_panel label="AKTUELL" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Zusätzliche Optionen anzeigen"/> + <button name="add_btn" tool_tip="Neues Objekt hinzufügen"/> + <dnd_button name="trash_btn" tool_tip="Auswahl löschen"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/de/panel_nearby_media.xml b/indra/newview/skins/default/xui/de/panel_nearby_media.xml index 2d97a25fa991a3352f4767925a472768c5a97e29..32750f14d4a93a8e5e6286a416115e39ffaecf8d 100644 --- a/indra/newview/skins/default/xui/de/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/de/panel_nearby_media.xml @@ -13,16 +13,23 @@ (wird abgespielt) </string> <panel name="minimized_controls"> - <button label="Alle stoppen" name="all_nearby_media_disable_btn" tool_tip="Alle Medien in der Nähe ausschalten"/> - <button label="Alle starten" name="all_nearby_media_enable_btn" tool_tip="Alle Medien in der Nähe einschalten"/> + <button label="Stoppen" name="all_nearby_media_disable_btn" tool_tip="Alle Medien in der Nähe ausschalten"/> + <button label="Starten" name="all_nearby_media_enable_btn" tool_tip="Alle Medien in der Nähe einschalten"/> <button name="open_prefs_btn" tool_tip="Medien-Einstellungen öffnen"/> <button label="Mehr >>" label_selected="Weniger <<" name="more_less_btn" tool_tip="Erweiterte Steuerung"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + Medien in der Nähe + </text> + <text name="show"> + Anzeigen: + </text> <combo_box name="show_combo"> <combo_box.item label="Alle" name="All"/> <combo_box.item label="Auf dieser Parzelle" name="WithinParcel"/> <combo_box.item label="Außerhalb dieser Parzelle" name="OutsideParcel"/> + <combo_box.item label="An anderen Avataren" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="Umgebung" name="media_proximity"/> @@ -31,7 +38,7 @@ <scroll_list.columns label="Name" name="media_name"/> <scroll_list.columns label="Fehler beseitigen" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> <button name="stop_btn" tool_tip="Ausgewählte Medien stoppen"/> diff --git a/indra/newview/skins/default/xui/de/panel_place_profile.xml b/indra/newview/skins/default/xui/de/panel_place_profile.xml index 82e5febf8df2f8dfa56b16f8c3945c8e8fb42f80..ed1421aa60d8ad19a1debff0de79375d403dcccc 100644 --- a/indra/newview/skins/default/xui/de/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/de/panel_place_profile.xml @@ -83,7 +83,7 @@ <text name="scripts_value" value="Ein"/> <text name="damage_label" value="Schaden:"/> <text name="damage_value" value="Aus"/> - <button label="Land-Info" name="about_land_btn"/> + <button label="Ãœber Land" name="about_land_btn"/> </panel> </accordion_tab> <accordion_tab name="region_information_tab" title="Region"> @@ -100,12 +100,12 @@ <text name="region_group"> The Mighty Moose of mooseville soundvillemoose </text> - <button label="Region/Grundstück" name="region_info_btn"/> + <button label="Region/Grundbesitz" name="region_info_btn"/> </panel> </accordion_tab> - <accordion_tab name="estate_information_tab" title="Grundstück"> + <accordion_tab name="estate_information_tab" title="Grundbesitz"> <panel name="estate_information_panel"> - <text name="estate_name_label" value="Grundstück:"/> + <text name="estate_name_label" value="Grundbesitz:"/> <text name="estate_rating_label" value="Einstufung:"/> <text name="estate_owner_label" value="Eigentümer:"/> <text name="covenant_label" value="Vertrag:"/> diff --git a/indra/newview/skins/default/xui/de/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/de/panel_preferences_advanced.xml index 78c495e37703d35925343895dffe97ccc1b2156e..c0ab69fcdf60c7750b4da2bcf87a2e793d8ff8f5 100644 --- a/indra/newview/skins/default/xui/de/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/de/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + Mittlere Maustaste + </panel.string> <slider label="Sichtwinkel" name="camera_fov"/> <slider label="Abstand" name="camera_offset_scale"/> <text name="heading2"> @@ -16,7 +19,7 @@ <check_box label="Avatarlippen beim Sprechen bewegen" name="enable_lip_sync"/> <check_box label="Blasen-Chat" name="bubble_text_chat"/> <slider label="Deckkraft" label_width="66" name="bubble_chat_opacity"/> - <color_swatch name="background" tool_tip="Farbe für Blasen-Chat auswählen" left_pad="35"/> + <color_swatch left_pad="35" name="background" tool_tip="Farbe für Blasen-Chat auswählen"/> <check_box label="Skript-Fehler anzeigen:" name="show_script_errors"/> <radio_group name="show_location"> <radio_item label="Chat in der Nähe" name="0"/> diff --git a/indra/newview/skins/default/xui/de/panel_preferences_alerts.xml b/indra/newview/skins/default/xui/de/panel_preferences_alerts.xml index 0a0534c7393dc08f9f6effc4506aa852eda11ed7..fcb45e26be25cf01ef1f9cce9b9809c886bf5c76 100644 --- a/indra/newview/skins/default/xui/de/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/de/panel_preferences_alerts.xml @@ -3,7 +3,7 @@ <text name="tell_me_label"> Anzeigen: </text> - <check_box label="Wenn ich Geld ausgebe oder L$ erhalte" name="notify_money_change_checkbox"/> + <check_box label="Wenn ich L$ ausgebe oder erhalte" name="notify_money_change_checkbox"/> <check_box label="Wenn meine Freunde sich an- oder abmelden" name="friends_online_notify_checkbox"/> <text name="show_label"> Immer anzeigen: diff --git a/indra/newview/skins/default/xui/de/panel_preferences_chat.xml b/indra/newview/skins/default/xui/de/panel_preferences_chat.xml index 45b560c7595c32b62306bae8f7f2cae6dcb4a169..aa1a93efac3d95db1326c913018d5af188e9ac60 100644 --- a/indra/newview/skins/default/xui/de/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/de/panel_preferences_chat.xml @@ -46,6 +46,12 @@ <check_box initial_value="true" label="Beim Chatten Tippanimation abspielen" name="play_typing_animation"/> <check_box label="IMs per Email zuschicken, wenn ich offline bin" name="send_im_to_email"/> <check_box label="Kompakten Text-Chatverlauf aktivieren" name="plain_text_chat_history"/> + <text name="show_ims_in_label"> + IMs anzeigen in: + </text> + <text name="requires_restart_label"> + (Neustart erforderlich) + </text> <radio_group name="chat_window" tool_tip="Zeigen Sie Ihre Sofortnachrichten (Instant Messages) in einem anderen Fenster oder in einem einzigen Fenster mit viele Registerkarten an (Neustart erforderlich)."> <radio_item label="Getrennte Fenster" name="radio" value="0"/> <radio_item label="Registerkarten" name="radio2" value="1"/> 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 2516cd3a405f31edb821ca9cf03ece91c48dd672..02c6fb0606b6451654a4e33ae0b1b0957ee5c469 100644 --- a/indra/newview/skins/default/xui/de/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/de/panel_preferences_setup.xml @@ -34,9 +34,12 @@ Web: </text> <radio_group name="use_external_browser"> - <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="0"/> <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="1"/> + <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> + <check_box initial_value="true" label="Plugins aktivieren" name="browser_plugins_enabled"/> + <check_box initial_value="true" label="Cookies annehmen" name="cookies_enabled"/> + <check_box initial_value="true" label="Javascript aktivieren" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Web-Proxy aktivieren" name="web_proxy_enabled"/> <text name="Proxy location"> Proxy-Standort: diff --git a/indra/newview/skins/default/xui/de/panel_profile.xml b/indra/newview/skins/default/xui/de/panel_profile.xml index cb598f89f6dbd17552ff59a28fcc9c97eb8cc7d5..cda2788e402d810b6187b6f664487d205f1af52e 100644 --- a/indra/newview/skins/default/xui/de/panel_profile.xml +++ b/indra/newview/skins/default/xui/de/panel_profile.xml @@ -41,10 +41,10 @@ </scroll_container> </layout_panel> <layout_panel name="profile_buttons_panel"> - <button label="Freund hinzufügen" name="add_friend" tool_tip="Bieten Sie dem Einwohner die Freundschaft an" width="109"/> - <button label="IM" name="im" tool_tip="Instant Messenger öffnen" width="24"/> + <button label="Freund hinzufügen" name="add_friend" tool_tip="Bieten Sie dem Einwohner die Freundschaft an"/> + <button label="IM" name="im" tool_tip="Instant Messenger öffnen"/> <button label="Anrufen" name="call" tool_tip="Diesen Einwohner anrufen"/> - <button label="Karte" name="show_on_map_btn" tool_tip="Einwohner auf Karte anzeigen" width="36"/> + <button label="Karte" name="show_on_map_btn" tool_tip="Einwohner auf Karte anzeigen"/> <button label="Teleportieren" name="teleport" tool_tip="Teleport anbieten"/> <button label="â–¼" name="overflow_btn" tool_tip="Dem Einwohner Geld geben oder Inventar an den Einwohner schicken"/> </layout_panel> diff --git a/indra/newview/skins/default/xui/de/panel_region_covenant.xml b/indra/newview/skins/default/xui/de/panel_region_covenant.xml index 153082909aec12a97cc457ba6dfa4996cab90b0f..225c98b84f1a1b99b9c10ce522b1eaa195a15241 100644 --- a/indra/newview/skins/default/xui/de/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/de/panel_region_covenant.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Vertrag" name="Covenant"> <text name="estate_section_lbl"> - Grundstück + Grundbesitz </text> <text name="estate_name_lbl"> Name: @@ -23,15 +23,15 @@ </text> <button label="?" name="covenant_help"/> <text_editor bottom="-247" height="162" name="covenant_editor"> - Für dieses Grundstück fehlt der Vertrag. + Für diesen Grundbesitz fehlt der Vertrag. </text_editor> <button label="Zurücksetzen" name="reset_covenant"/> <text name="covenant_help_text"> Änderungen am Vertrag werden für alle Parzellen auf dem -Grundstück übernommen. +Grundbesitz übernommen. </text> <text bottom_delta="-36" name="covenant_instructions"> - Ziehen Sie eine Notizkarte an diese Stelle, um den Vertrag für dieses Grundstück zu ändern. + Ziehen Sie eine Notizkarte an diese Stelle, um den Vertrag für diesen Grundbesitz zu ändern. </text> <text bottom_delta="-36" name="region_section_lbl"> Region diff --git a/indra/newview/skins/default/xui/de/panel_region_debug.xml b/indra/newview/skins/default/xui/de/panel_region_debug.xml index 920a5133088f5aff8bde02230525dc68df991937..d1b8f0d78af1e8cf0394d116796bc6d6de222abc 100644 --- a/indra/newview/skins/default/xui/de/panel_region_debug.xml +++ b/indra/newview/skins/default/xui/de/panel_region_debug.xml @@ -28,7 +28,7 @@ </text> <check_box label="Mit Skripten" name="return_scripts" tool_tip="Es werden nur die Objekte zurückgegeben, die über Skripte verfügen."/> <check_box label="Auf dem Land von jemand anderem" name="return_other_land" tool_tip="Es werden nur die Objekte zurückgegeben, die sich auf dem Land eines anderen Einwohners befinden"/> - <check_box label="In jeder Region auf diesem Grundstück" name="return_estate_wide" tool_tip="Es werden die Objekte in allen Regionen dieses Grundstücks zurückgegeben"/> + <check_box label="In jeder Region auf diesem Grundbesitz" name="return_estate_wide" tool_tip="Es werden die Objekte in allen Regionen dieses Grundbesitzes zurückgegeben"/> <button label="Zurückgeben" name="return_btn" width="90"/> <button label="Top-Kollisionsobjekte..." name="top_colliders_btn" tool_tip="Liste der Objekte mit den meisten potenziellen Kollisionen"/> <button label="?" name="top_colliders_help"/> diff --git a/indra/newview/skins/default/xui/de/panel_region_estate.xml b/indra/newview/skins/default/xui/de/panel_region_estate.xml index 92ad9741bc8243813a145ca12d6b87baaa08716b..b93bd3e44210d6377084e8fca6ed7e84f800580e 100644 --- a/indra/newview/skins/default/xui/de/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/de/panel_region_estate.xml @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Grundstück" name="Estate"> +<panel label="Grundbesitz" name="Estate"> <text name="estate_help_text"> - Änderungen wirken sich auf alle Regionen des Grundstücks aus. + Änderungen wirken sich auf alle Regionen des Grundbesitzes aus. </text> <text name="estate_text"> - Grundstück: + Grundbesitz: </text> <text name="estate_name"> (unbekannt) </text> <text name="owner_text"> - Grundstückseigentümer: + Grundbesitzer: </text> <text name="estate_owner"> (unbekannt) @@ -18,7 +18,7 @@ <text name="Only Allow"> Zugang nur dann, wenn überprüft mit: </text> - <check_box label="Zahlungsinformation gespeichert" name="limit_payment" tool_tip="Nicht identifizierte Einwohner verbannen"/> + <check_box label="Zahlungsinformation gespeichert" name="limit_payment" tool_tip="Einwohner ohne Zahlungsinformation nicht zulassen."/> <check_box label="Altersüberprüfung" name="limit_age_verified" tool_tip="Einwohner ohne Altersüberprüfung verbannen. Weitere Informationen finden Sie auf [SUPPORT_SITE]."/> <check_box label="Voice-Chat erlauben" name="voice_chat_check"/> <button label="?" name="voice_chat_help"/> @@ -49,7 +49,7 @@ <check_box label="Verweigern - Zahlungsinfo verwendet" name="deny_transacted"/> <button label="Ãœbernehmen" name="apply_btn"/> <text name="estate_manager_label"> - Grundstücksverwalter: + Grundbesitzsverwalter: </text> <text name="allow_resident_label"> Zulässige Einwohner: @@ -69,6 +69,6 @@ <button label="?" name="ban_resident_help"/> <button label="Hinzufügen..." name="add_banned_avatar_btn"/> <button label="Entfernen..." name="remove_banned_avatar_btn"/> - <button label="Nachricht an Grundstück" name="message_estate_btn"/> - <button label="Einwohner hinauswerfen..." name="kick_user_from_estate_btn"/> + <button label="Nachricht an Grundbesitz" name="message_estate_btn"/> + <button label="Einwohner hinauswerfen" name="kick_user_from_estate_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/de/panel_region_general.xml b/indra/newview/skins/default/xui/de/panel_region_general.xml index 2bf8721c86098c7d10861370efaf8163c4a5a306..be8507ebbdab2883b1c9352334bad614bf4ca01c 100644 --- a/indra/newview/skins/default/xui/de/panel_region_general.xml +++ b/indra/newview/skins/default/xui/de/panel_region_general.xml @@ -33,7 +33,7 @@ <icons_combo_box label="Moderat" name="access_combo"> <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.item label="Generell" name="PG" value="13"/> </icons_combo_box> <button label="Ãœbernehmen" name="apply_btn"/> <button label="Einen Einwohner nach Hause teleportieren..." name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/de/panel_region_terrain.xml b/indra/newview/skins/default/xui/de/panel_region_terrain.xml index e79c8584ba3762a9e858b7a621e06b7938465bbf..01721791a705236f0fb064d2183dfed7f76684c5 100644 --- a/indra/newview/skins/default/xui/de/panel_region_terrain.xml +++ b/indra/newview/skins/default/xui/de/panel_region_terrain.xml @@ -12,17 +12,17 @@ <button label="?" name="terrain_raise_help" /> <spinner label="Untere Terraingrenze" name="terrain_lower_spin" /> <button label="?" name="terrain_lower_help" /> - <check_box label="Grundstücksonne verwenden" name="use_estate_sun_check" /> + <check_box label="Grundbesitzsonne verwenden" name="use_estate_sun_check" /> <button label="?" name="use_estate_sun_help" /> <check_box label="Sonne fest" name="fixed_sun_check" /> <button label="?" name="fixed_sun_help" /> <slider label="Phase" name="sun_hour_slider" /> <button label="Ãœbernehmen" name="apply_btn" /> <button label="RAW-Terrain herunterladen..." name="download_raw_btn" - tool_tip="Nur für Grundstückseigentümer verfügbar, nicht für Verwalter" /> + tool_tip="Nur für Grundbesitzeigentümer verfügbar, nicht für Verwalter" /> <button label="?" name="download_raw_help" /> <button label="RAW-Terrain hochladen..." name="upload_raw_btn" - tool_tip="Nur für Grundstückseigentümer verfügbar, nicht für Verwalter" /> + tool_tip="Nur für Grundbesitzeigentümer verfügbar, nicht für Verwalter" /> <button label="?" name="upload_raw_help" /> <button label="Terrain formen" name="bake_terrain_btn" tool_tip="Das aktuelle Terrain zum Mittelpunkt für die oberen/unteren Terraingrenzen machen" /> diff --git a/indra/newview/skins/default/xui/de/role_actions.xml b/indra/newview/skins/default/xui/de/role_actions.xml index 554a5c27a4b68333069b13c73a59748eba1a2544..b20fcabc822ee7df1f09106dceaf404de645ea1d 100644 --- a/indra/newview/skins/default/xui/de/role_actions.xml +++ b/indra/newview/skins/default/xui/de/role_actions.xml @@ -30,7 +30,7 @@ </action_set> <action_set description="Diese Fähigkeiten ermöglichen es, Parzellenoptionen wie „Objekte erstellen“, „Terrain bearbeiten“ sowie Musik- und Medieneinstellungen zu ändern." name="Parcel Settings"> <action description="Musik- und Medieneinstellungen ändern" longdescription="Die Einstellungen für Streaming-Musik und Filme finden Sie unter „Land-Info“ > „Medien“." name="land change media"/> - <action description="„Terrain bearbeiten“ ein/aus" longdescription="„Terrain bearbeiten“ ein/aus. *WARNUNG* „Land-Info“ > „Optionen“ > „Terrain bearbeiten“ ermöglicht jedem das Terraformen Ihres Grundstücks und das Setzen und Verschieben von Linden-Pflanzen. Ãœberlegen Sie sich, wem Sie diese Fähigkeit verleihen. Diese Einstellung finden Sie unter „Land-Info“ > „Optionen“." name="land edit"/> + <action description="„Terrain bearbeiten“ ein/aus" longdescription="„Terrain bearbeiten“ ein/aus. *WARNUNG* „Land-Info“ > „Optionen“ > „Terrain bearbeiten“ ermöglicht jedem das Terraformen Ihres Grundbesitzes und das Setzen und Verschieben von Linden-Pflanzen. Ãœberlegen Sie sich, wem Sie diese Fähigkeit verleihen. Diese Einstellung finden Sie unter „Land-Info“ > „Optionen“." name="land edit"/> <action description="„Land-Info“-Optionen einstellen" longdescription="„Sicher (kein Schaden)“ und „Fliegen“ ein- und ausschalten und Einwohnern folgende Aktionen erlauben: „Terrain bearbeiten“, „Bauen“, „Landmarken erstellen“ und „Skripts ausführen“ auf gruppeneigenem Land in „Land-Info“ > Registerkarte „Optionen“." name="land options"/> </action_set> <action_set description="Diese Fähigkeiten ermöglichen es, Mitgliedern das Umgehen von Restriktionen auf gruppeneigenen Parzellen zu erlauben." name="Parcel Powers"> @@ -46,7 +46,7 @@ <action description="Parzelleneinstellungen für „Pässe verkaufen“ ändern" longdescription="Die Parzellen-Einstellungen für „Pässe verkaufen“ ändern Sie unter „Land-Info“ > Registerkarte „Zugang“." name="land manage passes"/> <action description="Einwohner aus Parzellen werfen und einfrieren" longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können gegen unerwünschte Einwohner auf einer gruppeneigenen Parzelle Maßnahmen ergreifen. Klicken Sie den Einwohner mit rechts an und wählen Sie „Hinauswerfen“ oder „Einfrieren“." name="land admin"/> </action_set> - <action_set description="Diese Fähigkeiten ermöglichen es, Mitgliedern das Zurückgeben von Objekten sowie das Platzieren und Verschieben von Linden-Pflanzen zu erlauben. Mitglieder können das Grundstück aufräumen und an der Landschaftsgestaltung mitwirken. Aber Vorsicht: Zurückgegebene Objekte können nicht mehr zurückgeholt werden." name="Parcel Content"> + <action_set description="Diese Fähigkeiten ermöglichen es, Mitgliedern das Zurückgeben von Objekten sowie das Platzieren und Verschieben von Linden-Pflanzen zu erlauben. Mitglieder können den Grundbesitz aufräumen und an der Landschaftsgestaltung mitwirken. Aber Vorsicht: Zurückgegebene Objekte können nicht mehr zurückgeholt werden." name="Parcel Content"> <action description="Gruppeneigene Objekte zurückgeben" longdescription="Gruppeneigene Objekte auf gruppeneigenen Parzellen können Sie unter „Land-Info“ > „Objekte“ zurückgeben." name="land return group owned"/> <action description="Gruppenobjekte zurückgeben" longdescription="Gruppenobjekte auf gruppeneigenen Parzellen können Sie unter „Land-Info“ > „Objekte“ zurückgeben." name="land return group set"/> <action description="Gruppenfremde Objekte zurückgeben" longdescription="Objekte von gruppenfremden Personen auf gruppeneigenen Parzellen können Sie unter „Land-Info“ > „Objekte“ zurückgeben." name="land return non group"/> diff --git a/indra/newview/skins/default/xui/de/strings.xml b/indra/newview/skins/default/xui/de/strings.xml index fc01b6946109518def0377b87ca20026eb05d2e8..fd05f02ceb85b98081a73fe915eebfa2fd7f7f29 100644 --- a/indra/newview/skins/default/xui/de/strings.xml +++ b/indra/newview/skins/default/xui/de/strings.xml @@ -23,7 +23,22 @@ Hardware wird erfasst... </string> <string name="StartupLoading"> - Wird geladen + [APP_NAME] wird geladen... + </string> + <string name="StartupClearingCache"> + Cache wird gelöscht... + </string> + <string name="StartupInitializingTextureCache"> + Textur-Cache wird initialisiert... + </string> + <string name="StartupInitializingVFS"> + VFS wird initialisiert... + </string> + <string name="ProgressRestoring"> + Wird wiederhergestellt... + </string> + <string name="ProgressChangingResolution"> + Auflösung wird geändert... </string> <string name="Fullbright"> Fullbright (Legacy) @@ -88,6 +103,9 @@ <string name="LoginFailedNoNetwork"> Netzwerk Fehler: Eine Verbindung konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Netzwerkverbindung. </string> + <string name="LoginFailed"> + Anmeldung fehlgeschlagen + </string> <string name="Quit"> Beenden </string> @@ -97,6 +115,24 @@ <string name="AgentLostConnection"> In dieser Region kann es zu Problemen kommen. Bitte überprüfen Sie Ihre Internetverbindung. </string> + <string name="SavingSettings"> + Ihr Einstellungen werden gespeichert... + </string> + <string name="LoggingOut"> + Abmeldung erfolgt... + </string> + <string name="ShuttingDown"> + Programm wird beendet... + </string> + <string name="YouHaveBeenDisconnected"> + Die Verbindung zu der Region ist abgebrochen. + </string> + <string name="SentToInvalidRegion"> + Sie wurden in eine ungültige Region geschickt. + </string> + <string name="TestingDisconnect"> + Verbindungsabbruch wird getestet + </string> <string name="TooltipPerson"> Person </string> @@ -151,6 +187,24 @@ <string name="TooltipAgentUrl"> Anklicken, um das Profil dieses Einwohners anzuzeigen </string> + <string name="TooltipAgentMute"> + Klicken, um diesen Einwohner stummzuschalten + </string> + <string name="TooltipAgentUnmute"> + Klicken, um diesen Einwohner freizuschalten + </string> + <string name="TooltipAgentIM"> + Klicken, um diesem Einwohner eine IM zu schicken. + </string> + <string name="TooltipAgentPay"> + Klicken, um diesen Einwohner zu bezahlen + </string> + <string name="TooltipAgentOfferTeleport"> + Klicken, um diesem Einwohner einen Teleport anzubieten. + </string> + <string name="TooltipAgentRequestFriend"> + Klicken, um diesem Einwohner ein Freundschaftsangebot zu schicken. + </string> <string name="TooltipGroupUrl"> Anklicken, um Beschreibung der Gruppe anzuzeigen </string> @@ -176,12 +230,31 @@ Anklicken, um Befehl secondlife:// auszuführen </string> <string name="CurrentURL" value=" CurrentURL: [CurrentURL]"/> + <string name="TooltipPrice" value="[PRICE] L$"/> <string name="SLurlLabelTeleport"> Teleportieren nach </string> <string name="SLurlLabelShowOnMap"> Karte anzeigen für </string> + <string name="SLappAgentMute"> + Stummschalten + </string> + <string name="SLappAgentUnmute"> + Stummschaltung aufheben + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + Bezahlen + </string> + <string name="SLappAgentOfferTeleport"> + Teleportangebot an + </string> + <string name="SLappAgentRequestFriend"> + Freundschaftsangebot + </string> <string name="BUTTON_CLOSE_DARWIN"> Schließen (⌘W) </string> @@ -335,6 +408,9 @@ <string name="symbolic link"> Link </string> + <string name="symbolic folder link"> + Link zu Ordner + </string> <string name="AvatarEditingAppearance"> (Aussehen wird bearbeitet) </string> @@ -849,6 +925,7 @@ Keine Inhalte </string> <string name="WornOnAttachmentPoint" value=" (getragen am [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (aktiviert)"/> <string name="PermYes"> Ja </string> @@ -948,6 +1025,9 @@ <string name="InvFolder My Outfits"> Meine Outfits </string> + <string name="InvFolder Accessories"> + Zubehör + </string> <string name="InvFolder Friends"> Freunde </string> @@ -1183,7 +1263,7 @@ Oben links </string> <string name="Center"> - Zentrieren + Mitte </string> <string name="Bottom Left"> Unten links @@ -1289,13 +1369,13 @@ Fehler </string> <string name="RegionInfoAllEstatesOwnedBy"> - alle Grundstücke gehören [OWNER] + alle Grundbesitze gehören [OWNER] </string> <string name="RegionInfoAllEstatesYouOwn"> - alle Grundstücke, die Sie besitzen + alle Grundbesitze, die Sie besitzen </string> <string name="RegionInfoAllEstatesYouManage"> - alle Grundstücke, die Sie für [OWNER] verwalten + alle Grundbesitze, die Sie für [OWNER] verwalten </string> <string name="RegionInfoAllowedResidents"> Zulässige Einwohner: ([ALLOWEDAGENTS], max [MAXACCESS]) @@ -1471,6 +1551,9 @@ <string name="PanelContentsNewScript"> Neues Skript </string> + <string name="PanelContentsTooltip"> + Objektinhalt + </string> <string name="BusyModeResponseDefault"> Der Einwohner/Die Einwohnerin ist „beschäftigt", d.h. er/sie möchte im Moment nicht gestört werden. Ihre Nachricht wird dem Einwohner/der Einwohnerin als IM angezeigt, und kann später beantwortet werden. </string> @@ -1487,10 +1570,10 @@ (Gruppe) </string> <string name="RegionNoCovenant"> - Für dieses Grundstück liegt kein Vertrag vor. + Für diesen Grundbesitz liegt kein Vertrag vor. </string> <string name="RegionNoCovenantOtherOwner"> - Für dieses Grundstück liegt kein Vertrag vor. Das Land auf diesem Grundstück wird vom Grundstückseigentümer und nicht von Linden Lab verkauft. Für Informationen zum Verkauf setzen Sie sich bitte mit dem Grundstückseigentümer in Verbindung. + Für diesen Grundbesitz liegt kein Vertrag vor. Das Land auf diesem Grundbesitz wird vom Grundbesitzer und nicht von Linden Lab verkauft. Für Informationen zum Verkauf setzen Sie sich bitte mit dem Grundbesitzer in Verbindung. </string> <string name="covenant_last_modified"> Zuletzt geändert: @@ -1588,7 +1671,10 @@ Abbrechen </string> <string name="UploadingCosts"> - Hochladen von %s kostet + Das Hochladen von [NAME] kostet [AMOUNT] L$ + </string> + <string name="BuyingCosts"> + Die Kosten betragen: [AMOUNT] L$ </string> <string name="UnknownFileExtension"> Unbekanntes Dateiformat .%s @@ -3375,4 +3461,120 @@ Falls diese Meldung weiterhin angezeigt wird, wenden Sie sich bitte an [SUPPORT_ <string name="unread_chat_multiple"> [SOURCES] haben etwas Neues gesagt </string> + <string name="paid_you_ldollars"> + [NAME] hat Ihnen [AMOUNT] L$ bezahlt. + </string> + <string name="you_paid_ldollars"> + Sie haben [REASON] [AMOUNT] L$ an [NAME] bezahlt. + </string> + <string name="you_paid_ldollars_no_reason"> + Sie haben [AMOUNT] L$ an [NAME] bezahlt. + </string> + <string name="you_paid_ldollars_no_name"> + Sie haben [REASON] [AMOUNT] L$ bezahlt. + </string> + <string name="for a parcel of land"> + für eine Landparzelle + </string> + <string name="for a land access pass"> + für einen Pass + </string> + <string name="for deeding land"> + für die Landübertragung + </string> + <string name="to create a group"> + für die Gründung einer Gruppe + </string> + <string name="to join a group"> + für den Beitritt zur Gruppe + </string> + <string name="to upload"> + fürs Hochladen + </string> + <string name="giving"> + [AMOUNT] L$ werden bezahlt + </string> + <string name="uploading_costs"> + Kosten für Hochladen [AMOUNT] L$ + </string> + <string name="this_costs"> + Kosten: [AMOUNT] L$ + </string> + <string name="buying_selected_land"> + Ausgewähltes Land wird für [AMOUNT] L$ gekauft. + </string> + <string name="this_object_costs"> + Dieses Objekt kostet [AMOUNT] L$ + </string> + <string name="group_role_everyone"> + Jeder + </string> + <string name="group_role_officers"> + Offiziere + </string> + <string name="group_role_owners"> + Eigentümer + </string> + <string name="uploading_abuse_report"> + Bericht wird hochgeladen... + +Missbrauchsbericht + </string> + <string name="New Shape"> + Neue Form/Gestalt + </string> + <string name="New Skin"> + Neue Haut + </string> + <string name="New Hair"> + Neues Haar + </string> + <string name="New Eyes"> + Neue Augen + </string> + <string name="New Shirt"> + Neues Hemd + </string> + <string name="New Pants"> + Neue Hose + </string> + <string name="New Shoes"> + Neue Schuhe + </string> + <string name="New Socks"> + Neue Socken + </string> + <string name="New Jacket"> + Neue Jacke + </string> + <string name="New Gloves"> + Neue Handschuhe + </string> + <string name="New Undershirt"> + Neues Unterhemd + </string> + <string name="New Underpants"> + Neue Unterhose + </string> + <string name="New Skirt"> + Neuer Rock + </string> + <string name="New Alpha"> + Neues Alpha + </string> + <string name="New Tattoo"> + Neue Tätowierung + </string> + <string name="Invalid Wearable"> + Ungültiges Objekt + </string> + <string name="New Script"> + Neues Skript + </string> + <string name="New Folder"> + Neuer Ordner + </string> + <string name="Contents"> + Inhalt + </string> </strings> 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 3297150c7f2daa9acc0e4c2566c2bbba64c28acd..81b141dadb07d9a34a4e185133e720e233ab5d73 100644 --- a/indra/newview/skins/default/xui/en/floater_about_land.xml +++ b/indra/newview/skins/default/xui/en/floater_about_land.xml @@ -8,6 +8,18 @@ save_rect="true" title="ABOUT LAND" width="490"> + <floater.string + name="maturity_icon_general"> + "Parcel_PG_Dark" + </floater.string> + <floater.string + name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string + name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> <floater.string name="Minutes"> [MINUTES] minutes @@ -263,7 +275,7 @@ Leyla Linden </text> left_pad="4" right="-10" name="Set..." - width="50" + width="90" top_delta="-2"/> <check_box enabled="false" @@ -395,7 +407,7 @@ Leyla Linden </text> name="Cancel Land Sale" left_pad="5" top_pad="-25" - width="155" /> + width="180" /> <text type="string" length="1" @@ -474,10 +486,10 @@ Leyla Linden </text> height="23" label="Buy Land" layout="topleft" - left_delta="82" + left_delta="52" name="Buy Land..." top_pad="7" - width="100" /> + width="130" /> <button enabled="true" follows="left|top" @@ -487,7 +499,7 @@ Leyla Linden </text> left="10" name="Scripts..." top_pad="1" - width="100" /> + width="150" /> <button enabled="false" follows="left|top" @@ -504,11 +516,11 @@ Leyla Linden </text> height="23" label="Buy Pass" layout="topleft" - left_delta="-105" + left_delta="-135" name="Buy Pass..." tool_tip="A pass gives you temporary access to this land." top_delta="0" - width="100" /> + width="130" /> <button follows="left|top" height="23" @@ -547,21 +559,26 @@ Leyla Linden </text> left="0" top="0" help_topic="land_covenant_tab" - name="land_covenant_panel"> + name="land_covenant_panel" + word_wrap="true"> <panel.string - name="can_resell"> + name="can_resell" + word_wrap="true"> Purchased land in this region may be resold. </panel.string> <panel.string - name="can_not_resell"> + name="can_not_resell" + word_wrap="true"> Purchased land in this region may not be resold. </panel.string> <panel.string - name="can_change"> + name="can_change" + word_wrap="true"> Purchased land in this region may be joined or subdivided. </panel.string> <panel.string - name="can_not_change"> + name="can_not_change" + word_wrap="true"> Purchased land in this region may not be joined or subdivided. </panel.string> <text @@ -736,6 +753,7 @@ Leyla Linden </text> left_pad="10" mouse_opaque="false" name="resellable_clause" + word_wrap="true" width="330"> Land in this region may not be resold. </text> @@ -1044,7 +1062,7 @@ Leyla Linden </text> left="10" name="Autoreturn" top_pad="0" - width="294"> + width="310"> Auto return other Residents' objects (minutes, 0 for off): </text> <line_editor @@ -1107,7 +1125,7 @@ Leyla Linden </text> label="Type" name="type" sort_column="online_status" - width="24" /> + width="50" /> <name_list.columns name="online_status" width="-1" /> @@ -1222,7 +1240,7 @@ Only large parcels can be listed in search. layout="topleft" left_pad="2" name="edit objects check" - width="120" /> + width="130" /> <check_box height="16" label="Group" @@ -1248,7 +1266,7 @@ Only large parcels can be listed in search. left_pad="2" name="all object entry check" top_delta="0" - width="120" /> + width="130" /> <check_box height="16" label="Group" @@ -1275,7 +1293,7 @@ Only large parcels can be listed in search. left_pad="2" name="check other scripts" top_delta="0" - width="120" /> + width="130" /> <check_box height="16" label="Group" @@ -1329,7 +1347,7 @@ Only large parcels can be listed in search. left="30" name="land category with adult" visible="false" - width="130"> + width="140"> <combo_box.item label="Any Category" name="item0" @@ -1390,7 +1408,7 @@ Only large parcels can be listed in search. left="30" name="land category" visible="false" - width="130"> + width="140"> <combo_box.item label="Any Category" name="item0" @@ -1607,7 +1625,7 @@ Only large parcels can be listed in search. layout="topleft" left_pad="5" name="set_media_url" - width="50" + width="70" top_delta="0"/> <check_box follows="top|left" @@ -1875,6 +1893,10 @@ Only large parcels can be listed in search. (Defined by the Estate) </panel.string> <panel.string + name="allow_public_access"> + Allow Public Access ([MATURITY]) + </panel.string> + <panel.string name="estate_override"> One or more of these options is set at the estate level </panel.string> @@ -1894,7 +1916,6 @@ Only large parcels can be listed in search. <check_box follows="top|left" height="16" - label="Allow Public Access [MATURITY]" layout="topleft" left_delta="0" name="public_access" diff --git a/indra/newview/skins/default/xui/en/floater_animation_preview.xml b/indra/newview/skins/default/xui/en/floater_animation_preview.xml index 1ffedde29b01bc3076698a61656cc6702d19ead3..9dff4abe2cb290732f36c99a1b880858721172cf 100644 --- a/indra/newview/skins/default/xui/en/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/en/floater_animation_preview.xml @@ -218,14 +218,14 @@ Maximum animation length is [MAX_LENGTH] seconds. increment="1" initial_value="0" label="In(%)" - label_width="49" + label_width="70" layout="topleft" top_pad="5" - left="30" + left="15" max_val="100" name="loop_in_point" tool_tip="Sets point in animation that looping returns to" - width="115" /> + width="130" /> <spinner bottom_delta="0" follows="left|top" @@ -238,8 +238,8 @@ Maximum animation length is [MAX_LENGTH] seconds. max_val="100" name="loop_out_point" tool_tip="Sets point in animation that ends a loop" - label_width="49" - width="115" /> + label_width="60" + width="120" /> <text type="string" length="1" @@ -256,10 +256,10 @@ Maximum animation length is [MAX_LENGTH] seconds. <combo_box height="23" layout="topleft" - left_pad="0" + left_pad="20" name="hand_pose_combo" tool_tip="Controls what hands do during animation" - width="150"> + width="130"> <combo_box.item label="Spread" name="Spread" @@ -328,9 +328,9 @@ Maximum animation length is [MAX_LENGTH] seconds. </text> <combo_box height="23" - width="150" + width="130" layout="topleft" - left_pad="0" + left_pad="20" name="emote_combo" tool_tip="Controls what face does during animation"> <combo_box.item @@ -409,9 +409,9 @@ Maximum animation length is [MAX_LENGTH] seconds. </text> <combo_box height="23" - width="150" + width="130" layout="topleft" - left_pad="0" + left_pad="20" name="preview_base_anim" tool_tip="Use this to test your animation behavior while your avatar performs common actions."> <combo_box.item @@ -433,27 +433,27 @@ Maximum animation length is [MAX_LENGTH] seconds. increment="0.01" initial_value="0" label="Ease In (sec)" - label_width="110" + label_width="140" layout="topleft" left="10" max_val="10" name="ease_in_time" tool_tip="Amount of time (in seconds) over which animations blends in" top_pad="10" - width="200" /> + width="210" /> <spinner follows="left|top" height="23" increment="0.01" initial_value="0" label="Ease Out (sec)" - label_width="110" + label_width="140" layout="topleft" top_pad="0" max_val="10" name="ease_out_time" tool_tip="Amount of time (in seconds) over which animations blends out" - width="200" /> + width="210" /> <button follows="top|right" height="23" diff --git a/indra/newview/skins/default/xui/en/floater_buy_currency.xml b/indra/newview/skins/default/xui/en/floater_buy_currency.xml index 961bd6b5e43d607ab47ff2ab656255c296756b1c..e02d32596a18c30acac9c8a823d8a9be9fb46663 100644 --- a/indra/newview/skins/default/xui/en/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/en/floater_buy_currency.xml @@ -182,7 +182,7 @@ width="180" layout="topleft" name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text type="string" diff --git a/indra/newview/skins/default/xui/en/floater_event.xml b/indra/newview/skins/default/xui/en/floater_event.xml index bcf15d7193798b20b4f84671f78650b97138dd8d..0255e202fb91c21ee606ac45d6cce248235f9978 100644 --- a/indra/newview/skins/default/xui/en/floater_event.xml +++ b/indra/newview/skins/default/xui/en/floater_event.xml @@ -228,7 +228,7 @@ name="rating_label" top_delta="3" value="Rating:" - width="58" /> + width="90" /> <text follows="left|right|top" height="16" diff --git a/indra/newview/skins/default/xui/en/floater_im_session.xml b/indra/newview/skins/default/xui/en/floater_im_session.xml index 25016e067331ceff55b42c0888df003b265c3cee..422e50f035a839d442e8822edce3223d3edf58d7 100644 --- a/indra/newview/skins/default/xui/en/floater_im_session.xml +++ b/indra/newview/skins/default/xui/en/floater_im_session.xml @@ -13,7 +13,7 @@ can_minimize="true" can_close="true" visible="false" - width="360" + width="385" can_resize="true" min_width="250" min_height="190"> @@ -22,7 +22,7 @@ default_tab_group="2" follows="all" height="320" - width="360" + width="385" layout="topleft" orientation="horizontal" name="im_panels" diff --git a/indra/newview/skins/default/xui/en/floater_inventory.xml b/indra/newview/skins/default/xui/en/floater_inventory.xml index 0d381fe5cbbddb36b8487146374e0dc2319a7951..ba2e0d3277ff18f491056056fe8441f81e0542f2 100644 --- a/indra/newview/skins/default/xui/en/floater_inventory.xml +++ b/indra/newview/skins/default/xui/en/floater_inventory.xml @@ -14,22 +14,6 @@ single_instance="false" title="MY INVENTORY" width="467"> - <floater.string - name="Title"> - MY INVENTORY - </floater.string> - <floater.string - name="TitleFetching"> - MY INVENTORY (Fetching [ITEM_COUNT] Items...) [FILTER] - </floater.string> - <floater.string - name="TitleCompleted"> - MY INVENTORY ([ITEM_COUNT] Items) [FILTER] - </floater.string> - <floater.string - name="Fetched"> - Fetched - </floater.string> <panel bottom="560" class="panel_main_inventory" diff --git a/indra/newview/skins/default/xui/en/floater_preferences.xml b/indra/newview/skins/default/xui/en/floater_preferences.xml index d7a7daf30ccbb04476ce08a3c9f7d7b23bccde28..49361784ae2868b0bbfaba88b9069c60da0cb75b 100644 --- a/indra/newview/skins/default/xui/en/floater_preferences.xml +++ b/indra/newview/skins/default/xui/en/floater_preferences.xml @@ -10,7 +10,7 @@ help_topic="preferences" single_instance="true" title="PREFERENCES" - width="620"> + width="658"> <button follows="right|bottom" height="23" @@ -39,6 +39,7 @@ </button> <tab_container follows="all" + halign="left" height="410" layout="topleft" left="0" @@ -48,7 +49,7 @@ tab_width="115" tab_padding_right="5" top="21" - width="620"> + width="658"> <panel class="panel_preference" filename="panel_preferences_general.xml" diff --git a/indra/newview/skins/default/xui/en/floater_preview_notecard.xml b/indra/newview/skins/default/xui/en/floater_preview_notecard.xml index ead5b8c8f2e30dee6b448a03a77f98f0b4f5791f..e9099211a33c89b7a5c63bb626b48453d3c85edd 100644 --- a/indra/newview/skins/default/xui/en/floater_preview_notecard.xml +++ b/indra/newview/skins/default/xui/en/floater_preview_notecard.xml @@ -25,10 +25,6 @@ name="Title"> Notecard: [NAME] </floater.string> - <floater.string - name="Save"> - Save - </floater.string> <icon follows="top|right" height="18" diff --git a/indra/newview/skins/default/xui/en/floater_script.xml b/indra/newview/skins/default/xui/en/floater_script.xml index 663899d4b3ff50cd24e4bdc3ac6d4702b3f80e5b..12ade86b5fa9f2db25afc370c89f26a4166d1b4b 100644 --- a/indra/newview/skins/default/xui/en/floater_script.xml +++ b/indra/newview/skins/default/xui/en/floater_script.xml @@ -3,7 +3,7 @@ legacy_header_height="18" background_visible="true" follows="left|top|right|bottom" - height="369" + height="250" layout="topleft" left="0" name="script_floater" @@ -11,8 +11,8 @@ can_dock="true" can_minimize="true" visible="false" - width="520" + width="350" can_resize="false" min_width="350" - min_height="369"> + min_height="200"> </floater> diff --git a/indra/newview/skins/default/xui/en/floater_sell_land.xml b/indra/newview/skins/default/xui/en/floater_sell_land.xml index afc44c41b8cbd8e65c720b99d53a3673464a6ea7..4cae42bcfe7528ca2be28f274029b99515152b8d 100644 --- a/indra/newview/skins/default/xui/en/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/en/floater_sell_land.xml @@ -203,13 +203,13 @@ name="none" visible="false" /> <radio_item - bottom="20" + top_pad="10" height="16" label="No, keep ownership of objects" left="10" name="no" /> <radio_item - bottom="40" + top_pad="10" height="16" label="Yes, sell objects with land" left="10" diff --git a/indra/newview/skins/default/xui/en/floater_tools.xml b/indra/newview/skins/default/xui/en/floater_tools.xml index 3b1ecb4c20a06dad991dd3ee62ac04032230b8b4..ce95aa343af1be9d7003fa38201d87e6bfb48740 100644 --- a/indra/newview/skins/default/xui/en/floater_tools.xml +++ b/indra/newview/skins/default/xui/en/floater_tools.xml @@ -12,7 +12,7 @@ short_title="BUILD TOOLS" single_instance="true" sound_flags="0" - width="280"> + width="295"> <floater.string name="status_rotate"> Drag colored bands to rotate object @@ -152,7 +152,7 @@ left="8" name="text status" top_pad="3" - width="275"> + width="285"> Drag to move, shift-drag to copy </text> <radio_group @@ -249,7 +249,7 @@ <check_box left="10" follows="left|top" - height="16" + height="28" control_name="EditLinkedParts" label="Edit linked" layout="topleft" @@ -265,7 +265,7 @@ left="13" name="RenderingCost" tool_tip="Shows the rendering cost calculated for this object" - top_pad="9" + top_pad="2" type="string" width="100"> þ: [COUNT] @@ -290,11 +290,11 @@ width="134" /> <check_box control_name="SnapEnabled" - height="20" + height="18" initial_value="true" label="Snap to grid" layout="topleft" - top_pad="0" + top_pad="7" name="checkbox snap to grid" width="134" /> <combo_box @@ -330,7 +330,7 @@ top_delta="0" right="-10" width="18" - height="19" > + height="23" > <button.commit_callback function="BuildTool.gridOptions"/> </button> @@ -342,7 +342,7 @@ image_selected="Object_Cube_Selected" image_unselected="Object_Cube" layout="topleft" - left="4" + left="10" name="ToolCube" tool_tip="Cube" top="51" @@ -355,7 +355,7 @@ image_selected="Object_Prism_Selected" image_unselected="Object_Prism" layout="topleft" - left_delta="26" + left_delta="29" name="ToolPrism" tool_tip="Prism" top_delta="0" @@ -368,7 +368,7 @@ image_selected="Object_Pyramid_Selected" image_unselected="Object_Pyramid" layout="topleft" - left_delta="26" + left_delta="29" name="ToolPyramid" tool_tip="Pyramid" top_delta="0" @@ -381,7 +381,7 @@ image_selected="Object_Tetrahedron_Selected" image_unselected="Object_Tetrahedron" layout="topleft" - left_delta="26" + left_delta="29" name="ToolTetrahedron" tool_tip="Tetrahedron" top_delta="0" @@ -394,7 +394,7 @@ image_selected="Object_Cylinder_Selected" image_unselected="Object_Cylinder" layout="topleft" - left_delta="26" + left_delta="29" name="ToolCylinder" tool_tip="Cylinder" top_delta="0" @@ -407,7 +407,7 @@ image_selected="Object_Hemi_Cylinder_Selected" image_unselected="Object_Hemi_Cylinder" layout="topleft" - left_delta="26" + left_delta="29" name="ToolHemiCylinder" tool_tip="Hemicylinder" top_delta="0" @@ -420,7 +420,7 @@ image_selected="Object_Cone_Selected" image_unselected="Object_Cone" layout="topleft" - left_delta="26" + left_delta="29" name="ToolCone" tool_tip="Cone" top_delta="0" @@ -433,7 +433,7 @@ image_selected="Object_Hemi_Cone_Selected" image_unselected="Object_Hemi_Cone" layout="topleft" - left_delta="26" + left_delta="29" name="ToolHemiCone" tool_tip="Hemicone" top_delta="0" @@ -446,7 +446,7 @@ image_selected="Object_Sphere_Selected" image_unselected="Object_Sphere" layout="topleft" - left_delta="26" + left_delta="29" name="ToolSphere" tool_tip="Sphere" top_delta="0" @@ -459,7 +459,7 @@ image_selected="Object_Hemi_Sphere_Selected" image_unselected="Object_Hemi_Sphere" layout="topleft" - left_delta="26" + left_delta="29" name="ToolHemiSphere" tool_tip="Hemisphere" top_delta="0" @@ -472,7 +472,7 @@ image_selected="Object_Torus_Selected" image_unselected="Object_Torus" layout="topleft" - left="4" + left="10" name="ToolTorus" tool_tip="Torus" top="77" @@ -485,7 +485,7 @@ image_selected="Object_Tube_Selected" image_unselected="Object_Tube" layout="topleft" - left_delta="26" + left_delta="29" name="ToolTube" tool_tip="Tube" top_delta="0" @@ -498,7 +498,7 @@ image_selected="Object_Ring_Selected" image_unselected="Object_Ring" layout="topleft" - left_delta="26" + left_delta="29" name="ToolRing" tool_tip="Ring" top_delta="0" @@ -511,7 +511,7 @@ image_selected="Object_Tree_Selected" image_unselected="Object_Tree" layout="topleft" - left_delta="26" + left_delta="29" name="ToolTree" tool_tip="Tree" top_delta="0" @@ -525,7 +525,7 @@ image_unselected="Object_Grass" image_overlay_color="Red" layout="topleft" - left_delta="26" + left_delta="29" name="ToolGrass" tool_tip="Grass" top_delta="0" @@ -639,7 +639,7 @@ follows="left|top" height="12" layout="topleft" - left="150" + left="135" name="Bulldozer:" top="57" width="100"> @@ -697,7 +697,7 @@ </slider_bar> <button follows="left|top" - height="19" + height="23" label="Apply" label_selected="Apply" top_pad="5" @@ -705,7 +705,7 @@ left="135" name="button apply to selection" tool_tip="Modify selected land" - width="78"> + width="82"> <button.commit_callback function="BuildTool.applyToSelection"/> </button> @@ -713,13 +713,13 @@ text_color="LtGray_50" type="string" length="1" - height="12" + height="10" follows="left|top" halign="right" layout="topleft" right="-10" name="obj_count" - top_pad="6" + top_pad="5" width="143"> Objects: [COUNT] </text> @@ -741,12 +741,12 @@ halign="center" left="0" name="Object Info Tabs" - tab_max_width="54" + tab_max_width="100" tab_min_width="40" tab_position="top" tab_height="25" top="170" - width="280"> + width="295"> <panel border="false" follows="all" @@ -756,7 +756,7 @@ help_topic="toolbox_general_tab" name="General" top="16" - width="280"> + width="295"> <panel.string name="text deed continued"> Deed @@ -922,13 +922,13 @@ width="150" /> <button follows="top|left" - height="20" + height="23" label="Deed" label_selected="Deed" layout="topleft" name="button deed" top_pad="0" - left="100" + left="108" tool_tip="Deeding gives this item away with next owner permissions. Group shared objects can be deeded by a group officer." width="80" /> <check_box @@ -949,12 +949,12 @@ top_pad="15" left="10" name="label click action" - width="90"> + width="98"> Click to: </text> <combo_box follows="left|top" - height="20" + height="23" layout="topleft" name="clickaction" width="168" @@ -985,25 +985,24 @@ value="Zoom" /> </combo_box> <check_box - height="16" - top_pad="15" + height="23" label="For Sale:" layout="topleft" name="checkbox for sale" left="7" - width="93" /> + width="100" /> <!-- NEW SALE TYPE COMBO BOX --> <combo_box - left_pad="3" + left_pad="0" layout="topleft" follows="left|top" allow_text_entry="false" - height="20" + height="23" intial_value="2" max_chars="20" mouse_opaque="true" name="sale type" - width="158"> + width="168"> <combo_box.item name="Copy" label="Copy" @@ -1026,12 +1025,12 @@ even though the user gets a free copy. decimal_digits="0" increment="1" top_pad="8" - left="100" + left="108" control_name="Edit Cost" name="Edit Cost" label="Price: L$" label_width="65" - width="150" + width="165" min_val="0" height="20" max_val="999999999" /> @@ -1055,7 +1054,7 @@ even though the user gets a free copy. left="0" top="241" height="130" - width="278"> + width="290"> <text type="string" length="1" @@ -1082,7 +1081,7 @@ even though the user gets a free copy. label="Move" layout="topleft" name="checkbox allow everyone move" - left="15" + left="10" width="85" /> <check_box height="19" @@ -1104,9 +1103,9 @@ even though the user gets a free copy. follows="left|top|right" label="Modify" layout="topleft" - left="5" + left="10" name="checkbox next owner can modify" - width="80" /> + width="85" /> <check_box follows="left|top|right" height="19" @@ -1212,7 +1211,7 @@ even though the user gets a free copy. help_topic="toolbox_object_tab" name="Object" top="16" - width="280"> + width="295"> <check_box height="19" label="Locked" @@ -1553,7 +1552,7 @@ even though the user gets a free copy. layout="topleft" left="125" name="text hollow" - top_pad="5" + top_pad="6" width="68"> Hollow </text> @@ -1601,16 +1600,16 @@ even though the user gets a free copy. layout="topleft" left="125" name="Hollow Shape" - top_pad="0" + top_pad="4" width="150"> Hollow Shape </text> <combo_box - height="19" + height="23" layout="topleft" left_delta="0" name="hole" - top_pad="3" + top_pad="-2" width="150"> <combo_box.item label="Default" @@ -1882,7 +1881,7 @@ even though the user gets a free copy. layout="topleft" left="125" name="text radius delta" - top_pad="0" + top_pad="2" width="78"> Radius </text> @@ -1999,7 +1998,6 @@ even though the user gets a free copy. value="Cylinder" /> </combo_box> </panel> - <panel border="false" follows="all" @@ -2011,7 +2009,7 @@ even though the user gets a free copy. help_topic="toolbox_features_tab" name="Features" top_delta="0" - width="280"> + width="295"> <text type="string" length="1" @@ -2249,7 +2247,7 @@ even though the user gets a free copy. help_topic="toolbox_texture_tab" name="Texture" top_delta="0" - width="280"> + width="295"> <panel.string name="string repeats per meter"> Repeats Per Meter @@ -2313,7 +2311,7 @@ even though the user gets a free copy. layout="topleft" left_delta="0" name="glow label" - top_pad="2" + top_pad="8" width="80"> Glow </text> @@ -2344,7 +2342,7 @@ even though the user gets a free copy. left="10" name="tex gen" top_pad="5" - width="85"> + width="90"> Mapping </text> <combo_box @@ -2353,7 +2351,7 @@ even though the user gets a free copy. left_delta="0" name="combobox texgen" top_pad="4" - width="85"> + width="90"> <combo_box.item label="Default" name="Default" @@ -2372,7 +2370,7 @@ even though the user gets a free copy. name="label shininess" left_pad="4" top_pad="-36" - width="85"> + width="90"> Shininess </text> <combo_box @@ -2381,7 +2379,7 @@ even though the user gets a free copy. left_delta="0" name="combobox shininess" top_pad="4" - width="85"> + width="90"> <combo_box.item label="None" name="None" @@ -2408,7 +2406,7 @@ even though the user gets a free copy. left_pad="4" name="label bumpiness" top_pad="-36" - width="85"> + width="90"> Bumpiness </text> <combo_box @@ -2417,7 +2415,7 @@ even though the user gets a free copy. left_delta="0" name="combobox bumpiness" top_pad="4" - width="85"> + width="90"> <combo_box.item label="None" name="None" @@ -2533,7 +2531,7 @@ even though the user gets a free copy. layout="topleft" left="10" name="tex scale" - top_pad="5" + top_pad="4" width="200"> Repeats / Face </text> @@ -2567,7 +2565,6 @@ even though the user gets a free copy. left="20" max_val="100" name="TexScaleV" - top_pad="0" width="160" /> <check_box height="19" @@ -2577,7 +2574,6 @@ even though the user gets a free copy. name="checkbox flip t" top_delta="0" width="70" /> - <spinner decimal_digits="2" follows="left|top" @@ -2591,13 +2587,12 @@ even though the user gets a free copy. max_val="9999" min_val="-9999" name="TexRot" - top_delta="25" width="170" /> <spinner decimal_digits="1" follows="left|top" - height="19" + height="23" initial_value="1" label="Repeats / Meter" layout="topleft" @@ -2606,7 +2601,6 @@ even though the user gets a free copy. max_val="10" min_val="0.1" name="rptctrl" - top_delta="20" width="170" /> <button follows="left|top" @@ -2625,7 +2619,6 @@ even though the user gets a free copy. layout="topleft" left="10" name="tex offset" - top_delta="20" width="200"> Texture Offset </text> @@ -2639,7 +2632,6 @@ even though the user gets a free copy. left="20" min_val="-1" name="TexOffsetU" - top_pad="6" width="160" /> <spinner follows="left|top" @@ -2662,30 +2654,20 @@ even though the user gets a free copy. bg_alpha_color="DkGray" name="Add_Media" left="0" - top_pad="0" - height="75" - width="278"> + height="63" + width="290"> <text type="string" length="1" follows="left|top" - height="12" + height="18" layout="topleft" left="10" - top_pad="5" + top_pad="3" name="media_tex" - width="260"> + width="190"> Media </text> - <text - follows="left|top|right" - height="18" - layout="topleft" - left="10" - use_ellipses="true" - read_only="true" - name="media_info" - width="180" /> <button follows="top|left" height="18" @@ -2731,6 +2713,15 @@ even though the user gets a free copy. <button.commit_callback function="BuildTool.EditMedia"/> </button> + <text + follows="left|top|right" + height="9" + layout="topleft" + left="10" + use_ellipses="true" + read_only="true" + name="media_info" + width="280" /> <web_browser visible="false" enabled="false" @@ -2744,16 +2735,15 @@ even though the user gets a free copy. start_url="about:blank" decouple_texture_size="true" /> <button - follows="left|top" - height="23" + follows="right|top" + height="22" label="Align" label_selected="Align Media" layout="topleft" - left="10" + right="-10" name="button align" - top_pad="5" tool_tip="Align media texture (must load first)" - width="100" /> + width="80" /> </panel> </panel> <panel @@ -2766,36 +2756,36 @@ even though the user gets a free copy. help_topic="toolbox_contents_tab" name="Contents" top_delta="0" - width="280"> + width="295"> <button follows="left|top" - height="19" + height="23" label="New Script" label_selected="New Script" layout="topleft" left="10" name="button new script" top="10" - width="120" /> + width="134" /> <button follows="left|top" - height="19" + height="23" label="Permissions" layout="topleft" left_pad="8" name="button permissions" - width="130" /> + width="134" /> <panel_inventory_object border="true" border_visible="true" bevel_style="in" - follows="left|top" + follows="left|top|right" height="325" layout="topleft" left="10" name="contents_inventory" top="50" - width="260" /> + width="275" /> </panel> </tab_container> <panel @@ -2805,7 +2795,7 @@ even though the user gets a free copy. left_delta="0" name="land info panel" top_delta="0" - width="280"> + width="295"> <text type="string" length="1" @@ -2845,7 +2835,7 @@ even though the user gets a free copy. </text> <button follows="left|top" - height="20" + height="23" label="About Land" label_selected="About Land" layout="topleft" @@ -2878,7 +2868,7 @@ even though the user gets a free copy. </text> <button follows="left|top" - height="20" + height="23" label="Subdivide" label_selected="Subdivide" layout="topleft" @@ -2888,7 +2878,7 @@ even though the user gets a free copy. width="112" /> <button follows="left|top" - height="20" + height="23" label="Join" label_selected="Join" layout="topleft" @@ -2911,7 +2901,7 @@ even though the user gets a free copy. </text> <button follows="left|top" - height="20" + height="23" label="Buy Land" label_selected="Buy Land" layout="topleft" @@ -2921,7 +2911,7 @@ even though the user gets a free copy. width="112" /> <button follows="left|top" - height="20" + height="23" label="Abandon Land" label_selected="Abandon Land" layout="topleft" diff --git a/indra/newview/skins/default/xui/en/floater_tos.xml b/indra/newview/skins/default/xui/en/floater_tos.xml index 5e168fe4aa6f268f2eb024a869581aca81baf988..f3665e87eddfbf23eca5a3dc7b0632e3d022a821 100644 --- a/indra/newview/skins/default/xui/en/floater_tos.xml +++ b/indra/newview/skins/default/xui/en/floater_tos.xml @@ -33,7 +33,7 @@ <check_box follows="top|right" height="16" - label="I Agree to the Terms of Service" + label="I Agree to the Terms of Service and Privacy Policy" layout="topleft" left_delta="0" name="agree_chk" @@ -51,7 +51,7 @@ top_delta="-399" word_wrap="true" width="552"> - Please read the following Terms of Service carefully. To continue logging in to [SECOND_LIFE], you must accept the agreement. + Please read the following Terms of Service and Privacy Policy carefully. To continue logging in to [SECOND_LIFE], you must accept the agreement. </text> <web_browser follows="left|top" diff --git a/indra/newview/skins/default/xui/en/main_view.xml b/indra/newview/skins/default/xui/en/main_view.xml index 1ace760816c0d3aa690288f9a07b10e877b9bf53..3f5fae2054dca51edcb06bd2da17816689ad2939 100644 --- a/indra/newview/skins/default/xui/en/main_view.xml +++ b/indra/newview/skins/default/xui/en/main_view.xml @@ -172,6 +172,24 @@ class="progress_view" width="1024" visible="false"/> + <panel top="0" + follows="all" + mouse_opaque="false" + left="0" + name="snapshot_floater_view_holder" + width="1024" + height="798"> + <snapshot_floater_view enabled="false" + follows="all" + height="768" + left="0" + mouse_opaque="false" + name="Snapshot Floater View" + tab_stop="false" + top="0" + visible="false" + width="1024"/> + </panel> <panel top="0" follows="all" height="768" @@ -185,16 +203,6 @@ mouse_opaque="false" name="Menu Holder" width="1024"/> - <snapshot_floater_view enabled="false" - follows="all" - height="768" - left="0" - mouse_opaque="false" - name="Snapshot Floater View" - tab_stop="false" - top="0" - visible="false" - width="1024"/> <tooltip_view top="0" follows="all" height="768" diff --git a/indra/newview/skins/default/xui/en/menu_picks.xml b/indra/newview/skins/default/xui/en/menu_picks.xml index 7e07a97016febf41d334c8e424ef3c040e0daad9..ebb49c900422eae22cadbcdee4a09b8e8fec2724 100644 --- a/indra/newview/skins/default/xui/en/menu_picks.xml +++ b/indra/newview/skins/default/xui/en/menu_picks.xml @@ -8,6 +8,9 @@ name="pick_info"> <menu_item_call.on_click function="Pick.Info" /> + <menu_item_call.on_enable + function="Pick.Enable" + parameter="info" /> </menu_item_call> <menu_item_call label="Edit" @@ -16,6 +19,9 @@ visible="false"> <menu_item_call.on_click function="Pick.Edit" /> + <menu_item_call.on_enable + function="Pick.Enable" + parameter="edit" /> </menu_item_call> <menu_item_call label="Teleport" @@ -23,6 +29,9 @@ name="pick_teleport"> <menu_item_call.on_click function="Pick.Teleport" /> + <menu_item_call.on_enable + function="Pick.Enable" + parameter="teleport" /> </menu_item_call> <menu_item_call label="Map" @@ -30,6 +39,9 @@ name="pick_map"> <menu_item_call.on_click function="Pick.Map" /> + <menu_item_call.on_enable + function="Pick.Enable" + parameter="map" /> </menu_item_call> <menu_item_separator layout="topleft" @@ -42,5 +54,8 @@ visible="false"> <menu_item_call.on_click function="Pick.Delete" /> + <menu_item_call.on_enable + function="Pick.Enable" + parameter="delete" /> </menu_item_call> </context_menu> diff --git a/indra/newview/skins/default/xui/en/menu_profile_overflow.xml b/indra/newview/skins/default/xui/en/menu_profile_overflow.xml index 5162a4902f7c9e95f21e0e398f123beb47abcaa4..b0b7b554b07ec9a1dad96a85341e9de57400a071 100644 --- a/indra/newview/skins/default/xui/en/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/en/menu_profile_overflow.xml @@ -5,6 +5,15 @@ mouse_opaque="false" name="profile_overflow_menu" width="120"> + <menu_item_call + label="Map" + layout="topleft" + name="show_on_map"> + <menu_item_call.on_click + function="Profile.ShowOnMap" /> + <menu_item_call.on_enable + function="Profile.EnableShowOnMap" /> + </menu_item_call> <menu_item_call label="Pay" layout="topleft" diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml index 806c28d1417cfebda8016d4825679b87964907a1..96ddbf42c0b6c51a382b67ac9f8054815fcd19e0 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -186,7 +186,8 @@ label="Nearby Chat" layout="topleft" name="Nearby Chat" - shortcut="control|H"> + shortcut="control|H" + use_mac_ctrl="true"> <menu_item_check.on_check function="Floater.Visible" parameter="nearby_chat" /> diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index e7d64fd82f6d5e35394f86b4661172d89027adf3..c1f1afe93d9f11f4f3d10b41828a714db866856c 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -392,9 +392,9 @@ Add this Ability to '[ROLE_NAME]'? yestext="Yes"/> </notification> <notification - icon="alertmodal.tga" + icon="alertmodal.tga" name="JoinGroupCanAfford" - type="alertmodal"> + type="alertmodal"> Joining this group costs L$[COST]. Do you wish to proceed? <usetemplate @@ -614,7 +614,7 @@ To place the media on only one face, choose Select Face and click on the desired notext="Cancel" yestext="OK"/> </notification> - + <notification icon="alertmodal.tga" name="MustBeInParcel" @@ -785,7 +785,7 @@ Save changes to classified [NAME]? notext="Don't Save" yestext="Save"/> </notification> - + <notification icon="alertmodal.tga" name="ClassifiedInsufficientFunds" @@ -836,7 +836,7 @@ Please select a proposal to view. Please select a history item to view. </notification> -<!-- +<!-- <notification icon="alertmodal.tga" name="ResetShowNextTimeDialogs" @@ -5191,7 +5191,7 @@ An object named [OBJECTFROMNAME] owned by [NAME_SLURL] has given you this [OBJEC text="Decline"/> </form> </notification> - + <notification icon="notify.tga" name="FriendshipOffered" @@ -5406,27 +5406,6 @@ Grant this request? </form> </notification> - <notification - icon="notify.tga" - name="ScriptToast" - type="notify"> - [FIRST] [LAST]'s '[TITLE]' is requesting Resident input. - <form name="form"> - <button - index="0" - name="Open" - text="Open Dialog"/> - <button - index="1" - name="Ignore" - text="Ignore"/> - <button - index="2" - name="Block" - text="Block"/> - </form> - </notification> - <!-- <notification icon="notify.tga" @@ -5455,8 +5434,8 @@ Your L$ balance will be updated when processing completes. If processing takes m The status of your payment can be checked on your Transaction History page on your [http://secondlife.com/account/ Dashboard] </notification> - -<!-- + +<!-- <notification icon="notify.tga" name="FirstSit" @@ -5483,7 +5462,7 @@ You have opened the Build Tools. Every object you see around you was created usi </notification> --> -<!-- +<!-- <notification icon="notify.tga" name="FirstLeftClickNoHit" @@ -5569,7 +5548,7 @@ To toggle this menu, type="notify"> You are editing a Sculpted prim. Sculpties require a special texture to define their shape. </notification> ---> +--> <!-- <notification @@ -5858,7 +5837,7 @@ A SLurl was received from an untrusted browser and has been blocked for your sec priority="high" type="notifytip"> Multiple SLurls were received from an untrusted browser within a short period. -They will be blocked for a few seconds for your security. +They will be blocked for a few seconds for your security. </notification> <notification name="IMToast" type="notifytoast"> diff --git a/indra/newview/skins/default/xui/en/panel_avatar_list_item.xml b/indra/newview/skins/default/xui/en/panel_avatar_list_item.xml index 1e2e74f88240d6fa772a9d8635e7a52968ff6f9c..876ff9961beffeb52226ab64981d95848d3344b9 100644 --- a/indra/newview/skins/default/xui/en/panel_avatar_list_item.xml +++ b/indra/newview/skins/default/xui/en/panel_avatar_list_item.xml @@ -69,7 +69,7 @@ name="last_interaction" text_color="LtGray_50" value="0s" - width="24" /> + width="35" /> <button follows="right" height="16" diff --git a/indra/newview/skins/default/xui/en/panel_block_list_sidetray.xml b/indra/newview/skins/default/xui/en/panel_block_list_sidetray.xml index 072ea882e611f91dbcd042721837b66858fc96cc..d3f66953750ee5acc0f90f96d117fd533c5a25f2 100644 --- a/indra/newview/skins/default/xui/en/panel_block_list_sidetray.xml +++ b/indra/newview/skins/default/xui/en/panel_block_list_sidetray.xml @@ -39,7 +39,13 @@ name="blocked" tool_tip="List of currently blocked Residents" top="30" - width="270" /> + width="270"> + <scroll_list.columns + name="item_name" /> + <scroll_list.columns + name="item_type" + width="96" /> + </scroll_list> <button follows="left|bottom" height="23" diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index 015a2e91ff5682454aa37afd93f6994fc83df099..58c5c11e51c919121ac0204bbaad0889717cae30 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -59,9 +59,9 @@ height="28" layout="topleft" min_height="28" - width="100" + width="105" top_delta="0" - min_width="100" + min_width="54" name="speak_panel" user_resize="false"> <talk_button @@ -73,11 +73,16 @@ left="0" name="talk" top="5" - width="100"> + width="105"> + <!-- do not remove halign attribute with default value. otherwise it can't be overridden in other locales. + & pad_right is default value for long label which can be right aligned. See EXT-6318 --> <speak_button + halign="center" name="speak_btn" label="Speak" label_selected="Speak" + pad_right="22" + use_ellipses="true" /> <show_button> <show_button.init_callback diff --git a/indra/newview/skins/default/xui/en/panel_classified_info.xml b/indra/newview/skins/default/xui/en/panel_classified_info.xml index 1535ce2978a2c703b1611722a6ecc283b109f7bf..e3b331799cac13079e23c8a2f7563c347d3ce7b8 100644 --- a/indra/newview/skins/default/xui/en/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/en/panel_classified_info.xml @@ -24,7 +24,7 @@ </panel.string> <panel.string name="click_through_text_fmt"> - [TELEPORT] teleport, [MAP] map, [MAP] profile + [TELEPORT] teleport, [MAP] map, [PROFILE] profile </panel.string> <panel.string name="date_fmt"> @@ -156,6 +156,24 @@ top_pad="10" value="Content Type:" width="140" /> + <icon + follows="top|left" + height="16" + image_name="Parcel_M_Light" + layout="topleft" + left_pad="0" + name="content_type_moderate" + top_pad="-11" + width="18" /> + <icon + follows="top|left" + height="16" + image_name="Parcel_PG_Light" + layout="topleft" + left_delta="0" + name="content_type_general" + top_delta="0" + width="18" /> <text_editor allow_scroll="false" bg_visible="false" @@ -163,11 +181,11 @@ h_pad="0" height="18" layout="topleft" - left_pad="0" + left_pad="2" name="content_type" read_only="true" - width="150" - top_pad="-10" + width="130" + top_delta="1" v_pad="0" value="[content type]" /> <text diff --git a/indra/newview/skins/default/xui/en/panel_edit_classified.xml b/indra/newview/skins/default/xui/en/panel_edit_classified.xml index c1b352031fb1a2b9fa29ceda424669d38635e757..62a364473c60a034db9d57c878f53e12039adb8f 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_classified.xml @@ -186,7 +186,7 @@ left="10" top_pad="5" name="set_to_curr_location_btn" - width="156" /> + width="200" /> <text follows="left|top" font.style="BOLD" @@ -217,25 +217,41 @@ top_pad="15" value="Content type:" width="250" /> - <combo_box - allow_text_entry="false" + <icons_combo_box follows="left|top" height="23" + label="General Content" + layout="topleft" left="10" name="content_type" top_pad="5" width="156"> - <combo_item + <icons_combo_box.drop_down_button + image_overlay="Parcel_PG_Light" + image_overlay_alignment="left" + imgoverlay_label_space="3" + pad_left="3"/> + <icons_combo_box.item + label="Moderate Content" name="mature_ci" value="Mature"> - Moderate Content - </combo_item> - <combo_item + <item.columns + halign="center" + type="icon" + value="Parcel_M_Light" + width="20"/> + </icons_combo_box.item> + <icons_combo_box.item + label="General Content" name="pg_ci" value="PG"> - General Content - </combo_item> - </combo_box> + <item.columns + halign="center" + type="icon" + value="Parcel_PG_Light" + width="20"/> + </icons_combo_box.item> + </icons_combo_box> <text follows="left|top" font.style="BOLD" diff --git a/indra/newview/skins/default/xui/en/panel_edit_pick.xml b/indra/newview/skins/default/xui/en/panel_edit_pick.xml index 657e369bebaacf98772d1542a590bd951b897971..08ee0306dd35fb6256e1f144cd5916583de2448b 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_pick.xml @@ -12,6 +12,10 @@ help_topic="profile_edit_pick" top="0" width="333"> + <panel.string + name="location_notice"> + (will update after save) + </panel.string> <button follows="top|right" height="23" @@ -164,7 +168,7 @@ left="8" top_pad="0" name="set_to_curr_location_btn" - width="156" /> + width="200" /> </panel> </scroll_container> <panel @@ -179,7 +183,7 @@ <button follows="bottom|left" height="23" - label="Save [WHAT]" + label="Save Pick" layout="topleft" name="save_changes_btn" left="0" diff --git a/indra/newview/skins/default/xui/en/panel_edit_profile.xml b/indra/newview/skins/default/xui/en/panel_edit_profile.xml index bce988da9dd809dc45861456debd4068d0a516c6..97faa16ab11f713c8591707b764c00772611290e 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_profile.xml @@ -174,7 +174,7 @@ height="102" layout="topleft" left="123" - top="62" + top="25" max_length="512" name="sl_description_edit" width="157" @@ -230,7 +230,7 @@ layout="topleft" left="123" max_length="512" - top="195" + top="157" name="fl_description_edit" width="157" word_wrap="true"> diff --git a/indra/newview/skins/default/xui/en/panel_group_general.xml b/indra/newview/skins/default/xui/en/panel_group_general.xml index f913c58cc97d3365da13dc9ba3f2671a442c1e3d..9341d433e8992a6dbd6785a1025a2f3fc9197ff5 100644 --- a/indra/newview/skins/default/xui/en/panel_group_general.xml +++ b/indra/newview/skins/default/xui/en/panel_group_general.xml @@ -241,14 +241,17 @@ Hover your mouse over the options for more help. tool_tip="Sets whether your group contains information rated as Moderate" top_pad="4" width="190"> + <combo_item name="select_mature" value="Select"> + - Select Mature - + </combo_item> <combo_box.item - label="General Content" - name="pg" - value="Not Mature" /> - <combo_box.item label="Moderate Content" name="mature" value="Mature" /> + <combo_box.item + label="General Content" + name="pg" + value="Not Mature" /> </combo_box> <check_box follows="left|top" diff --git a/indra/newview/skins/default/xui/en/panel_group_roles.xml b/indra/newview/skins/default/xui/en/panel_group_roles.xml index 19c0da4f084d3689cd6d33ec1c71c927db3d984f..0eb5c47f859671a16a40d44acfdc648e1750aa85 100644 --- a/indra/newview/skins/default/xui/en/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/en/panel_group_roles.xml @@ -385,7 +385,7 @@ things in this group. There's a broad variety of Abilities. left="0" follows="left|top|right" right="-1" - max_length="295" + max_length="20" name="role_name" top_pad="0" width="300"> @@ -408,7 +408,7 @@ things in this group. There's a broad variety of Abilities. left="0" follows="left|top|right" right="-1" - max_length="295" + max_length="20" name="role_title" top_pad="0" width="300"> diff --git a/indra/newview/skins/default/xui/en/panel_landmarks.xml b/indra/newview/skins/default/xui/en/panel_landmarks.xml index ee8bca6f83635bd70ce773105d14fe0ce262daa5..65ee5d1dd4ec34d955452baa55a4fd20f7825d2f 100644 --- a/indra/newview/skins/default/xui/en/panel_landmarks.xml +++ b/indra/newview/skins/default/xui/en/panel_landmarks.xml @@ -5,20 +5,23 @@ height="400" layout="topleft" left="0" - width="380" + width="313" help_topic="panel_landmarks" border="false" background_visible="true" - bg_alpha_color="DkGray2" + bg_alpha_color="DkGray" follows="all"> <accordion + background_visible="true" + bg_alpha_color="DkGray2" + bg_opaque_color="DkGray2" follows="all" - height="360" + height="369" layout="topleft" - left="0" + left="3" name="landmarks_accordion" top="0" - width="380"> + width="307"> <accordion_tab layout="topleft" name="tab_favorites" @@ -33,7 +36,7 @@ mouse_opaque="true" name="favorites_list" start_folder="Favorites" - width="380"/> + width="307"/> </accordion_tab> <accordion_tab layout="topleft" @@ -49,7 +52,7 @@ mouse_opaque="true" name="landmarks_list" start_folder="Landmarks" - width="380"/> + width="307"/> </accordion_tab> <accordion_tab layout="topleft" @@ -65,7 +68,7 @@ mouse_opaque="true" name="my_inventory_list" start_folder="My Inventory" - width="380"/> + width="307"/> </accordion_tab> <accordion_tab layout="topleft" @@ -81,55 +84,64 @@ mouse_opaque="true" name="library_list" start_folder="LIBRARY" - width="380"/> + width="313"/> </accordion_tab> </accordion> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" background_visible="true" - background_opaque="true" bevel_style="none" bottom="0" follows="left|right|bottom" - height="38" + height="27" layout="bottomleft" - left="0" + left="3" name="bottom_panel" - width="380"> + width="313"> <button follows="bottom|left" tool_tip="Show additional options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="0" name="options_gear_btn" - top="14" - width="18" /> + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="add_btn" tool_tip="Add new landmark" - width="18" /> + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Middle_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="209" + /> <dnd_button - follows="bottom|right" - height="18" - image_selected="TrashItem_Press" - image_unselected="TrashItem_Off" + follows="bottom|left" + height="25" + image_hover_unselected="Toolbar_Right_Over" + image_overlay="TrashItem_Off" + image_selected="Toolbar_Right_Selected" + image_unselected="Toolbar_Right_Off" layout="topleft" - right="-8" + left_pad="1" name="trash_btn" tool_tip="Remove selected landmark" - top="14" - width="18" /> + width="31" /> </panel> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_login.xml b/indra/newview/skins/default/xui/en/panel_login.xml index 46f3049c4e6ee1ee15fc90f011a546955bfd87a9..9690561d5dd0d43cd6b72c9ae26989c6706572dc 100644 --- a/indra/newview/skins/default/xui/en/panel_login.xml +++ b/indra/newview/skins/default/xui/en/panel_login.xml @@ -208,7 +208,7 @@ height="16" name="forgot_password_text" top_pad="12" right="-10" - width="180"> + width="210"> Forgot your name or password? </text> <text @@ -220,7 +220,7 @@ height="16" name="login_help" top_pad="2" right="-10" - width="180"> + width="190"> Need help logging in? </text> <!-- <text follows="right|bottom" diff --git a/indra/newview/skins/default/xui/en/panel_main_inventory.xml b/indra/newview/skins/default/xui/en/panel_main_inventory.xml index 50983d297650afd6fb00cf1da02bd54238c4849b..ac3d37146c76c2f8c5f11b46b50bbbc2e77c7d8b 100644 --- a/indra/newview/skins/default/xui/en/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/en/panel_main_inventory.xml @@ -10,9 +10,34 @@ name="main inventory panel" width="330"> <panel.string - name="Title"> - Things + name="Itemcount"> </panel.string> + <panel.string + name="ItemcountFetching"> + Fetching [ITEM_COUNT] Items... [FILTER] + </panel.string> + <panel.string + name="ItemcountCompleted"> + [ITEM_COUNT] Items [FILTER] + </panel.string> + <panel.string + name="ItemcountUnknown"> + + </panel.string> + <text + type="string" + length="1" + follows="left|top" + height="13" + layout="topleft" + left="12" + name="ItemcountText" + font="SansSerifMedium" + text_color="EmphasisColor" + top_pad="0" + width="300"> + Items: + </text> <menu_bar bg_visible="false" follows="left|top|right" @@ -21,7 +46,7 @@ left="10" mouse_opaque="false" name="Inventory Menu" - top="0" + top="+10" visible="true" width="290"> <menu @@ -383,7 +408,7 @@ left="10" max_length="300" name="inventory search editor" - top="26" + top="+31" width="303" /> <tab_container bg_opaque_color="DkGray2" @@ -392,15 +417,15 @@ max_length="300" background_opaque="true" follows="all" halign="center" - height="305" + height="306" layout="topleft" - left="6" + left="7" name="inventory filter tabs" tab_height="30" tab_position="top" tab_min_width="100" top_pad="10" - width="315"> + width="312"> <inventory_panel bg_opaque_color="DkGray2" bg_alpha_color="DkGray2" @@ -417,7 +442,7 @@ halign="center" name="All Items" sort_order_setting="InventorySortOrder" top="16" - width="290" /> + width="288" /> <inventory_panel bg_opaque_color="DkGray2" bg_alpha_color="DkGray2" @@ -426,7 +451,7 @@ halign="center" border="false" bevel_style="none" follows="all" - height="295" + height="293" label="RECENT" help_topic="recent_inventory_tab" layout="topleft" @@ -436,52 +461,61 @@ halign="center" </tab_container> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" background_visible="true" - background_opaque="true" bevel_style="none" follows="left|right|bottom" - height="38" + height="27" layout="topleft" - top_pad="-1" - left="9" + top_pad="4" + left="10" name="bottom_panel" width="310"> <button follows="bottom|left" tool_tip="Show additional options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="8" + left="0" name="options_gear_btn" - top="14" - width="18" /> + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="add_btn" tool_tip="Add new item" - width="18" /> + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Middle_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="209" + /> <dnd_button - follows="bottom|right" - height="18" - image_selected="TrashItem_Press" - image_unselected="TrashItem_Off" + follows="bottom|left" + height="25" + image_hover_unselected="Toolbar_Right_Over" + image_overlay="TrashItem_Off" + image_selected="Toolbar_Right_Selected" + image_unselected="Toolbar_Right_Off" + left_pad="1" layout="topleft" - right="-7" name="trash_btn" tool_tip="Remove selected item" - top="14" - width="18" /> + width="31"/> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_nearby_media.xml b/indra/newview/skins/default/xui/en/panel_nearby_media.xml index 7c0ce9e62e4e102e2ca3d0f080d7f6077157bf7f..d14712a7faa60397588210e230ad045bd006aceb 100644 --- a/indra/newview/skins/default/xui/en/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/en/panel_nearby_media.xml @@ -95,6 +95,7 @@ follows="top|left" font="SansSerif" left="10" + name="nearby_media" width="100"> Nearby Media </text> @@ -105,6 +106,7 @@ font="SansSerif" top_pad="15" left="10" + name="show" width="40"> Show: </text> @@ -130,7 +132,7 @@ <combo_box.item label="On other Avatars" value="4" - ame="OnOthers" /> + name="OnOthers" /> </combo_box> <scroll_list name="media_list" @@ -179,6 +181,7 @@ top_pad="5" height="30" left="10" + name="media_controls_panel" right="-10"> <layout_stack name="media_controls" diff --git a/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml b/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml index cc60b97f92288c6b62c6772127f4a8bdc8ebb3d2..66ef3731681d53958d61ba5432ad8edf4cb34ebc 100644 --- a/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml +++ b/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel name="Outfits" + bg_alpha_color="DkGray" + bg_opaque_color="DkGray" + background_opaque="true" background_visible="true" follows="all" height="570" @@ -11,15 +14,15 @@ border="false"> <tab_container follows="all" - height="490" + height="497" layout="topleft" - left="6" + left="7" name="appearance_tabs" tab_min_width="140" tab_height="30" tab_position="top" halign="center" - width="315"> + width="312"> <inventory_panel background_visible="true" background_opaque="true" @@ -30,7 +33,7 @@ border="false" left="0" top="0" - width="314" + width="315" mouse_opaque="true" name="outfitslist_tab" start_folder="My Outfits" /> @@ -47,53 +50,53 @@ mouse_opaque="true" name="cof_tab" start_folder="Current Outfit" - width="313" /> + width="315" /> </tab_container> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" background_visible="true" - background_opaque="true" - follows="left|right|bottom" - height="38" - layout="topleft" - left="9" - visible="true" - top_pad="-1" - width="310" /> - <panel - background_visible="false" follows="bottom|left" height="73" layout="topleft" left="9" + top_pad="3" visible="true" name="bottom_panel" - top_pad="-38" width="310"> <button follows="bottom|left" tool_tip="Show additional options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="8" + left="1" name="options_gear_btn" - top="14" - width="18" /> + top="1" + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Middle_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="241" + /> + <dnd_button - follows="bottom|right" - height="18" - image_selected="TrashItem_Press" - image_unselected="TrashItem_Off" + follows="bottom|left" + height="25" + image_hover_unselected="Toolbar_Right_Over" + image_overlay="TrashItem_Off" + image_selected="Toolbar_Right_Selected" + image_unselected="Toolbar_Right_Off" layout="topleft" - right="-9" + left_pad="1" name="trash_btn" tool_tip="Remove selected item" - top="14" - width="18" /> + width="31"/> <button follows="bottom|left" height="23" @@ -101,7 +104,7 @@ layout="topleft" name="make_outfit_btn" tool_tip="Save appearance as an outfit" - top="43" + top_pad="6" left="0" width="153" /> <button @@ -111,7 +114,6 @@ layout="topleft" name="wear_btn" left_pad="3" - top="43" tool_tip="Wear selected outfit" width="152" /> <button @@ -126,4 +128,4 @@ width="20" /> </panel> -</panel> +</panel> \ No newline at end of file diff --git a/indra/newview/skins/default/xui/en/panel_people.xml b/indra/newview/skins/default/xui/en/panel_people.xml index 13791a6d323e476ed7a5ab600b85605cf0170f36..391b0ad4e91b7ceb5e23dd54a9c8bccb4f285190 100644 --- a/indra/newview/skins/default/xui/en/panel_people.xml +++ b/indra/newview/skins/default/xui/en/panel_people.xml @@ -2,13 +2,13 @@ <!-- Side tray panel --> <panel follows="all" + height="449" label="People" layout="topleft" - height="449" + left="0" min_height="350" name="people_panel" top="0" - left="0" width="333"> <string name="no_people" @@ -39,7 +39,6 @@ name="no_groups_msg" value="[secondlife:///app/search/groups Try searching for some groups to join.]" /> <filter_editor - text_pad_left="10" follows="left|top|right" height="23" layout="topleft" @@ -48,6 +47,7 @@ max_length="300" name="filter_input" text_color="Black" + text_pad_left="10" top="3" width="303" /> <tab_container @@ -63,10 +63,10 @@ halign="center" width="317"> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" + background_opaque="true" background_visible="true" - background_opaque="true" + bg_alpha_color="DkGray" + bg_opaque_color="DkGray" follows="all" height="383" label="NEARBY" @@ -78,56 +78,70 @@ width="313"> <avatar_list allow_select="true" + bg_alpha_color="DkGray2" + bg_opaque_color="DkGray2" follows="all" - height="345" + height="352" ignore_online_status="true" layout="topleft" - left="0" + left="3" multi_select="true" name="avatar_list" top="0" - width="313" /> + width="307" /> <panel + background_visible="true" follows="left|right|bottom" - height="38" + height="27" label="bottom_panel" layout="topleft" - left="0" + left="3" name="bottom_panel" width="313"> <button follows="bottom|left" - tool_tip="Options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="0" name="nearby_view_sort_btn" - top="10" - width="18" /> + tool_tip="Options" + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="add_friend_btn" tool_tip="Add selected Resident to your friends List" - width="18"> + width="31"> <commit_callback function="People.addFriend" /> </button> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Right_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="241" + /> </panel> </panel> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" + background_opaque="true" background_visible="true" - background_opaque="true" + bg_alpha_color="DkGray" + bg_opaque_color="DkGray" follows="all" height="383" label="MY FRIENDS" @@ -138,13 +152,16 @@ top="0" width="313"> <accordion + background_visible="true" + bg_alpha_color="DkGray2" + bg_opaque_color="DkGray2" follows="all" - height="345" + height="352" layout="topleft" - left="0" + left="3" name="friends_accordion" top="0" - width="313"> + width="307"> <accordion_tab layout="topleft" height="172" @@ -160,7 +177,7 @@ multi_select="true" name="avatars_online" top="0" - width="313" /> + width="307" /> </accordion_tab> <accordion_tab layout="topleft" @@ -176,53 +193,64 @@ multi_select="true" name="avatars_all" top="0" - width="313" /> + width="307" /> </accordion_tab> </accordion> <panel + background_visible="true" follows="left|right|bottom" - height="38" + height="27" label="bottom_panel" layout="topleft" - left="0" + left="3" name="bottom_panel" width="313"> <button follows="bottom|left" tool_tip="Options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="0" name="friends_viewsort_btn" - top="10" - width="18" /> + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="add_btn" tool_tip="Offer friendship to a Resident" - width="18" /> + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Middle_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="210" + /> <button follows="bottom|left" - height="18" - image_selected="TrashItem_Press" - image_unselected="TrashItem_Off" - image_disabled="TrashItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Right_Over" + image_overlay="TrashItem_Off" + image_selected="Toolbar_Right_Selected" + image_unselected="Toolbar_Right_Off" layout="topleft" - left_pad="10" - right="-10" + left_pad="1" name="del_btn" tool_tip="Remove selected person from your Friends list" - top_delta="0" - width="18" /> + width="31" /> </panel> <text follows="all" @@ -237,10 +265,10 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t </text> </panel> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" + background_opaque="true" background_visible="true" - background_opaque="true" + bg_alpha_color="DkGray" + bg_opaque_color="DkGray" follows="all" height="383" label="MY GROUPS" @@ -255,18 +283,22 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t Values are set from appropriate strings at the top of file via LLPeoplePanel::postBuild() --> <group_list + background_visible="true" + bg_alpha_color="DkGray2" + bg_opaque_color="DkGray2" follows="all" - height="345" + height="352" layout="topleft" - left="0" + left="3" name="group_list" no_filtered_groups_msg="[secondlife:///app/search/groups Try finding the group in search?]" no_groups_msg="[secondlife:///app/search/groups Try searching for some groups to join.]" top="0" - width="313" /> + width="307" /> <panel + background_visible="true" follows="left|right|bottom" - height="38" + height="27" label="bottom_panel" layout="topleft" left="0" @@ -275,45 +307,56 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t <button follows="bottom|left" tool_tip="Options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="3" name="groups_viewsort_btn" - top="10" - width="18" /> + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="plus_btn" tool_tip="Join group/Create new group" - width="18" /> + width="31" /> <button follows="bottom|left" - height="10" - image_hover_selected="Activate_Checkmark" - image_selected="Activate_Checkmark" - image_unselected="Activate_Checkmark" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="Activate_Checkmark" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="activate_btn" tool_tip="Activate selected group" - top_delta="4" - width="10" /> + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Right_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="209" + /> </panel> </panel> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" + background_opaque="true" background_visible="true" - background_opaque="true" + bg_alpha_color="DkGray" + bg_opaque_color="DkGray" follows="all" height="383" label="RECENT" @@ -325,18 +368,22 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t width="313"> <avatar_list allow_select="true" + background_visible="true" + bg_alpha_color="DkGray2" + bg_opaque_color="DkGray2" follows="all" - height="345" + height="352" layout="topleft" - left="0" + left="3" multi_select="true" name="avatar_list" show_last_interaction_time="true" top="0" - width="313" /> + width="307" /> <panel + background_visible="true" follows="left|right|bottom" - height="38" + height="27" label="bottom_panel" layout="topleft" left="0" @@ -345,30 +392,40 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t <button follows="bottom|left" tool_tip="Options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="3" name="recent_viewsort_btn" - top="10" - width="18" /> + top="1" + width="31" /> <button follows="bottom|left" - height="18" - image_selected="AddItem_Press" - image_unselected="AddItem_Off" - image_disabled="AddItem_Disabled" + height="25" + image_hover_unselected="Toolbar_Middle_Over" + image_overlay="AddItem_Off" + image_selected="Toolbar_Middle_Selected" + image_unselected="Toolbar_Middle_Off" layout="topleft" - left_pad="10" + left_pad="1" name="add_friend_btn" - top_delta="0" tool_tip="Add selected Resident to your friends List" - width="18"> + width="31"> <commit_callback function="People.addFriend" /> </button> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Right_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="241" + /> </panel> </panel> </tab_container> @@ -377,7 +434,7 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t height="23" layout="topleft" left="8" - top_pad="0" + top_pad="4" name="button_bar" width="313"> <button @@ -387,6 +444,7 @@ If you're looking for people to hang out with, [secondlife:///app/worldmap try t layout="topleft" name="view_profile_btn" tool_tip="Show picture, groups, and other Residents information" + top="0" width="70" /> <button follows="bottom|left" diff --git a/indra/newview/skins/default/xui/en/panel_place_profile.xml b/indra/newview/skins/default/xui/en/panel_place_profile.xml index 1e7c51259ccb719b8bfd0d67060444d75dc26a9f..9e5ef10d42dfbc4fd5d38445dd2aa798c0013cc1 100644 --- a/indra/newview/skins/default/xui/en/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/en/panel_place_profile.xml @@ -353,7 +353,7 @@ left_pad="12" name="rating_label" value="Rating:" - width="60" /> + width="90" /> <text follows="left|right|top" height="16" @@ -380,7 +380,7 @@ name="voice_label" top_delta="0" value="Voice:" - width="60" /> + width="90" /> <text follows="left|right|top" height="18" @@ -406,7 +406,7 @@ left_pad="8" name="fly_label" value="Fly:" - width="60" /> + width="90" /> <text follows="left|right|top" height="16" @@ -432,7 +432,7 @@ left_pad="8" name="push_label" value="Push:" - width="60" /> + width="90" /> <text follows="left|right|top" height="14" @@ -458,7 +458,7 @@ left_pad="8" name="build_label" value="Build:" - width="60" /> + width="90" /> <text follows="left|right|top" height="15" @@ -484,7 +484,7 @@ left_pad="8" name="scripts_label" value="Scripts:" - width="60" /> + width="90" /> <text follows="left|right|top" height="14" @@ -510,7 +510,7 @@ left_pad="8" name="damage_label" value="Damage:" - width="60" /> + width="90" /> <text follows="left|right|top" height="14" diff --git a/indra/newview/skins/default/xui/en/panel_places.xml b/indra/newview/skins/default/xui/en/panel_places.xml index ff5d89470cde8cb74652d638bae3285437212c71..c61007a9e1a3fa2a150044074f6f12c5b56c0443 100644 --- a/indra/newview/skins/default/xui/en/panel_places.xml +++ b/indra/newview/skins/default/xui/en/panel_places.xml @@ -65,7 +65,7 @@ background_visible="true" visible="false" width="315" /> <panel - height="19" + height="23" layout="topleft" left="4" name="button_panel" diff --git a/indra/newview/skins/default/xui/en/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/en/panel_preferences_advanced.xml index 4be4d6b4328483460fb17723f1a004cf8eb0cbbe..e604e401f6c3ddb2be07a3cc66eb3fcfd9402a24 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_advanced.xml @@ -12,6 +12,10 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] + </panel.string> + <panel.string + name="middle_mouse"> + Middle Mouse </panel.string> <icon follows="left|top" @@ -160,7 +164,7 @@ Automatic position for: label="Opacity" layout="topleft" left="80" - label_width="50" + label_width="60" name="bubble_chat_opacity" width="200" /> <color_swatch diff --git a/indra/newview/skins/default/xui/en/panel_preferences_alerts.xml b/indra/newview/skins/default/xui/en/panel_preferences_alerts.xml index 188fd3b7bc0e82a2d345ad3379302e6def1e78ed..516457dd931d066b7fa558fca2e2b220403990e4 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_alerts.xml @@ -51,13 +51,13 @@ Always show: </text> <scroll_list - follows="top|left" + follows="top|left|right" height="140" layout="topleft" left="10" multi_select="true" name="enabled_popups" - width="475" /> + width="495" /> <button enabled_control="FirstSelectedDisabledPopups" follows="top|left" @@ -99,11 +99,11 @@ Never show: </text> <scroll_list - follows="top|left" + follows="top|left|right" height="140" layout="topleft" left="10" multi_select="true" name="disabled_popups" - width="475" /> + width="495" /> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_preferences_chat.xml b/indra/newview/skins/default/xui/en/panel_preferences_chat.xml index 3d434361b9d517c118865e508dd4db401524f3b3..eb2112c5860524aaf433f53df84e57a7cd21a8c7 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_chat.xml @@ -337,6 +337,7 @@ top_pad="5" width="400" /> <text + name="show_ims_in_label" follows="left|top" layout="topleft" left="30" @@ -346,6 +347,7 @@ Show IMs in: </text> <text + name="requires_restart_label" follows="left|top" layout="topleft" top_delta="0" diff --git a/indra/newview/skins/default/xui/en/panel_preferences_general.xml b/indra/newview/skins/default/xui/en/panel_preferences_general.xml index 08f8a24ac3b19ca9084cfb2ec2bb111ac0d04977..210c6501399ae8060a7f32512b3dc1959e886da3 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_general.xml @@ -277,7 +277,7 @@ width="200"> Tags show: </text> - <check_box + <check_box control_name="NameTagShowGroupTitles" enabled_control="AvatarNameTagMode" height="16" @@ -396,11 +396,11 @@ hover="false" commit_on_focus_lost = "true" follows="left|top" - height="45" + height="60" layout="topleft" left="50" name="busy_response" - width="440" + width="450" word_wrap="true"> log_in_to_change </text_editor> diff --git a/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml b/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml index f232a694829add3c769e751177d0564c27d0be99..3d7f3924046808f3c23e7ead09c5dfed52068924 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml @@ -68,15 +68,6 @@ left="30" name="auto_disengage_mic_check" top_pad="10" - width="350" /> - <check_box - control_name="CookiesEnabled" - height="16" - label="Accept cookies" - layout="topleft" - left="30" - name="cookies_enabled" - top_pad="10" width="350" /> <text type="string" diff --git a/indra/newview/skins/default/xui/en/panel_preferences_setup.xml b/indra/newview/skins/default/xui/en/panel_preferences_setup.xml index 8723e0a832728d72c254ff57ef21bb58b2102457..2123e62daa08e99b4b79ecf0b3aedf3dc7a7f5ba 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_setup.xml @@ -142,14 +142,14 @@ increment="1" initial_value="13000" label="Port number:" - label_width="75" + label_width="105" layout="topleft" left_delta="160" max_val="13050" min_val="13000" name="connection_port" - top_delta="-2" - width="140" /> + top_delta="3" + width="170" /> <text type="string" length="1" @@ -265,18 +265,8 @@ layout="topleft" left_delta="50" name="use_external_browser" - top_pad="4" + top_pad="-2" width="480"> - <radio_item - height="20" - label="Use built-in browser" - layout="topleft" - left="0" - name="internal" - value="0" - tool_tip="Use the built-in web browser for help, web links, etc. This browser opens as a new window inside [APP_NAME]." - top="0" - width="480" /> <radio_item height="20" label="Use my browser (IE, Firefox, Safari)" @@ -284,16 +274,71 @@ left_delta="0" name="external" value="1" + top="0" tool_tip="Use the default system web browser for help, web links, etc. Not recommended if running full screen." + width="480" /> + <radio_item + height="20" + label="Use built-in browser" + layout="topleft" + left="0" + name="internal" + value="" + tool_tip="Use the built-in web browser for help, web links, etc. This browser opens as a new window inside [APP_NAME]." top_delta="20" width="480" /> </radio_group> + <check_box + top_delta="2" + enabled="true" + follows="left|top" + height="18" + initial_value="true" + control_name="BrowserPluginsEnabled" + label="Enable plugins" + left_delta="20" + mouse_opaque="true" + name="browser_plugins_enabled" + radio_style="false" + width="400" + top_pad="5"/> + + <check_box + top_delta="4" + enabled="true" + follows="left|top" + height="14" + initial_value="true" + control_name="CookiesEnabled" + label="Accept cookies" + left_delta="0" + mouse_opaque="true" + name="cookies_enabled" + radio_style="false" + width="400" + top_pad="5"/> + <check_box top_delta="4" enabled="true" follows="left|top" - height="16" + height="14" + initial_value="true" + control_name="BrowserJavascriptEnabled" + label="Enable Javascript" + left_delta="0" + mouse_opaque="true" + name="browser_javascript_enabled" + radio_style="false" + width="400" + top_pad="5"/> + + <check_box + top_delta="4" + enabled="true" + follows="left|top" + height="14" initial_value="false" control_name="BrowserProxyEnabled" label="Enable Web Proxy" @@ -308,9 +353,9 @@ follows="left|top" height="10" layout="topleft" - left_delta="1" + left_delta="20" name="Proxy location" - top_delta="20" + top_delta="16" width="300"> Proxy location: </text> @@ -335,9 +380,9 @@ increment="1" initial_value="80" label="Port number:" - label_width="75" + label_width="95" layout="topleft" - left_delta="230" + left_delta="210" max_val="12000" min_val="10" name="web_proxy_port" diff --git a/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml index 6b5f0c3896bb453a0301647aa4b1c5fa834ab391..6bf00373ea6ee055abe65b293949f6ed1d8030e3 100644 --- a/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml +++ b/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel follows="left|right|top|bottom" - name="MediaControlsPanel" + name="MediaControls" background_visible="false" height="200" layout="topleft" diff --git a/indra/newview/skins/default/xui/en/panel_profile.xml b/indra/newview/skins/default/xui/en/panel_profile.xml index 412485e03f5f155993ecbced2d200c2d0fab175d..30191aecb6a1446d547ef9ecd94910154cde0cac 100644 --- a/indra/newview/skins/default/xui/en/panel_profile.xml +++ b/indra/newview/skins/default/xui/en/panel_profile.xml @@ -314,9 +314,12 @@ left="2" mouse_opaque="false" name="add_friend" + pad_left="1" + pad_right="1" tool_tip="Offer friendship to the Resident" top="5" - width="80" /> + use_ellipses="true" + width="117" /> <button follows="bottom|left" height="23" @@ -325,8 +328,8 @@ name="im" tool_tip="Open instant message session" top="5" - left_pad="3" - width="39" /> + left_pad="1" + width="21" /> <button follows="bottom|left" height="23" @@ -334,20 +337,12 @@ layout="topleft" name="call" tool_tip="Call this Resident" - left_pad="3" + left_pad="1" + pad_left="1" + pad_right="1" top="5" - width="43" /> - <button - enabled="false" - follows="bottom|left" - height="23" - label="Map" - layout="topleft" - name="show_on_map_btn" - tool_tip="Show the Resident on the map" - top="5" - left_pad="3" - width="41" /> + use_ellipses="true" + width="51" /> <button follows="bottom|left" height="23" @@ -355,9 +350,12 @@ layout="topleft" name="teleport" tool_tip="Offer teleport" - left_pad="3" + left_pad="1" + pad_left="1" + pad_right="1" top="5" - width="69" /> + use_ellipses="true" + width="92" /> <button follows="bottom|right" height="23" @@ -367,7 +365,6 @@ tool_tip="Pay money to or share inventory with the Resident" right="-1" top="5" - left_pad="3" width="23" /> </layout_panel> <layout_panel diff --git a/indra/newview/skins/default/xui/en/panel_region_general.xml b/indra/newview/skins/default/xui/en/panel_region_general.xml index 1bbe9d80c0f06aa4ebcda81221c53897725d5014..ca9579284b8e0dc0db16f8be742ad7b06937f433 100644 --- a/indra/newview/skins/default/xui/en/panel_region_general.xml +++ b/indra/newview/skins/default/xui/en/panel_region_general.xml @@ -171,27 +171,51 @@ width="100"> Rating: </text> - <combo_box + <icons_combo_box + follows="left|top" height="20" label="Moderate" layout="topleft" left_delta="100" name="access_combo" top_delta="0" - width="85"> - <combo_box.item + 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" /> - <combo_box.item + 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" /> - <combo_box.item + 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" /> - </combo_box> + value="13"> + <item.columns + halign="center" + type="icon" + value="Parcel_PG_Light" + width="20"/> + </icons_combo_box.item> + </icons_combo_box> <button enabled="false" follows="left|top" diff --git a/indra/newview/skins/default/xui/en/panel_status_bar.xml b/indra/newview/skins/default/xui/en/panel_status_bar.xml index 0c870e155b23f98f19cb3beab40c782516f5368b..8c7de22cf8d940e02fdeeb209d793ab86fe56bd3 100644 --- a/indra/newview/skins/default/xui/en/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/en/panel_status_bar.xml @@ -94,12 +94,12 @@ <button follows="right|top" height="16" - image_selected="Pause_Off" - image_unselected="Play_Off" - image_pressed="Play_Press" - image_pressed_selected="Pause_Press" + image_selected="Play_Off" + image_unselected="Pause_Off" + image_pressed="Pause_Press" + image_pressed_selected="Play_Press" is_toggle="true" - left_pad="15" + left_pad="20" top="1" name="media_toggle_btn" tool_tip="Start/Stop All Media (Music, Video, Web pages)" @@ -112,12 +112,12 @@ image_pressed="Audio_Press" image_unselected="Audio_Off" is_toggle="true" - left_pad="5" + left_pad="10" top="2" name="volume_btn" tool_tip="Global Volume Control" width="16" /> - <text + <!-- <text follows="right|top" halign="center" height="12" @@ -125,5 +125,5 @@ left_delta="0" name="stat_btn" top_delta="0" - width="20"/> + width="20"/>--> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_teleport_history.xml b/indra/newview/skins/default/xui/en/panel_teleport_history.xml index 0d4f67f94cd9ab34223461f7f6319386cd7fe583..cbcaf1a58c1dcc149d116213dda4441b67a06423 100644 --- a/indra/newview/skins/default/xui/en/panel_teleport_history.xml +++ b/indra/newview/skins/default/xui/en/panel_teleport_history.xml @@ -1,17 +1,19 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<panel name="Teleport History" bottom="0" height="400" left="0" width="380" +<panel name="Teleport History" bottom="0" height="400" left="0" width="313" help_topic="panel_teleport_history" - border="false" follows="left|top|right|bottom"> + border="false" follows="left|top|right|bottom" + background_visible="true" + bg_alpha_color="DkGray"> <accordion follows="left|top|right|bottom" - height="368" + height="369" layout="topleft" - left="0" + left="3" top="0" name="history_accordion" background_visible="true" bg_alpha_color="DkGray2" - width="380"> + width="307"> <accordion_tab layout="topleft" name="today" @@ -23,7 +25,7 @@ left="0" name="today_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -37,7 +39,7 @@ left="0" name="yesterday_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -51,7 +53,7 @@ left="0" name="2_days_ago" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -65,7 +67,7 @@ left="0" name="3_days_ago" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -79,7 +81,7 @@ left="0" name="4_days_ago" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -93,7 +95,7 @@ left="0" name="5_days_ago_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -107,7 +109,7 @@ left="0" name="6_days_and_older_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -121,7 +123,7 @@ left="0" name="1_month_and_older_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> <accordion_tab @@ -135,34 +137,41 @@ left="0" name="6_months_and_older_items" top="0" - width="380"> + width="307"> </flat_list_view> </accordion_tab> </accordion> <panel - bg_opaque_color="DkGray2" - bg_alpha_color="DkGray2" - background_visible="true" - background_opaque="true" + background_visible="true" bevel_style="none" bottom="0" follows="left|right|bottom" - height="38" + height="27" layout="bottomleft" - left="0" + left="3" name="bottom_panel" - width="380"> + width="313"> <button follows="bottom|left" tool_tip="Show additional options" - height="18" - image_disabled="OptionsMenu_Disabled" - image_selected="OptionsMenu_Press" - image_unselected="OptionsMenu_Off" + height="25" + image_hover_unselected="Toolbar_Left_Over" + image_overlay="OptionsMenu_Off" + image_selected="Toolbar_Left_Selected" + image_unselected="Toolbar_Left_Off" layout="topleft" - left="10" + left="0" name="gear_btn" - top="14" - width="18" /> + top="1" + width="31" /> + <icon + follows="bottom|left" + height="25" + image_name="Toolbar_Right_Off" + layout="topleft" + left_pad="1" + name="dummy_icon" + width="273" + /> </panel> </panel> 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 12c06504caf1c0d37fdf20760f691b7c4dcf0541..b840fdd31b1afaf0a9bff4371885cb8d04f85983 100644 --- a/indra/newview/skins/default/xui/en/sidepanel_item_info.xml +++ b/indra/newview/skins/default/xui/en/sidepanel_item_info.xml @@ -403,7 +403,7 @@ top_pad="10" layout="topleft" name="button_panel" left="5" - bottom="2" + top_pad="0" width="313"> <button height="23" diff --git a/indra/newview/skins/default/xui/en/sidepanel_task_info.xml b/indra/newview/skins/default/xui/en/sidepanel_task_info.xml index 433b7691face5bcbdb67ec96306d2bb15261e126..d46783e058879c917ef8192d507031d7dbdc49d9 100644 --- a/indra/newview/skins/default/xui/en/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/en/sidepanel_task_info.xml @@ -303,7 +303,7 @@ follows="left|top|right" layout="topleft" name="perm_modify" - width="200"> + width="310"> You can modify this object </text> <text diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index 543f047ce5cb01e7ed808cbabe79b9cfa4e504e8..69a2b4f7eb1e157b906c4ea1f94d89113c9403a5 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -14,7 +14,14 @@ <!-- starting up --> <string name="StartupDetectingHardware">Detecting hardware...</string> - <string name="StartupLoading">Loading</string> + <string name="StartupLoading">Loading [APP_NAME]...</string> + <string name="StartupClearingCache">Clearing cache...</string> + <string name="StartupInitializingTextureCache">Initializing Texture Cache...</string> + <string name="StartupInitializingVFS">Initializing VFS...</string> + + <!-- progress --> + <string name="ProgressRestoring">Restoring...</string> + <string name="ProgressChangingResolution">Changing Resolution...</string> <!-- Legacy strings, almost never used --> <string name="Fullbright">Fullbright (Legacy)</string> <!-- used in the Build > materials dropdown--> @@ -40,12 +47,18 @@ <string name="LoginConnectingToRegion">Connecting to region...</string> <string name="LoginDownloadingClothing">Downloading clothing...</string> <string name="LoginFailedNoNetwork">Network Error: Could not establish connection, please check your network connection.</string> + <string name="LoginFailed">Login failed.</string> <string name="Quit">Quit</string> <string name="create_account_url">http://join.secondlife.com/</string> <!-- Disconnection --> <string name="AgentLostConnection">This region may be experiencing trouble. Please check your connection to the Internet.</string> - + <string name="SavingSettings">Saving your settings...</string> + <string name="LoggingOut">Logging out...</string> + <string name="ShuttingDown">Shutting down...</string> + <string name="YouHaveBeenDisconnected">You have been disconnected from the region you were in.</string> + <string name="SentToInvalidRegion">You were sent to an invalid region.</string> + <string name="TestingDisconnect">Testing viewer disconnect</string> <!-- Tooltip, lltooltipview.cpp --> <string name="TooltipPerson">Person</string><!-- Object under mouse pointer is an avatar --> @@ -68,6 +81,12 @@ <string name="TooltipHttpUrl">Click to view this web page</string> <string name="TooltipSLURL">Click to view this location's information</string> <string name="TooltipAgentUrl">Click to view this Resident's profile</string> + <string name="TooltipAgentMute">Click to mute this Resident</string> + <string name="TooltipAgentUnmute">Click to unmute this Resident</string> + <string name="TooltipAgentIM">Click to IM this Resident</string> + <string name="TooltipAgentPay">Click to Pay this Resident</string> + <string name="TooltipAgentOfferTeleport">Click to offer a teleport request to this Resident</string> + <string name="TooltipAgentRequestFriend">Click to send a friend request to this Resident</string> <string name="TooltipGroupUrl">Click to view this group's description</string> <string name="TooltipEventUrl">Click to view this event's description</string> <string name="TooltipClassifiedUrl">Click to view this classified</string> @@ -77,11 +96,21 @@ <string name="TooltipMapUrl">Click to view this location on a map</string> <string name="TooltipSLAPP">Click to run the secondlife:// command</string> <string name="CurrentURL" value=" CurrentURL: [CurrentURL]" /> + <string name="TooltipPrice" value=" L$[PRICE]-" /> + <!-- text for SLURL labels --> <string name="SLurlLabelTeleport">Teleport to</string> <string name="SLurlLabelShowOnMap">Show Map for</string> + <!-- label strings for secondlife:///app/agent SLapps --> + <string name="SLappAgentMute">Mute</string> + <string name="SLappAgentUnmute">Unmute</string> + <string name="SLappAgentIM">IM</string> + <string name="SLappAgentPay">Pay</string> + <string name="SLappAgentOfferTeleport">Offer Teleport to </string> + <string name="SLappAgentRequestFriend">Friend Request </string> + <!-- ButtonToolTips, llfloater.cpp --> <string name="BUTTON_CLOSE_DARWIN">Close (⌘W)</string> <string name="BUTTON_CLOSE_WIN">Close (Ctrl+W)</string> @@ -132,6 +161,7 @@ <string name="AssetErrorUnknownStatus">Unknown status</string> <!-- Asset Type human readable names: these will replace variable [TYPE] in notification FailedToFindWearable* --> + <!-- Will also replace [OBJECTTYPE] in notifications: UserGiveItem, ObjectGiveItem --> <string name="texture">texture</string> <string name="sound">sound</string> <string name="calling card">calling card</string> @@ -156,6 +186,7 @@ <string name="simstate">simstate</string> <string name="favorite">favorite</string> <string name="symbolic link">link</string> + <string name="symbolic folder link">folder link</string> <!-- llvoavatar. Displayed in the avatar chat bubble --> <string name="AvatarEditingAppearance">(Editing Appearance)</string> @@ -1821,6 +1852,7 @@ Clears (deletes) the media and all params from the given face. <string name="LoadingContents">Loading contents...</string> <string name="NoContents">No contents</string> <string name="WornOnAttachmentPoint" value=" (worn on [ATTACHMENT_POINT])" /> + <string name="ActiveGesture" value="[GESLABEL] (active)"/> <!-- Inventory permissions --> <string name="PermYes">Yes</string> <string name="PermNo">No</string> @@ -1877,6 +1909,7 @@ Clears (deletes) the media and all params from the given face. <string name="InvFolder favorite">Favorites</string> <string name="InvFolder Current Outfit">Current Outfit</string> <string name="InvFolder My Outfits">My Outfits</string> + <string name="InvFolder Accessories">Accessories</string> <!-- are used for Friends and Friends/All folders in Inventory "Calling cards" folder. See EXT-694--> <string name="InvFolder Friends">Friends</string> @@ -2106,6 +2139,7 @@ Clears (deletes) the media and all params from the given face. <!-- panel contents --> <string name="PanelContentsNewScript">New Script</string> + <string name="PanelContentsTooltip">Content of object</string> <!-- panel preferences general --> <string name="BusyModeResponseDefault">The Resident you messaged is in 'busy mode' which means they have requested not to be disturbed. Your message will still be shown in their IM panel for later viewing.</string> @@ -2168,7 +2202,8 @@ Clears (deletes) the media and all params from the given face. <!-- Viewer menu --> <string name="AcquiredItems">Acquired Items</string> <string name="Cancel">Cancel</string> - <string name="UploadingCosts">Uploading %s costs</string> + <string name="UploadingCosts">Uploading [NAME] costs L$ [AMOUNT]</string> + <string name="BuyingCosts">Buying this costs L$ [AMOUNT]</string> <string name="UnknownFileExtension"> Unknown file extension .%s Expected .wav, .tga, .bmp, .jpg, .jpeg, or .bvh @@ -3013,4 +3048,51 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. <string name="unread_chat_multiple"> [SOURCES] have said something new </string>" + + <!-- Financial operations strings --> + <string name="paid_you_ldollars">[NAME] paid you L$[AMOUNT]</string> + <string name="you_paid_ldollars">You paid [NAME] L$[AMOUNT] [REASON].</string> + <string name="you_paid_ldollars_no_reason">You paid [NAME] L$[AMOUNT].</string> + <string name="you_paid_ldollars_no_name">You paid L$[AMOUNT] [REASON].</string> + <string name="for a parcel of land">for a parcel of land</string> + <string name="for a land access pass">for a land access pass</string> + <string name="for deeding land">for deeding land</string> + <string name="to create a group">to create a group</string> + <string name="to join a group">to join a group</string> + <string name="to upload">to upload</string> + + <string name="giving">Giving L$ [AMOUNT]</string> + <string name="uploading_costs">Uploading costs L$ [AMOUNT]</string> + <string name="this_costs">This costs L$ [AMOUNT]</string> + <string name="buying_selected_land">Buying selected land for L$ [AMOUNT]</string> + <string name="this_object_costs">This object costs L$ [AMOUNT]</string> + + <string name="group_role_everyone">Everyone</string> + <string name="group_role_officers">Officers</string> + <string name="group_role_owners">Owners</string> + + <string name="uploading_abuse_report">Uploading... + +Abuse Report</string> + + <!-- names for new inventory items--> + <string name="New Shape">New Shape</string> + <string name="New Skin">New Skin</string> + <string name="New Hair">New Hair</string> + <string name="New Eyes">New Eyes</string> + <string name="New Shirt">New Shirt</string> + <string name="New Pants">New Pants</string> + <string name="New Shoes">New Shoes</string> + <string name="New Socks">New Socks</string> + <string name="New Jacket">New Jacket</string> + <string name="New Gloves">New Gloves</string> + <string name="New Undershirt">New Undershirt</string> + <string name="New Underpants">New Underpants</string> + <string name="New Skirt">New Skirt</string> + <string name="New Alpha">New Alpha</string> + <string name="New Tattoo">New Tattoo</string> + <string name="Invalid Wearable">Invalid Wearable</string> + <string name="New Script">New Script</string> + <string name="New Folder">New Folder</string> + <string name="Contents">Contents</string> </strings> diff --git a/indra/newview/skins/default/xui/en/widgets/chat_history.xml b/indra/newview/skins/default/xui/en/widgets/chat_history.xml index ef885e8045d46010bc05980eae02fb59e63f43b5..aa3ea736b8c9f1c3e4d912def7f5069b9d4a5d2b 100644 --- a/indra/newview/skins/default/xui/en/widgets/chat_history.xml +++ b/indra/newview/skins/default/xui/en/widgets/chat_history.xml @@ -2,6 +2,7 @@ <chat_history message_header="panel_chat_header.xml" message_separator="panel_chat_separator.xml" + message_plaintext_separator="panel_chat_plaintext_separator.xml" left_text_pad="10" right_text_pad="15" left_widget_pad="0" 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 46531c5e5866b417f990411d42ba0d4dcea2da2e..c453d415b49919131d3fd0f2e24961a1b6db357c 100644 --- a/indra/newview/skins/default/xui/es/floater_about_land.xml +++ b/indra/newview/skins/default/xui/es/floater_about_land.xml @@ -1,5 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floaterland" title="ACERCA DEL TERRENO"> + <floater.string name="maturity_icon_general"> + "Parcel_PG_Dark" + </floater.string> + <floater.string name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> <floater.string name="Minutes"> [MINUTES] minutos </floater.string> @@ -15,7 +24,7 @@ <tab_container name="landtab"> <panel label="GENERAL" name="land_general_panel"> <panel.string name="new users only"> - Sólo usuarios nuevos + Sólo nuevos Residentes </panel.string> <panel.string name="anyone"> Cualquiera @@ -84,9 +93,9 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <text name="GroupText"> Leyla Linden </text> - <button label="Configurar..." label_selected="Configurar..." name="Set..."/> + <button label="Configurar" name="Set..."/> <check_box label="Permitir transferir al grupo" name="check deed" tool_tip="Un oficial del grupo puede transferir este terreno al grupo. El terreno será apoyado por el grupo en sus asignaciones de terreno."/> - <button label="Transferir..." label_selected="Transferir..." name="Deed..." tool_tip="Sólo si es usted un oficial del grupo seleccionado puede transferir terreno."/> + <button label="Transferir" name="Deed..." tool_tip="Sólo si es usted un oficial del grupo seleccionado puede transferir terreno."/> <check_box label="El propietario hace una contribución transfiriendo" name="check contrib" tool_tip="Cuando el terreno se transfiere al grupo, el antiguo propietario contribuye con una asignación suficiente de terreno."/> <text name="For Sale:"> En venta: @@ -97,7 +106,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <text name="For Sale: Price L$[PRICE]."> Precio: [PRICE] L$ ([PRICE_PER_SQM] L$/m²). </text> - <button label="Vender el terreno..." label_selected="Vender el terreno..." name="Sell Land..."/> + <button label="Vender el terreno" name="Sell Land..."/> <text name="For sale to"> En venta a: [BUYER] </text> @@ -107,7 +116,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <text name="Selling with no objects in parcel." width="216"> Los objetos no se incluyen en la venta. </text> - <button bottom="-245" font="SansSerifSmall" label="Cancelar la venta del terreno" label_selected="Cancelar la venta del terreno" left="275" name="Cancel Land Sale" width="165"/> + <button bottom="-245" font="SansSerifSmall" label="Cancelar la venta del terreno" label_selected="Cancelar la venta del terreno" left="275" name="Cancel Land Sale"/> <text name="Claimed:"> Reclamada: </text> @@ -126,13 +135,13 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <text name="DwellText"> 0 </text> - <button label="Comprar terreno..." label_selected="Comprar terreno..." left="130" name="Buy Land..." width="125"/> + <button label="Comprar terreno" left="130" name="Buy Land..." width="125"/> <button label="Información del script" name="Scripts..."/> - <button label="Comprar para el grupo..." label_selected="Comprar para el grupo..." name="Buy For Group..."/> - <button label="Comprar un pase..." label_selected="Comprar un pase..." left="130" name="Buy Pass..." tool_tip="Un pase le da acceso temporal a este terreno." width="125"/> - <button label="Abandonar el terreno..." label_selected="Abandonar el terreno..." name="Abandon Land..."/> - <button label="Reclamar el terreno..." label_selected="Reclamar el terreno..." name="Reclaim Land..."/> - <button label="Venta Linden..." label_selected="Venta Linden..." name="Linden Sale..." tool_tip="El terreno debe estar en propiedad, con contenido, y no estar en subasta."/> + <button label="Comprar para el grupo" name="Buy For Group..."/> + <button label="Comprar un pase" left="130" name="Buy Pass..." tool_tip="Un pase le da acceso temporal a este terreno." width="125"/> + <button label="Abandonar el terreno" name="Abandon Land..."/> + <button label="Reclamar el terreno" name="Reclaim Land..."/> + <button label="Venta Linden" name="Linden Sale..." tool_tip="El terreno debe estar en propiedad, con contenido, y no estar en subasta."/> </panel> <panel label="CONTRATO" name="land_covenant_panel"> <panel.string name="can_resell"> @@ -198,10 +207,10 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s </panel> <panel label="OBJETOS" name="land_objects_panel"> <panel.string name="objects_available_text"> - [COUNT] de un máximo de [MAX] ([AVAILABLE] disponibles) + [COUNT] de un máx. de [MAX] ([AVAILABLE] disponibles) </panel.string> <panel.string name="objects_deleted_text"> - [COUNT] de un máximo de [MAX] ([DELETED] se borrarán) + [COUNT] de un máx. de [MAX] ([DELETED] se borrarán) </panel.string> <text name="parcel_object_bonus"> Plus de objetos en la región: [BONUS] @@ -210,7 +219,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s Uso de primitivas: </text> <text left="204" name="objects_available" width="250"> - [COUNT] de un máximo de [MAX] ([AVAILABLE] disponibles) + [COUNT] de un máx. de [MAX] ([AVAILABLE] disponibles) </text> <text name="Primitives parcel supports:" width="200"> Prims que admite la parcela: @@ -231,7 +240,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowOwner" right="-135" width="60"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnOwner..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> + <button label="Devolver" name="ReturnOwner..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> <text left="14" name="Set to group:" width="180"> Del grupo: </text> @@ -239,7 +248,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowGroup" right="-135" width="60"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnGroup..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> + <button label="Devolver" name="ReturnGroup..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> <text left="14" name="Owned by others:" width="128"> Propiedad de otros: </text> @@ -247,7 +256,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowOther" right="-135" width="60"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnOther..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> + <button label="Devolver" name="ReturnOther..." right="-10" tool_tip="Devolver los objetos a sus propietarios." width="119"/> <text left="14" name="Selected / sat upon:" width="193"> Seleccionados / con gente sentada: </text> @@ -262,7 +271,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s Propietarios de los objetos: </text> <button label="Actualizar la lista" label_selected="Actualizar la lista" left="158" name="Refresh List" tool_tip="Refresh Object List"/> - <button label="Devolver los objetos..." label_selected="Devolver los objetos..." left="270" name="Return objects..." width="164"/> + <button label="Devolver los objetos" left="270" name="Return objects..." width="164"/> <name_list name="owner list"> <name_list.columns label="Tipo" name="type"/> <name_list.columns label="Nombre" name="name"/> @@ -307,28 +316,28 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda. </text> <check_box label="Editar el terreno" name="edit land check" tool_tip="Si se marca, cualquiera podrá modificar su terreno. Mejor dejarlo desmarcado, pues usted siempre puede modificar su terreno."/> <check_box label="Volar" name="check fly" tool_tip="Si se marca, los residentes podrán volar en su terreno. Si no, sólo podrán volar al cruzarlo o hasta que aterricen en él."/> - <text left="162" name="allow_label2"> + <text name="allow_label2"> Crear objetos: </text> - <check_box label="Todos los residentes" left="255" name="edit objects check"/> - <check_box label="El grupo" left="385" name="edit group objects check"/> - <text left="162" name="allow_label3"> + <check_box label="Todos los residentes" name="edit objects check"/> + <check_box label="El grupo" name="edit group objects check"/> + <text name="allow_label3"> Dejar objetos: </text> - <check_box label="Todos los residentes" left="255" name="all object entry check"/> - <check_box label="El grupo" left="385" name="group object entry check"/> - <text left="162" name="allow_label4"> + <check_box label="Todos los residentes" name="all object entry check"/> + <check_box label="El grupo" name="group object entry check"/> + <text name="allow_label4"> Ejecutar scripts: </text> - <check_box label="Todos los residentes" left="255" name="check other scripts"/> - <check_box label="El grupo" left="385" name="check group scripts"/> + <check_box label="Todos los residentes" name="check other scripts"/> + <check_box label="El grupo" name="check group scripts"/> <text name="land_options_label"> Opciones del terreno: </text> <check_box label="Seguro (sin daño)" name="check safe" tool_tip="Si se marca, convierte el terreno en 'seguro', desactivando el daño en combate. Si no, se activa el daño en combate."/> <check_box label="Sin 'empujones'" 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 left="282" name="land category with adult" width="140"> + <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="'Adult'" name="item2"/> @@ -343,7 +352,7 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda. <combo_box.item label="Compras" name="item11"/> <combo_box.item label="Otra" name="item12"/> </combo_box> - <combo_box left="282" name="land category" width="140"> + <combo_box name="land category"> <combo_box.item label="Cualquier categorÃa" name="item0"/> <combo_box.item label="Localización Linden" name="item1"/> <combo_box.item label="Arte y Cultura" name="item3"/> @@ -385,7 +394,7 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda. Página inicial: </text> <line_editor left="97" name="media_url"/> - <button label="Definir..." label_selected="Definir..." name="set_media_url"/> + <button label="Definir" name="set_media_url"/> <check_box label="Ocultar la URL del media" left="97" name="hide_media_url" tool_tip="Marcando esta opción esconderá en la información de esta parcela -a quien no esté autorizado a verla- la URL del media. Note que esto no está disponible para HTML."/> <text name="Description:"> Descripción: @@ -424,6 +433,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]) + </panel.string> <panel.string name="estate_override"> Una o más de esta opciones está configurada a nivel del estado </panel.string> diff --git a/indra/newview/skins/default/xui/es/floater_animation_preview.xml b/indra/newview/skins/default/xui/es/floater_animation_preview.xml index 2fc18e55f61d8e41a841a792dd739bd5d61c12a3..a40d53a8a87477c31ce88dc521f615b9d2e9b8c7 100644 --- a/indra/newview/skins/default/xui/es/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/es/floater_animation_preview.xml @@ -115,14 +115,14 @@ La duración máxima de una animación es de [MAX_LENGTH] segundos. <text name="description_label"> Descripción: </text> - <spinner label="Prioridad:" label_width="72" name="priority" tool_tip="Controla qué otras animaciones pueden ser anuladas por ésta" width="110"/> - <check_box label="Bucle:" left="8" name="loop_check" tool_tip="Hace esta animación en bucle"/> - <spinner label="Empieza(%)" label_width="65" left="65" name="loop_in_point" tool_tip="Indica el punto en el que la animación vuelve a empezar" width="116"/> - <spinner label="Acaba(%)" label_width="50" left="185" name="loop_out_point" tool_tip="Indica el punto en el que la animación acaba el bucle"/> + <spinner label="Prioridad:" name="priority" tool_tip="Controla qué otras animaciones pueden ser anuladas por ésta"/> + <check_box label="Bucle:" name="loop_check" tool_tip="Hace esta animación en bucle"/> + <spinner label="Empieza(%)" name="loop_in_point" tool_tip="Indica el punto en el que la animación vuelve a empezar"/> + <spinner label="Acaba(%)" name="loop_out_point" tool_tip="Indica el punto en el que la animación acaba el bucle"/> <text name="hand_label"> Posición de las manos </text> - <combo_box left_delta="120" name="hand_pose_combo" tool_tip="Controla qué hacen las manos durante la animación" width="164"> + <combo_box name="hand_pose_combo" tool_tip="Controla qué hacen las manos durante la animación"> <combo_box.item label="Extendidas" name="Spread"/> <combo_box.item label="Relajadas" name="Relaxed"/> <combo_box.item label="Ambas señalan" name="PointBoth"/> @@ -140,7 +140,7 @@ La duración máxima de una animación es de [MAX_LENGTH] segundos. <text name="emote_label"> Expresión </text> - <combo_box left_delta="120" name="emote_combo" tool_tip="Controla qué hace la cara durante la animación" width="164"> + <combo_box name="emote_combo" tool_tip="Controla qué hace la cara durante la animación"> <combo_box.item label="(ninguno)" name="[None]"/> <combo_box.item label="Aaaaah" name="Aaaaah"/> <combo_box.item label="Con miedo" name="Afraid"/> @@ -162,17 +162,17 @@ La duración máxima de una animación es de [MAX_LENGTH] segundos. <combo_box.item label="Guiño" name="Wink"/> <combo_box.item label="Preocupación" name="Worry"/> </combo_box> - <text name="preview_label" width="250"> + <text name="preview_label"> Vista previa mientras </text> - <combo_box left_delta="120" name="preview_base_anim" tool_tip="Compruebe cómo se comporta su animación a la vez que el avatar realiza acciones comunes." width="130"> + <combo_box name="preview_base_anim" tool_tip="Compruebe cómo se comporta su animación a la vez que el avatar realiza acciones comunes."> <combo_box.item label="De pie" name="Standing"/> <combo_box.item label="Caminando" name="Walking"/> <combo_box.item label="Sentado/a" name="Sitting"/> <combo_box.item label="Volando" name="Flying"/> </combo_box> - <spinner label="Combinar (sec)" label_width="125" name="ease_in_time" tool_tip="Tiempo (en segundos) en el que se combinan las animaciones" width="192"/> - <spinner bottom_delta="-20" label="Dejar de combinar (sec)" label_width="125" left="10" name="ease_out_time" tool_tip="Tiempo (en segundos) en el que dejan de combinarse las animaciones" width="192"/> + <spinner label="Combinar (sec)" name="ease_in_time" tool_tip="Tiempo (en segundos) en el que se combinan las animaciones"/> + <spinner label="Dejar de combinar (sec)" name="ease_out_time" tool_tip="Tiempo (en segundos) en el que dejan de combinarse las animaciones"/> <button bottom_delta="-32" name="play_btn" tool_tip="Ejecutar tu animación"/> <button name="pause_btn" tool_tip="Pausar tu animación"/> <button label="" name="stop_btn" tool_tip="Parar la repetición de la animación"/> @@ -180,8 +180,7 @@ La duración máxima de una animación es de [MAX_LENGTH] segundos. <text name="bad_animation_text"> No se ha podido leer el archivo de la animación. -Recomendamos usar archivos BVH exportados de -Poser 4. +Recomendamos usar archivos BVH exportados de Poser 4. </text> <button label="Subir ([AMOUNT] L$)" name="ok_btn"/> <button label="Cancelar" name="cancel_btn"/> diff --git a/indra/newview/skins/default/xui/es/floater_build_options.xml b/indra/newview/skins/default/xui/es/floater_build_options.xml index de8d205ad40f5f51bd789cb9b3a8fb96f709e046..9d63abd73c08a53a1893738307a61e4abe4d5920 100644 --- a/indra/newview/skins/default/xui/es/floater_build_options.xml +++ b/indra/newview/skins/default/xui/es/floater_build_options.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="build options floater" title="OPCIONES DE LA CUADRÃCULA"> <spinner label="Unidad de la cuadrÃcula (metros)" label_width="192" name="GridResolution" width="250"/> - <spinner label="Graduación de la cuadrÃcula (metros)" label_width="192" name="GridDrawSize" width="250"/> + <spinner label="Alcance de la cuadrÃcula (metros)" label_width="192" name="GridDrawSize" width="250"/> <check_box label="Activar subunidades" name="GridSubUnit"/> <check_box label="Ver la sección transversal" name="GridCrossSection"/> <text name="grid_opacity_label" tool_tip="Opacidad de la cuadrÃcula"> diff --git a/indra/newview/skins/default/xui/es/floater_buy_currency.xml b/indra/newview/skins/default/xui/es/floater_buy_currency.xml index 81c54cf600f2010615593f77da94530a58c32378..a8fa03084692cd3623cb5b6f0e056cd5ac7d9288 100644 --- a/indra/newview/skins/default/xui/es/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/es/floater_buy_currency.xml @@ -37,7 +37,7 @@ Calculando... </text> <text name="buy_action"> - [NAME] [PRICE] L$ + [ACTION] </text> <text name="total_label"> Mi nuevo saldo será diff --git a/indra/newview/skins/default/xui/es/floater_buy_land.xml b/indra/newview/skins/default/xui/es/floater_buy_land.xml index 496e719c6dccce6cb8a04eeca2f197433d1aed3a..9a0a566a55b5bc802474c819f0c31028aff33eed 100644 --- a/indra/newview/skins/default/xui/es/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/es/floater_buy_land.xml @@ -41,8 +41,8 @@ Inténtelo seleccionando un área más pequeña. El área seleccionada no tiene terreno público. </floater.string> <floater.string name="not_owned_by_you"> - Se ha seleccionado terreno propiedad de otro. -Inténtelo seleccionando un área más pequeña. + Está seleccionado un terreno propiedad de otro Residente. +Prueba a seleccionar un área más pequeña. </floater.string> <floater.string name="processing"> Procesando su compra... diff --git a/indra/newview/skins/default/xui/es/floater_camera.xml b/indra/newview/skins/default/xui/es/floater_camera.xml index 40c56037062d7ae368e1e2cbff868fded9e592b4..787c37e12c491c21f0dd384fa4e343957e1c1d19 100644 --- a/indra/newview/skins/default/xui/es/floater_camera.xml +++ b/indra/newview/skins/default/xui/es/floater_camera.xml @@ -9,6 +9,18 @@ <floater.string name="move_tooltip"> Mover la cámara arriba y abajo, izquierda y derecha </floater.string> + <floater.string name="orbit_mode_title"> + Orbital + </floater.string> + <floater.string name="pan_mode_title"> + Panorámica + </floater.string> + <floater.string name="avatar_view_mode_title"> + Posición de tu cámara + </floater.string> + <floater.string name="free_mode_title"> + Centrar el objeto + </floater.string> <panel name="controls"> <joystick_track name="cam_track_stick" tool_tip="Mueve la cámara arriba y abajo, a izquierda y derecha"/> <panel name="zoom" tool_tip="Hacer zoom con la cámara en lo enfocado"> diff --git a/indra/newview/skins/default/xui/es/floater_customize.xml b/indra/newview/skins/default/xui/es/floater_customize.xml index 4b332cd9c379398ea0b2c1186e624b821b9f1915..8daf2bed156132180f8104254624b7256ba7e846 100644 --- a/indra/newview/skins/default/xui/es/floater_customize.xml +++ b/indra/newview/skins/default/xui/es/floater_customize.xml @@ -9,7 +9,7 @@ <button label="Cuerpo" label_selected="Cuerpo" name="Body"/> <button label="Cabeza" label_selected="Cabeza" name="Head"/> <button label="Ojos" label_selected="Ojos" name="Eyes"/> - <button label="Ojos" label_selected="Orejas" name="Ears"/> + <button label="Orejas" label_selected="Orejas" name="Ears"/> <button label="Nariz" label_selected="Nariz" name="Nose"/> <button label="Boca" label_selected="Boca" name="Mouth"/> <button label="Barbilla" label_selected="Barbilla" name="Chin"/> diff --git a/indra/newview/skins/default/xui/es/floater_event.xml b/indra/newview/skins/default/xui/es/floater_event.xml index 81909e997ce403abbc804113c7987a8d6132c472..4bc52217966f2c0443ef3c29229ba53f78ee0829 100644 --- a/indra/newview/skins/default/xui/es/floater_event.xml +++ b/indra/newview/skins/default/xui/es/floater_event.xml @@ -9,6 +9,18 @@ <floater.string name="dont_notify"> No notificar </floater.string> + <floater.string name="moderate"> + Moderado + </floater.string> + <floater.string name="adult"> + Adulto + </floater.string> + <floater.string name="general"> + General + </floater.string> + <floater.string name="unknown"> + desconocida + </floater.string> <layout_stack name="layout"> <layout_panel name="profile_stack"> <text name="event_name"> @@ -21,12 +33,21 @@ Organizado por: </text> <text initial_value="(obteniendo)" name="event_runby"/> + <text name="event_date_label"> + Fecha: + </text> <text name="event_date"> 10/10/2010 </text> + <text name="event_duration_label"> + Duración: + </text> <text name="event_duration"> 1 hora </text> + <text name="event_covercharge_label"> + Entrada: + </text> <text name="event_cover"> Gratis </text> @@ -36,6 +57,9 @@ <text name="event_location" value="SampleParcel, Name Long (145, 228, 26)"/> <text name="rating_label" value="Calificación:"/> <text name="rating_value" value="desconocida"/> + <expandable_text name="event_desc"> + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </expandable_text> </layout_panel> <layout_panel name="button_panel"> <button name="create_event_btn" tool_tip="Crear el evento"/> diff --git a/indra/newview/skins/default/xui/es/floater_gesture.xml b/indra/newview/skins/default/xui/es/floater_gesture.xml index 1dc1d54295b37c7b5178bda38cf44dccbb354da1..d90de8c9f43399b70cd46f62ce1d68515d5b0f53 100644 --- a/indra/newview/skins/default/xui/es/floater_gesture.xml +++ b/indra/newview/skins/default/xui/es/floater_gesture.xml @@ -9,7 +9,7 @@ <floater.string name="copy_name"> Copia de [COPY_NAME] </floater.string> - <scroll_list bottom_delta="-385" height="360" name="gesture_list"> + <scroll_list name="gesture_list"> <scroll_list.columns label="Nombre" name="name"/> <scroll_list.columns label="Chat" name="trigger"/> <scroll_list.columns label="Tecla" name="shortcut"/> diff --git a/indra/newview/skins/default/xui/es/floater_god_tools.xml b/indra/newview/skins/default/xui/es/floater_god_tools.xml index b604f7f46f18be83df640228280b47d94a965014..73187f208b3e5eea16897dfc0e5de55efef390ae 100644 --- a/indra/newview/skins/default/xui/es/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/es/floater_god_tools.xml @@ -2,7 +2,7 @@ <floater name="godtools floater" title="HERRAMIENTAS DE DIOS"> <tab_container name="GodTools Tabs"> <panel label="Red" name="grid"> - <button label="Expulsar a todos los usuarios" label_selected="Expulsar a todos los usuarios" name="Kick all users"/> + <button label="Expulsar a todos los Residentes" label_selected="Expulsar a todos los Residentes" name="Kick all users"/> <button label="Vaciar los caches de visibilidad del mapa de la región" label_selected="Vaciar los caches de visibilidad del mapa de la región" name="Flush This Region's Map Visibility Caches"/> </panel> <panel label="Región" name="region"> diff --git a/indra/newview/skins/default/xui/es/floater_im.xml b/indra/newview/skins/default/xui/es/floater_im.xml index e6b01a49464fd8541f55e76691ed837d496b0f63..3850b94fd67fd4ad678c88caa565b49148ef99fe 100644 --- a/indra/newview/skins/default/xui/es/floater_im.xml +++ b/indra/newview/skins/default/xui/es/floater_im.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <multi_floater name="im_floater" title="Mensaje Instantáneo"> <string name="only_user_message"> - Usted es el único usuario en esta sesión. + Eres el único Residente en esta sesión. </string> <string name="offline_message"> [FIRST] [LAST] no está conectado. @@ -31,7 +31,7 @@ Un moderador del grupo le ha desactivado el chat de texto. </string> <string name="add_session_event"> - No se ha podido añadir usuarios a la sesión de chat con [RECIPIENT]. + No es posible añadir Residentes a la sesión de chat con [RECIPIENT]. </string> <string name="message_session_event"> No se ha podido enviar su mensaje a la sesión de chat con [RECIPIENT]. diff --git a/indra/newview/skins/default/xui/es/floater_joystick.xml b/indra/newview/skins/default/xui/es/floater_joystick.xml index 283a46b60bed09bef14ab99648bb9ede8a282787..dbd2e4f04eda1c3c461d1b6a69cb2a32669013d6 100644 --- a/indra/newview/skins/default/xui/es/floater_joystick.xml +++ b/indra/newview/skins/default/xui/es/floater_joystick.xml @@ -63,7 +63,7 @@ <text name="ZoomDeadZone"> Zona muerta zoom </text> - <button font="SansSerifSmall" label="Predeterminados del SpaceNavigator" left="330" name="SpaceNavigatorDefaults" width="210"/> + <button font="SansSerifSmall" label="Por defecto del SpaceNavigator" left="330" name="SpaceNavigatorDefaults" width="210"/> <button label="OK" label_selected="OK" left="330" name="ok_btn"/> <button label="Cancelar" label_selected="Cancelar" left_delta="120" name="cancel_btn"/> <stat_view label="Monitor del joystick" name="axis_view"> diff --git a/indra/newview/skins/default/xui/es/floater_moveview.xml b/indra/newview/skins/default/xui/es/floater_moveview.xml index 1269943879dd8be9fc505b5a76cf852079675261..7cb41d3f5bf402489d385552d7310da1d1f46246 100644 --- a/indra/newview/skins/default/xui/es/floater_moveview.xml +++ b/indra/newview/skins/default/xui/es/floater_moveview.xml @@ -18,6 +18,15 @@ <string name="fly_back_tooltip"> Volar hacia atrás (cursor abajo o S) </string> + <string name="walk_title"> + Caminar + </string> + <string name="run_title"> + Correr + </string> + <string name="fly_title"> + Volar + </string> <panel name="panel_actions"> <button label="" label_selected="" name="turn left btn" tool_tip="Girar a la izq. (cursor izq. o A)"/> <button label="" label_selected="" name="turn right btn" tool_tip="Girar a la der. (cursor der. o D)"/> @@ -30,6 +39,5 @@ <button label="" name="mode_walk_btn" tool_tip="Modo de caminar"/> <button label="" name="mode_run_btn" tool_tip="Modo de correr"/> <button label="" name="mode_fly_btn" tool_tip="Modo de volar"/> - <button label="Dejar de volar" name="stop_fly_btn" tool_tip="Dejar de volar"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/es/floater_publish_classified.xml b/indra/newview/skins/default/xui/es/floater_publish_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..5eed89d52237a1f8c9d0fa8baf01e309b4e6c4a9 --- /dev/null +++ b/indra/newview/skins/default/xui/es/floater_publish_classified.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="publish_classified" title="Publicación de clasificados"> + <text name="explanation_text"> + Tu anuncio clasificado se mostrará durante una semana a partir del dÃa en que se publicó. + +Recuerda, no se reembolsarán las cantidades abonadas por clasificados. + </text> + <spinner label="Precio por el anuncio:" name="price_for_listing" tool_tip="Precio por publicarlo." value="50"/> + <text name="l$_text" value="L$"/> + <text name="more_info_text"> + Más información (enlace a ayuda de clasificados) + </text> + <button label="Publicar" name="publish_btn"/> + <button label="Cancelar" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/es/floater_tools.xml b/indra/newview/skins/default/xui/es/floater_tools.xml index 1c65567830c2bc546a8ecb3953b122fff5fa500d..ac3a94982153e485b4def09a868c9441c81c3c40 100644 --- a/indra/newview/skins/default/xui/es/floater_tools.xml +++ b/indra/newview/skins/default/xui/es/floater_tools.xml @@ -1,28 +1,28 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="toolbox floater" short_title="HERRAMIENTAS DE CONSTRUCCIÓN" title="" width="288"> <floater.string name="status_rotate"> - Arrastre las bandas de color para girar el objeto + Arrastra las bandas de color para girar el objeto. </floater.string> <floater.string name="status_scale"> - Pulse y arrastre para estirar el lado seleccionado + Pulsa y arrastra para estirar el lado seleccionado. </floater.string> <floater.string name="status_move"> - Arrastrar para mover, Mayús.+arrastrar para copiar + Arrastrar para mover, Mayús.+arrastrar para copiar. </floater.string> <floater.string name="status_modifyland"> - Mantenga pulsado para modificar el terreno + Mantén pulsado para modificar el terreno. </floater.string> <floater.string name="status_camera"> - Pulsa y arrastra para mover la cámara + Pulsa y arrastra para mover la cámara. </floater.string> <floater.string name="status_grab"> - Arrastra para mover: Ctrl, verticalmente; Ctrl-Mayús., girando + Arrastrar para mover: Ctrl, verticalmente; Ctrl-Mayús., girando. </floater.string> <floater.string name="status_place"> - Pulse en el mundo para construir + Pulsa en el mundo para construir. </floater.string> <floater.string name="status_selectland"> - Pulse y arrastre para seleccionar el terreno + Pulsa y arrastra para seleccionar el terreno. </floater.string> <floater.string name="grid_screen_text"> Pantalla @@ -45,7 +45,7 @@ <button label="" label_selected="" name="button create" tool_tip="Crear"/> <button label="" label_selected="" name="button land" tool_tip="Terreno"/> <text name="text status" width="280"> - Arrastrar para mover, Mayús.+arrastrar para copiar + Arrastrar para mover, Mayús.+arrastrar para copiar. </text> <radio_group name="focus_radio_group"> <radio_item label="Zoom" name="radio zoom"/> @@ -96,7 +96,7 @@ <check_box initial_value="true" label="Copia centrada" name="checkbox copy centers"/> <check_box label="Copia girada" name="checkbox copy rotates"/> <radio_group name="land_radio_group"> - <radio_item label="Seleccionar el terreno" name="radio select land"/> + <radio_item label="Seleccionar terreno" name="radio select land"/> <radio_item label="Nivelar" name="radio flatten"/> <radio_item label="Elevar" name="radio raise"/> <radio_item label="Bajar" name="radio lower"/> @@ -123,7 +123,7 @@ <tab_container name="Object Info Tabs" tab_max_width="62" tab_min_width="30" width="288"> <panel label="General" name="General"> <panel.string name="text deed continued"> - Transfeir + Transferir </panel.string> <panel.string name="text deed"> Transferir @@ -181,8 +181,8 @@ </text> <button label="Configurar..." label_selected="Configurar..." name="button set group" tool_tip="Elige un grupo con el que compartir los permisos de este objeto"/> <name_box initial_value="Cargando..." name="Group Name Proxy"/> - <button label="Transfeir" label_selected="Transfeir" name="button deed" tool_tip="La transferencia entrega este objeto con los permisos del próximo propietario. Los objetos compartidos por el grupo pueden ser transferidos por un oficial del grupo."/> - <check_box label="Compartir" name="checkbox share with group" tool_tip="Permite que todos los miembros del grupo compartan tus permisos de modificación en este objeto. Debes transferirlo para activar las restricciones según los roles."/> + <button label="Transferir" label_selected="Transferir" name="button deed" tool_tip="La transferencia entrega este objeto con los permisos del próximo propietario. Los objetos compartidos por el grupo pueden ser transferidos por un oficial del grupo."/> + <check_box label="Comprtir" name="checkbox share with group" tool_tip="Permite que todos los miembros del grupo compartan tus permisos de modificación en este objeto. Debes transferirlo para activar las restricciones según los roles."/> <text name="label click action" width="180"> Al tocarlo: </text> @@ -210,7 +210,7 @@ Cualquiera: </text> <check_box label="Moverlo" name="checkbox allow everyone move"/> - <check_box label="Copiar" name="checkbox allow everyone copy"/> + <check_box label="Copiarlo" name="checkbox allow everyone copy"/> <text name="Next owner can:"> Próximo propietario: </text> @@ -355,7 +355,7 @@ </panel> <panel label="Caracter." name="Features"> <text name="select_single"> - Seleccione un sólo prim para editarlo. + Selecciona un sólo prim para editarlo. </text> <text name="edit_object"> Editar las caracterÃsticas del objeto: diff --git a/indra/newview/skins/default/xui/es/floater_tos.xml b/indra/newview/skins/default/xui/es/floater_tos.xml index cbacce304ccf4e4f2f081eb97d2aa41814c802af..7dd91f29fafb832d087e4696d49301cf7d9020eb 100644 --- a/indra/newview/skins/default/xui/es/floater_tos.xml +++ b/indra/newview/skins/default/xui/es/floater_tos.xml @@ -2,9 +2,9 @@ <floater name="modal container" title=" "> <button label="Continuar" label_selected="Continuar" name="Continue"/> <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> - <check_box label="Estoy de acuerdo con las Condiciones del Servicio" name="agree_chk"/> + <check_box label="Acepto las Condiciones del servicio y la PolÃtica de privacidad" name="agree_chk"/> <text name="tos_heading"> - Por favor, lee detenidamente las siguientes Condiciones del Servicio. Para conectarte a [SECOND_LIFE], debes aceptar este acuerdo. + Por favor, lee detenidamente las siguientes Condiciones del servicio y PolÃtica de privacidad. Debes aceptar el acuerdo para poder iniciar sesión en [SECOND_LIFE]. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/es/floater_water.xml b/indra/newview/skins/default/xui/es/floater_water.xml index 99968601375b7d2e715d37fecbf712a7334b41de..2c1f6cfbfb9a2b478a10a8344bcc372c0d8a56ad 100644 --- a/indra/newview/skins/default/xui/es/floater_water.xml +++ b/indra/newview/skins/default/xui/es/floater_water.xml @@ -7,7 +7,7 @@ <button label="Guardar" label_selected="Guardar" name="WaterSavePreset"/> <button label="Borrar" label_selected="Borrar" name="WaterDeletePreset"/> <tab_container name="Water Tabs"> - <panel label="Configuraciones" name="Settings"> + <panel label="CONFIGURACIÓN" name="Settings"> <text name="BHText"> Color del agua </text> @@ -55,7 +55,7 @@ </text> <button label="?" left="640" name="WaterBlurMultiplierHelp"/> </panel> - <panel label="Imagen" name="Waves"> + <panel label="IMAGEN" name="Waves"> <text name="BHText"> Sentido de la onda grande </text> diff --git a/indra/newview/skins/default/xui/es/floater_windlight_options.xml b/indra/newview/skins/default/xui/es/floater_windlight_options.xml index 0697f05553f7e42670f19f0438b284b25718d9f3..9bc37509513cd0d5c2416091129acd74b9e5262a 100644 --- a/indra/newview/skins/default/xui/es/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/es/floater_windlight_options.xml @@ -6,9 +6,9 @@ <button label="Nuevo" label_selected="Nuevo" name="WLNewPreset"/> <button label="Guardar" label_selected="Guardar" name="WLSavePreset"/> <button label="Borrar" label_selected="Borrar" name="WLDeletePreset"/> - <button font="SansSerifSmall" width="150" left_delta="90" label="Editor del ciclo de un dÃa" label_selected="Editor del ciclo de un dÃa" name="WLDayCycleMenuButton"/> + <button font="SansSerifSmall" label="Editor del ciclo de un dÃa" label_selected="Editor del ciclo de un dÃa" left_delta="90" name="WLDayCycleMenuButton" width="150"/> <tab_container name="WindLight Tabs"> - <panel label="Atmósfera" name="Atmosphere"> + <panel label="ATMÓSFERA" name="Atmosphere"> <text name="BHText"> Coloración </text> @@ -62,7 +62,7 @@ </text> <button label="?" name="WLMaxAltitudeHelp"/> </panel> - <panel label="Iluminación" name="Lighting"> + <panel label="LUZ" name="Lighting"> <text name="SLCText"> Color del Sol y de la Luna </text> @@ -118,11 +118,11 @@ </text> <button label="?" name="WLStarBrightnessHelp"/> </panel> - <panel label="Nubes" name="Clouds"> + <panel label="NUBES" name="Clouds"> <text name="WLCloudColorText"> Color de las nubes </text> - <button label="?" name="WLCloudColorHelp" left="190" /> + <button label="?" left="190" name="WLCloudColorHelp"/> <text name="BHText"> R </text> @@ -138,7 +138,7 @@ <text name="WLCloudColorText2"> Posición/Densidad de las nubes </text> - <button label="?" name="WLCloudDensityHelp" left="190"/> + <button label="?" left="190" name="WLCloudDensityHelp"/> <text name="BHText5"> X </text> @@ -156,12 +156,12 @@ Altitud de las nubes </text> <button label="?" name="WLCloudScaleHelp"/> - <text name="WLCloudDetailText" font="SansSerifSmall"> + <text font="SansSerifSmall" name="WLCloudDetailText"> Detalle de las nubes (Posición/Densidad) </text> <button label="?" name="WLCloudDetailHelp"/> - <text name="BHText8" bottom="-113"> + <text bottom="-113" name="BHText8"> X </text> <text name="BHText9"> @@ -182,7 +182,7 @@ <button label="?" name="WLCloudScrollYHelp"/> <check_box label="Bloquear" name="WLCloudLockY"/> <check_box label="Incluir nubes clásicas" name="DrawClassicClouds"/> - <button label="?" name="WLClassicCloudsHelp" left="618"/> + <button label="?" left="618" name="WLClassicCloudsHelp"/> </panel> </tab_container> <string name="WLDefaultSkyNames"> diff --git a/indra/newview/skins/default/xui/es/floater_world_map.xml b/indra/newview/skins/default/xui/es/floater_world_map.xml index a8dc05703c0b89cd3cb0cac309984f2d06fd3820..38a12002f5d10dc96ae97c9c5960f66462cb9bc5 100644 --- a/indra/newview/skins/default/xui/es/floater_world_map.xml +++ b/indra/newview/skins/default/xui/es/floater_world_map.xml @@ -5,22 +5,37 @@ Leyenda </text> </panel> - <panel> + <panel name="layout_panel_2"> + <button name="Show My Location" tool_tip="Centrar el mapa en la posición de mi avatar"/> <text name="me_label"> Yo </text> <text name="person_label"> Persona </text> + <text name="infohub_label"> + Punto de Info + </text> + <text name="land_sale_label"> + Venta de terreno + </text> <text name="by_owner_label"> por el propietario </text> <text name="auction_label"> subasta de terreno </text> + <button name="Go Home" tool_tip="Teleportar a mi Base"/> + <text name="Home_label"> + Base + </text> + <text name="events_label"> + Eventos: + </text> <text name="pg_label"> General </text> + <check_box initial_value="verdadero" name="event_mature_chk"/> <text name="mature_label"> Moderado </text> @@ -28,7 +43,28 @@ Adulto </text> </panel> - <panel> + <panel name="layout_panel_3"> + <text name="find_on_map_label"> + Encontrar en el mapa + </text> + </panel> + <panel name="layout_panel_4"> + <combo_box label="Amigos online" name="friend combo" tool_tip="Ver a los amigos en el mapa"> + <combo_box.item label="Mis amigos conectados" name="item1"/> + </combo_box> + <combo_box label="Mis hitos" name="landmark combo" tool_tip="Hito a ver en el mapa"> + <combo_box.item label="Mis hitos" name="item1"/> + </combo_box> + <search_editor label="Regiones alfabéticamente" name="location" tool_tip="Escribe el nombre de una región"/> + <button label="Encontrar" name="DoSearch" tool_tip="Buscar una región"/> <button name="Clear" tool_tip="Limpia las marcas y actualiza el mapa"/> + <button label="Teleportar" name="Teleport" tool_tip="Teleportar a la localización seleccionada"/> + <button label="Copiar la SLurl" name="copy_slurl" tool_tip="Copiar la SLurl de esta posición para usarla en una web."/> + <button label="Ver lo elegido" name="Show Destination" tool_tip="Centrar el mapa en la localización seleccionada"/> + </panel> + <panel name="layout_panel_5"> + <text name="zoom_label"> + Zoom + </text> </panel> </floater> diff --git a/indra/newview/skins/default/xui/es/menu_mini_map.xml b/indra/newview/skins/default/xui/es/menu_mini_map.xml index 9c5a5719eef68485cd9c922d6ad25f9eadb54bcf..8e464177fed5914ad13fc35bc7f1f579bed88828 100644 --- a/indra/newview/skins/default/xui/es/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/es/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom cerca" name="Zoom Close"/> <menu_item_call label="Zoom medio" name="Zoom Medium"/> <menu_item_call label="Zoom lejos" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/es/menu_object.xml b/indra/newview/skins/default/xui/es/menu_object.xml index 18b6363bbb34d85af6ab233fa855203222d4cc57..1677b9461ee1b4ac69de082c12ac1e8383242efa 100644 --- a/indra/newview/skins/default/xui/es/menu_object.xml +++ b/indra/newview/skins/default/xui/es/menu_object.xml @@ -5,6 +5,7 @@ <menu_item_call label="Construir" name="Build"/> <menu_item_call label="Abrir" name="Open"/> <menu_item_call label="Sentarse aquÃ" name="Object Sit"/> + <menu_item_call label="Levantarme" name="Object Stand Up"/> <menu_item_call label="Perfil del objeto" name="Object Inspect"/> <menu_item_call label="Acercar el zoom" name="Zoom In"/> <context_menu label="Ponerme â–¶" name="Put On"> diff --git a/indra/newview/skins/default/xui/es/menu_profile_overflow.xml b/indra/newview/skins/default/xui/es/menu_profile_overflow.xml index 37ad29d8ecc042235fe47cf1f1ed68dabec56185..5ee8c50949e1aec33c0cc0901210bf7e19fb092e 100644 --- a/indra/newview/skins/default/xui/es/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/es/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Mapa" name="show_on_map"/> <menu_item_call label="Pagar" name="pay"/> <menu_item_call label="Compartir" name="share"/> <menu_item_call label="Ignorar" name="block"/> diff --git a/indra/newview/skins/default/xui/es/menu_viewer.xml b/indra/newview/skins/default/xui/es/menu_viewer.xml index 9c08fbb2c882a039877e5bfba1772ea301cc6013..93964a2f4fa0bdc3d15dd00b72b82cbefd9edf6c 100644 --- a/indra/newview/skins/default/xui/es/menu_viewer.xml +++ b/indra/newview/skins/default/xui/es/menu_viewer.xml @@ -11,7 +11,7 @@ <menu_item_check label="Mi Inventario" name="Inventory"/> <menu_item_check label="Mi Inventario" name="ShowSidetrayInventory"/> <menu_item_check label="Mis gestos" name="Gestures"/> - <menu label="Mi estatus" name="Status"> + <menu label="Mi estado" name="Status"> <menu_item_call label="Ausente" name="Set Away"/> <menu_item_call label="Ocupado" name="Set Busy"/> </menu> @@ -200,7 +200,7 @@ <menu_item_call label="Pantalla completa" name="Toggle Fullscreen"/> </menu> <menu_item_call label="Mostrar las configuraciones del depurador" name="Debug Settings"/> - <menu_item_check label="Mostrar el menú Desarrollar" name="Debug Mode"/> + <menu_item_check label="Mostrar el menú 'Develop'" name="Debug Mode"/> </menu> <menu label="Develop" name="Develop"> <menu label="Consoles" name="Consoles"> @@ -238,7 +238,7 @@ <menu_item_check label="Frame Test" name="Frame Test"/> </menu> <menu label="Rendering" name="Rendering"> - <menu_item_check label="Ejes" name="Axes"/> + <menu_item_check label="Axes" name="Axes"/> <menu_item_check label="Wireframe" name="Wireframe"/> <menu_item_check label="Global Illumination" name="Global Illumination"/> <menu_item_check label="Animation Textures" name="Animation Textures"/> @@ -254,7 +254,7 @@ <menu_item_call label="Bumps, Pushes & Hits" name="Bumps, Pushes &amp; Hits"/> <menu label="World" name="World"> <menu_item_check label="Region Sun Override" name="Sim Sun Override"/> - <menu_item_check label="Baliza con destellos" name="Cheesy Beacon"/> + <menu_item_check label="Beacon flashing effect" name="Cheesy Beacon"/> <menu_item_check label="Fixed Weather" name="Fixed Weather"/> <menu_item_call label="Dump Region Object Cache" name="Dump Region Object Cache"/> </menu> @@ -277,10 +277,10 @@ <menu label="Avatar" name="Character"> <menu label="Grab Baked Texture" name="Grab Baked Texture"> <menu_item_call label="Iris" name="Iris"/> - <menu_item_call label="Cabeza" name="Head"/> + <menu_item_call label="Head" name="Head"/> <menu_item_call label="Upper Body" name="Upper Body"/> <menu_item_call label="Lower Body" name="Lower Body"/> - <menu_item_call label="Falda" name="Skirt"/> + <menu_item_call label="Skirt" name="Skirt"/> </menu> <menu label="Character Tests" name="Character Tests"> <menu_item_call label="Toggle Character Geometry" name="Toggle Character Geometry"/> @@ -297,8 +297,8 @@ <menu_item_check label="HTTP Textures" name="HTTP Textures"/> <menu_item_check label="Console Window on next Run" name="Console Window"/> <menu_item_check label="Show Admin Menu" name="View Admin Options"/> - <menu_item_call label="Solicitar estatus de Administrador" name="Request Admin Options"/> - <menu_item_call label="Dejar el estatus de Administrador" name="Leave Admin Options"/> + <menu_item_call label="Request Admin Status" name="Request Admin Options"/> + <menu_item_call label="Leave Admin Status" name="Leave Admin Options"/> </menu> <menu label="Admin" name="Admin"> <menu label="Object"> diff --git a/indra/newview/skins/default/xui/es/notifications.xml b/indra/newview/skins/default/xui/es/notifications.xml index f99bb277cbae049bf9645e0e1724c02716a10960..a9bc9b9216701f959ab25be3bd69502b4bc8e050 100644 --- a/indra/newview/skins/default/xui/es/notifications.xml +++ b/indra/newview/skins/default/xui/es/notifications.xml @@ -106,7 +106,7 @@ Asegúrate de que tu conexión a internet está funcionando adecuadamente. </notification> <notification name="FriendsAndGroupsOnly"> Quienes no sean tus amigos no sabrán que has elegido ignorar sus llamadas y mensajes instantáneos. - <usetemplate name="okbutton" yestext="SÃ"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="GrantModifyRights"> Al conceder permisos de modificación a otro Residente, le estás permitiendo cambiar, borrar o tomar CUALQUIER objeto que tengas en el mundo. Sé MUY cuidadoso al conceder este permiso. @@ -137,25 +137,25 @@ Asegúrate de que tu conexión a internet está funcionando adecuadamente. <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Ignorar los cambios" yestext="Aplicar los cambios"/> </notification> <notification name="MustSpecifyGroupNoticeSubject"> - Para enviar un aviso de grupo debe especificar un asunto. + Para enviar un aviso de grupo debes especificar un asunto. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="AddGroupOwnerWarning"> - Va a añadir miembros al rol de [ROLE_NAME]. -No podrá removérseles de ese rol, sino que deberán renunciar a él por sà mismos. -¿Está seguro de que quiere seguir? + Vas a añadir miembros al rol de [ROLE_NAME]. +No podrás removérseles de ese rol, sino que deberán renunciar a él por sà mismos. +¿Estás seguro de que quieres seguir? <usetemplate ignoretext="Confirmar que vas a añadir un nuevo propietario al grupo" name="okcancelignore" notext="No" yestext="SÃ"/> </notification> <notification name="AssignDangerousActionWarning"> - Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. + Vas a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. *ATENCIÓN* - Todos los miembros con esta capacidad podrán asignarse a sà mismos -y a otros miembros- roles con mayores poderes de los que actualmente tienen. Potencialmente, podrÃan elevarse hasta poderes cercanos a los del propietario. Asegúrese de lo que está haciendo antes de otorgar esta capacidad. + Todos los miembros con esta capacidad podrán asignarse a sà mismos -y a otros miembros- roles con mayores poderes de los que actualmente tienen. Potencialmente, podrÃan elevarse hasta poderes cercanos a los del propietario. Asegúrate de lo que estás haciendo antes de otorgar esta capacidad. ¿Añadir esta capacidad a '[ROLE_NAME]'? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="AssignDangerousAbilityWarning"> - Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. + Vas a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. *ATENCIÓN* Todos los miembros con esta capacidad podrán asignarse a sà mismos -y a otros miembros- todas las capacidades, elevándose hasta poderes cercanos a los del propietario. @@ -169,7 +169,7 @@ No podrá removérseles de ese rol, sino que deberán renunciar a él por sà mi </notification> <notification name="JoinGroupCanAfford"> Entrar a este grupo cuesta [COST] L$. -¿Quiere hacerlo?? +¿Quieres hacerlo?? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Entrar"/> </notification> <notification name="JoinGroupNoCost"> @@ -179,7 +179,7 @@ No podrá removérseles de ese rol, sino que deberán renunciar a él por sà mi </notification> <notification name="JoinGroupCannotAfford"> Entrar a este grupo cuesta [COST] L$. -No tiene dinero suficiente para entrar. +No tienes dinero suficiente para entrar. </notification> <notification name="CreateGroupCost"> Crear este grupo te costará 100 L$. @@ -193,11 +193,11 @@ Por favor, invita a miembros en las próximas 48 horas. </notification> <notification name="SalePriceRestriction"> El precio de venta tiene que ser mayor de 0 L$ si la venta es a cualquiera. -Por favor, elija a alguien concreto como comprador si la venta es por 0 L$. +Por favor, elige a alguien concreto como comprador si la venta es por 0 L$. </notification> <notification name="ConfirmLandSaleChange"> Los [LAND_SIZE] m² de terreno seleccionados se van a poner a la venta. -Su precio de venta será de [SALE_PRICE] L$, y se autorizará la compra sólo a [NAME]. +El precio de venta será de [SALE_PRICE] L$, y se autorizará la compra sólo a [NAME]. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmLandSaleToAnyoneChange"> @@ -208,7 +208,7 @@ El precio de venta será de [SALE_PRICE] L$ y se autoriza la compra a [NAME]. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsDeededToGroup"> - ¿Está seguro de que quiere devolver todos los objetos de esta parcela que estén compartidos con el grupo '[NAME]' al inventario de su propietario anterior? + ¿Estás seguros de que quieres devolver todos los objetos de esta parcela que estén compartidos con el grupo '[NAME]' al inventario de su propietario anterior? *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! @@ -216,19 +216,19 @@ Objetos: [N] <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsOwnedByUser"> - ¿Está seguro de que quiere devolver al inventario de '[NAME]' todos los objetos que sean de su propiedad en esta parcela? + ¿Estás seguro de que quieres devolver al inventario de '[NAME]' todos los objetos que sean de su propiedad en esta parcela? Objetos: [N] <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsOwnedBySelf"> - ¿Está seguro de que quiere devolver a su inventario todos los objetos de los que usted es propietario en esta parcela? + ¿Estás seguro de que quieres devolver a su inventario todos los objetos de los que eres propietario en esta parcela? Objetos: [N] <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsNotOwnedBySelf"> - ¿Está seguro de que quiere devolver todos los objetos de los que usted NO es propietario en esta parcela al inventario de sus propietarios? + ¿Estás seguro de que quieres devolver todos los objetos de los que NO eres propietario en esta parcela al inventario de sus propietarios? Los objetos transferibles que se hayan transferido al grupo se devolverán a sus propietarios previos. *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! @@ -237,7 +237,7 @@ Objetos: [N] <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsNotOwnedByUser"> - ¿Está seguro de que quiere devolver todos los objetos de esta parcela que NO sean propiedad de [NAME] al inventario de su propietario? + ¿Estás seguro de que quieres devolver todos los objetos de esta parcela que NO sean propiedad de [NAME] al inventario de su propietario? Los objetos transferibles que se hayan transferido al grupo se devolverán a sus propietarios previos. *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! @@ -246,11 +246,11 @@ Objetos: [N] <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnAllTopObjects"> - ¿Está seguro de que quiere devolver al inventario de su propietario todos los objetos de la lista? + ¿Estás seguro de que quieres devolver al inventario de su propietario todos los objetos de la lista? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="DisableAllTopObjects"> - ¿Está seguro de que quiere desactivar todos los objetos de esta región? + ¿Estás seguro de que quieres desactivar todos los objetos de esta región? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ReturnObjectsNotOwnedByGroup"> @@ -272,13 +272,13 @@ Para colocar los media en una sola cara, marca la opción Elegir la cara y pulsa </notification> <notification name="MustBeInParcel"> Para configurar el Punto de llegada de la parcela, -debe estar usted dentro de ella. +debes estar dentro de ella. </notification> <notification name="PromptRecipientEmail"> - Por favor, escriba una dirección de correo electrónica válida para el/los receptor/es. + Por favor, escribe una dirección de correo electrónica válida para el/los receptor/es. </notification> <notification name="PromptSelfEmail"> - Por favor, escriba su dirección de correo electrónico. + Por favor, escribe tu dirección de correo electrónico. </notification> <notification name="PromptMissingSubjMsg"> ¿Foto por correo electrónico con el asunto o el mensaje por defecto? @@ -297,27 +297,27 @@ debe estar usted dentro de ella. Hubo un problema al subir la captura de pantalla del informe por la siguiente razón: [REASON] </notification> <notification name="MustAgreeToLogIn"> - Debe estar de acuerdo con las Condiciones del Servicio para continuar el inicio de sesión en [SECOND_LIFE]. + Debes estar de acuerdo con las Condiciones del Servicio para continuar el inicio de sesión en [SECOND_LIFE]. </notification> <notification name="CouldNotPutOnOutfit"> - No se ha podido ponerle el vestuario. + No se ha podido poner el vestuario. La carpeta del vestuario contiene partes del cuerpo, u objetos a anexar o que no son ropa. </notification> <notification name="CannotWearTrash"> - No puede vestirse ropas o partes del cuerpo que están en la Papelera + No puede vestirte ropas o partes del cuerpo que estén en la Papelera </notification> <notification name="MaxAttachmentsOnOutfit"> No se puede anexar el objeto. Se ha superado el lÃmite máximo de [MAX_ATTACHMENTS] objetos. Por favor, quÃtate alguno. </notification> <notification name="CannotWearInfoNotComplete"> - No puede vestirse este Ãtem porque aún no se ha cargado. Por favor, reinténtelo en un minuto. + No puedes vestirte este Ãtem porque aún no se ha cargado. Por favor, inténtalo de nuevo en un minuto. </notification> <notification name="MustHaveAccountToLogIn"> ¡Vaya! Algo se quedó en blanco. -Debe escribir tanto el nombre como el apellido de su avatar, los dos. +Debes escribir tanto el nombre como el apellido de tu avatar, los dos. -Necesita una cuenta para entrar en [SECOND_LIFE]. ¿Quiere crear una ahora? +Necesitas una cuenta para entrar en [SECOND_LIFE]. ¿Quieres crear una ahora? <url name="url"> https://join.secondlife.com/index.php?lang=es-ES </url> @@ -360,10 +360,10 @@ No se reembolsan las cuotas pagadas. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="SelectProposalToView"> - Por favor, seleccione qué propuesta quiere ver. + Por favor, selecciona qué propuesta quieres ver. </notification> <notification name="SelectHistoryItemToView"> - Por favor, seleccione un Ãtem del historial para verlo. + Por favor, selecciona un Ãtem del historial para verlo. </notification> <notification name="CacheWillClear"> La caché se limpiará cuando reinices [APP_NAME]. @@ -376,7 +376,7 @@ Nota: esto vaciará la caché. La configuración del puerto tendrá efecto cuando reinicies [APP_NAME]. </notification> <notification name="ChangeSkin"> - La nueva apariencia la verás cuando reinicies [APP_NAME]. + Verás la nueva apariencia cuando reinicies [APP_NAME]. </notification> <notification name="GoToAuctionPage"> ¿Ir a la página web de [SECOND_LIFE] para ver los detalles de la subasta @@ -390,40 +390,40 @@ o hacer una puja? <notification name="GestureSaveFailedTooManySteps"> Fallo al guardar el gesto. Este gesto tiene demasiados pasos. -Intente quitarle algunos, y vuelva a guardarlo. +Intenta quitarle algunos, y vuelve a guardarlo. </notification> <notification name="GestureSaveFailedTryAgain"> - Fallo al guardar el gesto. Por favor, reinténtelo en un minuto. + Fallo al guardar el gesto. Por favor, vuelve a intentarlo en un minuto. </notification> <notification name="GestureSaveFailedObjectNotFound"> No se ha podido guardar el gesto porque no se pudo encontrar el objeto o el objeto asociado. El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). </notification> <notification name="GestureSaveFailedReason"> - Al guardar un gesto, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. + Al guardar un gesto, hubo un problema por: [REASON]. Por favor, vuelve a intentar guardarlo más tarde. </notification> <notification name="SaveNotecardFailObjectNotFound"> No se ha podido guardar la nota porque no se pudo encontrar el objeto o el objeto asociado del inventario. El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). </notification> <notification name="SaveNotecardFailReason"> - Al guardar una nota, hubo un problema por: [REASON]. Por favor, reintente guardarla más tarde. + Al guardar una nota, hubo un problema por: [REASON]. Por favor, vuelve a intentar guardarla más tarde. </notification> <notification name="ScriptCannotUndo"> - No se han podido deshacer todos los cambios en su versión del script. -¿Quiere cargar la última versión guardada en el servidor? -(**Cuidado** No podrá deshacer esta operación). + No se han podido deshacer todos los cambios en tu versión del script. +¿Quieres cargar la última versión guardada en el servidor? +(**Cuidado** No podrás deshacer esta operación). <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="SaveScriptFailReason"> - Al guardar un script, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. + Al guardar un script, hubo un problema por: [REASON]. Por favor, vuelve a intentar guardarlo más tarde. </notification> <notification name="SaveScriptFailObjectNotFound"> No se ha podido guardar el script porque no se pudo encontrar el objeto que incluye. El objeto debe de haber sido borrado o estar fuera de rango ('out of range').. </notification> <notification name="SaveBytecodeFailReason"> - Al guardar un script compilado, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde.. + Al guardar un script compilado, hubo un problema por: [REASON]. Por favor, vuelve a intentar guardarlo más tarde.. </notification> <notification name="StartRegionEmpty"> Perdon, no está definida tu Posición inicial. @@ -443,7 +443,6 @@ El objeto debe de haber sido borrado o estar fuera de rango ('out of range& <notification name="UnsupportedHardware"> Debes saber que tu ordenador no cumple los requisitos mÃnimos para la utilización de [APP_NAME]. Puede que experimentes un rendimiento muy bajo. Desafortunadamente, [SUPPORT_SITE] no puede dar asistencia técnica a sistemas con una configuración no admitida. -MINSPECS ¿Ir a [_URL] para más información? <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=es @@ -468,9 +467,9 @@ La calidad gráfica puede ajustarse en Preferencias > Gráficos. En la región [REGION] no se permite modificar el terreno. </notification> <notification name="CannotCopyWarning"> - No tiene permiso para copiar este Ãtem. -Si lo da, lo perderá de su inventario. -¿Realmente quiere darlo? + No tienes permiso para copiar este Ãtem. +Si lo das, lo perderás de tu inventario. +¿Realmente quieres darlo? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="CannotGiveItem"> @@ -480,19 +479,19 @@ Si lo da, lo perderá de su inventario. Transacción cancelada. </notification> <notification name="TooManyItems"> - En una única transferencia del inventario, no puede dar más de 42 Ãtems. + No puedes dar más de 42 Ãtems en una única transferencia del inventario. </notification> <notification name="NoItems"> - No tiene permiso para transferir el Ãtem seleccionado. + No tienes permiso para transferir el Ãtem seleccionado. </notification> <notification name="CannotCopyCountItems"> - No tiene permiso para copiar [COUNT] de los -Ãtems seleccionados. Si los da, los perderá de su inventario. -¿Realmente quiere darlos? + No tienes permiso para copiar [COUNT] de los +Ãtems seleccionados. Si los das, los perderás de tu inventario. +¿Realmente quieres darlos? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="CannotGiveCategory"> - No tiene permiso para transferir + No tienes permiso para transferir la carpeta seleccionada. </notification> <notification name="FreezeAvatar"> @@ -506,15 +505,15 @@ Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mund <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Descongelarle" yestext="Congelarle"/> </notification> <notification name="EjectAvatarFullname"> - ¿Expulsar a [AVATAR_NAME] de su terreno? + ¿Expulsar a [AVATAR_NAME] de tu terreno? <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Expulsar y Prohibir el acceso" yestext="Expulsar"/> </notification> <notification name="EjectAvatarNoBan"> - ¿Expulsar a este avatar de su terreno? + ¿Expulsar a este avatar de tu terreno? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/> </notification> <notification name="EjectAvatarFullnameNoBan"> - ¿Expulsar a [AVATAR_NAME] de su terreno? + ¿Expulsar a [AVATAR_NAME] de tu terreno? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/> </notification> <notification name="EjectAvatarFromGroup"> @@ -525,7 +524,7 @@ Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mund </notification> <notification name="AcquireErrorObjectSpan"> ERROR 'ACQUIRE': Los objetos están en más de una región. -Por favor, mueva todos los objetos a adquirir a la +Por favor, mueve todos los objetos a adquirir a la misma región. </notification> <notification name="PromptGoToCurrencyPage"> @@ -539,27 +538,27 @@ misma región. </notification> <notification name="UnableToLinkObjects"> No se pudo enlazar estos [COUNT] objetos. -Puede enlazar [MAX] objetos como máximo. +Puedes enlazar [MAX] objetos como máximo. </notification> <notification name="CannotLinkIncompleteSet"> - Sólo puede enlazar objetos completos (no sus partes), y debe + Sólo puedes enlazar objetos completos (no sus partes), y debes seleccionar más de uno. </notification> <notification name="CannotLinkModify"> - Imposible enlazarlos, porque no tiene permiso para modificar + Imposible enlazarlos, porque no tienes permiso para modificar todos los objetos. -Por favor, asegúrese de que no hay ninguno bloqueado, y de que es el propietario de todos. +Por favor, asegúrate de que no hay ninguno bloqueado, y de que eres el propietario de todos. </notification> <notification name="CannotLinkDifferentOwners"> Imposible enlazarlos, porque hay objetos de distintos propietarios. -Por favor, asegúrese de que es propietario de todos los objetos seleccionados. +Por favor, asegúrate de que eres el propietario de todos los objetos seleccionados. </notification> <notification name="NoFileExtension"> No hay extensión de archivo en: '[FILE]' -Por favor, asegúrese de que la extensión del archivo es correcta. +Por favor, asegúrate de que la extensión del archivo es correcta. </notification> <notification name="InvalidFileExtension"> Extensión inválida de archivo: [EXTENSION] @@ -567,7 +566,7 @@ PodrÃa ser [VALIDS] <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotUploadSoundFile"> - Ni se pudo abrir el archivo de sonido que se ha subido para leer: + No se pudo abrir el archivo de sonido que has subido para leer: [FILE] </notification> <notification name="SoundFileNotRIFF"> @@ -626,7 +625,7 @@ PodrÃa ser [VALIDS] </notification> <notification name="CannotUploadReason"> No se ha podido subir [FILE] por la siguiente razón: [REASON] -Por favor, inténtelo más tarde. +Por favor, inténtalo más tarde. </notification> <notification name="LandmarkCreated"> Se ha añadido "[LANDMARK_NAME]" a tu carpeta [FOLDER_NAME]. @@ -636,7 +635,7 @@ Por favor, inténtelo más tarde. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotCreateLandmarkNotOwner"> - No puede crear un hito aquà porque el propietario del terreno no lo permite. + No puedes crear un hito aquà porque el propietario del terreno no lo permite. </notification> <notification name="CannotRecompileSelectObjectsNoScripts"> No se pudo 'recompilar'. @@ -668,19 +667,19 @@ Seleccione objetos con scripts. <notification name="CannotSetRunningNotSelectObjectsNoScripts"> No se puede configurar ningún script como 'no ejecutándose'. -Seleccione objetos con scripts. +Selecciona objetos con scripts. </notification> <notification name="NoFrontmostFloater"> - No hay nada a guardar. + No hay nada que guardar. </notification> <notification name="SeachFilteredOnShortWords"> - Se ha modificado su búsqueda, + Se ha modificado tu búsqueda, eliminando las palabras demasiado cortas. Buscando: [FINALQUERY] </notification> <notification name="SeachFilteredOnShortWordsEmpty"> - Los términos de su búsqueda son muy cortos, + Los términos de tu búsqueda son muy cortos, por lo que no se ha hecho la búsqueda. </notification> <notification name="CouldNotTeleportReason"> @@ -696,32 +695,32 @@ Si sigues recibiendo este mensaje, por favor, acude al [SUPPORT_SITE]. Si sigues recibiendo este mensaje, por favor, acude al [SUPPORT_SITE]. </notification> <notification name="blocked_tport"> - Lo sentimos, en estos momentos los teleportes están bloqueados. Vuelva a intentarlo en un momento. Si sigue sin poder teleportarse, desconéctese y vuelva a iniciar sesión para solucionar el problema. + Lo sentimos, en estos momentos los teleportes están bloqueados. Vuelve a intentarlo en un momento. Si sigues sin poder teleportarte, desconéctate y vuelve a iniciar sesión para solucionar el problema. </notification> <notification name="nolandmark_tport"> Lo sentimos, pero el sistema no ha podido localizar el destino de este hito. </notification> <notification name="timeout_tport"> Lo sentimos, pero el sistema no ha podido completar el teleporte. -Vuelva a intentarlo en un momento. +Vuelve a intentarlo en un momento. </notification> <notification name="noaccess_tport"> - Lo sentimos, pero usted no tiene acceso al destino de este teleporte. + Lo sentimos, pero no tienes acceso al destino de este teleporte. </notification> <notification name="missing_attach_tport"> - Aún no han llegado sus objetos anexados. Espere unos segundos más o desconéctese y vuelva a iniciar sesión antes de teleportarse. + Aún no han llegado tus objetos anexados. Espera unos segundos más o desconéctate y vuelve a iniciar sesión antes de teleportarte. </notification> <notification name="too_many_uploads_tport"> - La cola de espera en esta región está actualmente obstruida, por lo que su petición de teleporte no se atenderá en un tiempo prudencial. Por favor, vuelva a intentarlo en unos minutos o vaya a una zona menos ocupada. + La cola de espera en esta región está actualmente obstruida, por lo que tu petición de teleporte no se atenderá en un tiempo prudencial. Por favor, vuelve a intentarlo en unos minutos o ve a una zona menos ocupada. </notification> <notification name="expired_tport"> - Lo sentimos, pero el sistema no ha podido atender a su petición de teleporte en un tiempo prudencial. Por favor, vuelva a intentarlo en unos pocos minutos. + Lo sentimos, pero el sistema no ha podido atender a tu petición de teleporte en un tiempo prudencial. Por favor, vuelve a intentarlo en unos pocos minutos. </notification> <notification name="expired_region_handoff"> - Lo sentimos, pero el sistema no ha podido completar su paso a otra región en un tiempo prudencial. Por favor, vuelva a intentarlo en unos pocos minutos. + Lo sentimos, pero el sistema no ha podido completar tu paso a otra región en un tiempo prudencial. Por favor, vuelve a intentarlo en unos pocos minutos. </notification> <notification name="no_host"> - Ha sido imposible encontrar el destino del teleporte: o está desactivado temporalmente o ya no existe. Por favor, vuelva a intentarlo en unos pocos minutos. + Ha sido imposible encontrar el destino del teleporte: o está desactivado temporalmente o ya no existe. Por favor, vuelve a intentarlo en unos pocos minutos. </notification> <notification name="no_inventory_host"> En estos momentos no está disponible el sistema del inventario. @@ -731,7 +730,7 @@ Vuelva a intentarlo en un momento. no se ha seleccionado una parcela. </notification> <notification name="CannotSetLandOwnerMultipleRegions"> - No se ha podido obtener la propiedad del terreno porque la selección se extiende por varias regiones. Por favor, seleccione un área más pequeña y reinténtelo. + No se ha podido obtener la propiedad del terreno porque la selección se extiende por varias regiones. Por favor, selecciona un área más pequeña y vuelve a intentarlo. </notification> <notification name="ForceOwnerAuctionWarning"> Esta parcela está subastándose. Forzar su propiedad cancelará la subasta y, potencialmente, puede disgustar a algunos residentes si la puja ya ha empezado. @@ -779,15 +778,15 @@ Ha sido imposible encontrar en qué región está. </notification> <notification name="CannotDeedLandMultipleSelected"> No se ha podido transferir el terreno: -ha seleccionado varias parcelas. +has seleccionado varias parcelas. -Inténtelo seleccionando sólo una. +Inténtalo seleccionando sólo una. </notification> <notification name="CannotDeedLandWaitingForServer"> No se ha podido transferir el terreno: esperando que el servidor informe acerca de la propiedad. -Por favor, vuelva a intentarlo. +Por favor, vuelve a intentarlo. </notification> <notification name="CannotDeedLandNoTransfer"> No se ha podido transferir el terreno: @@ -797,18 +796,18 @@ En la región [REGION] no se permite transferir terrenos. No se ha podido abandonar el terreno: esperando que el servidor actualice la información de la parcela. -Vuelva a intentarlo en unos segundos. +Vuelve a intentarlo en unos segundos. </notification> <notification name="CannotReleaseLandSelected"> No se ha podido abandonar el terreno: no es propietario de todas las parcelas seleccionadas. -Por favor, seleccione una sola parcela. +Por favor, selecciona una sola parcela. </notification> <notification name="CannotReleaseLandDontOwn"> No se ha podido abandonar el terreno: -no tiene permisos sobre esta parcela. -Las parcelas de su propiedad se muestran en verde. +no tienes permisos sobre esta parcela. +Las parcelas de tu propiedad se muestran en verde. </notification> <notification name="CannotReleaseLandRegionNotFound"> No se ha podido abandonar el terreno: @@ -820,13 +819,13 @@ En la región [REGION] no se permite transferir terrenos. </notification> <notification name="CannotReleaseLandPartialSelection"> No se ha podido abandonar el terreno: -debe seleccionar toda la parcela. +debes seleccionar toda la parcela. -Seleccione una parcela completa, o divÃdala primero. +Selecciona una parcela completa, o divÃdela primero. </notification> <notification name="ReleaseLandWarning"> - Va a abandonar [AREA] m² de terreno. -Al hacerlo, la quitará de entre sus posesiones de terreno, pero no recibirá ningún L$. + Vas a abandonar [AREA] m² de terreno. +Al hacerlo, la quitarás de entre tus posesiones de terreno, pero no recibirás ningún L$. ¿Abandonar este terreno? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> @@ -834,13 +833,13 @@ Al hacerlo, la quitará de entre sus posesiones de terreno, pero no recibirá ni <notification name="CannotDivideLandNothingSelected"> No se ha podido dividir el terreno: -No ha seleccionado ninguna parcela. +No has seleccionado ninguna parcela. </notification> <notification name="CannotDivideLandPartialSelection"> No se ha podido dividir el terreno: -Ha seleccionado una parcela entera. -Inténtelo seleccionando una parte. +Has seleccionado una parcela entera. +Inténtalo seleccionando una parte. </notification> <notification name="LandDivideWarning"> Dividir este terreno lo separará en dos parcelas, cada una de las cuales tendrá su propia configuración. Tras esta operación, algunas configuraciones volverán a las existentes por defecto. @@ -862,29 +861,29 @@ No hay parcelas seleccionadas. </notification> <notification name="CannotJoinLandEntireParcelSelected"> No se ha podido unir el terreno: -Sólo ha seleccionado una parcela. +Sólo has seleccionado una parcela. -Seleccione terreno que incluya algo de ambas parcelas. +Selecciona terreno que incluya algo de ambas parcelas. </notification> <notification name="CannotJoinLandSelection"> No se ha podido unir el terreno: -Debe seleccionar más de una parcela. +Debes seleccionar más de una parcela. -Seleccione terreno que incluya algo de ambas parcelas. +Selecciona terreno que incluya algo de ambas parcelas. </notification> <notification name="JoinLandWarning"> - Al unir este terreno creará una parcela más grande formada por todas aquellas que tengan parte en el rectángulo seleccionado. -Deberá reconfigurar el nombre y las opciones de la nueva parcela. + Al unir este terreno crearás una parcela más grande formada por todas aquellas que tengan parte en el rectángulo seleccionado. +Deberás reconfigurar el nombre y las opciones de la nueva parcela. ¿Unir el terreno? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmNotecardSave"> - Esta nota debe guardarse antes de que se la pueda copiar o ver. ¿Guardar la nota? + Esta nota debe guardarse antes de que puedas copiarla o verla. ¿Guardar la nota? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmItemCopy"> - ¿Copiar este Ãtem a su inventario? + ¿Copiar este Ãtem a tu inventario? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Copiar"/> </notification> <notification name="ResolutionSwitchFail"> @@ -897,31 +896,31 @@ Deberá reconfigurar el nombre y las opciones de la nueva parcela. Error, árboles no definidos: [SPECIES] </notification> <notification name="CannotSaveWearableOutOfSpace"> - No se ha podido guardar el archivo '[NAME]'. Tendrá que liberar algo de espacio en su ordenador y guardarlo de nuevo. + No se ha podido guardar el archivo '[NAME]'. Tendrás que liberar algo de espacio en tu ordenador y guardarlo de nuevo. </notification> <notification name="CannotSaveToAssetStore"> No se ha podido guardar [NAME] en la base central de almacenamiento. Generalmente, esto es un fallo pasajero. Por favor, personaliza y guarda el Ãtem de aquà a unos minutos. </notification> <notification name="YouHaveBeenLoggedOut"> - Vaya, se te ha cerrado la sesión en [SECOND_LIFE] + Vaya, se ha cerrado tu sesión en [SECOND_LIFE] [MESSAGE] <usetemplate name="okcancelbuttons" notext="Salir" yestext="Ver MI y Chat"/> </notification> <notification name="OnlyOfficerCanBuyLand"> No se ha podido comprar terreno para el grupo: -usted no tiene el permiso de comprar terreno para el grupo que tiene activado actualmente. +no tienes el permiso de comprar terreno para el grupo que tienes activado actualmente. </notification> <notification label="Añadir como amigo" name="AddFriend"> Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. -¿Ofrecer a [NAME] que sea su amigo? +¿Ofrecer a [NAME] que sea tu amigo? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification label="Añadir como amigo" name="AddFriendWithMessage"> Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. -¿Ofrecer a [NAME] que sea su amigo? +¿Ofrecer a [NAME] que sea tu amigo? <form name="form"> <input name="message"> ¿Quieres formar parte de mis amigos? @@ -931,112 +930,112 @@ usted no tiene el permiso de comprar terreno para el grupo que tiene activado ac </form> </notification> <notification name="RemoveFromFriends"> - ¿Quiere quitar a [FIRST_NAME] [LAST_NAME] de su lista de amigos? + ¿Quieres quitar a [FIRST_NAME] [LAST_NAME] de tu lista de amigos? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="RemoveMultipleFromFriends"> - ¿Quiere quitar a varios amigos de su lista de amigos? + ¿Quieres quitar a varios amigos de tu lista de amigos? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="GodDeleteAllScriptedPublicObjectsByUser"> - ¿Está seguro de que quiere borrar todos los objetos con script que sean propiedad de + ¿Estás seguro de que quieres borrar todos los objetos con script que sean propiedad de ** [AVATAR_NAME] ** en todos los otros terrenos de este sim? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="GodDeleteAllScriptedObjectsByUser"> - ¿Está seguro de que quiere BORRAR TODOS los objetos con script que sean propiedad de + ¿Estás seguro de que quieres BORRAR TODOS los objetos con script que sean propiedad de ** [AVATAR_NAME] ** en TODO EL TERRENO de este sim? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="GodDeleteAllObjectsByUser"> - ¿Está seguro de que quiere BORRAR TODOS los objetos (con script o no) que sean propiedad de + ¿Estás seguro de que quieres BORRAR TODOS los objetos (con script o no) que sean propiedad de ** [AVATAR_NAME] ** en TODO EL TERRENO de este sim? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="BlankClassifiedName"> - Debe especificar un nombre para su clasificado. + Debes especificar un nombre para tu clasificado. </notification> <notification name="MinClassifiedPrice"> El pago para aparecer en la lista debe ser de, al menos, [MIN_PRICE] L$. -Por favor, elija un pago mayor. +Por favor, elige un pago mayor. </notification> <notification name="ConfirmObjectDeleteLock"> - Al menos uno de los Ãtems que ha seleccionado está bloqueado. + Al menos uno de los Ãtems que has seleccionado está bloqueado. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteNoCopy"> - Al menos uno de los Ãtems que ha seleccionado no es copiable. + Al menos uno de los Ãtems que has seleccionado no es copiable. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteNoOwn"> - No es el propietario de, al menos, uno de los Ãtems que ha seleccionado. + No eres el propietario de, al menos, uno de los Ãtems que has seleccionado. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteLockNoCopy"> Al menos un objeto está bloqueado. Al menos un objeto no es copiable. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteLockNoOwn"> Al menos un objeto está bloqueado. -No es propietario de, al menos, un objeto. +No eres propietario de, al menos, un objeto. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteNoCopyNoOwn"> Al menos un objeto no es copiable. -No es propietario de, al menos, un objeto. +No eres propietario de, al menos, un objeto. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> Al menos un objeto está bloqueado. Al menos un objeto no es copiable. -No es propietario de, al menos, un objeto. +No eres propietario de, al menos, un objeto. -¿Está seguro de que quiere borrar estos Ãtems? +¿Estás seguro de que quieres borrar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectTakeLock"> Al menos un objeto está bloqueado. -¿Está seguro de que quiere tomar estos Ãtems? +¿Estás seguro de que quieres tomar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectTakeNoOwn"> - No es el propietario de todos los objetos que está tomando. -Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias. + No eres el propietario de todos los objetos que estás tomando. +Si sigues, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja tu posibilidad de hacer modificaciones o copias. -¿Está seguro de que quiere tomar estos Ãtems? +¿Estás seguro de que quieres tomar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmObjectTakeLockNoOwn"> Al menos un objeto está bloqueado. -No es el propietario de todos los objetos que está tomando. -Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias -Con todo, puede tomar lo actualmente seleccionado. +No eres el propietario de todos los objetos que estás tomando. +Si sigues, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja tu posibilidad de hacer modificaciones o copias. +Con todo, puedes tomar lo actualmente seleccionado. -¿Está seguro de que quiere tomar estos Ãtems? +¿Estás seguro de que quieres tomar estos Ãtems? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="CantBuyLandAcrossMultipleRegions"> No se ha podido hacer la compra porque el terreno seleccionado se extiende por varias regiones. -Por favor, seleccione un área más pequeña y reinténtelo. +Por favor, selecciona un área más pequeña y vuelve a intentarlo. </notification> <notification name="DeedLandToGroup"> Al transferir esta parcela, se requerirá al grupo que tenga y mantenga el crédito suficiente para uso de terreno. @@ -1057,10 +1056,10 @@ Si se vende una parcela transferida, el precio de venta se dividirá a partes ig <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="DisplaySetToSafe"> - Las configuraciones que se muestran se han fijado en los niveles guardados, pues usted especificó la opción de guardarlos. + Las configuraciones que se muestran se han fijado en los niveles guardados, pues especificaste la opción de guardarlos. </notification> <notification name="DisplaySetToRecommended"> - Las configuraciones que se muestran se han fijado en los niveles recomendados para la configuración de su sistema. + Las configuraciones que se muestran se han fijado en los niveles recomendados para la configuración de tu sistema. </notification> <notification name="ErrorMessage"> [ERROR_MESSAGE] @@ -1107,16 +1106,16 @@ Puedes revisar tu conexión a internet y volver a intentarlo en unos minutos, pu </form> </notification> <notification name="WelcomeChooseSex"> - Su personaje aparecerá en un momento. + Tu personaje aparecerá en un momento. -Para caminar, use las teclas del cursor. -En cualquier momento, puede pulsar la tecla F1 para conseguir ayuda o para aprender más acerca de [SECOND_LIFE]. -Por favor, elija el avatar masculino o femenino. -Puede cambiar más adelante su elección. +Para caminar, usa las teclas del cursor. +En cualquier momento, puedes pulsar la tecla F1 para conseguir ayuda o para aprender más acerca de [SECOND_LIFE]. +Por favor, elige el avatar masculino o femenino. +Puedes cambiar más adelante tu elección. <usetemplate name="okcancelbuttons" notext="Mujer" yestext="Varón"/> </notification> <notification name="NotEnoughCurrency"> - [NAME] cuesta [PRICE] L$. No tiene suficientes L$ para hacer eso. + [NAME] cuesta [PRICE] L$. No tienes suficientes L$ para hacer eso. </notification> <notification name="GrantedModifyRights"> [NAME] te ha dado permiso para modificar sus objetos. @@ -1125,25 +1124,25 @@ Puede cambiar más adelante su elección. Ha sido revocado tu privilegio de modificar los objetos de [NAME] </notification> <notification name="FlushMapVisibilityCaches"> - Esto limpiará las caches del mapa en esta región. + Esto limpiará las cachés del mapa en esta región. Esto sólo es realmente útil para cuestiones de depuración ('debugging'). -(A efectos prácticos, espere 5 minutos, y el mapa de cualquiera se actualizará después de que reinicie sesión). +(A efectos prácticos, espera 5 minutos, y el mapa de cualquiera se actualizará después de que reinicies sesión). <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="BuyOneObjectOnly"> - No se puede comprar más de un objeto a la vez. Por favor, seleccione sólo un objeto y vuelva a intentarlo. + No se puede comprar más de un objeto a la vez. Por favor, selecciona sólo un objeto y vuelve a intentarlo. </notification> <notification name="OnlyCopyContentsOfSingleItem"> No se puede copiar a la vez los contenidos de más de un objeto. -Por favor, selección sólo uno y reinténtelo. +Por favor, selecciona sólo uno y vuelve a intentarlo. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="KickUsersFromRegion"> - ¿Teleportar a su base a todos los residentes en esta región? + ¿Teleportar a tu base a todos los residentes en esta región? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="EstateObjectReturn"> - ¿Está seguro de que quiere devolver los objetos propiedad de + ¿Estás seguro de que quieres devolver los objetos propiedad de [USER_NAME] ? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> @@ -1151,50 +1150,50 @@ Por favor, selección sólo uno y reinténtelo. No se han podido configurar las texturas de la región: La textura del terreno [TEXTURE_NUM] tiene una profundidad de bites inválida: [TEXTURE_BIT_DEPTH]. -Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo 'Aplicar' . +Cambia la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulsa de nuevo 'Aplicar' . </notification> <notification name="InvalidTerrainSize"> No se han podido configurar las texturas de la región: La textura del terreno [TEXTURE_NUM] es demasiado grande: [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. -Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo 'Aplicar' . +Cambia la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulsa de nuevo 'Aplicar' . </notification> <notification name="RawUploadStarted"> - Ha empezado la subida. Dependiendo de la velocidad de su conexión, llevará unos dos minutos. + Ha empezado la subida. Dependiendo de la velocidad de tu conexión, llevará unos dos minutos. </notification> <notification name="ConfirmBakeTerrain"> - ¿Realmente quiere predeterminar el terreno actual, haciéndolo el centro de los limites para elevarlo y rebajarlo, y el terreno por defecto para la herramienta 'Revertir'? + ¿Realmente quieres predeterminar el terreno actual, haciéndolo el centro de los limites para elevarlo y rebajarlo, y el terreno por defecto para la herramienta 'Revertir'? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="MaxAllowedAgentOnRegion"> - Sólo puede tener [MAX_AGENTS] residentes autorizados. + Sólo puedes tener [MAX_AGENTS] residentes autorizados. </notification> <notification name="MaxBannedAgentsOnRegion"> - Sólo puede tener [MAX_BANNED] residentes no admitidos. + Sólo puedes tener [MAX_BANNED] residentes no admitidos. </notification> <notification name="MaxAgentOnRegionBatch"> Fallo al intentar añadir [NUM_ADDED] agentes: Se superan en [NUM_EXCESS] los [MAX_AGENTS] permitidos en [LIST_TYPE]. </notification> <notification name="MaxAllowedGroupsOnRegion"> - Sólo puede tener [MAX_GROUPS] grupos permitidos. + Sólo puedes tener [MAX_GROUPS] grupos permitidos. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Predeterminar"/> </notification> <notification name="MaxManagersOnRegion"> - Sólo puede tener [MAX_MANAGER] administradores del estado. + Sólo puedes tener [MAX_MANAGER] administradores del estado. </notification> <notification name="OwnerCanNotBeDenied"> No se puede añadir a la lista de residentes no admitidos al propietario del estado. </notification> <notification name="CanNotChangeAppearanceUntilLoaded"> - No puede cambiar la apariencia hasta que no se carguen la ropa y la forma. + No puedes cambiar la apariencia hasta que no se carguen la ropa y la forma. </notification> <notification name="ClassifiedMustBeAlphanumeric"> - El nombre de su anuncio clasificado debe empezar o con un número o con una letra de la A a la Z. No se permiten signos de puntuación. + El nombre de tu anuncio clasificado debe empezar o con un número o con una letra de la A a la Z. No se permiten signos de puntuación. </notification> <notification name="CantSetBuyObject"> No puede configurar el Comprar el objeto, porque éste no está en venta. -Por favor, ponga en venta el objeto y reinténtelo. +Por favor, pon en venta el objeto y vuelve a intentarlo. </notification> <notification name="FinishedRawDownload"> Acabada la descarga del archivo raw de terreno en: @@ -1274,15 +1273,15 @@ Esta actualización no es obligatoria, pero te sugerimos instalarla para mejorar <usetemplate ignoretext="Abrir mi navegador para administrar mi cuenta" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="WebLaunchSecurityIssues"> - Visite el wiki de [SECOND_LIFE] para más detalles sobre cómo informar de una cuestión de seguridad. + Visita el wiki de [SECOND_LIFE] para más detalles sobre cómo informar de una cuestión de seguridad. <usetemplate ignoretext="Abrir mi navegador para informar de un fallo de seguridad" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="WebLaunchQAWiki"> - Visite el wiki QA de [SECOND_LIFE]. + Visita el wiki QA de [SECOND_LIFE]. <usetemplate ignoretext="Abrir mi navegador para el ver el wiki de 'QA' (Control de Calidad)" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="WebLaunchPublicIssue"> - Visite el Public Issue Tracker (sistema público de seguimiento de incidencias) de [SECOND_LIFE], donde podrá informar de errores y otros asuntos. + Visita el Public Issue Tracker (sistema público de seguimiento de incidencias) de [SECOND_LIFE], donde podrás informar de errores y otros asuntos. <usetemplate ignoretext="Abrir mi navegador para usar el 'Public Issue Tracker'" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> </notification> <notification name="WebLaunchSupportWiki"> @@ -1298,26 +1297,26 @@ Esta actualización no es obligatoria, pero te sugerimos instalarla para mejorar <usetemplate ignoretext="Abrir mi navegador para ver el portal de LSL" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> </notification> <notification name="ReturnToOwner"> - ¿Está seguro de que quiere devolver los objetos seleccionados a sus propietarios? Los objetos transferibles que se hayan cedido volverán a sus propietarios anteriores. + ¿Estás seguro de que quieres devolver los objetos seleccionados a sus propietarios? Los objetos transferibles que se hayan cedido volverán a sus propietarios anteriores. *ATENCIÓN* ¡Serán borrados los objetos no transferibles que estén cedidos! <usetemplate ignoretext="Confirmar antes de devolver objetos a sus propietarios." name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="GroupLeaveConfirmMember"> - Actualmente, usted es miembro del grupo [GROUP]. + Actualmente, eres miembro del grupo [GROUP]. ¿Dejar el grupo? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmKick"> - ¿DE VERDAD quiere expulsar a todos los usuarios de este grid? - <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar a todos los usuarios"/> + ¿Quieres realmente expulsar a todos los residentes de la cuadrÃcula? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar a todos los Residentes"/> </notification> <notification name="MuteLinden"> Lo sentimos, pero no puedes ignorar a un Linden. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotStartAuctionAlreadyForSale"> - No puede empezar una subasta en una parcela que ya está en venta. Desactive la venta de terreno si está seguro de querer iniciar una subasta. + No puedes empezar una subasta en una parcela que ya está en venta. Desactiva la venta de terreno si estás seguro de querer iniciar una subasta. </notification> <notification label="Falló ignorar el objeto según su nombre." name="MuteByNameFailed"> Ya has ignorado este nombre. @@ -1325,15 +1324,15 @@ Esta actualización no es obligatoria, pero te sugerimos instalarla para mejorar </notification> <notification name="RemoveItemWarn"> Aunque esté permitido, borrar contenidos puede dañar el objeto. -¿Quiere borrar ese Ãtem? +¿Quieres borrar ese Ãtem? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="CantOfferCallingCard"> - En este momento, no se puede ofrecer una tarjeta de visita. Por favor, reinténtelo en un momento. + En este momento, no se puede ofrecer una tarjeta de visita. Por favor, vuelve a intentarlo en un momento. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CantOfferFriendship"> - En este momento, no se puede ofrecer el ser amigo. Por favor, reinténtelo en un momento. + En este momento, no se puede ofrecer el ser amigo. Por favor, vuelve a intentarlo en un momento. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="BusyModeSet"> @@ -1351,10 +1350,10 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="KickUser"> - ¿Con qué mensaje se expulsará a este usuario? + ¿Con qué mensaje quieres expulsar a este Residente? <form name="form"> <input name="message"> - Un administrador le ha desconectado. + Un administrador te ha desconectado. </input> <button name="OK" text="OK"/> <button name="Cancel" text="Cancelar"/> @@ -1364,34 +1363,34 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue ¿Con qué mensaje se expulsará a cualquiera que esté actualmente en el grid? <form name="form"> <input name="message"> - Un administrador le ha desconectado. + Un administrador te ha desconectado. </input> <button name="OK" text="OK"/> <button name="Cancel" text="Cancelar"/> </form> </notification> <notification name="FreezeUser"> - ¿Con qué mensaje se congelará a este usuario? + ¿Con qué mensaje quieres congelar a este residente? <form name="form"> <input name="message"> - Ha sido usted congelado. No puede moverse o escribir en el chat. Un administrador contactará con usted a través de un mensaje instantáneo (MI). + Has sido congelado. No puedes moverte o escribir en el chat. Un administrador se pondrá en contacto contigo a través de un mensaje instantáneo (MI). </input> <button name="OK" text="OK"/> <button name="Cancel" text="Cancelar"/> </form> </notification> <notification name="UnFreezeUser"> - ¿Con qué mensaje se descongelará a este usuario? + ¿Con qué mensaje quieres congelar a este residente? <form name="form"> <input name="message"> - Ya no está usted congelado. + Ya no estás congelado. </input> <button name="OK" text="OK"/> <button name="Cancel" text="Cancelar"/> </form> </notification> <notification name="OfferTeleport"> - ¿Ofrecer teleporte a su posición con este mensaje? + ¿Ofrecer teleporte a tu posición con este mensaje? <form name="form"> <input name="message"> Ven conmigo a [REGION] @@ -1401,7 +1400,7 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue </form> </notification> <notification name="OfferTeleportFromGod"> - ¿Convocar a este usuario a su posición? + ¿Obligar a este Residente a ir a tu localización? <form name="form"> <input name="message"> Ven conmigo a [REGION] @@ -1419,11 +1418,11 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue <usetemplate ignoretext="Confirmar el teleporte a una localización de los Destacados" name="okcancelignore" notext="Cancelar" yestext="Teleportar"/> </notification> <notification name="TeleportToClassified"> - ¿Teleportarse a [CLASSIFIED]? + ¿Teleportarte a [CLASSIFIED]? <usetemplate ignoretext="Confirmar el teleporte a una localización de los Clasificados" name="okcancelignore" notext="Cancelar" yestext="Teleportar"/> </notification> <notification label="Mensaje a todo el estado" name="MessageEstate"> - Escriba un anuncio breve que se enviará a todo el que esté en su estado. + Escribe un anuncio breve que se enviará a todo el que esté en tu estado. <form name="form"> <input name="message"/> <button name="OK" text="OK"/> @@ -1431,15 +1430,15 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue </form> </notification> <notification label="Cambiar un estado Linden" name="ChangeLindenEstate"> - Va a hacer cambios en un estado propiedad de Linden (mainland, grid teen, orientación, etc.). + Estás a punto de cambiar un estado propiedad de Linden (continente, teen grid, orientación, etc.). -Esto es EXTREMADAMENTE PELIGROSO, porque puede afectar radicalmente al funcionamiento de los usuarios. En mainland, se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. +Esto es EXTREMADAMENTE PELIGROSO porque puede afectar en gran manera la experiencia de los Residentes. En el Continente, cambiará miles de regiones y y se provocará un colapso en el espacio del servidor. -¿Proceder? +¿Continuar? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification label="Cambiar el acceso a un estado Linden" name="ChangeLindenAccess"> - Va a cambiar la lista de acceso de un estado propiedad de Linden (mainland, grid teen, orientación, etc.). + Vas a cambiar la lista de acceso de un estado propiedad de Linden (mainland, grid teen, orientación, etc.). Esto es PELIGROSO, y sólo debe hacerse para deshacerse de ataques que permitan sacar o meter en el grid objetos o L$. Se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. @@ -1482,26 +1481,26 @@ Se cambiarán miles de regiones, y se provocará un colapso en el espacio del se <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="EstateChangeCovenant"> - ¿Está seguro de que quiere cambiar el contrato del estado? + ¿Estás seguro de que quieres cambiar el contrato del estado? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="RegionEntryAccessBlocked"> - Usted no está autorizado en esa región por su nivel de calificación. Puede deberse a que no hay información validada de su edad. + No estás autorizado en esa región por su nivel de calificación. Puede deberse a que no hay información validada de tu edad. -Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. +Por favor, comprueba que tienes instalado el último visor, y dirÃgete a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="RegionEntryAccessBlocked_KB"> - Usted no está autorizado en esa región por su nivel de calificación. + No estás autorizado en esa región por su nivel de calificación. -¿Quiere ir a la Base de Conocimientos para aprender más sobre el nivel de calificación? +¿Quieres ir a la Base de Conocimientos para aprender más sobre el nivel de calificación? <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/es </url> <usetemplate ignoretext="No puedo entrar a esta región dado el nivel de calificación" name="okcancelignore" notext="Cerrar" yestext="Ir a la Base de Conocimientos"/> </notification> <notification name="RegionEntryAccessBlocked_Notify"> - Usted no está autorizado en esa región por su nivel de calificación. + No estás autorizado en esa región por su nivel de calificación. </notification> <notification name="RegionEntryAccessBlocked_Change"> No estás autorizado en esta región por tus preferencias sobre el nivel de calificación. @@ -1514,22 +1513,22 @@ Puedes pulsar 'Cambiar las Preferencias' para incrementar las preferen </form> </notification> <notification name="LandClaimAccessBlocked"> - Usted no puede reclamar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de su edad. + No puedes reclamar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de tu edad. -Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. +Por favor, comprueba que tienes instalado el último visor, y dirÃgete a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LandClaimAccessBlocked_KB"> - No puede reclamar este terreno por sus nivel de calificación. + No puedes reclamar este terreno por su nivel de calificación. -¿Quiere ir a la Base de Conocimientos para más información sobre el nivel de calificación? +¿Quieres ir a la Base de Conocimientos para más información sobre el nivel de calificación? <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/es </url> <usetemplate ignoretext="No puedo reclamar este terreno dado el nivel de calificación" name="okcancelignore" notext="Cerrar" yestext="Ir a la Base de Conocimientos"/> </notification> <notification name="LandClaimAccessBlocked_Notify"> - Por su nivel de calificación, usted no puede reclamar este terreno. + No puedes reclamar este terreno debido a su nivel de calificación. </notification> <notification name="LandClaimAccessBlocked_Change"> No puedes reclamar este terreno por tus preferencias sobre el nivel de calificación. @@ -1538,22 +1537,22 @@ Puedes pulsar 'Cambiar las Preferencias' para incrementar las preferen <usetemplate ignoretext="Mis preferencias sobre el nivel de calificación me impiden reclamar este terreno" name="okcancelignore" notext="Cerrar" yestext="Cambiar preferencia"/> </notification> <notification name="LandBuyAccessBlocked"> - Usted no puede comprar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de su edad. + No puedes comprar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de tu edad. -Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. +Por favor, comprueba que tienes instalado el último visor, y dirÃgete a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LandBuyAccessBlocked_KB"> - No puede comprar este terreno por sus preferencias de nivel de calificación. + No puedes comprar este terreno por tus preferencias de nivel de calificación. -¿Quiere ir a la Base de Conocimientos para más información sobre el nivel de calificación? +¿Quieres ir a la Base de Conocimientos para más información sobre el nivel de calificación? <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/es </url> <usetemplate ignoretext="No puedo comprar este terreno dado el nivel de calificación" name="okcancelignore" notext="Cerrar" yestext="Ir a la Base de Conocimientos"/> </notification> <notification name="LandBuyAccessBlocked_Notify"> - No puede comprar este terreno por su nivel de calificación. + No puedes comprar este terreno por su nivel de calificación. </notification> <notification name="LandBuyAccessBlocked_Change"> No puedes comprar este terreno por tus preferencias sobre el nivel de calificación. @@ -1573,7 +1572,7 @@ Puedes pulsar 'Cambiar las Preferencias' para incrementar las preferen Hay problemas al añadir un administrador nuevo del estado. Uno o más estados deben de tener llena la lista de administradores. </notification> <notification name="ProblemAddingEstateGeneric"> - Hay problemas en este añadir a la lista del estado. Uno o más estados deben de tener llena la lista. + Hay problemas al añadir a la lista del estado. Uno o más estados deben de tener llena la lista. </notification> <notification name="UnableToLoadNotecardAsset"> En este momento, no se pueden cargar los datos de la's nota's. @@ -1588,25 +1587,25 @@ Puedes pulsar 'Cambiar las Preferencias' para incrementar las preferen <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="PublishClassified"> - Recuerde: las cuotas que se pagan por los clasificados no son reembolsables. + Recuerda: las cuotas que se pagan por los clasificados no son reembolsables. ¿Publicar ahora este anuncio por [AMOUNT] L$? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="SetClassifiedMature"> - ¿Este anuncio tiene contenido 'Mature'? + ¿Este anuncio tiene contenido 'Moderado'? <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="SetGroupMature"> - ¿Este grupo tiene contenido 'Mature'? + ¿Este grupo tiene contenido 'Moderado'? <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification label="Confirmar el reinicio" name="ConfirmRestart"> - ¿Verdaderamente quiere reiniciar la región de aquà a 2 minutos? + ¿Verdaderamente quieres reiniciar la región de aquà a 2 minutos? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification label="Mensaje a toda la región" name="MessageRegion"> - Escriba un anuncio breve que se enviará a todo el que esté en esta región. + Escribe un anuncio breve que se enviará a todo el que esté en esta región. <form name="form"> <input name="message"/> <button name="OK" text="OK"/> @@ -1624,20 +1623,20 @@ Para entrar a regiones Adultas, los Residentes deben haber verificado su cuenta, </notification> <notification label="No se pudo comprar los objetos" name="BuyObjectOneOwner"> No se pueden comprar a la vez objetos de propietarios diferentes. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. +Por favor, selecciona sólo un objeto y vuelve a intentarlo. </notification> <notification label="No se pudo comprar el contenido" name="BuyContentsOneOnly"> No se puede comprar a la vez los contenidos de más de un objeto. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. +Por favor, selecciona sólo un objeto y vuelve a intentarlo. </notification> <notification label="No se pudo comprar el contenido" name="BuyContentsOneOwner"> No se pueden comprar a la vez objetos de propietarios diferentes. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. +Por favor, selecciona sólo un objeto y vuelve a intentarlo. </notification> <notification name="BuyOriginal"> ¿Comprar el objeto original de [OWNER] por [PRICE] L$? -Usted pasará a ser el propietario de este objeto. -Podrá: +Pasarás a ser el propietario de este objeto. +Podrás: Modificarlo: [MODIFYPERM] Copiarlo: [COPYPERM] Revenderlo o darlo: [RESELLPERM] @@ -1645,8 +1644,8 @@ Podrá: </notification> <notification name="BuyOriginalNoOwner"> ¿Comprar el objeto original por [PRICE] L$? -Usted pasará a ser el propietario de este objeto. -Podrá: +Pasarás a ser el propietario de este objeto. +Podrás: Modificarlo: [MODIFYPERM] Copiarlo: [COPYPERM] Revenderlo o darlo: [RESELLPERM] @@ -1654,8 +1653,8 @@ Podrá: </notification> <notification name="BuyCopy"> ¿Comprar una copia de [OWNER] por [PRICE] L$? -El objeto se copiará a su inventario. -Podrá: +El objeto se copiará a tu inventario. +Podrás: Modificarlo: [MODIFYPERM] Copiarlo: [COPYPERM] Revenderlo o darlo: [RESELLPERM] @@ -1663,8 +1662,8 @@ Podrá: </notification> <notification name="BuyCopyNoOwner"> ¿Comprar una copia por [PRICE] L$? -El objeto se copiará a su inventario. -Podrá: +El objeto se copiará a tu inventario. +Podrás: Modificarlo: [MODIFYPERM] Copiarlo: [COPYPERM] Revenderlo o darlo: [RESELLPERM] @@ -1672,27 +1671,27 @@ Podrá: </notification> <notification name="BuyContents"> ¿Comprar los contenidos de [OWNER] por [PRICE] L$? -Serán copiados a su inventario. +Serán copiados a tu inventario. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="BuyContentsNoOwner"> ¿Comprar los contenidos por [PRICE] L$? -Serán copiados a su inventario. +Serán copiados a tu inventario. <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmPurchase"> - Esta transacción hará que: + Esta transacción consiste en: [ACTION] -¿Está seguro de querer hacer esta compra? +¿Estás seguro de querer hacer esta compra? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmPurchasePassword"> - Esta transacción hará que: + Esta transacción consiste en: [ACTION] -¿Está seguro de querer hacer esta compra? -Por favor, vuelva a escribir su contraseña y pulse OK. +¿Estás seguro de querer hacer esta compra? +Por favor, vuelva a escribir tu contraseña y pulsa OK. <form name="form"> <input name="message"/> <button name="ConfirmPurchase" text="OK"/> @@ -1701,18 +1700,18 @@ Por favor, vuelva a escribir su contraseña y pulse OK. </notification> <notification name="SetPickLocation"> Nota: -Ha actualizado la posición de este Destacado, pero los otros detalles permanecen con sus valores originales. +Has actualizado la posición de este Destacado, pero los otros detalles permanecen con sus valores originales. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="MoveInventoryFromObject"> - Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se quitarán de su inventario, no se copiarán. + Has elegido Ãtems 'no copiables' de tu inventario. Esos Ãtems se quitarán de tu inventario, no se copiarán. ¿Mover el/los Ãtem/s del inventario? <usetemplate ignoretext="Avisarme antes de que mueva Ãtems 'no copiables' desde un objeto" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="MoveInventoryFromScriptedObject"> - Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se moverán a su inventario, no se copiarán. -Dado que estos objetos tienen scripts, moverlos a su inventario puede provocar un mal funcionamiento del script. + Has elegido Ãtems 'no copiables' de tu inventario. Esos Ãtems se moverán a tu inventario, no se copiarán. +Dado que estos objetos tienen scripts, moverlos a tu inventario puede provocar un mal funcionamiento del script. ¿Mover el/los Ãtem/s del inventario? <usetemplate ignoretext="Avisarme antes de que mueva Ãtems 'no copiables' que puedan estropear un objeto con script" name="okcancelignore" notext="Cancelar" yestext="OK"/> @@ -1724,7 +1723,7 @@ Dado que estos objetos tienen scripts, moverlos a su inventario puede provocar u </form> </notification> <notification name="OpenObjectCannotCopy"> - En este objeto, no hay Ãtems que esté autorizado a copiar. + En este objeto, no hay Ãtems que estés autorizado a copiar. </notification> <notification name="WebLaunchAccountHistory"> ¿Ir a tu [http://secondlife.com/account/ Panel de Control] para ver el historial de tu cuenta? @@ -1735,29 +1734,29 @@ Dado que estos objetos tienen scripts, moverlos a su inventario puede provocar u <usetemplate ignoretext="Confirmar antes de salir" name="okcancelignore" notext="No salir" yestext="Salir"/> </notification> <notification name="HelpReportAbuseEmailLL"> - Usa esta herramienta para denunciar violaciones de las [http://secondlife.com/corporate/tos.php Condiciones de Servicio] o las [http://secondlife.com/corporate/cs.php Normas de la Comunidad]. + Usa esta herramienta para denunciar violaciones de las [http://secondlife.com/corporate/tos.php Condiciones del Servicio] o las [http://secondlife.com/corporate/cs.php Normas de la Comunidad]. Se investigan y resuelven todas las infracciones denunciadas. </notification> <notification name="HelpReportAbuseSelectCategory"> - Por favor, elija una categorÃa para esta denuncia de infracción. + Por favor, elige una categorÃa para esta denuncia de infracción. Seleccionar una categorÃa nos ayuda a clasificar y procesar las denuncias de infracciones. </notification> <notification name="HelpReportAbuseAbuserNameEmpty"> - Por favor, escriba el nombre del infractor. + Por favor, escribe el nombre del infractor. Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. </notification> <notification name="HelpReportAbuseAbuserLocationEmpty"> - Por favor, escriba la localización donde tuvo lugar la infracción. + Por favor, escribe la localización donde tuvo lugar la infracción. Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. </notification> <notification name="HelpReportAbuseSummaryEmpty"> - Por favor, escriba un resumen de la infracción que ha habido. + Por favor, escribe un resumen de la infracción que ha habido. Aportar un resumen preciso nos ayuda a clasificar y procesar las denuncias de infracciones. </notification> <notification name="HelpReportAbuseDetailsEmpty"> - Por favor, escriba una descripción minuciosa de la infracción que ha habido. -Sea tan especÃfico como pueda, incluyendo los nombres y los detalles implicados en el incidente que denuncia. + Por favor, escribe una descripción minuciosa de la infracción que ha habido. +Sé tan especÃfico como puedas, incluyendo los nombres y los detalles implicados en el incidente que denuncias. Aportar una descripción precisa nos ayuda a clasificar y procesar las denuncias de infracciones. </notification> <notification name="HelpReportAbuseContainsCopyright"> @@ -1780,7 +1779,7 @@ Linden Lab [COMPONENTS] </notification> <notification label="Reemplazar el anexado actual" name="ReplaceAttachment"> - En ese punto de su cuerpo ya hay un objeto anexado. ¿Quiere reemplazarlo por el objeto que ha elegido? + En ese punto de tu cuerpo ya hay un objeto anexado. ¿Quieres reemplazarlo por el objeto que has elegido? <form name="form"> <ignore name="ignore" save_option="true" text="Reemplazar un añadido actual con el Ãtem seleccionado"/> <button ignore="Reemplazar automaticamente" name="Yes" text="OK"/> @@ -1788,9 +1787,9 @@ Linden Lab </form> </notification> <notification label="¡Aviso! Modo Ocupado" name="BusyModePay"> - Usted está en el modo Ocupado. Por tanto, no recibirá ningún Ãtem a cambio de esta pago. + Estás en el modo Ocupado. Por tanto, no recibirás ningún Ãtem a cambio de este pago. -¿Quiere salir del modo Ocupado ante de completar esta transacción? +¿Quieres salir del modo Ocupado antes de completar esta transacción? <form name="form"> <ignore name="ignore" save_option="true" text="Voy a pagar a una persona u objeto mientras estoy en el modo ocupado"/> <button ignore="Siempre salir del modo Ocupado" name="Yes" text="OK"/> @@ -1810,11 +1809,11 @@ Linden Lab <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification name="ConfirmClearCookies"> - ¿Está seguro de que quiere limpiar sus cookies? + ¿Estás seguro de que quieres limpiar tus cookies? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> </notification> <notification name="ConfirmClearMediaUrlList"> - ¿Está seguro de que quiere vaciar su lista de URL guardadas? + ¿Estás seguro de que quieres vaciar tu lista de URL guardadas? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> </notification> <notification name="ConfirmEmptyLostAndFound"> @@ -1831,21 +1830,21 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p </form> </notification> <notification name="WLSavePresetAlert"> - ¿Quiere sobrescribir la preselección guardada? + ¿Quieres sobrescribir la preselección guardada? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="WLDeletePresetAlert"> - ¿Quiere borrar [SKY]? + ¿Quieres borrar [SKY]? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="WLNoEditDefault"> - No puede editar ni borrar una preselección por defecto. + No puedes editar ni borrar una preselección por defecto. </notification> <notification name="WLMissingSky"> Este archivo del ciclo de un dÃa se refiere a un archivo perdido de cielo: [SKY]. </notification> <notification name="PPSaveEffectAlert"> - Ya existe un efecto de procesamiento. ¿Desea sobreescribirlo? + Ya existe un efecto de procesamiento. ¿Quieres sobreescribirlo? <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> </notification> <notification name="NewSkyPreset"> @@ -1875,7 +1874,7 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p ¡Esa preselección ya existe! </notification> <notification name="WaterNoEditDefault"> - No puede editar o borrar una preselección por defecto. + No puedes editar o borrar una preselección por defecto. </notification> <notification name="ChatterBoxSessionStartError"> No se puede empezar una nueva sesión de chat con [RECIPIENT]. @@ -1888,7 +1887,7 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="ForceCloseChatterBoxSession"> - Debe cerrarse su sesión de chat con [NAME]. + Debe cerrarse tu sesión de chat con [NAME]. [REASON] <usetemplate name="okbutton" yestext="OK"/> </notification> @@ -1896,7 +1895,7 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p No puedes comprar un objeto mientras esté anexado. </notification> <notification label="Acerca de las solicitudes de autorización de débito" name="DebitPermissionDetails"> - Al admitir esta petición, le da permiso a un script para que coja dólares Linden (L$) de su cuenta. Para revocar este permiso, el propietario del objeto debe eliminarlo o reiniciar ese script del objeto. + Al admitir esta petición, le das permiso a un script para que coja dólares Linden (L$) de tu cuenta. Para revocar este permiso, el propietario del objeto debe eliminarlo o reiniciar ese script del objeto. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="AutoWearNewClothing"> @@ -1931,10 +1930,10 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p Cancelado </notification> <notification name="CancelledSit"> - Cancelado el sentarse + Cancelado el sentarte </notification> <notification name="CancelledAttach"> - Candelado el anexar + Cancelado el anexar </notification> <notification name="ReplacedMissingWearable"> Reemplazadas las ropas o partes del cuerpo perdidas con sus equivalentes por defecto. @@ -1956,7 +1955,7 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p (tardará unos 5 minutos). </notification> <notification name="UploadPayment"> - Ha pagado [AMOUNT] LS por la subida. + Has pagado [AMOUNT] LS por la subida. </notification> <notification name="UploadWebSnapshotDone"> Completada la subida de la foto del sitio web. @@ -1977,7 +1976,7 @@ PublÃcala en una página web para que otros puedan acceder fácilmente a esta p El hito ha desaparecido de la base de datos. </notification> <notification name="UnableToLoadLandmark"> - No se ha podido cargar el hito. Por favor, vuelva a intentarlo. + No se ha podido cargar el hito. Por favor, vuelve a intentarlo. </notification> <notification name="CapsKeyOn"> Tienes pulsada la tecla de mayúsculas. @@ -1990,7 +1989,7 @@ Esto puede influir en tu contraseña. No tienes permiso para ver esta nota. </notification> <notification name="RezItemNoPermissions"> - No tiene permisos suficientes para renderizar el objeto. + No tienes permisos suficientes para renderizar el objeto. </notification> <notification name="UnableToLoadNotecard"> En este momento no se puede cargar la nota. @@ -1999,30 +1998,30 @@ Esto puede influir en tu contraseña. El script ha desaparecido de la base de datos. </notification> <notification name="ScriptNoPermissions"> - No tiene permisos suficientes para ver el script. + No tienes permisos suficientes para ver el script. </notification> <notification name="UnableToLoadScript"> - No se ha podido cargar el script. Por favor, vuelva a intentarlo. + No se ha podido cargar el script. Por favor, vuelve a intentarlo. </notification> <notification name="IncompleteInventory"> - Los contenidos que está usted ofreciendo aún no están disponibles. Por favor, vuelva a ofrecerlos en un minuto. + Los contenidos que estás ofreciendo aún no están disponibles. Por favor, vuelve a ofrecerlos en un minuto. </notification> <notification name="CannotModifyProtectedCategories"> - No puede modificar categorÃas que están protegidas. + No puedes modificar categorÃas que están protegidas. </notification> <notification name="CannotRemoveProtectedCategories"> - No puede quitar categorÃas que están protegidas. + No puedes quitar categorÃas que están protegidas. </notification> <notification name="OfferedCard"> - Ha ofrecido una tarjeta de visita a [FIRST] [LAST] + Has ofrecido una tarjeta de visita a [FIRST] [LAST] </notification> <notification name="UnableToBuyWhileDownloading"> - No se puede comprar un objeto mientras se descargan sus datos. -Por favor, vuelva a intentarlo. + No se puede comprar un objeto mientras se descargan los datos. +Por favor, vuelve a intentarlo. </notification> <notification name="UnableToLinkWhileDownloading"> - No se puede enlazar un objeto mientras se descargan sus datos. -Por favor, vuelva a intentarlo. + No se puede enlazar un objeto mientras se descargan los datos. +Por favor, vuelve a intentarlo. </notification> <notification name="CannotBuyObjectsFromDifferentOwners"> No puedes comprar más de un objeto a la vez. @@ -2044,16 +2043,16 @@ Por favor, selecciona un sólo objeto. [NAME] ha recibido tu oferta de inventario. </notification> <notification name="InventoryDeclined"> - [NAME] ha rehusado su oferta del inventario. + [NAME] ha rehusado tu oferta del inventario. </notification> <notification name="ObjectMessage"> [NAME]: [MESSAGE] </notification> <notification name="CallingCardAccepted"> - Se ha aceptado su tarjeta de visita. + Se ha aceptado tu tarjeta de visita. </notification> <notification name="CallingCardDeclined"> - Se ha rehusado su tarjeta de visita. + Se ha rehusado tu tarjeta de visita. </notification> <notification name="TeleportToLandmark"> Puedes teleportarte a lugares como '[NAME]' abriendo el panel Lugares -a la derecha de tu pantalla- y seleccionando la sección Hitos. @@ -2066,14 +2065,14 @@ Elige al Residente de la lista y pulsa 'MI' en la parte inferior del p (También puedes pulsar dos veces en su nombre o pulsarlo con el botón derecho y elegir 'MI'). </notification> <notification name="CantSelectLandFromMultipleRegions"> - No puede seleccionar un terreno que cruce las fronteras entre servidores. -Inténtelo seleccionando un trozo más pequeño de terreno. + No puedes seleccionar un terreno que cruce las fronteras entre servidores. +Inténtalo seleccionando un trozo más pequeño de terreno. </notification> <notification name="SearchWordBanned"> - Se han excluido algunos términos de su búsqueda debido a restricciones en el contenido, según se especifica en las Normas de la Comunidad. + Se han excluido algunos términos de tu búsqueda debido a restricciones en el contenido, según se especifica en las Normas de la Comunidad. </notification> <notification name="NoContentToSearch"> - Por favor, elija al menos un tipo de contenido a buscar ('PG', 'Mature', o 'Adult'). + Por favor, elige al menos un tipo de contenido a buscar ('PG', 'Mature', o 'Adult'). </notification> <notification name="GroupVote"> [NAME] ha propuesto votar: @@ -2129,10 +2128,10 @@ Por favor, reinstala el plugin o contacta con el vendedor si sigues teniendo pro </form> </notification> <notification name="OwnedObjectsReturned"> - Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela seleccionada. + Se han devuelto a tu inventario los objetos de los que eras propietario en la parcela seleccionada. </notification> <notification name="OtherObjectsReturned"> - Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela propiedad de [FIRST] [LAST]. + Se han devuelto a tu inventario los objetos de los que eras propietario en la parcela propiedad de [FIRST] [LAST]. </notification> <notification name="OtherObjectsReturned2"> Se han devuelto a su propietario los objetos seleccionados en la parcela de terreno propiedad de '[NAME]'. @@ -2143,7 +2142,7 @@ Los objetos transferibles que se transfirieron al grupo se han devuelto a sus pr Los objetos no transferibles que se transfirieron al grupo han sido borrados. </notification> <notification name="UnOwnedObjectsReturned"> - Se han devuelto a sus propietarios los objetos de los que usted NO era propietario en la parcela seleccionada. + Se han devuelto a sus propietarios los objetos de los que NO eras propietario en la parcela seleccionada. </notification> <notification name="ServerObjectMessage"> Mensaje de [NAME]: @@ -2181,33 +2180,33 @@ Los scripts no funcionan aquÃ, excepto los pertenecientes al propietario del te Sólo puedes reclamar terreno público de la región en que estás. </notification> <notification name="RegionTPAccessBlocked"> - No está autorizado en esa región por su nivel de calificación. Debe validar su edad y/o instalar el último visor. + No estás autorizado en esa región por su nivel de calificación. Debes validar tu edad y/o instalar el último visor. -Por favor, vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. +Por favor, dirÃgete a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. </notification> <notification name="URBannedFromRegion"> - Se le ha prohibido el acceso a la región. + Se te ha prohibido el acceso a la región. </notification> <notification name="NoTeenGridAccess"> - Su cuenta no puede conectarse a esta región del grid teen. + Tu cuenta no puede conectarse a esta región del grid teen. </notification> <notification name="ImproperPaymentStatus"> - No tiene el estado de pago adecuado para entrar a esta región. + No tienes el estado de pago adecuado para entrar a esta región. </notification> <notification name="MustGetAgeParcel"> - Debe haber verificado su edad para entrar a esta parcela. + Debes haber verificado tu edad para entrar a esta parcela. </notification> <notification name="NoDestRegion"> No se ha encontrada la región de destino. </notification> <notification name="NotAllowedInDest"> - No está autorizado en el destino. + No estás autorizado en el destino. </notification> <notification name="RegionParcelBan"> - No puede cruzar la región por una parcela con el acceso prohibido. Intente otro camino. + No puedes cruzar la región por una parcela con el acceso prohibido. Intenta otro camino. </notification> <notification name="TelehubRedirect"> - Ha sido redirigido a un punto de teleporte. + Has sido redirigido a un punto de teleporte. </notification> <notification name="CouldntTPCloser"> No se puede teleportar a un destino tan cercano. @@ -2216,17 +2215,17 @@ Por favor, vaya a la Base de Conocimientos para más detalles sobre el acceso a Teleporte cancelado. </notification> <notification name="FullRegionTryAgain"> - En estos momentos, está llena la región a la que intenta entrar. -Por favor, reinténtelo en unos momentos. + En estos momentos, está llena la región a la que estás intentando entrar. +Por favor, vuelve a intentarlo en unos momentos. </notification> <notification name="GeneralFailure"> Fallo general. </notification> <notification name="RoutedWrongRegion"> - Mal dirigido a la región. Por favor, reinténtelo. + Mal dirigido a la región. Por favor, vuelve a intentarlo. </notification> <notification name="NoValidAgentID"> - ID de agente inválida. + ID de agente inválido. </notification> <notification name="NoValidSession"> ID de sesión inválido. @@ -2241,13 +2240,13 @@ Por favor, reinténtelo en unos momentos. No se puede crear la conexión. </notification> <notification name="InternalUsherError"> - Se ha producido un error interno al intentar acceder al destino de su teleporte. Puede que, en este momento, el servicio de [SECOND_LIFE] tenga problemas. + Se ha producido un error interno al intentar acceder al destino de tu teleporte. Puede que, en este momento, el servicio de [SECOND_LIFE] tenga problemas. </notification> <notification name="NoGoodTPDestination"> No se puede encontrar en esta región un buen destino para el teleporte. </notification> <notification name="InternalErrorRegionResolver"> - Ha sucedido un error interno al manejar las coordenadas globales de su petición de teleporte. Puede que, en este momento, el servicio de [SECOND_LIFE] tenga problemas. + Se ha producido un error interno al manejar las coordenadas globales de tu petición de teleporte. Puede que, en este momento, el servicio de [SECOND_LIFE] tenga problemas. </notification> <notification name="NoValidLanding"> No se ha podido encontrar un punto de aterrizaje válido. @@ -2316,11 +2315,11 @@ Por favor, reinténtelo en unos momentos. </form> </notification> <notification name="OfferFriendship"> - [NAME] le está ofreciendo amistad. + [NAME] te está ofreciendo amistad. [MESSAGE] -(Por defecto, usted podrá ver si están conectados los demás). +(Por defecto, podrás ver si están conectados los demás). <form name="form"> <button name="Accept" text="Aceptar"/> <button name="Decline" text="Rehusar"/> @@ -2330,19 +2329,19 @@ Por favor, reinténtelo en unos momentos. Has ofrecido amistad a [TO_NAME] </notification> <notification name="OfferFriendshipNoMessage"> - [NAME] le está ofreciendo amistad. + [NAME] te está ofreciendo amistad. -(Por defecto, usted podrá ver si están conectados los demás). +(Por defecto, podrás ver si están conectados los demás). <form name="form"> <button name="Accept" text="Aceptar"/> <button name="Decline" text="Rehusar"/> </form> </notification> <notification name="FriendshipAccepted"> - [NAME] ha aceptado su oferta de amistad. + [NAME] ha aceptado tu oferta de amistad. </notification> <notification name="FriendshipDeclined"> - [NAME] ha rehusado su oferta de amistad. + [NAME] ha rehusado tu oferta de amistad. </notification> <notification name="FriendshipAcceptedByMe"> Aceptado el ofrecimiento de amistad. @@ -2390,7 +2389,7 @@ Del objeto: [OBJECTNAME]; propiedad de: [NAME]? '[OBJECTNAME]', un objeto propiedad de '[NAME]', querrÃa: [QUESTIONS] -¿Está de acuerdo? +¿Estás de acuerdo? <form name="form"> <button name="Yes" text="SÃ"/> <button name="No" text="No"/> @@ -2424,14 +2423,6 @@ Si no confias en este objeto y en su creador, deberÃas rehusar esta petición. <button name="Ignore" text="Ignorar"/> </form> </notification> - <notification name="ScriptToast"> - El '[TITLE]' de [FIRST] [LAST] está esperando una respuesta del usuario. - <form name="form"> - <button name="Open" text="Abrir el diálogo"/> - <button name="Ignore" text="Ignorar"/> - <button name="Block" text="Ignorar"/> - </form> - </notification> <notification name="BuyLindenDollarSuccess"> ¡Gracias por tu pago! @@ -2440,9 +2431,9 @@ Tu saldo de L$ se actualizará cuando se complete el proceso. Si el proceso tard Puedes revisar el estado de tu pago en el Historial de transacciones de tu [http://secondlife.com/account/ Panel de Control] </notification> <notification name="FirstOverrideKeys"> - A partir de ahora, sus teclas de movimiento las gestiona un objeto. -Pruebe las teclas del cursor o AWSD para ver qué hacen. -Algunos objetos (las pistolas, por ejemplo) le pedirán que, para usarlos, entre usted en vista subjetiva. Pulse 'M' para hacerlo. + A partir de ahora, tus teclas de movimiento las gestiona un objeto. +Prueba las teclas del cursor o AWSD para ver qué hacen. +Algunos objetos (las pistolas, por ejemplo) te pedirán que, para usarlos, entres en vista subjetiva. Pulsa 'M' para hacerlo. </notification> <notification name="FirstSandbox"> Esta es una región 'sandbox' (zona de pruebas) donde los Residentes pueden aprender a construir. @@ -2450,7 +2441,7 @@ Algunos objetos (las pistolas, por ejemplo) le pedirán que, para usarlos, entre Los objetos que construyas aquà serán eliminados cuando la abandones; por tanto, no olvides pulsarlos con el botón derecho y elegir 'Tomar' para que tu creación vaya a tu inventario. </notification> <notification name="MaxListSelectMessage"> - Puede seleccionar un máximo de [MAX_SELECT] Ãtems de esta lista. + Puedes seleccionar un máximo de [MAX_SELECT] Ãtems de esta lista. </notification> <notification name="VoiceInviteP2P"> [NAME] te está invitando a un chat de voz. @@ -2498,10 +2489,10 @@ Pulsa Aceptar o Rehusar para coger o no la llamada. Pulsa Ignorar para ignorar a </form> </notification> <notification name="VoiceChannelFull"> - El chat de voz al que está intentando entrar, [VOICE_CHANNEL_NAME], ha llegado a su capacidad máxima. Por favor, inténtelo más tarde. + El chat de voz al que estás intentando entrar, [VOICE_CHANNEL_NAME], ha llegado a su capacidad máxima. Por favor, vuelve a intentarlo más tarde. </notification> <notification name="ProximalVoiceChannelFull"> - Lo sentimos. Este área ha llegado a su capacidad máxima de conversaciones por voz. Por favor, intente usar la voz en otra zona. + Lo sentimos. Este área ha llegado a su capacidad máxima de conversaciones por voz. Por favor, intenta usar la voz en otra zona. </notification> <notification name="VoiceChannelDisconnected"> Has sido desconectado de [VOICE_CHANNEL_NAME]. Vas a ser reconectado al chat de voz. @@ -2519,22 +2510,22 @@ Pulsa Aceptar o Rehusar para coger o no la llamada. Pulsa Ignorar para ignorar a Fallo al conectar a [VOICE_CHANNEL_NAME]; por favor, inténtalo más tarde. Vas a ser reconectado al chat de voz. </notification> <notification name="VoiceLoginRetry"> - Estamos creando un canal de voz para usted. Se puede tardar hasta un minuto. + Estamos creando un canal de voz para ti. Se puede tardar hasta un minuto. </notification> <notification name="Cannot enter parcel: not a group member"> Sólo los miembros de un grupo determinado pueden visitar esta zona. </notification> <notification name="Cannot enter parcel: banned"> - No puede entrar en esta parcela, se le ha prohibido el acceso. + No puedes entrar en esta parcela, se te ha prohibido el acceso. </notification> <notification name="Cannot enter parcel: not on access list"> - No puede entrar en esta parcela, no está en la lista de acceso. + No puedes entrar en esta parcela, no estás en la lista de acceso. </notification> <notification name="VoiceNotAllowed"> - No tiene permiso para conectarse al chat de voz de [VOICE_CHANNEL_NAME]. + No tienes permiso para conectarte al chat de voz de [VOICE_CHANNEL_NAME]. </notification> <notification name="VoiceCallGenericError"> - Ha ocurrido un error intentando conectarle al [VOICE_CHANNEL_NAME]. Por favor, inténtelo más tarde. + Se ha producido un error al intentar conectarte al [VOICE_CHANNEL_NAME]. Por favor, inténtalo más tarde. </notification> <notification name="ServerVersionChanged"> Acabas de entrar en una región que usa un servidor con una versión distinta, y esto puede influir en el funcionamiento. [[URL] Ver las notas de desarrollo]. @@ -2557,7 +2548,7 @@ Por tu seguridad, serán bloqueadas durante unos segundos. </notification> <notification name="ConfirmCloseAll"> ¿Seguro que quieres cerrar todos los MI? - <usetemplate name="okcancelignore" notext="Cancelar" yestext="OK"/> + <usetemplate ignoretext="Confirmar antes de cerrar todos los MIs" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="AttachmentSaved"> Se ha guardado el adjunto. @@ -2584,10 +2575,10 @@ Por tu seguridad, serán bloqueadas durante unos segundos. </notification> <notification name="BottomTrayButtonCanNotBeShown"> El botón elegido no se puede mostrar correctamente. -Se mostrará cuando tenga suficiente espacio. +Se mostrará cuando haya suficiente espacio. </notification> <global name="UnsupportedCPU"> - - La velocidad de su CPU no cumple los requerimientos mÃnimos. + - La velocidad de tu CPU no cumple los requerimientos mÃnimos. </global> <global name="UnsupportedGLRequirements"> Parece que no tienes el hardware apropiado para [APP_NAME]. [APP_NAME] requiere una tarjeta gráfica OpenGL que admita texturas múltiples ('multitexture support'). Si la tienes, comprueba que tienes los últimos 'drivers' para tu tarjeta gráfica, asà como los últimos parches y 'service packs' para tu sistema operativo. @@ -2601,10 +2592,10 @@ Si los problemas persisten, por favor, acude a [SUPPORT_SITE]. 510 </global> <global name="UnsupportedGPU"> - - Su tarjeta gráfica no cumple los requerimientos mÃnimos. + - Tu tarjeta gráfica no cumple los requerimientos mÃnimos. </global> <global name="UnsupportedRAM"> - - La memoria de su sistema no cumple los requerimientos mÃnimos. + - La memoria de tu sistema no cumple los requerimientos mÃnimos. </global> <global name="You can only set your 'Home Location' on your land or at a mainland Infohub."> Si posees un terreno, puedes hacerlo tu Base. diff --git a/indra/newview/skins/default/xui/es/panel_classified_info.xml b/indra/newview/skins/default/xui/es/panel_classified_info.xml index d46eadde486863e710c41f5712182c8751893e46..35fe174970641febf693f1eea9665596845690a0 100644 --- a/indra/newview/skins/default/xui/es/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/es/panel_classified_info.xml @@ -3,16 +3,46 @@ <panel.string name="l$_price"> [PRICE] L$ </panel.string> + <panel.string name="click_through_text_fmt"> + [TELEPORT] teleportes, [MAP] mapa, [PROFILE] perfil + </panel.string> + <panel.string name="date_fmt"> + [day,datetime,slt]/[mthnum,datetime,slt]/[year,datetime,slt] + </panel.string> + <panel.string name="auto_renew_on"> + Activada + </panel.string> + <panel.string name="auto_renew_off"> + Desactivada + </panel.string> <text name="title" value="Información del clasificado"/> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <text_editor name="classified_name" value="[nombre]"/> - <text_editor name="classified_location" value="[cargando...]"/> - <text_editor name="content_type" value="[tipo de contenido]"/> - <text_editor name="category" value="[categorÃa]"/> - <check_box label="Renovar automáticamente cada semana" name="auto_renew"/> - <text_editor name="price_for_listing" tool_tip="Precio por publicarlo."/> - <text_editor name="classified_desc" value="[descripción]"/> + <text_editor name="classified_name" value="[name]"/> + <text name="classified_location_label" value="Localización:"/> + <text_editor name="classified_location" value="[loading...]"/> + <text name="content_type_label" value="Tipo de contenido:"/> + <text_editor name="content_type" value="[content type]"/> + <text name="category_label" value="CategorÃa:"/> + <text_editor name="category" value="[category]"/> + <text name="creation_date_label" value="Fecha de creación:"/> + <text_editor name="creation_date" tool_tip="Fecha de creación" value="[date]"/> + <text name="price_for_listing_label" value="Precio por publicarlo:"/> + <text_editor name="price_for_listing" tool_tip="Precio por publicarlo." value="[price]"/> + <layout_stack name="descr_stack"> + <layout_panel name="clickthrough_layout_panel"> + <text name="click_through_label" value="Clics:"/> + <text_editor name="click_through_text" tool_tip="Información sobre Click through" value="[clicks]"/> + </layout_panel> + <layout_panel name="price_layout_panel"> + <text name="auto_renew_label" value="Renovación:"/> + <text name="auto_renew" value="Activada"/> + </layout_panel> + <layout_panel name="descr_layout_panel"> + <text name="classified_desc_label" value="Descripción:"/> + <text_editor name="classified_desc" value="[description]"/> + </layout_panel> + </layout_stack> </panel> </scroll_container> <panel name="buttons"> diff --git a/indra/newview/skins/default/xui/es/panel_edit_classified.xml b/indra/newview/skins/default/xui/es/panel_edit_classified.xml index e612104b3f79029947ad1000f61a791194b9cfa5..7afa50c0a246333e8220dad258f207323de9306e 100644 --- a/indra/newview/skins/default/xui/es/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/es/panel_edit_classified.xml @@ -3,12 +3,20 @@ <panel.string name="location_notice"> (se actualizará tras guardarlo) </panel.string> + <string name="publish_label"> + Publicar + </string> + <string name="save_label"> + Guardar + </string> <text name="title"> Editar el clasificado </text> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <icon label="" name="edit_icon" tool_tip="Pulsa para elegir una imagen"/> + <panel name="snapshot_panel"> + <icon label="" name="edit_icon" tool_tip="Pulsa para elegir una imagen"/> + </panel> <text name="Name:"> TÃtulo: </text> @@ -22,12 +30,19 @@ cargando... </text> <button label="Configurarlo en esta localización" name="set_to_curr_location_btn"/> + <text name="category_label" value="CategorÃa:"/> + <text name="content_type_label" value="Tipo de contenido:"/> + <icons_combo_box label="Contenido general" name="content_type"> + <icons_combo_box.item label="Contenido moderado" name="mature_ci" value="Moderado"/> + <icons_combo_box.item label="Contenido general" name="pg_ci" value="General"/> + </icons_combo_box> + <text name="price_for_listing_label" value="Precio por publicarlo:"/> <spinner label="L$" name="price_for_listing" tool_tip="Precio por publicarlo." value="50"/> <check_box label="Renovar automáticamente cada semana" name="auto_renew"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Guardar" name="save_changes_btn"/> + <button label="[LABEL]" name="save_changes_btn"/> <button label="Cancelar" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_edit_pick.xml b/indra/newview/skins/default/xui/es/panel_edit_pick.xml index 839e9c6023ec03383f169d799d8ae6b4330f0ef5..bde29f1665f3d9cc93a434e80a1b0fbfcb1356f0 100644 --- a/indra/newview/skins/default/xui/es/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/es/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Editar el destacado" name="panel_edit_pick"> + <panel.string name="location_notice"> + (se actualizará tras guardarlo) + </panel.string> <text name="title"> Editar el destacado </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Guardar [WHAT]" name="save_changes_btn"/> + <button label="Guardar el destacado" name="save_changes_btn"/> <button label="Cancelar" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_im_control_panel.xml b/indra/newview/skins/default/xui/es/panel_im_control_panel.xml index c3d5b017ad7b53e26208eff556e6298c9f90f4ed..7d4db6a630c22eb0fb771ef1e907ee25205b334e 100644 --- a/indra/newview/skins/default/xui/es/panel_im_control_panel.xml +++ b/indra/newview/skins/default/xui/es/panel_im_control_panel.xml @@ -13,7 +13,7 @@ <layout_panel name="share_btn_panel"> <button label="Compartir" name="share_btn"/> </layout_panel> - <layout_panel name="share_btn_panel"> + <layout_panel name="pay_btn_panel"> <button label="Pagar" name="pay_btn"/> </layout_panel> <layout_panel name="call_btn_panel"> diff --git a/indra/newview/skins/default/xui/es/panel_login.xml b/indra/newview/skins/default/xui/es/panel_login.xml index c5494d819940f931b7b30c6476aff24861c5e8f0..0e4f118605011260936471819ad8952797c11f19 100644 --- a/indra/newview/skins/default/xui/es/panel_login.xml +++ b/indra/newview/skins/default/xui/es/panel_login.xml @@ -12,12 +12,19 @@ Nombre: </text> <line_editor label="Nombre" name="first_name_edit" tool_tip="[SECOND_LIFE] First Name"/> + <text name="last_name_text"> + Apellido: + </text> <line_editor label="Apellido" name="last_name_edit" tool_tip="[SECOND_LIFE] Last Name"/> + <text name="password_text"> + Contraseña: + </text> <check_box label="Recordar la contraseña" name="remember_check"/> <text name="start_location_text"> Empezar en: </text> <combo_box name="start_location_combo"> + <combo_box.item label="Mi última posición" name="MyLastLocation"/> <combo_box.item label="Mi Base" name="MyHome"/> </combo_box> <button label="Iniciar sesión" name="connect_btn"/> @@ -26,6 +33,9 @@ <text name="create_new_account_text"> Registrarme </text> + <text name="forgot_password_text"> + ¿Olvidaste el nombre o la contraseña? + </text> <text name="login_help"> ¿Necesitas ayuda para conectarte? </text> diff --git a/indra/newview/skins/default/xui/es/panel_main_inventory.xml b/indra/newview/skins/default/xui/es/panel_main_inventory.xml index 8656098467d4097dd20ed3608e576b89e77354e3..3a1e96a82196362beabef4615d24a16c78baa0f9 100644 --- a/indra/newview/skins/default/xui/es/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/es/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Cosas" name="main inventory panel"> - <panel.string name="Title"> - Cosas + <panel.string name="ItemcountFetching"> + Obtenidos [ITEM_COUNT] Ãtems... [FILTER] </panel.string> - <filter_editor label="Filtrar" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Todos los Ãtems" name="All Items"/> - <inventory_panel label="Ãtems recientes" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Mostrar más opciones"/> - <button name="add_btn" tool_tip="Añadir un Ãtem nuevo"/> - <dnd_button name="trash_btn" tool_tip="Quitar el Ãtem seleccionado"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] Ãtems [FILTER] + </panel.string> + <text name="ItemcountText"> + Ãtems: + </text> <menu_bar name="Inventory Menu"> <menu label="Archivo" name="File"> <menu_item_call label="Abrir" name="Open"/> @@ -61,4 +57,14 @@ <menu_item_check label="Las carpetas del sistema, arriba" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filtrar" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="Todos los Ãtems" name="All Items"/> + <inventory_panel label="Ãtems recientes" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Mostrar más opciones"/> + <button name="add_btn" tool_tip="Añadir un Ãtem nuevo"/> + <dnd_button name="trash_btn" tool_tip="Quitar el Ãtem seleccionado"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_nearby_media.xml b/indra/newview/skins/default/xui/es/panel_nearby_media.xml index 885c780e00d245ea12c727d1368afd4cd340d2e1..9bd90572d7b7d03606d13d321a0e712e9b8497f1 100644 --- a/indra/newview/skins/default/xui/es/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/es/panel_nearby_media.xml @@ -19,10 +19,17 @@ <button label="Más >>" label_selected="Menos <<" name="more_less_btn" tool_tip="Controles avanzados"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + Media cercanos + </text> + <text name="show"> + Mostrar: + </text> <combo_box name="show_combo"> <combo_box.item label="Todo" name="All"/> <combo_box.item label="En esta parcela" name="WithinParcel"/> <combo_box.item label="Fuera de la parcela" name="OutsideParcel"/> + <combo_box.item label="En otros avatares" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="CercanÃa" name="media_proximity"/> @@ -31,7 +38,7 @@ <scroll_list.columns label="Nombre" name="media_name"/> <scroll_list.columns label="Depurar" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> <button name="stop_btn" tool_tip="Parar los media seleccionados"/> diff --git a/indra/newview/skins/default/xui/es/panel_people.xml b/indra/newview/skins/default/xui/es/panel_people.xml index 03c449da93393c06a6120cdf2f188de8b555a874..6008c6a9345c73aa4f45174995049fdcba86b35b 100644 --- a/indra/newview/skins/default/xui/es/panel_people.xml +++ b/indra/newview/skins/default/xui/es/panel_people.xml @@ -7,9 +7,11 @@ <string name="no_friends" value="No hay amigos"/> <string name="people_filter_label" value="Filtrar a la gente"/> <string name="groups_filter_label" value="Filtrar a los grupos"/> + <string name="no_filtered_groups_msg" value="[secondlife:///app/search/groups Intenta encontrar el grupo con una búsqueda]"/> + <string name="no_groups_msg" value="[secondlife:///app/search/groups Intenta encontrar grupos a los que unirte.]"/> <filter_editor label="Filtrar" name="filter_input"/> <tab_container name="tabs"> - <panel label="CERCANÃA" name="nearby_panel"> + <panel label="CERCANA" name="nearby_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="nearby_view_sort_btn" tool_tip="Opciones"/> <button name="add_friend_btn" tool_tip="Añadir al Residente seleccionado a la lista de tus amigos"/> @@ -18,7 +20,7 @@ <panel label="MIS AMIGOS" name="friends_panel"> <accordion name="friends_accordion"> <accordion_tab name="tab_online" title="Conectado"/> - <accordion_tab name="tab_all" title="Todas"/> + <accordion_tab name="tab_all" title="Todos"/> </accordion> <panel label="bottom_panel" name="bottom_panel"> <button name="friends_viewsort_btn" tool_tip="Opciones"/> diff --git a/indra/newview/skins/default/xui/es/panel_place_profile.xml b/indra/newview/skins/default/xui/es/panel_place_profile.xml index 2c873ef464cecb84fcb856c2a46e4af836b0cd73..6fe7895d4591371a941bc615d8c5d5ca14992d49 100644 --- a/indra/newview/skins/default/xui/es/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/es/panel_place_profile.xml @@ -70,10 +70,17 @@ <accordion_tab name="region_information_tab" title="Región"> <panel name="region_information_panel"> <text name="region_name_label" value="Región:"/> + <text name="region_name" value="Mooseland"/> <text name="region_type_label" value="Tipo:"/> + <text name="region_type" value="Moose"/> <text name="region_rating_label" value="Calificación:"/> + <text name="region_rating" value="Adulto"/> <text name="region_owner_label" value="Propietario:"/> + <text name="region_owner" value="moose Van Moose"/> <text name="region_group_label" value="Grupo:"/> + <text name="region_group"> + The Mighty Moose of mooseville soundvillemoose + </text> <button label="Región/Estado" name="region_info_btn"/> </panel> </accordion_tab> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/es/panel_preferences_advanced.xml index add854932de63830f6d1e42bf1dd4f0253195ce6..a7c13b05b63f08712580dd7650fd3077fd6bd688 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + Botón medio del ratón + </panel.string> <slider label="Ãngulo de visión" name="camera_fov"/> <slider label="Distancia" name="camera_offset_scale"/> <text name="heading2"> @@ -14,7 +17,7 @@ <check_box label="Las teclas del cursor siempre para moverme" name="arrow_keys_move_avatar_check"/> <check_box label="Correr siempre: atajo de teclado" name="tap_tap_hold_to_run"/> <check_box label="Al hablar, mover los labios del avatar" name="enable_lip_sync"/> - <check_box label="Bocadillos del chat" name="bubble_text_chat"/> + <check_box label="Chat en bocadillos" name="bubble_text_chat"/> <slider label="Opacidad" name="bubble_chat_opacity"/> <color_swatch name="background" tool_tip="Elegir el color de los bocadillos del chat"/> <check_box label="Mostrar los errores de los scripts en:" name="show_script_errors"/> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_alerts.xml b/indra/newview/skins/default/xui/es/panel_preferences_alerts.xml index 0ccc307039bbbfb077cbf5f370b3a2ae28739ca6..f34edf149e57319e9d9e8b408751f53b4ae11ad3 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_alerts.xml @@ -4,7 +4,7 @@ Avisarme: </text> <check_box label="Cuando gaste o consiga L$" name="notify_money_change_checkbox"/> - <check_box label="Cuando mis amigos se conectan o desconectan" name="friends_online_notify_checkbox"/> + <check_box label="Cuando mis amigos se conecten o desconecten" name="friends_online_notify_checkbox"/> <text name="show_label" width="300"> Mostrar siempre: </text> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_chat.xml b/indra/newview/skins/default/xui/es/panel_preferences_chat.xml index 17e3b45beb48b1ba021992dd125cb610e99eb1fb..46d8984889e7aa55deb6dff9ab1aaa97abfb118c 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_chat.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Chat de texto" name="chat"> <text name="font_size"> - Font size: + Tamaño de la fuente: </text> <radio_group name="chat_font_size"> <radio_item label="Disminuir" name="radio" value="0"/> - <radio_item label="Media" name="radio2" value="1"/> + <radio_item label="Medio" name="radio2" value="1"/> <radio_item label="Aumentar" name="radio3" value="2"/> </radio_group> <text name="font_colors"> - Font colors: + Colores de la fuente: </text> <color_swatch label="Usted" name="user"/> <text name="text_box1"> @@ -45,6 +45,12 @@ </text> <check_box initial_value="true" label="Ejecutar la animación de escribir al hacerlo en el chat" name="play_typing_animation"/> <check_box label="Cuando estoy desconectado, enviarme los MI al correo-e" name="send_im_to_email"/> + <text name="show_ims_in_label"> + Mostrar los MI en: + </text> + <text name="requires_restart_label"> + (requiere reiniciar) + </text> <radio_group name="chat_window" tool_tip="Muestra tus mensajes instantáneos en varias ventanas flotantes o en una sola con varias pestañas (requiere que reinicies)"> <radio_item label="Varias ventanas" name="radio" value="0"/> <radio_item label="Pestañas" name="radio2" value="1"/> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_general.xml b/indra/newview/skins/default/xui/es/panel_preferences_general.xml index 8993fa139f619dd19126549f138eddcb7ba2c0c6..ca157314aa560533faae96108b7a8bd4513ff414 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_general.xml @@ -44,7 +44,7 @@ <radio_item label="On" name="radio2" value="1"/> <radio_item label="Mostrar brevemente" name="radio3" value="2"/> </radio_group> - <check_box label="Mostrar mi nombre" name="show_my_name_checkbox1"/> + <check_box label="Ver yo mi nombre" name="show_my_name_checkbox1"/> <check_box initial_value="true" label="Etiquetas de los avatares en pequeño" name="small_avatar_names_checkbox"/> <check_box label="Mostrar las etiquetas de grupo" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml index 6ec3a04a020400c3fc4b4f69c7eac6a3228ca388..87e7dc1e8abc8773848fc44331481d93b9dcd606 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml @@ -52,7 +52,7 @@ m </text> <slider label="Núm. máx. de partÃculas:" name="MaxParticleCount"/> - <slider label="Calidad del procesamiento:" label_width="142" name="RenderPostProcess"/> + <slider label="Calidad de procesamiento:" label_width="142" name="RenderPostProcess"/> <text name="MeshDetailText"> Detalle de la malla: </text> diff --git a/indra/newview/skins/default/xui/es/panel_preferences_privacy.xml b/indra/newview/skins/default/xui/es/panel_preferences_privacy.xml index 3632ecca7bd7bd4b750b88dfabe8c5cfaa5338a2..bf2c6b7aa61250bf066643ebf542ccdc9cc5cd84 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_privacy.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_privacy.xml @@ -18,7 +18,7 @@ <check_box label="Guardar en mi ordenador registros de los MI" name="log_instant_messages"/> <check_box label="Añadir fecha y hora" name="show_timestamps_check_im"/> <text name="log_path_desc"> - Localización de los registros: + Ruta de los registros: </text> <line_editor left="278" name="log_path_string" right="-20"/> <button label="Elegir" label_selected="Elegir" name="log_path_button" width="120"/> 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 ebf2b1084b46ed1ad2f39cc206ebda7759c58576..fe9736f758a2f9e6572721e91d851739c9b78054 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml @@ -18,7 +18,7 @@ kbps </text> <check_box label="Personalizar el puerto" name="connection_port_enabled"/> - <spinner label="Número de puerto:" name="connection_port"/> + <spinner label="Nº del puerto:" name="connection_port"/> <text name="cache_size_label_l"> Tamaño de la caché </text> @@ -34,13 +34,16 @@ Web: </text> <radio_group name="use_external_browser"> - <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="0"/> <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="1"/> + <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> + <check_box initial_value="verdadero" label="Activar plugins" name="browser_plugins_enabled"/> + <check_box initial_value="verdadero" label="Aceptar las 'cookies'" name="cookies_enabled"/> + <check_box initial_value="verdadero" label="Activar Javascript" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Activar web proxy" name="web_proxy_enabled"/> <text name="Proxy location"> Localización del proxy: </text> <line_editor name="web_proxy_editor" tool_tip="Nombre o dirección IP del proxy que quieres usar"/> - <spinner label="Número de puerto:" name="web_proxy_port"/> + <spinner label="Nº del puerto:" name="web_proxy_port"/> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_region_estate.xml b/indra/newview/skins/default/xui/es/panel_region_estate.xml index 53d05cf2c906900e3f69755ed93171aa41ba9b20..c51c3815d1146fcc5b7419c6331cf9cb1ef695fe 100644 --- a/indra/newview/skins/default/xui/es/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/es/panel_region_estate.xml @@ -39,7 +39,7 @@ </string> <button label="?" name="abuse_email_address_help"/> <button label="Aplicar" name="apply_btn"/> - <button label="Echar usuarios del estado..." name="kick_user_from_estate_btn"/> + <button label="Expulsar a un Residente del Estado..." name="kick_user_from_estate_btn"/> <button label="Enviar un mensaje al estado..." name="message_estate_btn"/> <text name="estate_manager_label"> Administradores del estado: diff --git a/indra/newview/skins/default/xui/es/panel_region_general.xml b/indra/newview/skins/default/xui/es/panel_region_general.xml index ca8da6ccaf42aa1e7edc8e22f507ddf643a8302e..54b60b276c06253ff20dc7725f6426e15ef54509 100644 --- a/indra/newview/skins/default/xui/es/panel_region_general.xml +++ b/indra/newview/skins/default/xui/es/panel_region_general.xml @@ -19,35 +19,26 @@ desconocido </text> <check_box label="No permitir modificar el terreno" name="block_terraform_check"/> - <button label="?" name="terraform_help"/> <check_box label="Prohibir volar" name="block_fly_check"/> - <button label="?" name="fly_help"/> <check_box label="Permitir el daño" name="allow_damage_check"/> - <button label="?" name="damage_help"/> <check_box label="Impedir los 'empujones'" name="restrict_pushobject"/> - <button label="?" name="restrict_pushobject_help"/> <check_box label="Permitir la reventa del terreno" name="allow_land_resell_check"/> - <button label="?" name="land_resell_help"/> <check_box label="Permitir unir/dividir el terreno" name="allow_parcel_changes_check"/> - <button label="?" name="parcel_changes_help"/> - <check_box label="Bloquear el mostrar el terreno en la búsqueda." name="block_parcel_search_check" tool_tip="Permitir que la gente vea esta región y sus parcelas en los resultados de la búsqueda."/> - <button label="?" name="parcel_search_help"/> - <spinner label="Nº máximo de avatares" name="agent_limit_spin" label_width="120" width="180"/> - <button label="?" name="agent_limit_help"/> - <spinner label="Plus de objetos" name="object_bonus_spin" label_width="120" width="180"/> - <button label="?" name="object_bonus_help"/> + <check_box label="Bloquear el mostrar el terreno en +la búsqueda." name="block_parcel_search_check" tool_tip="Permitir que la gente vea esta región y sus parcelas en los resultados de la búsqueda."/> + <spinner label="Nº máximo de avatares" label_width="120" name="agent_limit_spin" width="180"/> + <spinner label="Plus de objetos" label_width="120" name="object_bonus_spin" width="180"/> <text label="Calificación" name="access_text"> Calificación: </text> - <combo_box label="'Mature'" name="access_combo"> - <combo_box.item label="'Adult'" name="Adult"/> - <combo_box.item label="'Mature'" name="Mature"/> - <combo_box.item label="'PG'" name="PG"/> - </combo_box> - <button label="?" name="access_help"/> + <icons_combo_box label="'Mature'" name="access_combo"> + <icons_combo_box.item label="'Adult'" name="Adult" value="42"/> + <icons_combo_box.item label="'Mature'" name="Mature" value="21"/> + <icons_combo_box.item label="'PG'" name="PG" value="13"/> + </icons_combo_box> <button label="Aplicar" name="apply_btn"/> - <button label="Teleportar a su Base a un usuario..." name="kick_btn"/> - <button label="Teleportar a su Base a todos los usuarios..." name="kick_all_btn"/> - <button label="Enviar un mensaje a toda la región..." name="im_btn" width="250" /> + <button label="Teleportar a su Base a un Residente..." name="kick_btn"/> + <button label="Teleportar a sus Bases a todos los Residentes..." name="kick_all_btn"/> + <button label="Enviar un mensaje a toda la región..." name="im_btn" width="250"/> <button label="Administrar el Punto de Teleporte..." name="manage_telehub_btn" width="210"/> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_region_general_layout.xml b/indra/newview/skins/default/xui/es/panel_region_general_layout.xml index 89ad5549c8662f97f92ed3b106dd20eb6c2d5b34..9ff88e2f79c7467e563e4cb9dead31e22c01dd5f 100644 --- a/indra/newview/skins/default/xui/es/panel_region_general_layout.xml +++ b/indra/newview/skins/default/xui/es/panel_region_general_layout.xml @@ -36,8 +36,8 @@ <combo_box.item label="General" name="PG"/> </combo_box> <button label="Aplicar" name="apply_btn"/> - <button label="Teleportar a su Base a un usuario..." name="kick_btn"/> - <button label="Teleportar a sus Bases a todos los usuarios..." name="kick_all_btn"/> + <button label="Teleportar a su Base a un Residente..." name="kick_btn"/> + <button label="Teleportar a sus Bases a todos los Residentes..." name="kick_all_btn"/> <button label="Enviar un mensaje a toda la región..." name="im_btn"/> <button label="Administrar el Punto de Teleporte..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_region_texture.xml b/indra/newview/skins/default/xui/es/panel_region_texture.xml index 83c22d20ebdaa45898cd0edf6254e9acd86aee8d..047e8f2f30605b4538c5ba6cebfbfcaeadeb95ba 100644 --- a/indra/newview/skins/default/xui/es/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/es/panel_region_texture.xml @@ -25,16 +25,16 @@ Rangos de la elevación de la textura </text> <text name="height_text_lbl6"> - Suroeste + Noroeste </text> <text name="height_text_lbl7"> - Noroeste + Noreste </text> <text name="height_text_lbl8"> - Sureste + Suroeste </text> <text name="height_text_lbl9"> - Noreste + Sureste </text> <spinner label="Baja" name="height_start_spin_0"/> <spinner label="Baja" name="height_start_spin_1"/> diff --git a/indra/newview/skins/default/xui/es/panel_status_bar.xml b/indra/newview/skins/default/xui/es/panel_status_bar.xml index d4404fd9b53e03e7fbe3f3e8b4efd2474eb6f2d5..1afa68106ef99448086e5e65b9bec17a25477618 100644 --- a/indra/newview/skins/default/xui/es/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/es/panel_status_bar.xml @@ -22,7 +22,7 @@ [AMT] L$ </panel.string> <button label="" label_selected="" name="buycurrency" tool_tip="Mi saldo"/> - <button label="Comprar L$" name="buyL" tool_tip="Pulsa para comprar más L$"/> + <button label="Comprar" name="buyL" tool_tip="Pulsa para comprar más L$"/> <text name="TimeText" tool_tip="Hora actual (PacÃfico)"> 24:00 AM PST </text> diff --git a/indra/newview/skins/default/xui/es/sidepanel_task_info.xml b/indra/newview/skins/default/xui/es/sidepanel_task_info.xml index 0cd3b40ca6c3a9c7ebc9777a637294822a71a11b..f40813d3c937c9813330528e2bd4cec36fe913d8 100644 --- a/indra/newview/skins/default/xui/es/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/es/sidepanel_task_info.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="object properties" title="Perfil del objeto"> <panel.string name="text deed continued"> - Transfeir + Transferir </panel.string> <panel.string name="text deed"> - Transfeir + Transferir </panel.string> <panel.string name="text modify info 1"> Puedes modificar este objeto @@ -38,16 +38,41 @@ </panel.string> <text name="title" value="Perfil del objeto"/> <text name="where" value="(en el mundo)"/> - <panel label=""> + <panel label="" name="properties_panel"> + <text name="Name:"> + Nombre: + </text> + <text name="Description:"> + Descripción: + </text> <text name="CreatorNameLabel"> Creador: </text> <text name="Creator Name"> Erica Linden </text> + <text name="Owner:"> + Propietario: + </text> + <text name="Owner Name"> + Erica Linden + </text> <text name="Group_label"> Grupo: </text> + <button name="button set group" tool_tip="Elige un grupo con el que compartir los permisos de este objeto"/> + <name_box initial_value="Cargando..." name="Group Name Proxy"/> + <button label="Transferir" label_selected="Transferir" name="button deed" tool_tip="La transferencia entrega este objeto con los permisos del próximo propietario. Los objetos compartidos por el grupo pueden ser transferidos por un oficial del grupo."/> + <text name="label click action"> + Pulsa para: + </text> + <combo_box name="clickaction"> + <combo_box.item label="Tocarlo (por defecto)" name="Touch/grab(default)"/> + <combo_box.item label="Sentarme en el objeto" name="Sitonobject"/> + <combo_box.item label="Comprar el objeto" name="Buyobject"/> + <combo_box.item label="Pagar el objeto" name="Payobject"/> + <combo_box.item label="Abrir" name="Open"/> + </combo_box> <panel name="perms_inv"> <text name="perm_modify"> Puedes modificar este objeto @@ -55,20 +80,27 @@ <text name="Anyone can:"> Cualquiera: </text> - <check_box label="Copiarlo" name="checkbox allow everyone copy"/> - <check_box label="Moverlo" name="checkbox allow everyone move"/> + <check_box label="Copiar" name="checkbox allow everyone copy"/> + <check_box label="Mover" name="checkbox allow everyone move"/> <text name="GroupLabel"> Grupo: </text> - <check_box label="Compartir" name="checkbox share with group" tool_tip="Permite que todos los miembros del grupo compartan tus permisos de modificación en este objeto. Debes transferirlo para activar las restricciones según los roles."/> + <check_box label="Compartir" name="checkbox share with group" tool_tip="Permite que todos los miembros del grupo compartan tus permisos de modificación de este objeto. Debes transferirlo para activar las restricciones según los roles."/> <text name="NextOwnerLabel"> Próximo propietario: </text> - <check_box label="Modificarlo" name="checkbox next owner can modify"/> - <check_box label="Copiarlo" name="checkbox next owner can copy"/> - <check_box label="Transferirlo" name="checkbox next owner can transfer" tool_tip="El próximo propietario puede dar o revender este objeto"/> + <check_box label="Modificar" name="checkbox next owner can modify"/> + <check_box label="Copiar" name="checkbox next owner can copy"/> + <check_box label="Transferir" name="checkbox next owner can transfer" tool_tip="El próximo propietario puede dar o revender este objeto"/> </panel> <check_box label="En venta" name="checkbox for sale"/> + <combo_box name="sale type"> + <combo_box.item label="Copiar" name="Copy"/> + <combo_box.item label="Contenidos" name="Contents"/> + <combo_box.item label="Original" name="Original"/> + </combo_box> + <spinner label="Precio: L$" name="Edit Cost"/> + <check_box label="Mostrar en la búsqueda" name="search_check" tool_tip="Permitir que la gente vea este objeto en los resultados de la búsqueda"/> <text name="B:"> B: </text> @@ -92,5 +124,6 @@ <button label="Abrir" name="open_btn"/> <button label="Pagar" name="pay_btn"/> <button label="Comprar" name="buy_btn"/> + <button label="Detalles" name="details_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/es/strings.xml b/indra/newview/skins/default/xui/es/strings.xml index 619094bbfa86fddca35b119926e78569007cb16d..a8fc7f6b586fe0d50b29dbce327a46a09622ede8 100644 --- a/indra/newview/skins/default/xui/es/strings.xml +++ b/indra/newview/skins/default/xui/es/strings.xml @@ -14,7 +14,22 @@ Identificando el hardware... </string> <string name="StartupLoading"> - Cargando + Instalando [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Limpiando la caché... + </string> + <string name="StartupInitializingTextureCache"> + Iniciando la caché de las texturas... + </string> + <string name="StartupInitializingVFS"> + Iniciando VFS... + </string> + <string name="ProgressRestoring"> + Restaurando... + </string> + <string name="ProgressChangingResolution"> + Cambiando la resolución... </string> <string name="LoginInProgress"> Iniciando la sesión. [APP_NAME] debe de aparecer congelado. Por favor, espere. @@ -76,6 +91,9 @@ <string name="LoginFailedNoNetwork"> Error de red: no se ha podido conectar; por favor, revisa tu conexión a internet. </string> + <string name="LoginFailed"> + Error en el inicio de sesión. + </string> <string name="Quit"> Salir </string> @@ -83,7 +101,25 @@ http://join.secondlife.com/index.php?lang=es-ES </string> <string name="AgentLostConnection"> - Esta región puede estar teniendo problemas. Por favor, compruebe su conexión a internet. + Esta región puede estar teniendo problemas. Por favor, comprueba tu conexión a internet. + </string> + <string name="SavingSettings"> + Guardando tus configuraciones... + </string> + <string name="LoggingOut"> + Cerrando sesión... + </string> + <string name="ShuttingDown"> + Cerrando... + </string> + <string name="YouHaveBeenDisconnected"> + Has sido desconectado de la región en la que estabas. + </string> + <string name="SentToInvalidRegion"> + Has sido enviado a una región no válida. + </string> + <string name="TestingDisconnect"> + Probando la desconexión del visor </string> <string name="TooltipPerson"> Persona @@ -139,6 +175,24 @@ <string name="TooltipAgentUrl"> Pulsa para ver el perfil del Residente </string> + <string name="TooltipAgentMute"> + Pulsa para silenciar a este Residente + </string> + <string name="TooltipAgentUnmute"> + Pulsa para quitar el silencio a este Residente + </string> + <string name="TooltipAgentIM"> + Pulsa para enviar un MI a este Residente + </string> + <string name="TooltipAgentPay"> + Pulsa para pagar a este Residente + </string> + <string name="TooltipAgentOfferTeleport"> + Pulsa para enviar una petición de teleporte a este Residente + </string> + <string name="TooltipAgentRequestFriend"> + Pulsa para enviar una petición de amistad a este Residente + </string> <string name="TooltipGroupUrl"> Pulsa para ver la descripción de este grupo </string> @@ -164,12 +218,31 @@ Pulsa para ejecutar el comando secondlife:// </string> <string name="CurrentURL" value="URL actual: [CurrentURL]"/> + <string name="TooltipPrice" value="[PRICE] L$"/> <string name="SLurlLabelTeleport"> Teleportarse a </string> <string name="SLurlLabelShowOnMap"> Mostrarla en el mapa </string> + <string name="SLappAgentMute"> + Silenciar + </string> + <string name="SLappAgentUnmute"> + Quitar el silencio + </string> + <string name="SLappAgentIM"> + MI + </string> + <string name="SLappAgentPay"> + Pagar + </string> + <string name="SLappAgentOfferTeleport"> + Ofrecer teleporte a + </string> + <string name="SLappAgentRequestFriend"> + Petición de amistad + </string> <string name="BUTTON_CLOSE_DARWIN"> Cerrar (⌘W) </string> @@ -320,6 +393,9 @@ <string name="symbolic link"> el enlace </string> + <string name="symbolic folder link"> + enlace de la carpeta + </string> <string name="AvatarAway"> Ausente </string> @@ -737,6 +813,9 @@ <string name="invalid"> inválido/a </string> + <string name="NewWearable"> + Nuevo [WEARABLE_ITEM] + </string> <string name="next"> Siguiente </string> @@ -768,7 +847,7 @@ Ofrecimiento de teleporte </string> <string name="StartUpNotifications"> - Llegaron [%d] avisos nuevos mientras estabas ausente... + Llegaron avisos nuevos mientras estabas ausente... </string> <string name="OverflowInfoChannelString"> Tienes [%d] aviso/s más @@ -825,6 +904,7 @@ No hay contenido </string> <string name="WornOnAttachmentPoint" value="(lo llevas en: [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (activo)"/> <string name="Chat" value="Chat :"/> <string name="Sound" value="Sonido :"/> <string name="Wait" value="--- Espera :"/> @@ -892,7 +972,7 @@ Partes del cuerpo </string> <string name="InvFolder Trash"> - la Papelera + Papelera </string> <string name="InvFolder Photo Album"> Ãlbum de fotos @@ -918,6 +998,9 @@ <string name="InvFolder My Outfits"> Mis vestuarios </string> + <string name="InvFolder Accessories"> + Accesorios + </string> <string name="InvFolder Friends"> Amigos </string> @@ -1435,6 +1518,12 @@ <string name="PanelContentsNewScript"> Script nuevo </string> + <string name="PanelContentsTooltip"> + Contenido del objeto + </string> + <string name="BusyModeResponseDefault"> + El Residente al que has enviado un mensaje ha solicitado que no se le moleste porque está en modo ocupado. Podrá ver tu mensaje más adelante, ya que éste aparecerá en su panel de MI. + </string> <string name="MuteByName"> (por el nombre) </string> @@ -1549,7 +1638,10 @@ Cancelar </string> <string name="UploadingCosts"> - Subir este/a [%s] cuesta + Subir [NAME] cuesta [AMOUNT] L$ + </string> + <string name="BuyingCosts"> + Comprar esto cuesta [AMOUNT] L$ </string> <string name="UnknownFileExtension"> Extensión de archivo desconocida [.%s] @@ -1828,7 +1920,7 @@ Si sigues recibiendo este mensaje, contacta con [SUPPORT_SITE]. Cortos </string> <string name="Attached Earlobes"> - Lóbulos cortos + Lóbulos </string> <string name="Back Fringe"> Nuca: largo @@ -2998,7 +3090,7 @@ Si sigues recibiendo este mensaje, contacta con [SUPPORT_SITE]. Sweep Forward </string> <string name="Tall"> - Alta + Más </string> <string name="Taper Back"> Cubierta trasera @@ -3100,7 +3192,7 @@ Si sigues recibiendo este mensaje, contacta con [SUPPORT_SITE]. Pelo blanco </string> <string name="Wide"> - Ancho + Aumentar </string> <string name="Wide Back"> Completa @@ -3267,4 +3359,120 @@ Si sigues recibiendo este mensaje, contacta con [SUPPORT_SITE]. <string name="unread_chat_multiple"> [SOURCES] ha dicho algo nuevo </string> + <string name="paid_you_ldollars"> + [NAME] te ha pagado [AMOUNT] L$ + </string> + <string name="you_paid_ldollars"> + Has pagado [AMOUNT] L$ a [NAME] por [REASON]. + </string> + <string name="you_paid_ldollars_no_reason"> + Has pagado [AMOUNT] L$ a [NAME]. + </string> + <string name="you_paid_ldollars_no_name"> + Has pagado [AMOUNT] L$ por [REASON]. + </string> + <string name="for a parcel of land"> + para una parcela de terreno + </string> + <string name="for a land access pass"> + para un pase de acceso a terrenos + </string> + <string name="for deeding land"> + for deeding land + </string> + <string name="to create a group"> + para crear un grupo + </string> + <string name="to join a group"> + para entrar a un grupo + </string> + <string name="to upload"> + to upload + </string> + <string name="giving"> + Dando [AMOUNT] L$ + </string> + <string name="uploading_costs"> + Subir esto cuesta [AMOUNT] L$ + </string> + <string name="this_costs"> + Esto cuesta [AMOUNT] L$ + </string> + <string name="buying_selected_land"> + Compra del terreno seleccionado por [AMOUNT] L$ + </string> + <string name="this_object_costs"> + Este objeto cuesta [AMOUNT] L$ + </string> + <string name="group_role_everyone"> + Todos + </string> + <string name="group_role_officers"> + Oficiales + </string> + <string name="group_role_owners"> + Propietarios + </string> + <string name="uploading_abuse_report"> + Subiendo... + +Denuncia de infracción + </string> + <string name="New Shape"> + AnatomÃa nueva + </string> + <string name="New Skin"> + Piel nueva + </string> + <string name="New Hair"> + Pelo nuevo + </string> + <string name="New Eyes"> + Ojos nuevos + </string> + <string name="New Shirt"> + Camisa nueva + </string> + <string name="New Pants"> + Pantalón nuevo + </string> + <string name="New Shoes"> + Zapatos nuevos + </string> + <string name="New Socks"> + Calcetines nuevos + </string> + <string name="New Jacket"> + Chaqueta nueva + </string> + <string name="New Gloves"> + Guantes nuevos + </string> + <string name="New Undershirt"> + Camiseta nueva + </string> + <string name="New Underpants"> + Ropa interior nueva + </string> + <string name="New Skirt"> + Falda nueva + </string> + <string name="New Alpha"> + Nueva Alfa + </string> + <string name="New Tattoo"> + Tatuaje nuevo + </string> + <string name="Invalid Wearable"> + No se puede poner + </string> + <string name="New Script"> + Script nuevo + </string> + <string name="New Folder"> + Carpeta nueva + </string> + <string name="Contents"> + Contenidos + </string> </strings> diff --git a/indra/newview/skins/default/xui/es/teleport_strings.xml b/indra/newview/skins/default/xui/es/teleport_strings.xml index 0a605277f29fc48fa2aaf5c87d4b767b36534116..7e7ed6202fda04c7da198af99d12401e16c4dc08 100644 --- a/indra/newview/skins/default/xui/es/teleport_strings.xml +++ b/indra/newview/skins/default/xui/es/teleport_strings.xml @@ -60,6 +60,9 @@ Vuelva a intentarlo en un momento. <message name="completing"> Completando el teleporte. </message> + <message name="completed_from"> + Teleporte realizado desde [T_SLURL] + </message> <message name="resolving"> Especificando el destino. </message> 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 ac3bd17c8588a181dccdc2f55473db669d8bc8e7..5d630cdf489cade775d9dfe3e64c06e975494acd 100644 --- a/indra/newview/skins/default/xui/fr/floater_about_land.xml +++ b/indra/newview/skins/default/xui/fr/floater_about_land.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floaterland" title="À PROPOS DES TERRAINS"> +<floater name="floaterland" title="À PROPOS DU TERRAIN"> <floater.string name="maturity_icon_general"> "Parcel_PG_Dark" </floater.string> @@ -324,18 +324,18 @@ Seules les parcelles de grande taille peuvent apparaître dans la recherche. <text name="allow_label2"> Construire : </text> - <check_box label="Tous" left="285" name="edit objects check"/> - <check_box label="Groupe" left="395" name="edit group objects check"/> + <check_box label="Tous" name="edit objects check"/> + <check_box label="Groupe" name="edit group objects check"/> <text name="allow_label3"> Laisser entrer des objets : </text> - <check_box label="Tous" left="285" name="all object entry check"/> - <check_box label="Groupe" left="395" name="group object entry check"/> + <check_box label="Tous" name="all object entry check"/> + <check_box label="Groupe" name="group object entry check"/> <text name="allow_label4"> Exécuter des scripts : </text> - <check_box label="Tous" left="285" name="check other scripts"/> - <check_box label="Groupe" left="395" name="check group scripts"/> + <check_box label="Tous" name="check other scripts"/> + <check_box label="Groupe" name="check group scripts"/> <text name="land_options_label"> Options du terrain : </text> @@ -400,7 +400,7 @@ Seules les parcelles de grande taille peuvent apparaître dans la recherche. Page d'accueil : </text> <line_editor left="97" name="media_url"/> - <button label="Choisir" label_selected="Définir..." name="set_media_url"/> + <button label="Choisir" name="set_media_url"/> <check_box label="Masquer l'URL" left="97" name="hide_media_url" tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL du média. Cette option n'est pas disponible pour les fichiers HTML."/> <text name="Description:"> Description : @@ -449,6 +449,9 @@ musique : <panel.string name="access_estate_defined"> (défini par le domaine </panel.string> + <panel.string name="allow_public_access"> + Autoriser l'accès public ([MATURITY]) + </panel.string> <panel.string name="estate_override"> Au moins une de ces options est définie au niveau du domaine. </panel.string> diff --git a/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml b/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml index 241cf1af0972f32bb675bc703a78fe1e12303f6f..503fe5c1546145a8dda0735a15bb94d2ea954943 100644 --- a/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floaterbulkperms" title="MODIFIER LES DROITS RELATIFS AU CONTENU"> +<floater name="floaterbulkperms" title="MODIFIER LES DROITS"> <floater.string name="nothing_to_modify_text"> - La sélection contient des contenus non modifiables. + Certains contenus sont non modifiables. </floater.string> <floater.string name="status_text"> Droits paramétrés sur [NAME] diff --git a/indra/newview/skins/default/xui/fr/floater_buy_currency.xml b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml index c7437c460385a3362dd4686681bd8b15ce81dc54..4eaff8535e78a5abf9a2658fce9a3ac927364256 100644 --- a/indra/newview/skins/default/xui/fr/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml @@ -4,7 +4,7 @@ Achetez [LINDENS] L$ pour environ [LOCALAMOUNT] </floater.string> <text left="5" name="info_need_more" right="-5"> - Vous avez besoin de plus de L$ + Plus de L$ sont requis </text> <text name="contacting"> En train de contacter @@ -38,7 +38,7 @@ le Lindex... Estimation en cours... </text> <text name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text name="total_label"> Mon nouveau solde sera de @@ -53,14 +53,14 @@ le Lindex... Saisissez à nouveau le montant pour voir le taux de change actuel. </text> <text name="purchase_warning_repurchase"> - La confirmation de cet achat n'achète que des L$, pas l'objet. + Confirmer cet achat n'achète que des L$, pas l'objet. </text> <text bottom_delta="16" name="purchase_warning_notenough"> Vous n'achetez pas assez de L$. Veuillez augmenter le montant. </text> <button label="Acheter" name="buy_btn"/> <button label="Annuler" name="cancel_btn"/> - <text left="5" name="info_cannot_buy" width="200" right="-5"> + <text left="5" name="info_cannot_buy" right="-5" width="200"> Achat impossible </text> <button label="Accéder au Web" name="error_web"/> diff --git a/indra/newview/skins/default/xui/fr/floater_color_picker.xml b/indra/newview/skins/default/xui/fr/floater_color_picker.xml index 8d7fe76b35b2444fe1451366d7ea012b0b0286a9..7ead543c78968695aaef0b3dade93e791c64a49e 100644 --- a/indra/newview/skins/default/xui/fr/floater_color_picker.xml +++ b/indra/newview/skins/default/xui/fr/floater_color_picker.xml @@ -26,6 +26,6 @@ Couleur actuelle : </text> <text left="8" name="(Drag below to save.)" width="220"> - (Faire glisser dessous pour enregistrer.) + Enreg. : faire glisser dessous </text> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_customize.xml b/indra/newview/skins/default/xui/fr/floater_customize.xml index 0343ff0014d5b8ba36a57c851ae9ee731d320b87..d5ee070dcd32e23e4d5fdffb412cf98c66286dda 100644 --- a/indra/newview/skins/default/xui/fr/floater_customize.xml +++ b/indra/newview/skins/default/xui/fr/floater_customize.xml @@ -155,7 +155,7 @@ </text> <panel label="Chemise" name="Shirt"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Créer une chemise" label_selected="Créer une chemise" name="Create New"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> @@ -188,7 +188,7 @@ </panel> <panel label="Pantalon" name="Pants"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Créer un pantalon" label_selected="Créer un pantalon" name="Create New"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> @@ -246,7 +246,7 @@ Chaussures : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -279,7 +279,7 @@ Chaussettes : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -313,7 +313,7 @@ </text> <texture_picker label="Tissu (dessus)" name="Upper Fabric" tool_tip="Cliquez pour sélectionner une image" width="81"/> <texture_picker label="Tissu (dessous)" name="Lower Fabric" tool_tip="Cliquez pour sélectionner une image" width="81"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="81"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="81"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -346,7 +346,7 @@ Gants : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -379,7 +379,7 @@ Débardeur : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -412,7 +412,7 @@ Caleçon : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> @@ -445,7 +445,7 @@ Jupe : </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> diff --git a/indra/newview/skins/default/xui/fr/floater_day_cycle_options.xml b/indra/newview/skins/default/xui/fr/floater_day_cycle_options.xml index 15cc6cd1ba0bfc3f3ddc4fd7a3a38fbea9751ba1..a381f64cd92ae30541b65046d6b79dd63d015097 100644 --- a/indra/newview/skins/default/xui/fr/floater_day_cycle_options.xml +++ b/indra/newview/skins/default/xui/fr/floater_day_cycle_options.xml @@ -4,7 +4,7 @@ <panel label="Cycle du jour" name="Day Cycle"> <button label="?" name="WLDayCycleHelp" /> <text name="WL12am"> - Minuit + Min. </text> <text name="WL3am"> 3h @@ -28,7 +28,7 @@ 21h </text> <text name="WL12am2"> - Minuit + Min. </text> <text name="WL12amHash"> | @@ -84,7 +84,7 @@ <text name="DayCycleText3" left="280" width="200"> Prévisualiser : </text> - <button label="Jouer" label_selected="Jouer" name="WLAnimSky" left_delta="90"/> + <button label="Lire" label_selected="Lire" name="WLAnimSky" left_delta="90"/> <button label="Stop !" label_selected="Stop" name="WLStopAnimSky" /> <button label="Utiliser heure domaine" label_selected="Aller heure domaine" name="WLUseLindenTime" /> diff --git a/indra/newview/skins/default/xui/fr/floater_gesture.xml b/indra/newview/skins/default/xui/fr/floater_gesture.xml index 113df0acc4b6732c654943951034e6e52dcd56ff..1e0f5672a46c67f8a79f9ba6b5e7018b077f21db 100644 --- a/indra/newview/skins/default/xui/fr/floater_gesture.xml +++ b/indra/newview/skins/default/xui/fr/floater_gesture.xml @@ -9,9 +9,9 @@ <floater.string name="copy_name"> Copie de [COPY_NAME] </floater.string> - <scroll_list bottom_delta="-385" height="360" name="gesture_list"> - <scroll_list.columns label="Nom" name="name" width="145"/> - <scroll_list.columns label="Chat" name="trigger" width="85"/> + <scroll_list name="gesture_list"> + <scroll_list.columns label="Nom" name="name"/> + <scroll_list.columns label="Chat" name="trigger"/> <scroll_list.columns label="" name="key"/> <scroll_list.columns label="Touche" name="shortcut"/> </scroll_list> diff --git a/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml b/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml index f83000cf87ef20d255aafdb99c7a760099a9f5e7..fd569a7f95f430dd548065c93b3246bcc2be25fc 100644 --- a/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml +++ b/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="perm prefs" title="PERMISSIONS DE CHARGEMENT PAR DÉFAUT"> +<floater name="perm prefs" title="DROITS DE CHARGEMENT PAR DÉFAUT"> <panel label="Droits" name="permissions"> <button label="?" label_selected="?" name="help"/> <check_box label="Partager avec le groupe" name="share_with_group"/> diff --git a/indra/newview/skins/default/xui/fr/floater_preview_texture.xml b/indra/newview/skins/default/xui/fr/floater_preview_texture.xml index 433dc944cf5b3db4aeb9a51d56cb79afa894feaa..9fc9d1402647202b97a381a00423f699771975cd 100644 --- a/indra/newview/skins/default/xui/fr/floater_preview_texture.xml +++ b/indra/newview/skins/default/xui/fr/floater_preview_texture.xml @@ -28,7 +28,7 @@ <combo_item name="10:7" tool_tip="Petites annonces, repères"> 10:7 </combo_item> - <combo_item name="3:2" tool_tip="À propos des terrains"> + <combo_item name="3:2" tool_tip="À propos du terrain"> 3:2 </combo_item> <combo_item name="16:10"> diff --git a/indra/newview/skins/default/xui/fr/floater_sys_well.xml b/indra/newview/skins/default/xui/fr/floater_sys_well.xml index 47b761aed96b3d94af02aa6ce036e43a5f9c4a94..dbdd32974c6d7808683dcc66786c40c9b67fad8e 100644 --- a/indra/newview/skins/default/xui/fr/floater_sys_well.xml +++ b/indra/newview/skins/default/xui/fr/floater_sys_well.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="notification_chiclet" title="NOTIFICATIONS"> +<floater name="sys_well_window" title="NOTIFICATIONS"> <string name="title_im_well_window"> CONVERSATIONS </string> diff --git a/indra/newview/skins/default/xui/fr/floater_tools.xml b/indra/newview/skins/default/xui/fr/floater_tools.xml index 64722ff1a7d585eb30dae57508054ab20f426f88..1d9d39596078e682c484a517e5f794392daf633e 100644 --- a/indra/newview/skins/default/xui/fr/floater_tools.xml +++ b/indra/newview/skins/default/xui/fr/floater_tools.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="toolbox floater" short_title="OUTILS DE CONSTRUCTION" title=""> +<floater name="toolbox floater" short_title="OUTILS POUR LA CONSTRUCTION" title=""> <floater.string name="status_rotate"> Pour faire tourner l'objet, faîtes glisser les bandes de couleur. </floater.string> @@ -61,7 +61,7 @@ <radio_item label="Bouger" name="radio position"/> <radio_item label="Pivoter (Ctrl)" name="radio rotate"/> <radio_item label="Étirer (Ctrl+Maj)" name="radio stretch"/> - <radio_item label="Sélectionner une face" name="radio select face"/> + <radio_item label="Choisir une face" name="radio select face"/> </radio_group> <check_box label="Modification liée" name="checkbox edit linked parts"/> <text name="RenderingCost" tool_tip="Affiche le coût du rendu calculé pour cet objet"> @@ -96,7 +96,7 @@ <check_box initial_value="true" label="Centrer" name="checkbox copy centers"/> <check_box label="Pivoter" name="checkbox copy rotates"/> <radio_group name="land_radio_group"> - <radio_item label="Sélectionner le terrain" name="radio select land"/> + <radio_item label="Choisir le terrain" name="radio select land"/> <radio_item label="Aplatir" name="radio flatten"/> <radio_item label="Élever" name="radio raise"/> <radio_item label="Abaisser" name="radio lower"/> @@ -280,7 +280,7 @@ <combo_box.item label="Caoutchouc" name="Rubber"/> </combo_box> <text name="text cut"> - Découpe du tracé (début/fin) + Découpe du tracé (déb./fin) </text> <spinner label="D" name="cut begin"/> <spinner label="F" name="cut end"/> @@ -339,8 +339,8 @@ <text name="text revolutions"> Révolutions </text> - <texture_picker label="Texture du sculptie" name="sculpt texture control" tool_tip="Cliquez pour sélectionner une image"/> - <check_box label="Mirroir" name="sculpt mirror control" tool_tip="Inverse le sculptie le long de l'axe X"/> + <texture_picker label="Texture de la sculptie" name="sculpt texture control" tool_tip="Cliquez pour sélectionner une image"/> + <check_box label="Mirroir" name="sculpt mirror control" tool_tip="Inverse la sculptie le long de l'axe X"/> <check_box label="A l'envers" name="sculpt invert control" tool_tip="Inverse les normales des sculpties, qui apparaissent alors à l'envers"/> <text name="label sculpt type"> Type de raccord @@ -355,7 +355,7 @@ </panel> <panel label="Attributs" name="Features"> <text name="select_single"> - Sélectionnez un prim pour modifier les attributs. + Choisir une prim pour changer les attributs. </text> <text name="edit_object"> Modifier les attributs de l'objet : @@ -474,7 +474,7 @@ <text name="label_area"> Surface : [AREA] m² </text> - <button label="À propos des terrains" label_selected="À propos des terrains" name="button about land" width="142"/> + <button label="À propos du terrain" label_selected="À propos du terrain" name="button about land" width="142"/> <check_box label="Afficher les propriétaires" name="checkbox show owners" tool_tip="Colorier les parcelles en fonction du type de leur propriétaire : Vert = votre terrain Turquoise = le terrain de votre groupe Rouge = appartenant à d'autres Jaune = en vente Mauve = aux enchères Gris = public"/> <text name="label_parcel_modify"> Modifier la parcelle diff --git a/indra/newview/skins/default/xui/fr/floater_tos.xml b/indra/newview/skins/default/xui/fr/floater_tos.xml index 2c8e8bc5bcc9dcad9a3fc7fd904d03a4926f1bac..cdfd26f402cf079eb00a1fffed7a007ce448aca8 100644 --- a/indra/newview/skins/default/xui/fr/floater_tos.xml +++ b/indra/newview/skins/default/xui/fr/floater_tos.xml @@ -9,9 +9,9 @@ <text name="tos_title"> Acceptation des Conditions Générales d'Utilisation </text> - <check_box label="J'accepte les Conditions d'utilisation" name="agree_chk"/> + <check_box label="J'accepte les Conditions d'utilisation et le Règlement sur le respect de la vie privée" name="agree_chk"/> <text name="tos_heading"> - Veuillez lire attentivement les Conditions d'utilisation suivantes. Pour vous connecter à [SECOND_LIFE], vous devez accepter l'accord. + Veuillez lire attentivement les Conditions d'utilisation et le Règlement sur le respect de la vie privée suivants. Vous devez les accepter pour pouvoir vous connecter à [SECOND_LIFE]. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/fr/floater_water.xml b/indra/newview/skins/default/xui/fr/floater_water.xml index 6d697b40d30de19149f451c4813777fff72ea61b..96723b0fe6e287caf7ab17d582b06b130ed2515b 100644 --- a/indra/newview/skins/default/xui/fr/floater_water.xml +++ b/indra/newview/skins/default/xui/fr/floater_water.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Water Floater" title="ÉDITEUR D'EAU AVANCÉE"> +<floater name="Water Floater" title="ÉDITEUR D'EAU AVANCÉ"> <floater.string name="WLDefaultWaterNames"> Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez </floater.string> <text name="KeyFramePresetsText" width="120"> - Préréglages eau : + Préréglages : </text> <button label="Nouveau" label_selected="Nouveau" name="WaterNewPreset"/> <button label="Enregistrer" label_selected="Enregistrer" left_delta="75" name="WaterSavePreset" width="75"/> @@ -34,7 +34,7 @@ Décalage Fresnel </text> <text name="DensMultText"> - Réfraction au dessus + Réfraction au-dessus </text> <text name="WaterScaleBelowText"> Réfraction en dessous diff --git a/indra/newview/skins/default/xui/fr/floater_windlight_options.xml b/indra/newview/skins/default/xui/fr/floater_windlight_options.xml index 9f93302b71b3a4d021c6a814cc6b56dd72383479..74f1697449ecda67722ce151672354bc4a61c5bb 100644 --- a/indra/newview/skins/default/xui/fr/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/fr/floater_windlight_options.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="WindLight floater" title="ÉDITEUR DE CIEL AVANCÉ" width="706"> <text name="KeyFramePresetsText"> - Préréglages ciel : + Préréglages : </text> <button label="Nouveau" label_selected="Nouveau" name="WLNewPreset"/> <button label="Enregistrer" label_selected="Enregistrer" left_delta="75" name="WLSavePreset" width="75"/> diff --git a/indra/newview/skins/default/xui/fr/floater_world_map.xml b/indra/newview/skins/default/xui/fr/floater_world_map.xml index f8e1926586210b14f2264e5a2cc6e3a29268ac44..4d500857eab728284348837ddee2ec09a40de965 100644 --- a/indra/newview/skins/default/xui/fr/floater_world_map.xml +++ b/indra/newview/skins/default/xui/fr/floater_world_map.xml @@ -20,7 +20,7 @@ Vente de terrains </text> <text name="by_owner_label"> - par le propriétaire + propriétaire </text> <text name="auction_label"> enchères diff --git a/indra/newview/skins/default/xui/fr/menu_avatar_self.xml b/indra/newview/skins/default/xui/fr/menu_avatar_self.xml index e370e8d3b80b83bb233069a9de1d9dbae970e81f..c8643708da0644575ef19441f0fc4ab54a520f86 100644 --- a/indra/newview/skins/default/xui/fr/menu_avatar_self.xml +++ b/indra/newview/skins/default/xui/fr/menu_avatar_self.xml @@ -10,8 +10,8 @@ <menu_item_call label="Chaussettes" name="Socks"/> <menu_item_call label="Veste" name="Jacket"/> <menu_item_call label="Gants" name="Gloves"/> - <menu_item_call label="Sous-vêtements (homme)" name="Self Undershirt"/> - <menu_item_call label="Sous-vêtements (femme)" name="Self Underpants"/> + <menu_item_call label="Débardeur" name="Self Undershirt"/> + <menu_item_call label="Caleçon" name="Self Underpants"/> <menu_item_call label="Tatouage" name="Self Tattoo"/> <menu_item_call label="Alpha" name="Self Alpha"/> <menu_item_call label="Tous les habits" name="All Clothes"/> diff --git a/indra/newview/skins/default/xui/fr/menu_inventory_add.xml b/indra/newview/skins/default/xui/fr/menu_inventory_add.xml index 0e5abdad0ab80cca161a301f4206380b4e450bb1..57b0a768c207a852810568bab1fffd35df8c2c70 100644 --- a/indra/newview/skins/default/xui/fr/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/fr/menu_inventory_add.xml @@ -18,8 +18,8 @@ <menu_item_call label="Nouvelle veste" name="New Jacket"/> <menu_item_call label="Nouvelle jupe" name="New Skirt"/> <menu_item_call label="Nouveaux gants" name="New Gloves"/> - <menu_item_call label="Nouveaux sous-vêtements (homme)" name="New Undershirt"/> - <menu_item_call label="Nouveaux sous-vêtements (femme)" name="New Underpants"/> + <menu_item_call label="Nouveau débardeur" name="New Undershirt"/> + <menu_item_call label="Nouveau caleçon" name="New Underpants"/> <menu_item_call label="Nouvel alpha" name="New Alpha"/> <menu_item_call label="Nouveau tatouage" name="New Tattoo"/> </menu> diff --git a/indra/newview/skins/default/xui/fr/menu_land.xml b/indra/newview/skins/default/xui/fr/menu_land.xml index 80cc49aa42ffa8f0c818c59a9d6c5939a71eba93..b84daee3ae90862a9994a5b34b6420fc6b680a4f 100644 --- a/indra/newview/skins/default/xui/fr/menu_land.xml +++ b/indra/newview/skins/default/xui/fr/menu_land.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Land Pie"> - <menu_item_call label="À propos des terrains" name="Place Information..."/> + <menu_item_call label="À propos du terrain" name="Place Information..."/> <menu_item_call label="M'asseoir ici" name="Sit Here"/> <menu_item_call label="Acheter ce terrain" name="Land Buy"/> <menu_item_call label="Acheter un pass" name="Land Buy Pass"/> diff --git a/indra/newview/skins/default/xui/fr/menu_mini_map.xml b/indra/newview/skins/default/xui/fr/menu_mini_map.xml index a9facb2c30caff400781d1f4f303af2de201c627..9dc40af5027e112dd8f64ffcfe0e0f2e417f76e2 100644 --- a/indra/newview/skins/default/xui/fr/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/fr/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom rapproché" name="Zoom Close"/> <menu_item_call label="Zoom moyen" name="Zoom Medium"/> <menu_item_call label="Zoom éloigné" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/fr/menu_profile_overflow.xml b/indra/newview/skins/default/xui/fr/menu_profile_overflow.xml index 58bd16064a19af5a22fee6a105f98d8aae040c3a..ddf898b79164bd68d3234516fe68f0f86fa6a047 100644 --- a/indra/newview/skins/default/xui/fr/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/fr/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Carte" name="show_on_map"/> <menu_item_call label="Payer" name="pay"/> <menu_item_call label="Partager" name="share"/> <menu_item_call label="Ignorer" name="block"/> diff --git a/indra/newview/skins/default/xui/fr/menu_viewer.xml b/indra/newview/skins/default/xui/fr/menu_viewer.xml index 5925d28565cceec5134706b967bf33661436ca88..b8a3b6510125a34083acac4e6805aad14e3f26ba 100644 --- a/indra/newview/skins/default/xui/fr/menu_viewer.xml +++ b/indra/newview/skins/default/xui/fr/menu_viewer.xml @@ -276,7 +276,7 @@ <menu_item_check label="Atlas des textures" name="Texture Atlas"/> <menu_item_check label="Rendu des lumières jointes" name="Render Attached Lights"/> <menu_item_check label="Rendu des particules jointes" name="Render Attached Particles"/> - <menu_item_check label="Hover Glow Objects" name="Hover Glow Objects"/> + <menu_item_check label="Objets en surbrillance avec le pointeur" name="Hover Glow Objects"/> </menu> <menu label="Réseau" name="Network"> <menu_item_check label="Pauser l'avatar" name="AgentPause"/> @@ -296,7 +296,7 @@ <menu_item_call label="Arrêter l'enregistrement" name="Stop Record"/> </menu> <menu label="Monde" name="World"> - <menu_item_check label="Sim Sun Override" name="Sim Sun Override"/> + <menu_item_check label="Ignorer les paramètres du soleil de la sim" name="Sim Sun Override"/> <menu_item_check label="Balise animée" name="Cheesy Beacon"/> <menu_item_check label="Météo fixe" name="Fixed Weather"/> <menu_item_call label="Dump Region Object Cache" name="Dump Region Object Cache"/> @@ -369,14 +369,14 @@ <menu label="Admin" name="Admin"> <menu label="Object"> <menu_item_call label="Prendre une copie" name="Take Copy"/> - <menu_item_call label="Forcer le propriétaire sur moi" name="Force Owner To Me"/> + <menu_item_call label="Téléporter le propriétaire" name="Force Owner To Me"/> <menu_item_call label="Forcer la permission du propriétaire" name="Force Owner Permissive"/> <menu_item_call label="Supprimer" name="Delete"/> <menu_item_call label="Verrouiller" name="Lock"/> <menu_item_call label="Obtenir les ID d'actifs" name="Get Assets IDs"/> </menu> <menu label="Parcelle" name="Parcel"> - <menu_item_call label="Forcer le propriétaire sur moi" name="Owner To Me"/> + <menu_item_call label="Téléporter le propriétaire" name="Owner To Me"/> <menu_item_call label="Définir sur le contenu Linden" name="Set to Linden Content"/> <menu_item_call label="Réclamer un terrain public" name="Claim Public Land"/> </menu> @@ -396,8 +396,8 @@ <menu_item_call label="Chaussettes" name="Socks"/> <menu_item_call label="Veste" name="Jacket"/> <menu_item_call label="Gants" name="Gloves"/> - <menu_item_call label="Sous-vêtements (homme)" name="Menu Undershirt"/> - <menu_item_call label="Sous-vêtements (femme)" name="Menu Underpants"/> + <menu_item_call label="Débardeur" name="Menu Undershirt"/> + <menu_item_call label="Caleçon" name="Menu Underpants"/> <menu_item_call label="Jupe" name="Skirt"/> <menu_item_call label="Alpha" name="Alpha"/> <menu_item_call label="Tatouage" name="Tattoo"/> 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 fc5e7ad6592c8c53aa81f37a13e96da4b6265572..3a7ff979ee5826ce3ed64052a7c91fc3e1e859e9 100644 --- a/indra/newview/skins/default/xui/fr/mime_types_linux.xml +++ b/indra/newview/skins/default/xui/fr/mime_types_linux.xml @@ -41,7 +41,7 @@ Cette parcelle propose du contenu audio </tooltip> <playtip name="audio_playtip"> - Jouer le contenu audio qui se trouve ici + Lire le contenu audio qui se trouve ici </playtip> </widgetset> <scheme name="rtsp"> 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 fc5e7ad6592c8c53aa81f37a13e96da4b6265572..3a7ff979ee5826ce3ed64052a7c91fc3e1e859e9 100644 --- a/indra/newview/skins/default/xui/fr/mime_types_mac.xml +++ b/indra/newview/skins/default/xui/fr/mime_types_mac.xml @@ -41,7 +41,7 @@ Cette parcelle propose du contenu audio </tooltip> <playtip name="audio_playtip"> - Jouer le contenu audio qui se trouve ici + Lire le contenu audio qui se trouve ici </playtip> </widgetset> <scheme name="rtsp"> diff --git a/indra/newview/skins/default/xui/fr/panel_classified_info.xml b/indra/newview/skins/default/xui/fr/panel_classified_info.xml index e064846c484513745428ec378da0df30a8ceea2d..e4aecfdfc089996d808ae648dee82ed32a183dd8 100644 --- a/indra/newview/skins/default/xui/fr/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/fr/panel_classified_info.xml @@ -34,14 +34,14 @@ <text name="creation_date_label" value="Date de création :"/> <text_editor name="creation_date" tool_tip="Date de création" value="[date]"/> <text name="price_for_listing_label" value="Coût de l'annonce :"/> - <text_editor name="price_for_listing" tool_tip="Coût de l'annonce." value="[prix]"/> + <text_editor name="price_for_listing" tool_tip="Coût de l'annonce." value="[price]"/> <layout_stack name="descr_stack"> <layout_panel name="clickthrough_layout_panel"> <text name="click_through_label" value="Clics :"/> - <text_editor name="click_through_text" tool_tip="Parcourir les données en cliquant" value="[clics]"/> + <text_editor name="click_through_text" tool_tip="Parcourir les données en cliquant" value="[clicks]"/> </layout_panel> <layout_panel name="price_layout_panel"> - <text name="auto_renew_label" value="Renouvellement automatique :"/> + <text name="auto_renew_label" value="Renouv. auto :"/> <text name="auto_renew" value="Activé"/> </layout_panel> <layout_panel name="descr_layout_panel"> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_classified.xml b/indra/newview/skins/default/xui/fr/panel_edit_classified.xml index 9ea7ff8122f52071e0dfd2cfb64bccb74b598eb4..2e2b848c93ab6fe61f1538b665734c0a6c4902b4 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_classified.xml @@ -38,7 +38,7 @@ </icons_combo_box> <text name="price_for_listing_label" value="Coût de l'annonce :"/> <spinner label="L$" name="price_for_listing" tool_tip="Coût de l'annonce." value="50"/> - <check_box label="Renouvellement automatique toutes les semaines" name="auto_renew"/> + <check_box label="Renouvellement auto toutes les semaines" name="auto_renew"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_gloves.xml b/indra/newview/skins/default/xui/fr/panel_edit_gloves.xml index 73e136ade68082fad30a73f5a10f6f2fb3fde92b..b1a437497df10256175b3f80f4f935bdb831d6a3 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_gloves.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_gloves.xml @@ -2,7 +2,7 @@ <panel name="edit_gloves_panel"> <panel name="avatar_gloves_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="gloves_main_tab" title="Gants"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_jacket.xml b/indra/newview/skins/default/xui/fr/panel_edit_jacket.xml index cee44eb79501914e59308ddbf10011855b1dae72..b757f60b18ecc8292062821a4c5073b17b9bb4c9 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_jacket.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_jacket.xml @@ -3,7 +3,7 @@ <panel name="avatar_jacket_color_panel"> <texture_picker label="Tissu (haut)" name="Upper Fabric" tool_tip="Cliquez pour sélectionner une image"/> <texture_picker label="Tissu (bas)" name="Lower Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="jacket_main_tab" title="Veste"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_pants.xml b/indra/newview/skins/default/xui/fr/panel_edit_pants.xml index 71d82c817f8e65c7ba3b1800a92adfeabec631f7..0cebe1e76a5091d2b958ce376573024dda59c121 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_pants.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_pants.xml @@ -2,7 +2,7 @@ <panel name="edit_pants_panel"> <panel name="avatar_pants_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="pants_main_tab" title="Pantalon"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_pick.xml b/indra/newview/skins/default/xui/fr/panel_edit_pick.xml index f23452976441e0a5d287687c65773d10cf9520b0..0bbcbe833fb478f3ab9525e62b06324bd66740ee 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Modifier la préférence" name="panel_edit_pick"> + <panel.string name="location_notice"> + (mise à jour après enregistrement) + </panel.string> <text name="title"> Modifier la préférence </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Enregistrer [WHAT]" name="save_changes_btn"/> + <button label="Enregistrer" name="save_changes_btn"/> <button label="Annuler" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_profile.xml b/indra/newview/skins/default/xui/fr/panel_edit_profile.xml index 7c8365fdee9a2fd0fdd443abb5a051c065061b4a..4be12054df8e11fdf2619af4e1e09f8020ee9849 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_profile.xml @@ -40,7 +40,7 @@ Page d'accueil : </text> <line_editor name="homepage_edit" value="http://"/> - <check_box label="Afficher dans les résultats de recherche" name="show_in_search_checkbox"/> + <check_box label="Afficher avec la recherche" name="show_in_search_checkbox"/> <text name="title_acc_status_text" value="Mon compte :"/> <text_editor name="acc_status_text" value="Résident. Aucune info de paiement enregistrée."/> <text name="my_account_link" value="[[URL] Accéder à ma Page d'accueil]"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_shirt.xml b/indra/newview/skins/default/xui/fr/panel_edit_shirt.xml index cf28cd8c1e4b44a8a95dc548dac01166cad28988..d6035415d8cb246eadb5512badbaeccf3144f470 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_shirt.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_shirt.xml @@ -2,7 +2,7 @@ <panel name="edit_shirt_panel"> <panel name="avatar_shirt_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="shirt_main_tab" title="Chemise"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_shoes.xml b/indra/newview/skins/default/xui/fr/panel_edit_shoes.xml index a8e0910a15928a6ee7d4c717de371e9907be9d7b..ef6d72629c4e2d547bb6e9d6469ff67d5c928197 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_shoes.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_shoes.xml @@ -2,7 +2,7 @@ <panel name="edit_shoes_panel"> <panel name="avatar_shoes_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="shoes_main_tab" title="Chaussures"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_skirt.xml b/indra/newview/skins/default/xui/fr/panel_edit_skirt.xml index e9784b9510d1fe808ad1cc5177ae5da515271f0f..1250c7819d5071cf5ede7c6b5f1a59d0497aa3f6 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_skirt.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_skirt.xml @@ -2,7 +2,7 @@ <panel name="edit_skirt_panel"> <panel name="avatar_skirt_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="skirt_main_tab" title="Jupe"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_socks.xml b/indra/newview/skins/default/xui/fr/panel_edit_socks.xml index 6fc6a3dc778861ed3b8c55419ade88ee024dd167..bcd69b7dc5b801d97c779c6695f3d0985821f25b 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_socks.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_socks.xml @@ -2,7 +2,7 @@ <panel name="edit_socks_panel"> <panel name="avatar_socks_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="socks_main_tab" title="Chaussettes"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_underpants.xml b/indra/newview/skins/default/xui/fr/panel_edit_underpants.xml index 90dcae18ec53594da554e7a8dcd827b1e21e8fa6..dd2670bd7569430c74b22830cb3559e0af546032 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_underpants.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_underpants.xml @@ -2,7 +2,7 @@ <panel name="edit_underpants_panel"> <panel name="avatar_underpants_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="underpants_main_tab" title="Caleçon"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_undershirt.xml b/indra/newview/skins/default/xui/fr/panel_edit_undershirt.xml index 950cdd7639c713fb08671f16adb483a7bf673140..93a08f11891bb198982e60565f038a29745777f7 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_undershirt.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_undershirt.xml @@ -2,7 +2,7 @@ <panel name="edit_undershirt_panel"> <panel name="avatar_undershirt_color_panel"> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image"/> - <color_swatch label="Couleur/Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> + <color_swatch label="Coul./Teinte" name="Color/Tint" width="80" tool_tip="Cliquez pour ouvrir le sélecteur de couleurs"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="undershirt_main_tab" title="Débardeur"/> diff --git a/indra/newview/skins/default/xui/fr/panel_edit_wearable.xml b/indra/newview/skins/default/xui/fr/panel_edit_wearable.xml index 75b6c044f6709e4957606d47c086fc80c3d37cfd..1efc9b00a4248187531a531d9ae0b9bb9ab8a93c 100644 --- a/indra/newview/skins/default/xui/fr/panel_edit_wearable.xml +++ b/indra/newview/skins/default/xui/fr/panel_edit_wearable.xml @@ -34,10 +34,10 @@ Modification des gants </string> <string name="edit_undershirt_title"> - Modification des sous-vêtements (homme) + Modification du débardeur </string> <string name="edit_underpants_title"> - Modification des sous-vêtements (femme) + Modification du caleçon </string> <string name="edit_alpha_title"> Modification du masque alpha @@ -79,10 +79,10 @@ Gants : </string> <string name="undershirt_desc_text"> - Sous-vêtements (homme) : + Débardeur : </string> <string name="underpants_desc_text"> - Sous-vêtements (femme) : + Caleçon : </string> <string name="alpha_desc_text"> Masque alpha : diff --git a/indra/newview/skins/default/xui/fr/panel_login.xml b/indra/newview/skins/default/xui/fr/panel_login.xml index 209a803e0711e446cb134a4298f90d1952055997..8569a544fa57fced23a7e8e1076258a38425ee2b 100644 --- a/indra/newview/skins/default/xui/fr/panel_login.xml +++ b/indra/newview/skins/default/xui/fr/panel_login.xml @@ -21,7 +21,7 @@ </text> <check_box label="Enregistrer" name="remember_check"/> <text name="start_location_text"> - Commencer à : + Lieu de départ : </text> <combo_box name="start_location_combo" width="152"> <combo_box.item label="Dernier emplacement" name="MyLastLocation"/> diff --git a/indra/newview/skins/default/xui/fr/panel_main_inventory.xml b/indra/newview/skins/default/xui/fr/panel_main_inventory.xml index 5faba0133911d7c3fa4bc755b60843d14f16f65e..1a4450cccc9b48d68bbba8bc3c431da860665186 100644 --- a/indra/newview/skins/default/xui/fr/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/fr/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Choses" name="main inventory panel"> - <panel.string name="Title"> - Choses + <panel.string name="ItemcountFetching"> + Récupération de [ITEM_COUNT] objets... [FILTER] </panel.string> - <filter_editor label="Filtrer l'inventaire" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="MON INVENTAIRE" name="All Items"/> - <inventory_panel label="RÉCENT" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Afficher d'autres options"/> - <button name="add_btn" tool_tip="Ajouter un nouvel article"/> - <dnd_button name="trash_btn" tool_tip="Supprimer l'article sélectionné"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] objets [FILTER] + </panel.string> + <text name="ItemcountText"> + Objets : + </text> <menu_bar name="Inventory Menu"> <menu label="Fichier" name="File"> <menu_item_call label="Ouvrir" name="Open"/> @@ -61,4 +57,14 @@ <menu_item_check label="Dossiers système en premier" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filtrer l'inventaire" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="MON INVENTAIRE" name="All Items"/> + <inventory_panel label="RÉCENT" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Afficher d'autres options"/> + <button name="add_btn" tool_tip="Ajouter un nouvel article"/> + <dnd_button name="trash_btn" tool_tip="Supprimer l'article sélectionné"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_media_settings_general.xml b/indra/newview/skins/default/xui/fr/panel_media_settings_general.xml index afd2d9cd8f79dd6337e31445c102e999a6d55000..e048e668104224b1765cf52ed91db91d3b1ef127 100644 --- a/indra/newview/skins/default/xui/fr/panel_media_settings_general.xml +++ b/indra/newview/skins/default/xui/fr/panel_media_settings_general.xml @@ -8,7 +8,7 @@ </text> <line_editor name="home_url" tool_tip="La page d'accueil pour cette source média"/> <text name="preview_label"> - Prévisualiser + Aperçu </text> <text name="current_url_label"> Page actuelle : @@ -20,7 +20,7 @@ <check_box initial_value="false" label="Zoom auto" name="auto_zoom"/> <check_box initial_value="false" label="Lecture auto du média" name="auto_play"/> <text name="media_setting_note"> - Remarque : kes résidents peuvent ignorer ce paramètre + Remarque : les résidents peuvent ignorer ce paramètre </text> <check_box initial_value="false" label="Mise à l'échelle auto du média sur la face de l'objet" name="auto_scale"/> <text name="size_label"> diff --git a/indra/newview/skins/default/xui/fr/panel_media_settings_permissions.xml b/indra/newview/skins/default/xui/fr/panel_media_settings_permissions.xml index 6f6ae035a189bf0bf55740357934fcb5beaa67b9..f456ee1c835559728703b17d60084a936fb9c41a 100644 --- a/indra/newview/skins/default/xui/fr/panel_media_settings_permissions.xml +++ b/indra/newview/skins/default/xui/fr/panel_media_settings_permissions.xml @@ -11,10 +11,10 @@ Mini </combo_item> </combo_box> - <check_box initial_value="false" label="Désactiver la navigation et l'interactivité" name="perms_owner_interact"/> + <check_box initial_value="false" label="Activer la navigation et l'interactivité" name="perms_owner_interact"/> <check_box initial_value="false" label="Afficher la barre de contrôles" name="perms_owner_control"/> - <check_box initial_value="false" label="Désactiver la navigation et l'interactivité" name="perms_group_interact"/> + <check_box initial_value="false" label="Activer la navigation et l'interactivité" name="perms_group_interact"/> <check_box initial_value="false" label="Afficher la barre de contrôles" name="perms_group_control"/> - <check_box initial_value="false" label="Désactiver la navigation et l'interactivité" name="perms_anyone_interact"/> + <check_box initial_value="false" label="Activer la navigation et l'interactivité" name="perms_anyone_interact"/> <check_box initial_value="false" label="Afficher la barre de contrôles" name="perms_anyone_control"/> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_nearby_media.xml b/indra/newview/skins/default/xui/fr/panel_nearby_media.xml index 71e65232aa0b26a4cd5921b7dfe4825652c9d144..ef5a42555e2987595364e5ceef32effa611f7734 100644 --- a/indra/newview/skins/default/xui/fr/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/fr/panel_nearby_media.xml @@ -13,16 +13,23 @@ (lecture en cours) </string> <panel name="minimized_controls"> - <button label="Tout arrêter" name="all_nearby_media_disable_btn" tool_tip="Désactiver tous les médias près de vous"/> - <button label="Tout lancer" name="all_nearby_media_enable_btn" tool_tip="Activer tous les médias près de vous"/> + <button label="Arrêter" name="all_nearby_media_disable_btn" tool_tip="Désactiver tous les médias près de vous"/> + <button label="Lire" name="all_nearby_media_enable_btn" tool_tip="Activer tous les médias près de vous"/> <button name="open_prefs_btn" tool_tip="Ouvrir les préférences de média"/> <button label="Plus >>" label_selected="Moins <<" name="more_less_btn" tool_tip="Options avancées"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + Médias proches + </text> + <text name="show"> + Voir : + </text> <combo_box name="show_combo"> <combo_box.item label="Tout" name="All"/> - <combo_box.item label="Dans cette parcelle" name="WithinParcel"/> + <combo_box.item label="Sur cette parcelle" name="WithinParcel"/> <combo_box.item label="En dehors de la parcelle" name="OutsideParcel"/> + <combo_box.item label="Sur les autres avatars" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="Proximité" name="media_proximity"/> @@ -31,19 +38,19 @@ <scroll_list.columns label="Nom" name="media_name"/> <scroll_list.columns label="Débogage" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> <button name="stop_btn" tool_tip="Arrêter le média sélectionné"/> </layout_panel> <layout_panel name="play"> - <button name="play_btn" tool_tip="Jouer le média sélectionné"/> + <button name="play_btn" tool_tip="Lire le média sélectionné"/> </layout_panel> <layout_panel name="pause"> - <button name="pause_btn" tool_tip="Pauser le média sélectionné"/> + <button name="pause_btn" tool_tip="Suspendre la lecture du média sélectionné"/> </layout_panel> <layout_panel name="volume_slider_ctrl"> - <slider_bar initial_value="0.5" name="volume_slider" tool_tip="Volume audio pour le média sélectionné"/> + <slider_bar initial_value="0.5" name="volume_slider" tool_tip="Volume audio du média sélectionné"/> </layout_panel> <layout_panel name="mute"> <button name="mute_btn" tool_tip="Couper l'audio sur le média sélectionné"/> diff --git a/indra/newview/skins/default/xui/fr/panel_place_profile.xml b/indra/newview/skins/default/xui/fr/panel_place_profile.xml index f2bdb3d745ab89b5e992605afd573ab6acf90715..598e94166e88fe3e175145342f99f299f1b418d0 100644 --- a/indra/newview/skins/default/xui/fr/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/fr/panel_place_profile.xml @@ -18,16 +18,16 @@ <string name="all_residents_text" value="Tous les résidents"/> <string name="group_text" value="Groupe"/> <string name="can_resell"> - Le terrain acheté dans cette région peut être revendu. + Le terrain acheté dans la région peut être revendu. </string> <string name="can_not_resell"> - Le terrain acheté dans cette région ne peut pas être revendu. + Le terrain acheté dans la région ne peut pas être revendu. </string> <string name="can_change"> - Le terrain acheté dans cette région peut être fusionné ou divisé. + Le terrain acheté dans la région peut être fusionné ou divisé. </string> <string name="can_not_change"> - Le terrain acheté dans cette région ne peut pas être fusionné ou divisé. + Le terrain acheté dans la région ne peut être fusionné ou divisé. </string> <string name="server_update_text"> Les informations sur le lieu ne sont pas disponibles sans mise à jour du serveur. diff --git a/indra/newview/skins/default/xui/fr/panel_places.xml b/indra/newview/skins/default/xui/fr/panel_places.xml index f740dcd32610a912aad46f49d69e127c02d292e3..92b0a6c1dbb9bf28b996984845acedc3781cc62a 100644 --- a/indra/newview/skins/default/xui/fr/panel_places.xml +++ b/indra/newview/skins/default/xui/fr/panel_places.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Lieux" name="places panel"> <string name="landmarks_tab_title" value="MES REPÈRES"/> - <string name="teleport_history_tab_title" value="HISTORIQUE DES TÉLÉPORTATIONS"/> - <filter_editor label="Filtrer Mes lieux" name="Filter"/> + <string name="teleport_history_tab_title" value="HISTORIQUE DES TÉLÉP."/> + <filter_editor label="Filtrer les endroits" name="Filter"/> <panel name="button_panel"> <button label="Téléporter" name="teleport_btn" tool_tip="Me téléporter jusqu'à la zone sélectionnée"/> <button label="Carte" name="map_btn"/> diff --git a/indra/newview/skins/default/xui/fr/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/fr/panel_preferences_advanced.xml index b47ed4bd8b84321abdfe13aaf45b11c38076de86..f8ecfbedac17bf6be964c95148c56de5b2ef79b2 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + Bouton central de la souris + </panel.string> <slider label="Angle de vue" name="camera_fov"/> <slider label="Distance" name="camera_offset_scale"/> <text name="heading2"> diff --git a/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml b/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml index 087bba79ec367a3032487b3ca5f8cfcd3ffc9281..64635fbac0a7330474989632452bf26077a44067 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml @@ -4,9 +4,9 @@ Taille de la police : </text> <radio_group name="chat_font_size"> - <radio_item label="Moins" name="radio" value="0"/> + <radio_item label="Petite" name="radio" value="0"/> <radio_item label="Moyenne" name="radio2" value="1"/> - <radio_item label="Plus" name="radio3" value="2"/> + <radio_item label="Grande" name="radio3" value="2"/> </radio_group> <text name="font_colors"> Couleurs de police : @@ -46,6 +46,12 @@ <check_box initial_value="true" label="Jouer l'animation clavier quand vous écrivez" name="play_typing_animation"/> <check_box label="M'envoyer les IM par e-mail une fois déconnecté" name="send_im_to_email"/> <check_box label="Activer l'historique des chats en texte brut" name="plain_text_chat_history"/> + <text name="show_ims_in_label"> + Afficher les IM dans : + </text> + <text name="requires_restart_label"> + (redémarrage requis) + </text> <radio_group name="chat_window" tool_tip="Afficher vos messages instantanés dans plusieurs fenêtres ou dans une seule fenêtre avec plusieurs onglets (redémarrage requis)"> <radio_item label="Plusieurs fenêtres" name="radio" value="0"/> <radio_item label="Onglets" name="radio2" value="1"/> diff --git a/indra/newview/skins/default/xui/fr/panel_preferences_general.xml b/indra/newview/skins/default/xui/fr/panel_preferences_general.xml index c3bbe18a7c91d34211df96a01e40abd30ca1159d..8e8ee26af43228d81b3c039cdc93cf3e99c41824 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_general.xml @@ -44,7 +44,7 @@ <radio_item label="Activé" name="radio2" value="1"/> <radio_item label="Afficher brièvement" name="radio3" value="2"/> </radio_group> - <check_box label="Afficher mon nom" name="show_my_name_checkbox1"/> + <check_box label="Montrer mon nom" name="show_my_name_checkbox1"/> <check_box initial_value="true" label="Affichage en petit" name="small_avatar_names_checkbox"/> <check_box label="Afficher les titres de groupe" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> 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 ecea368c548cf95ec29b4972e517d10f63064498..eae49e781076f11d78c73715db0e384041031bff 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_setup.xml @@ -34,9 +34,12 @@ Web : </text> <radio_group name="use_external_browser"> - <radio_item label="Utiliser le navigateur intégré" name="internal" tool_tip="Utilisez le navigateur intégré pour obtenir de l'aide, ouvrir des liens, etc. Ce navigateur s'ouvre dans [APP_NAME]." value="0"/> <radio_item label="Utiliser mon navigateur (IE, Firefox, Safari)" name="external" tool_tip="Utiliser le navigateur web système par défaut pour l'aide, les liens etc. Non recommandé en mode plein écran." value="1"/> + <radio_item label="Utiliser le navigateur intégré" name="internal" tool_tip="Utilisez le navigateur intégré pour obtenir de l'aide, ouvrir des liens, etc. Ce navigateur s'ouvre dans [APP_NAME]." value=""/> </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"/> + <check_box initial_value="true" label="Activer Javascript" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Activer le proxy Web" name="web_proxy_enabled"/> <text name="Proxy location"> Emplacement du proxy : diff --git a/indra/newview/skins/default/xui/fr/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/fr/panel_prim_media_controls.xml index c7ab31c4b37c131e08eb893ccd210f16ab10615c..f6b9bdcb8163ca1734cebaecb812af56608f1966 100644 --- a/indra/newview/skins/default/xui/fr/panel_prim_media_controls.xml +++ b/indra/newview/skins/default/xui/fr/panel_prim_media_controls.xml @@ -31,7 +31,7 @@ <button name="stop_btn" tool_tip="Arrêter le chargement"/> </layout_panel> <layout_panel name="play"> - <button name="play_btn" tool_tip="Jouer le média"/> + <button name="play_btn" tool_tip="Lire le média"/> </layout_panel> <layout_panel name="pause"> <button name="pause_btn" tool_tip="Pauser le média"/> diff --git a/indra/newview/skins/default/xui/fr/panel_profile.xml b/indra/newview/skins/default/xui/fr/panel_profile.xml index 8cb46419379c378eca9ad12f531420326cae1b24..f801aee312ba648bd813124ffb31d46de2f8eb1d 100644 --- a/indra/newview/skins/default/xui/fr/panel_profile.xml +++ b/indra/newview/skins/default/xui/fr/panel_profile.xml @@ -42,8 +42,8 @@ </layout_panel> <layout_panel name="profile_buttons_panel"> <button label="Devenir amis" name="add_friend" tool_tip="Proposer à un résident de devenir votre ami"/> - <button label="IM" name="im" tool_tip="Ouvrir une session IM" width="30"/> - <button label="Appeler" name="call" tool_tip="Appeler ce résident" width="60"/> + <button label="IM" name="im" tool_tip="Ouvrir une session IM"/> + <button label="Appeler" name="call" tool_tip="Appeler ce résident"/> <button label="Carte" name="show_on_map_btn" tool_tip="Afficher le résident sur la carte"/> <button label="Téléporter" name="teleport" tool_tip="Proposez une téléportation"/> <button label="â–¼" name="overflow_btn" tool_tip="Payer ou partager l'inventaire avec le résident"/> diff --git a/indra/newview/skins/default/xui/fr/panel_region_covenant.xml b/indra/newview/skins/default/xui/fr/panel_region_covenant.xml index cd1d0c48868cdee1e2ad5f0f7da286bdd4b1996e..a30306d116ad3ddf62942895d9872398e01ebe21 100644 --- a/indra/newview/skins/default/xui/fr/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/fr/panel_region_covenant.xml @@ -70,13 +70,12 @@ toutes les parcelles du domaine. Le terrain acheté dans cette région peut être revendu. </string> <string name="can_not_resell"> - Le terrain acheté dans cette région ne peut pas être revendu. + Le terrain acheté dans la région ne peut pas être revendu. </string> <string name="can_change"> - Le terrain acheté dans cette région peut être fusionné ou divisé. + Le terrain acheté dans la région peut être fusionné ou divisé. </string> <string name="can_not_change"> - Le terrain acheté dans cette région ne peut pas être fusionné ou -divisé. + Le terrain acheté dans la région ne peut être fusionné ou divisé. </string> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_region_texture.xml b/indra/newview/skins/default/xui/fr/panel_region_texture.xml index be7ca456f135e5ed64ee77b8fd8acead0be70373..c0b667137a1746c6e6e433d4776b502136b3142f 100644 --- a/indra/newview/skins/default/xui/fr/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/fr/panel_region_texture.xml @@ -43,10 +43,10 @@ Ces valeurs représentent les limites de mélange pour les textures ci-dessus. </text> <text name="height_text_lbl11"> - En mètres, la valeur Bas correspond à la hauteur maximum de la texture n°1 et la valeur Haut correspond à la hauteur minimum de la texture n°4. + En mètres, la valeur Bas correspond à la hauteur max. de la texture n°1 </text> <text name="height_text_lbl12"> - et la valeur Haut correspond à la hauteur minimum de la texture n°4. + et la valeur Haut correspond à la hauteur min. de la texture n°4. </text> <text name="height_text_lbl13"> Nord-est @@ -63,10 +63,10 @@ Ces valeurs représentent les limites de mélange pour les textures ci-dessus. </text> <text name="height_text_lbl15"> - En mètres, la valeur BASSE correspond à la hauteur MAXIMUM de la Texture #1, + La valeur Bas correspond à la hauteur max. de la Texture 1, </text> <text name="height_text_lbl16"> - et la valeur HAUTE correspond à la hauteur MINIMUM de la Texture #4. + et la valeur Haut correspond à la hauteur min. de la Texture 4. </text> <button label="Appliquer" name="apply_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 495810289d84ed687a6b0bd1b3cfc95b2ba3f5d0..c049de48b13d554c091c0bcb78cde49e61638659 100644 --- a/indra/newview/skins/default/xui/fr/role_actions.xml +++ b/indra/newview/skins/default/xui/fr/role_actions.xml @@ -17,21 +17,21 @@ <action_set description="Ces pouvoirs permettent de modifier le profil public du groupe, sa charte et son logo." name="Group Identity"> <action description="Modifier le profil public du groupe" longdescription="Modifiez la charte, le logo et l'affichage dans les résultats de recherche. Vous pouvez faire cela dans la section Général." name="group change identity" value="11"/> </action_set> - <action_set description="Ces pouvoirs incluent les pouvoirs de céder, modifier et vendre les terrains de ce groupe. Pour accéder à la fenêtre À propos des terrains, cliquez sur le sol avec le bouton droit de la souris et sélectionnez À propos des terrains, ou cliquez sur l'icône i dans la barre de navigation." name="Parcel Management"> + <action_set description="Ces pouvoirs incluent les pouvoirs de céder, modifier et vendre les terrains de ce groupe. Pour accéder à la fenêtre À propos du terrain, cliquez sur le sol avec le bouton droit de la souris et sélectionnez À propos du terrain, ou cliquez sur l'icône i dans la barre de navigation." name="Parcel Management"> <action description="Transférer et acheter des parcelles pour le groupe" longdescription="Transférez et achetez des parcelles pour le groupe à partir du menu À propos du terrain > Général." name="land deed" value="12"/> <action description="Abandonner le terrain" longdescription="Abandonnez des parcelles du groupe à Linden Lab. Attention : ce pouvoir autorise l'abandon d'un terrain appartenant au groupe. Ce terrain sera alors définitivement perdu. Assurez-vous de bien comprendre ce pouvoir avant de l'attribuer." name="land release" value="13"/> <action description="Vendre du terrain" longdescription="Vendez des parcelles du groupe. Attention : ce pouvoir autorise la vente d'un terrain appartenant au groupe. Ce terrain sera alors définitivement perdu. Assurez-vous de bien comprendre ce pouvoir avant de l'attribuer." name="land set sale info" value="14"/> <action description="Diviser et fusionner des parcelles" longdescription="Divisez et fusionnez des parcelles. Pour ce faire, cliquez sur le sol avec le bouton droit de la souris, sélectionnez Modifier le terrain et faites glisser la souris sur le terrain pour faire une sélection. Pour diviser une parcelle, sélectionnez ce que vous souhaitez diviser et cliquez sur Sous-diviser. Pour fusionner des parcelles, sélectionnez-en deux ou plus qui sont contiguës et cliquez sur Fusionner." name="land divide join" value="15"/> </action_set> <action_set description="Ces pouvoirs permettent de modifier le nom de la parcelle, son référencement dans la recherche et le lieu de téléportation." name="Parcel Identity"> - <action description="Activez Afficher le lieu dans la recherche et définissez la catégorie" longdescription="Activez Afficher le lieu dans la recherche et définissez la catégorie d'une parcelle dans l'onglet À propos des terrains > Options." name="land find places" value="17"/> - <action description="Modifiez le nom et la description de la parcelle, ainsi que les paramètres d'affichage du lieu dans la recherche" longdescription="Modifiez le nom et la description de la parcelle, ainsi que les paramètres d'affichage du lieu dans la recherche. Pour ce faire, utilisez l'onglet À propos des terrains > Options." name="land change identity" value="18"/> + <action description="Activez Afficher le lieu dans la recherche et définissez la catégorie" longdescription="Activez Afficher le lieu dans la recherche et définissez la catégorie d'une parcelle dans l'onglet À propos du terrain > Options." name="land find places" value="17"/> + <action description="Modifiez le nom et la description de la parcelle, ainsi que les paramètres d'affichage du lieu dans la recherche" longdescription="Modifiez le nom et la description de la parcelle, ainsi que les paramètres d'affichage du lieu dans la recherche. Pour ce faire, utilisez l'onglet À propos du terrain > Options." name="land change identity" value="18"/> <action description="Définir le lieu d'arrivée et le routage des téléportations" longdescription="Définissez le lieu d'arrivée des téléportations et le routage à partir du menu À propos du terrain > Options." name="land set landing point" value="19"/> </action_set> <action_set description="Ces pouvoirs permettent de définir les options de la parcelle concernant la musique, les médias, la création d'objets et le relief." name="Parcel Settings"> <action description="Modifier la musique et les médias" longdescription="Changez la musique et les médias à partir du menu À propos du terrain > Médias." name="land change media" value="20"/> <action description="Changer l'option Modifier le terrain" longdescription="Changez l'option Modifier le terrain à partir du menu À propos du terrain > Options. Attention : ce pouvoir permet de terraformer votre terrain et de placer ou déplacer des plantes Linden. Assurez-vous de bien comprendre ce pouvoir avant de l'attribuer. " name="land edit" value="21"/> - <action description="Changer diverses options du terrain" longdescription="Activez Sécurisé (pas de dégâts), Voler, et autorisez les autres résidents à : modifier le terrain, construire, créer des repères et exécuter des scripts sur les terrains appartenant au groupe dans l'onglet propos des terrains > Options." name="land options" value="22"/> + <action description="Changer diverses options du terrain" longdescription="Activez Sécurisé (pas de dégâts), Voler, et autorisez les autres résidents à : modifier le terrain, construire, créer des repères et exécuter des scripts sur les terrains appartenant au groupe dans l'onglet propos du terrain > Options." name="land options" value="22"/> </action_set> <action_set description="Ces pouvoirs permettent aux membres d'outrepasser les restrictions sur les parcelles du groupe." name="Parcel Powers"> <action description="Toujours autoriser Modifier le terrain" longdescription="Vous pouvez modifier le relief d'une parcelle du groupe, même si l'option est désactivée à partir du menu À propos du terrain > Options." name="land allow edit land" value="23"/> @@ -42,8 +42,8 @@ </action_set> <action_set description="Ces pouvoirs permettent d'autoriser ou d'interdire l'accès à des parcelles du groupe et de figer ou d'expulser des résidents." name="Parcel Access"> <action description="Gérer la liste d'accès à la parcelle" longdescription="Gérez la liste des résidents autorisés sur la parcelle à partir du menu À propos du terrain > Accès." name="land manage allowed" value="29"/> - <action description="Gérer la liste noire de cette parcelle" longdescription="Gérez les listes des résidents bannis des parcelles dans l'onglet À propos des terrains > Accès." name="land manage banned" value="30"/> - <action description="Modifiez les paramètres Vendre des pass à " longdescription="Modifiez les paramètres Vendre des pass à dans l'onglet À propos des terrains > Accès." name="land manage passes" value="31"/> + <action description="Gérer la liste noire de cette parcelle" longdescription="Gérez les listes des résidents bannis des parcelles dans l'onglet À propos du terrain > Accès." name="land manage banned" value="30"/> + <action description="Modifiez les paramètres Vendre des pass à " longdescription="Modifiez les paramètres Vendre des pass à dans l'onglet À propos du terrain > Accès." name="land manage passes" value="31"/> <action description="Expulser et figer des résidents" longdescription="Les membres dans un rôle avec ce pouvoir peuvent se charger des résidents indésirables sur une parcelle appartenant au groupe en cliquant dessus, puis en sélectionnant Expulser ou Figer." name="land admin" value="32"/> </action_set> <action_set description="Ces pouvoirs permettent de renvoyer des objets du groupe et de placer ou déplacer des plantes Linden pour aménager le paysage. Utilisez ce pouvoir avec précaution car les objets renvoyés le sont définitivement." name="Parcel Content"> diff --git a/indra/newview/skins/default/xui/fr/sidepanel_task_info.xml b/indra/newview/skins/default/xui/fr/sidepanel_task_info.xml index cc99b1a07cc3fa3cd1907573b138f047a3f0ab43..c8e76118a1f1db4b27b79934cf805095e4036dd0 100644 --- a/indra/newview/skins/default/xui/fr/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/fr/sidepanel_task_info.xml @@ -100,7 +100,7 @@ <combo_box.item label="Original" name="Original"/> </combo_box> <spinner label="Prix : L$" name="Edit Cost"/> - <check_box label="Afficher dans les résultats de recherche" name="search_check" tool_tip="Permettre aux autres résidents de voir cet objet dans les résultats de recherche"/> + <check_box label="Afficher avec la recherche" name="search_check" tool_tip="Permettre aux autres résidents de voir cet objet dans les résultats de recherche"/> <text name="B:"> B : </text> diff --git a/indra/newview/skins/default/xui/fr/strings.xml b/indra/newview/skins/default/xui/fr/strings.xml index f759f5f41aee3216f633811334c41de7f67e92ce..0ea11bb80f355233493eb680f86455b5cbe16c4c 100644 --- a/indra/newview/skins/default/xui/fr/strings.xml +++ b/indra/newview/skins/default/xui/fr/strings.xml @@ -23,7 +23,22 @@ Détection du matériel... </string> <string name="StartupLoading"> - Chargement + Chargement de [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Vidage du cache... + </string> + <string name="StartupInitializingTextureCache"> + Initialisation du cache des textures... + </string> + <string name="StartupInitializingVFS"> + Initialisation VFS… + </string> + <string name="ProgressRestoring"> + Restauration... + </string> + <string name="ProgressChangingResolution"> + Changement de la résolution... </string> <string name="Fullbright"> Fullbright (Legacy) @@ -88,6 +103,9 @@ <string name="LoginFailedNoNetwork"> Erreur réseau : impossible d'établir la connexion. Veuillez vérifier votre connexion réseau. </string> + <string name="LoginFailed"> + Échec de la connexion. + </string> <string name="Quit"> Quitter </string> @@ -97,6 +115,24 @@ <string name="AgentLostConnection"> Il y a peut-être des problèmes techniques dans cette région. Veuillez vérifier votre connexion Internet. </string> + <string name="SavingSettings"> + Enregistrement des paramètres... + </string> + <string name="LoggingOut"> + Déconnexion... + </string> + <string name="ShuttingDown"> + Arrêt en cours... + </string> + <string name="YouHaveBeenDisconnected"> + Vous avez été déconnecté de la région où vous étiez. + </string> + <string name="SentToInvalidRegion"> + Vous avez été transféré vers une région non valide. + </string> + <string name="TestingDisconnect"> + Test de déconnexion du client + </string> <string name="TooltipPerson"> Personne </string> @@ -151,6 +187,24 @@ <string name="TooltipAgentUrl"> Cliquez pour afficher le profil de ce résident </string> + <string name="TooltipAgentMute"> + Cliquer pour ignorer ce résident + </string> + <string name="TooltipAgentUnmute"> + Cliquer pour ne plus ignorer ce résident + </string> + <string name="TooltipAgentIM"> + Cliquer pour envoyer un IM à ce résident + </string> + <string name="TooltipAgentPay"> + Cliquer pour payer ce résident + </string> + <string name="TooltipAgentOfferTeleport"> + Cliquer pour proposer une téléportation à ce résident + </string> + <string name="TooltipAgentRequestFriend"> + Cliquer pour demander à ce résident d'être votre ami + </string> <string name="TooltipGroupUrl"> Cliquez pour afficher la description de ce groupe </string> @@ -176,12 +230,31 @@ Cliquez pour exécuter la commande secondlife:// command </string> <string name="CurrentURL" value=" URL actuelle : [CurrentURL]"/> + <string name="TooltipPrice" value="[PRICE] L$-"/> <string name="SLurlLabelTeleport"> Me téléporter vers </string> <string name="SLurlLabelShowOnMap"> Afficher la carte pour </string> + <string name="SLappAgentMute"> + Ignorer + </string> + <string name="SLappAgentUnmute"> + Ne plus ignorer + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + Payer + </string> + <string name="SLappAgentOfferTeleport"> + Proposer une téléportation à + </string> + <string name="SLappAgentRequestFriend"> + Demande d'amitié + </string> <string name="BUTTON_CLOSE_DARWIN"> Fermer (⌘W) </string> @@ -335,6 +408,9 @@ <string name="symbolic link"> lien </string> + <string name="symbolic folder link"> + lien du dossier + </string> <string name="AvatarEditingAppearance"> (Apparence en cours de modification) </string> @@ -828,7 +904,7 @@ Appuyez sur ESC pour quitter la vue subjective </string> <string name="InventoryNoMatchingItems"> - Aucun objet correspondant dans l'inventaire. Essayer la [secondlife:///app/search/groups "Recherche"]. + Objet inexistant dans l'inventaire. Voir [secondlife:///app/search/groups "Rechercher"]. </string> <string name="FavoritesNoMatchingItems"> Faites glisser un repère ici pour l'ajouter à vos Favoris. @@ -849,6 +925,7 @@ Aucun contenu </string> <string name="WornOnAttachmentPoint" value=" (porté sur [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (actif)"/> <string name="PermYes"> Oui </string> @@ -948,6 +1025,9 @@ <string name="InvFolder My Outfits"> Mes tenues </string> + <string name="InvFolder Accessories"> + Accessoires + </string> <string name="InvFolder Friends"> Amis </string> @@ -1471,6 +1551,9 @@ <string name="PanelContentsNewScript"> Nouveau script </string> + <string name="PanelContentsTooltip"> + Contenu de l'objet + </string> <string name="BusyModeResponseDefault"> Le résident auquel vous avez envoyé un message est en mode Occupé, ce qui signifie qu'il a demandé à ne pas être dérangé. Votre message restera affiché dans son panneau IM afin qu'il puisse le lire ultérieurement. </string> @@ -1588,7 +1671,10 @@ Annuler </string> <string name="UploadingCosts"> - Charger %s coûte + Le chargement de [NAME] coûte [AMOUNT] L$ + </string> + <string name="BuyingCosts"> + Cet achat coûte [AMOUNT] L$ </string> <string name="UnknownFileExtension"> Extension de fichier inconnue .%s @@ -2272,7 +2358,7 @@ Si ce message persiste, veuillez aller sur la page [SUPPORT_SITE]. Brillant </string> <string name="Glove Fingers"> - Doigts avec gants + Gants avec doigts </string> <string name="Glove Length"> Longueur des gants @@ -3034,7 +3120,7 @@ Si ce message persiste, veuillez aller sur la page [SUPPORT_SITE]. Cheveux lisses </string> <string name="Socks Length"> - Longueur des chaussettes + Longueur </string> <string name="Soulpatch"> Barbichette @@ -3375,4 +3461,120 @@ Si ce message persiste, veuillez aller sur la page [SUPPORT_SITE]. <string name="unread_chat_multiple"> [SOURCES] ont dit quelque chose de nouveau </string> + <string name="paid_you_ldollars"> + [NAME] vous a payé [AMOUNT] L$ + </string> + <string name="you_paid_ldollars"> + Vous avez payé à [AMOUNT] L$ [REASON]. + </string> + <string name="you_paid_ldollars_no_reason"> + Vous avez payé à [NAME] [AMOUNT] L$. + </string> + <string name="you_paid_ldollars_no_name"> + Vous avez payé à [AMOUNT] L$ [REASON]. + </string> + <string name="for a parcel of land"> + pour une parcelle de terrain + </string> + <string name="for a land access pass"> + pour un pass d'accès au terrain + </string> + <string name="for deeding land"> + pour une cession de terrain + </string> + <string name="to create a group"> + pour créer un groupe + </string> + <string name="to join a group"> + pour rejoindre un groupe + </string> + <string name="to upload"> + pour charger + </string> + <string name="giving"> + Donner [AMOUNT] L$ + </string> + <string name="uploading_costs"> + Le chargement coûte [AMOUNT] L$ + </string> + <string name="this_costs"> + Cela coûte [AMOUNT] L$ + </string> + <string name="buying_selected_land"> + Achat du terrain sélectionné pour [AMOUNT] L$ + </string> + <string name="this_object_costs"> + Cet objet coûte [AMOUNT] L$ + </string> + <string name="group_role_everyone"> + Tous + </string> + <string name="group_role_officers"> + Officiers + </string> + <string name="group_role_owners"> + Propriétaires + </string> + <string name="uploading_abuse_report"> + Chargement en cours... + +de l'infraction signalée + </string> + <string name="New Shape"> + Nouvelle silhouette + </string> + <string name="New Skin"> + Nouvelle peau + </string> + <string name="New Hair"> + Nouveaux cheveux + </string> + <string name="New Eyes"> + Nouveaux yeux + </string> + <string name="New Shirt"> + Nouvelle chemise + </string> + <string name="New Pants"> + Nouveau pantalon + </string> + <string name="New Shoes"> + Nouvelles chaussures + </string> + <string name="New Socks"> + Nouvelles chaussettes + </string> + <string name="New Jacket"> + Nouvelle veste + </string> + <string name="New Gloves"> + Nouveaux gants + </string> + <string name="New Undershirt"> + Nouveau débardeur + </string> + <string name="New Underpants"> + Nouveau caleçon + </string> + <string name="New Skirt"> + Nouvelle jupe + </string> + <string name="New Alpha"> + Nouvel alpha + </string> + <string name="New Tattoo"> + Nouveau tatouage + </string> + <string name="Invalid Wearable"> + Objet à porter non valide + </string> + <string name="New Script"> + Nouveau script + </string> + <string name="New Folder"> + Nouveau dossier + </string> + <string name="Contents"> + Contenus + </string> </strings> diff --git a/indra/newview/skins/default/xui/it/floater_about.xml b/indra/newview/skins/default/xui/it/floater_about.xml index a2fcaa63f674e5e529cee494f2044b2f0ef99115..495c24f5e9e822a2dea7cf60b79fc57ee103b2c3 100644 --- a/indra/newview/skins/default/xui/it/floater_about.xml +++ b/indra/newview/skins/default/xui/it/floater_about.xml @@ -1,26 +1,26 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_about" title="Informazioni su [APP_NAME]"> +<floater name="floater_about" title="INFO [CAPITALIZED_APP_NAME]"> <floater.string name="AboutHeader"> [APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL]) [[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]] </floater.string> <floater.string name="AboutCompiler"> - Fatto con [COMPILER] versione [COMPILER_VERSION] + Generato con [COMPILER] versione [COMPILER_VERSION] </floater.string> <floater.string name="AboutPosition"> - Tu sei in [POSITION_0,number,1], [POSITION_1,number,1], [POSITION_2,number,1] a [REGION] ospitata da [HOSTNAME] ([HOSTIP]) + Tu sei [POSITION_0,number,1], [POSITION_1,number,1], [POSITION_2,number,1] in [REGION] located at <nolink>[HOSTNAME]</nolink> ([HOSTIP]) [SERVER_VERSION] [[SERVER_RELEASE_NOTES_URL] [ReleaseNotes]] </floater.string> <floater.string name="AboutSystem"> CPU: [CPU] Memoria: [MEMORY_MB] MB -Versione Sistema Operativo: [OS_VERSION] -Venditore Scheda Grafica: [GRAPHICS_CARD_VENDOR] -Scheda Grafica: [GRAPHICS_CARD] +Versione sistema operativo: [OS_VERSION] +Venditore scheda grafica: [GRAPHICS_CARD_VENDOR] +Scheda grafica: [GRAPHICS_CARD] </floater.string> <floater.string name="AboutDriver"> - Versione Driver Scheda Grafica: [GRAPHICS_DRIVER_VERSION] + Versione driver Windows per grafica: [GRAPHICS_DRIVER_VERSION] </floater.string> <floater.string name="AboutLibs"> Versione OpenGL: [OPENGL_VERSION] @@ -35,7 +35,7 @@ Versione Vivox: [VIVOX_VERSION] (nessuno) </floater.string> <floater.string name="AboutTraffic"> - Pacchetti Perduti: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%) + Pacchetti perduti: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%) Informazioni </floater.string> <tab_container name="about_tab"> <panel label="Informazioni" name="support_panel"> @@ -43,13 +43,19 @@ Versione Vivox: [VIVOX_VERSION] </panel> <panel label="Ringraziamenti" name="credits_panel"> <text_editor name="credits_editor"> - Second Life è offerto da Philip, Tessa, Andrew, Cory, James, Ben, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Eve, Hunter, Ian, Jeff, Jennifer, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Avi, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, Bill, Todd, Ryan, Zach, Sarah, Nova, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, Jeska, Torley, Kona, Callum, Charity, Ventrella, Jack, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Teeny, Monroe, Icculus, David, Tess, Lizzie, Patsy, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Satoko, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Mogura, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Rohn, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, Katie, Dawn, Katt, Dusty, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Vidtuts, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, Ann, Meredith, Clare, Joy, Praveen, Cody, Edmund, Ruthe, Sirena, Gayathri, Spider, FJ, Davidoff, Tian, Jennie, Louise, Oskar, Landon, Noelle, Jarv, Ingrid, Al, Sommer, Doc, Aria, Huin, Gray, Lili, Vir, DJ, Yang, T, Simone, Maestro, Scott, Charlene, Quixote, Amanda, Susan, Zed, Anne, Enkidu, Esbee, Joroan, Katelin, Roxie, Tay, Scarlet, Kevin, Johnny, Wolfgang, Andren, Bob, Howard, Merov, Rand, Ray, Michon, Newell, Galen, Dessie, Les, Michon, Jenelle, Geo, Siz, Shapiro, Pete, Calyle, Selene, Allen, Phoebe, Goldin, Kimmora, Dakota, Slaton, Lindquist, Zoey, Hari, Othello, Rohit, Sheldon, Petra, Viale, Gordon, Kaye, Pink, Ferny, Emerson, Davy, Bri, Chan, Juan, Robert, Terrence, Nathan, Carl and many others. + Second Life ti è offerto da Philip, Tessa, Andrew, Cory, James, Ben, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Eve, Hunter, Ian, Jeff, Jennifer, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Avi, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, Bill, Todd, Ryan, Zach, Sarah, Nova, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, Jeska, Torley, Kona, Callum, Charity, Ventrella, Jack, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Teeny, Monroe, Icculus, David, Tess, Lizzie, Patsy, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Satoko, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Mogura, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Rohn, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, Katie, Dawn, Katt, Dusty, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Vidtuts, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, Ann, Meredith, Clare, Joy, Praveen, Cody, Edmund, Ruthe, Sirena, Gayathri, Spider, FJ, Davidoff, Tian, Jennie, Louise, Oskar, Landon, Noelle, Jarv, Ingrid, Al, Sommer, Doc, Aria, Huin, Gray, Lili, Vir, DJ, Yang, T, Simone, Maestro, Scott, Charlene, Quixote, Amanda, Susan, Zed, Anne, Enkidu, Esbee, Joroan, Katelin, Roxie, Tay, Scarlet, Kevin, Johnny, Wolfgang, Andren, Bob, Howard, Merov, Rand, Ray, Michon, Newell, Galen, Dessie, Les and many others. - Si ringraziano i seguenti residenti per aver contribuito a rendere questa versione la migliore possibile: able whitman, Adeon Writer, adonaira aabye, Aeron Kohime, Agathos Frascati, Aimee Trescothick, Aleric Inglewood, Alissa Sabre, Aminom Marvin, Angela Talamasca, Aralara Rajal, Armin Weatherwax, Ashrilyn Hayashida, Athanasius Skytower, Aura Dirval, Barney Boomslang, Biancaluce Robbiani, Biker Offcourse, Borg Capalini, Bulli Schumann, catherine pfeffer, Chalice Yao, Corre Porta, Court Goodman, Cummere Mayo, Dale Innis, Darien Caldwell, Darjeeling Schoonhoven, Daten Thielt, dimentox travanti, Dirk Talamasca, Drew Dwi, Duckless Vandyke, Elanthius Flagstaff, Electro Burnstein, emiley tomsen, Escort DeFarge, Eva Rau, Ezian Ecksol, Fire Centaur, Fluf Fredriksson, Francisco Koolhoven, Frontera Thor, Frungi Stastny, Gally Young, gearsawe stonecutter, Gigs Taggart, Gordon Wendt, Gudmund Shepherd, Gypsy Paz, Harleen Gretzky, Henri Beauchamp, Inma Rau, Irene Muni, Iskar Ariantho, Jacek Antonelli, JB Kraft, Jessicka Graves, Joeseph Albanese, Joshua Philgarlic, Khyota Wulluf, kirstenlee Cinquetti, Latif Khalifa, Lex Neva, Lilibeth Andree, Lisa Lowe, Lunita Savira, Loosey Demonia, lum pfohl, Marcos Fonzarelli, MartinRJ Fayray, Marusame Arai, Matthew Dowd, Maya Remblai, McCabe Maxsted, Meghan Dench, Melchoir Tokhes, Menos Short, Michelle2 Zenovka, Mimika Oh, Minerva Memel, Mm Alder, Ochi Wolfe, Omei Turnbull, Pesho Replacement, Phantom Ninetails, phoenixflames kukulcan, Polo Gufler, prez pessoa, princess niven, Prokofy Neva, Qie Niangao, Rem Beattie, RodneyLee Jessop, Saijanai Kuhn, Seg Baphomet, Sergen Davies, Shirley Marquez, SignpostMarv Martin, Sindy Tsure, Sira Arbizu, Skips Jigsaw, Sougent Harrop, Spritely Pixel, Squirrel Wood, StarSong Bright, Subversive Writer, Sugarcult Dagger, Sylumm Grigorovich, Tammy Nowotny, Tanooki Darkes, Tayra Dagostino, Theoretical Chemistry, Thickbrick Sleaford, valerie rosewood, Vex Streeter, Vixen Heron, Whoops Babii, Winter Ventura, Xiki Luik, Yann Dufaux, Yina Yao, Yukinoroh Kamachi, Zolute Infinity, Zwagoth Klaar +Si ringraziano i seguenti residenti per aver contribuito a rendere questa versione la migliore possibile: (in corso) - Per avere successo nel business, sii coraggioso, sii il primo, sii differente. --Henry Marchant + + + + + +Senza dubbio è una mente rara quella che può rendere brillantemente ovvio il finora mai esistito. Dichiarare "Avrei potuto pensare a tutto questo" è molto comune e fuorviante, per il motivo che non l'hanno fatto, e anche questo fatto è assai significativo e rivelativo. + -- Douglas Adams </text_editor> </panel> <panel label="Licenze" name="licenses_panel"> 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 4c82475a6f40fbf33810791786d7ae06a0ccab9e..a61b0584d3f39aa4afb3e325f4086d493c50d96c 100644 --- a/indra/newview/skins/default/xui/it/floater_about_land.xml +++ b/indra/newview/skins/default/xui/it/floater_about_land.xml @@ -1,5 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floaterland" title="INFO SUL TERRENO"> +<floater name="floaterland" title="INFORMAZIONI SUL TERRENO"> + <floater.string name="maturity_icon_general"> + "Parcel_PG_Dark" + </floater.string> + <floater.string name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> <floater.string name="Minutes"> [MINUTES] minuti </floater.string> @@ -10,12 +19,12 @@ [SECONDS] secondi </floater.string> <floater.string name="Remaining"> - restante + rimanenti </floater.string> <tab_container name="landtab"> <panel label="GENERALE" name="land_general_panel"> <panel.string name="new users only"> - Solo ai nuovi residenti + Soltanto nuovi residenti </panel.string> <panel.string name="anyone"> A chiunque @@ -81,10 +90,12 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <text name="Group:"> Gruppo: </text> - <text left="119" name="GroupText" width="227"/> - <button label="Imposta..." label_selected="Imposta..." name="Set..."/> + <text left="119" name="GroupText" width="227"> + Leyla Linden + </text> + <button label="Imposta" name="Set..."/> <check_box label="Permetti cessione al gruppo" left="119" name="check deed" tool_tip="Un funzionario del gruppo può cedere questa terra al gruppo stesso cosicchè essa sarà  supportata dalle terre del gruppo."/> - <button label="Cedi..." label_selected="Cedi..." name="Deed..." tool_tip="Puoi solo offrire terra se sei un funzionario del gruppo selezionato."/> + <button label="Cedi" name="Deed..." tool_tip="Puoi solo offrire terra se sei un funzionario del gruppo selezionato."/> <check_box label="Il proprietario fa un contributo con la cessione" left="119" name="check contrib" tool_tip="Quando la terra è ceduta al gruppo, il proprietario precedente contribuisce con abbastanza allocazione di terra per supportarlo."/> <text name="For Sale:"> In vendita: @@ -126,13 +137,14 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz 0 </text> <button label="Acquista il terreno..." label_selected="Acquista il terreno..." left="130" name="Buy Land..." width="125"/> - <button label="Acquista per il gruppo..." label_selected="Acquista per il gruppo..." name="Buy For Group..."/> + <button label="Informazioni script" name="Scripts..."/> + <button label="Acquista per il gruppo" name="Buy For Group..."/> <button label="Compra pass..." label_selected="Compra pass..." left="130" name="Buy Pass..." tool_tip="Un pass ti da un accesso temporaneo in questo territorio." width="125"/> - <button label="Abbandona la terra..." label_selected="Abbandona la terra..." name="Abandon Land..."/> - <button label="Reclama la terra..." label_selected="Reclama la terra..." name="Reclaim Land..."/> - <button label="Vendita Linden..." label_selected="Vendita Linden..." name="Linden Sale..." tool_tip="La terra deve essere posseduta, con contenuto impostato, e non già messa in asta."/> + <button label="Abbandona la terra" name="Abandon Land..."/> + <button label="Reclama la terra" name="Reclaim Land..."/> + <button label="Vendita Linden" name="Linden Sale..." tool_tip="La terra deve essere posseduta, con contenuto impostato, e non già messa in asta."/> </panel> - <panel label="COVENANT" name="land_covenant_panel"> + <panel label="REGOLAMENTO" name="land_covenant_panel"> <panel.string name="can_resell"> La terra acquistata in questa regione può essere rivenduta. </panel.string> @@ -196,7 +208,7 @@ o suddivisa. La terra in questa regione non può essere unita/suddivisa. </text> </panel> - <panel label="OBJECTS" name="land_objects_panel"> + <panel label="OGGETTI" name="land_objects_panel"> <panel.string name="objects_available_text"> [COUNT] dei [MAX] ([AVAILABLE] disponibili) </panel.string> @@ -207,7 +219,7 @@ o suddivisa. Fattore bonus degli oggetti della regione: [BONUS] </text> <text name="Simulator primitive usage:"> - Uso dei Primative : + Uso dei Prim: </text> <text left="214" name="objects_available" width="230"> [COUNT] dei [MAX] ([AVAILABLE] dsponibili) @@ -231,7 +243,7 @@ o suddivisa. [COUNT] </text> <button label="Mostra" label_selected="Mostra" name="ShowOwner" right="-135" width="60"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOwner..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> + <button label="Restituisci" name="ReturnOwner..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> <text left="14" name="Set to group:" width="180"> Imposta al gruppo: </text> @@ -239,7 +251,7 @@ o suddivisa. [COUNT] </text> <button label="Mostra" label_selected="Mostra" name="ShowGroup" right="-135" width="60"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnGroup..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> + <button label="Restituisci" name="ReturnGroup..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> <text left="14" name="Owned by others:" width="180"> Posseduti da altri: </text> @@ -247,7 +259,7 @@ o suddivisa. [COUNT] </text> <button label="Mostra" label_selected="Mostra" name="ShowOther" right="-135" width="60"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOther..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> + <button label="Restituisci" name="ReturnOther..." right="-10" tool_tip="Restituisci gli oggetti ai loro proprietari." width="119"/> <text left="14" name="Selected / sat upon:" width="193"> Selezionati / sui quali sei sopra: </text> @@ -255,7 +267,7 @@ o suddivisa. [COUNT] </text> <text left="4" name="Autoreturn" width="412"> - Autorestituisci gli oggetti degli altri residenti (minuti, 0 per disabilitata): + Restituzione automatica degli oggetti di altri residenti (minuti, 0 per disattivarla): </text> <line_editor name="clean other time" right="-20"/> <text name="Object Owners:" width="150"> @@ -303,7 +315,7 @@ Solamente terreni più grandi possono essere abilitati nella ricerca. Nessuna spinta (Impostazione regionale) </panel.string> <text name="allow_label"> - Permetti agli altri residenti di: + Permetti ad altri residenti di: </text> <check_box label="Modificare il terreno" name="edit land check" tool_tip="Se spuntato, chiunque può terraformare il tuo terreno. E' preferibile lasciare questo quadrato non spuntato, dato che sarai sempre in grado di modificare il tuo terreno."/> <check_box label="Permetti il volo" name="check fly" tool_tip="Se spuntato, gli altri residenti potranno volare sul tuo terreno. Se non spuntato, potranno solamente arrivare in volo o sorvolare il terreno."/> @@ -327,7 +339,7 @@ Solamente terreni più grandi possono essere abilitati nella ricerca. </text> <check_box label="Sicuro (senza danno)" name="check safe" tool_tip="Se spuntato, imposta il terreno su 'sicuro', disabilitando i danni da combattimento. Se non spuntato, viene abilitato il combattimento a morte."/> <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 nel Cerca (L$30/settimana)" name="ShowDirectoryCheck" tool_tip="Lascia che questa terra sia vista dagli altri nei risultati di ricerca"/> + <check_box label="Mostra luogo nella ricerca (30 L$/settimana)" name="ShowDirectoryCheck" tool_tip="Lascia che questa terra sia vista dagli altri nei risultati di ricerca"/> <combo_box left="282" name="land category with adult" width="140"> <combo_box.item label="Tutte le categorie" name="item0"/> <combo_box.item label="Luogo dei Linden" name="item1"/> @@ -385,10 +397,7 @@ Solamente terreni più grandi possono essere abilitati nella ricerca. Home Page: </text> <line_editor left="97" name="media_url"/> - <button label="Imposta..." label_selected="Imposta..." name="set_media_url" width="63"/> - <text name="CurrentURL:"> - Pagina attuale: - </text> + <button label="Imposta" name="set_media_url"/> <check_box label="Nascondi indirizzo URL Media" left="94" name="hide_media_url" tool_tip="Abilitando questa opzione nasconderai l'indirizzo url dei media a tutte le persone non autorizzate a vedere le informazioni del terreno. Nota che questo non è disponibile per contenuto di tipo HTML."/> <text name="Description:"> Descrizione: @@ -400,9 +409,7 @@ Texture: </text> <texture_picker label="" left="97" name="media texture" tool_tip="Clicca per scegliere un'immagine"/> <text name="replace_texture_help" width="285"> - (Gli oggetti che hanno questa texture applicata -mostreranno il video o la pagina web dopo che avrai -cliccato sulla freccia play.) + Gli oggetti che utilizzano questa texture mostreranno il video o la pagina web dopo aver cliccato sulla freccia di riproduzione. Seleziona la miniatura per scegliere una texture diversa. </text> <check_box label="Auto ridimensiona" left="94" name="media_auto_scale" tool_tip="Spuntando questa opzione, nell'appezzamento il contenuto media si ridimensionerà automaticamente. Potrebbe darsi che appaia un po' più lento e che diminuisca la qualità visiva ma nessun altro riadattamento o allineamento della texture sarà necessario."/> <text left="99" name="media_size" tool_tip="Aumenta grandezza per far vedere meglio i media web, lascia a 0 per impostare il default." width="120"> @@ -420,12 +427,17 @@ Media: <check_box label="Fai ripetere il video" left="265" name="media_loop" tool_tip="Fai ripetere il video continuamente. Quando il video è finito, reinizierà dal principio."/> </panel> <panel label="SUONO" name="land_audio_panel"> - <check_box label="Attiva Voice" name="parcel_enable_voice_channel"/> - <check_box label="Attiva Voice (stabilito dalla Proprietà )" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Nascondi URL" name="hide_music_url" tool_tip="Questa opzione consente di nascondere l'url della musica a chi non è autorizzato a visionare le informazioni di questo parcel."/> + <check_box label="Attiva voce" name="parcel_enable_voice_channel"/> + <check_box label="Attiva voce (stabilito dalla proprietà )" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Limita il chat vocale a questo lotto" name="parcel_enable_voice_channel_local"/> </panel> <panel label="ACCESSO" name="land_access_panel"> <panel.string name="access_estate_defined"> - (Definito dalla Proprietà ) + (Definito dalla proprietà ) + </panel.string> + <panel.string name="allow_public_access"> + Consenti accesso pubblico ([MATURITY]) </panel.string> <panel.string name="estate_override"> Una o più di queste impostazioni sono già impostate a livello regionale @@ -433,12 +445,12 @@ Media: <text name="Limit access to this parcel to:"> Accesso a questo terreno </text> - <check_box label="Permetti Accesso Pubblico [MATURITY]" name="public_access"/> + <check_box label="Consenti l'accesso pubblico [MATURITY]" name="public_access"/> <text name="Only Allow"> - Accesso ristretto ai Residenti verificati con: + Consenti l'accesso soltanto ai residenti verificati tramite: </text> - <check_box label="Informazioni di pagamento on File [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Manda via residenti non identificati."/> - <check_box label="Verifica dell'età [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Espelli residenti che non hanno verificato l'età . Vedi [SUPPORT_SITE] per maggiori informazioni."/> + <check_box label="Informazioni di pagamento in archivio [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Espelli i residenti non identificati."/> + <check_box label="Verifica dell'età [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Espelli i residenti che non hanno la loro età verificata. Vedi [SUPPORT_SITE] per maggiori informazioni."/> <check_box label="Permetti accesso al gruppo: [GROUP]" name="GroupCheck" tool_tip="Imposta il gruppo nel pannello generale."/> <check_box label="Vendi pass a:" name="PassCheck" tool_tip="Permetti in questo terreno l'accesso temporaneo"/> <combo_box name="pass_combo"> diff --git a/indra/newview/skins/default/xui/it/floater_activeim.xml b/indra/newview/skins/default/xui/it/floater_activeim.xml index d19882fa4887fa4b4e77750b4d23dfabbcb19062..0c1f0448e165dd7a034c480023537a958f0c3da9 100644 --- a/indra/newview/skins/default/xui/it/floater_activeim.xml +++ b/indra/newview/skins/default/xui/it/floater_activeim.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_activeim" title="ATTIVA IM"/> +<floater name="floater_activeim" title="IM ATTIVO"/> diff --git a/indra/newview/skins/default/xui/it/floater_animation_preview.xml b/indra/newview/skins/default/xui/it/floater_animation_preview.xml index 74a994825db5efb9d5d48192575c5aed41f88da5..c3ee23898c14a947394e1e4c0995daed81d3db68 100644 --- a/indra/newview/skins/default/xui/it/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/it/floater_animation_preview.xml @@ -23,22 +23,22 @@ La lunghezza massima è [MAX_LENGTH] secondi. Impossibile leggere la definizione del vincolo. </floater.string> <floater.string name="E_ST_NO_FILE"> - Non può aprire il file BVH. + Impossibile aprire il file BVH. </floater.string> <floater.string name="E_ST_NO_HIER"> - HIERARCHY header non valido. + Intestazione HIERARCHY non valida. </floater.string> <floater.string name="E_ST_NO_JOINT"> - Impossibile trovare la RADICE o UNIONE. ???????????? + Impossibile trovare la ROOT o JOINT. </floater.string> <floater.string name="E_ST_NO_NAME"> - Impossibile trovare il nome MISTO. ?????? + Impossibile trovare il nome JOINT. </floater.string> <floater.string name="E_ST_NO_OFFSET"> Impossibile trovare OFFSET. </floater.string> <floater.string name="E_ST_NO_CHANNELS"> - Impossibile trovare CHANNELS. ????? + Impossibile trovare CHANNELS. </floater.string> <floater.string name="E_ST_NO_ROTATION"> Impossibile ottenere un ordine di rotazione. @@ -47,22 +47,22 @@ La lunghezza massima è [MAX_LENGTH] secondi. Rotazione dell'asse non disponibile. </floater.string> <floater.string name="E_ST_NO_MOTION"> - Impossibile trovare il GESTO. + Impossibile trovare MOTION. </floater.string> <floater.string name="E_ST_NO_FRAMES"> - Impossibile ottenere il numero dei frames. + Impossibile ottenere il numero dei frame. </floater.string> <floater.string name="E_ST_NO_FRAME_TIME"> Impossibile ottenere il tempo del frame. </floater.string> <floater.string name="E_ST_NO_POS"> - Impossibile ottenre una posizione dei valori. + Impossibile ottenere i valori della posizione. </floater.string> <floater.string name="E_ST_NO_ROT"> Impossibile ottenere i valori di rotazione. </floater.string> <floater.string name="E_ST_NO_XLT_FILE"> - Impossibile aprire la traduzione del file. + Impossibile aprire il file di traduzione. </floater.string> <floater.string name="E_ST_NO_XLT_HEADER"> Impossibile leggere l'intestazione della traduzione. @@ -71,31 +71,31 @@ La lunghezza massima è [MAX_LENGTH] secondi. Impossibile leggere i nomi della traduzione. </floater.string> <floater.string name="E_ST_NO_XLT_IGNORE"> - Impossibile leggere la traduzione ignora il valore. ????? + Impossibile leggere la traduzione, ignora il valore. </floater.string> <floater.string name="E_ST_NO_XLT_RELATIVE"> Impossibile leggere la traduzione del valore relativo. </floater.string> <floater.string name="E_ST_NO_XLT_OUTNAME"> - Cannot read translation outname value. + Valore non trovato. </floater.string> <floater.string name="E_ST_NO_XLT_MATRIX"> Impossibile leggere la matrice di traduzione. </floater.string> <floater.string name="E_ST_NO_XLT_MERGECHILD"> - Impossibile unire il nome del bambino. + Impossibile trovare il nome mergechild. </floater.string> <floater.string name="E_ST_NO_XLT_MERGEPARENT"> - Impossibile unire il nome del genitore. + Impossibile ottenere il nome mergeparent. </floater.string> <floater.string name="E_ST_NO_XLT_PRIORITY"> - Impossibile ottenre il valore di priorità . + Impossibile ottenere il valore di priorità . </floater.string> <floater.string name="E_ST_NO_XLT_LOOP"> - Impossibile ottenere il valore di loop. + Impossibile ottenere il valore di ripetizione. </floater.string> <floater.string name="E_ST_NO_XLT_EASEIN"> - Impossibile essere in agio nei valori. ????????? + Impossibile ottenere i valori easeIn. </floater.string> <floater.string name="E_ST_NO_XLT_EASEOUT"> Cannot get ease Out values. @@ -106,38 +106,41 @@ La lunghezza massima è [MAX_LENGTH] secondi. <floater.string name="E_ST_NO_XLT_EMOTE"> Impossibile leggere il nome emote. </floater.string> + <floater.string name="E_ST_BAD_ROOT"> + Nome non corretto del root joint, usa "hip". + </floater.string> <text name="name_label"> Nome: </text> <text name="description_label"> Descrizione: </text> - <spinner label="Priorità " label_width="72" name="priority" tool_tip="Controlla quali altre animazioni possono prevalere su questa animazione" width="110"/> - <check_box label="Ciclica" name="loop_check" tool_tip="Rendi questa animazione in loop"/> - <spinner label="In(%)" name="loop_in_point" tool_tip="Imposta il momento nel quale l'animazione inizia il loop"/> - <spinner label="Out(%)" name="loop_out_point" tool_tip="Imposta il momento nel quale l'animazione ferma il loop"/> + <spinner label="Priorità " label_width="72" name="priority" tool_tip="Definisce quali altre animazioni possono essere sostituite da questa animazione" width="110"/> + <check_box label="Ciclica" name="loop_check" tool_tip="Riproduce questa animazione in ripetizione"/> + <spinner label="In(%)" name="loop_in_point" tool_tip="Imposta il punto sul quale ritorna l'animazione"/> + <spinner label="Out(%)" name="loop_out_point" tool_tip="Imposta il punto sul quale termina l'animazione"/> <text name="hand_label"> Postura della mano </text> - <combo_box left_delta="100" name="hand_pose_combo" tool_tip="Controlla ciò che fanno le mani durante l'animazione" width="184"> + <combo_box left_delta="100" name="hand_pose_combo" tool_tip="Definisce ciò che fanno le mani durante l'animazione" width="184"> <combo_box.item label="Stendi" name="Spread"/> <combo_box.item label="Rilassato" name="Relaxed"/> - <combo_box.item label="indica entrambi" name="PointBoth"/> + <combo_box.item label="Indica entrambi" name="PointBoth"/> <combo_box.item label="Pugno" name="Fist"/> <combo_box.item label="Sinistra rilassata" name="RelaxedLeft"/> <combo_box.item label="Indica sinistra" name="PointLeft"/> - <combo_box.item label="Pugno sinistra" name="FistLeft"/> + <combo_box.item label="Pugno con la sinistra" name="FistLeft"/> <combo_box.item label="Destra rilassata" name="RelaxedRight"/> <combo_box.item label="Indica destra" name="PointRight"/> - <combo_box.item label="Pugno Destro" name="FistRight"/> - <combo_box.item label="Saluta Destra" name="SaluteRight"/> - <combo_box.item label="Scrivendo" name="Typing"/> - <combo_box.item label="Pace Destra" name="PeaceRight"/> + <combo_box.item label="Pugno destro" name="FistRight"/> + <combo_box.item label="Saluta a destra" name="SaluteRight"/> + <combo_box.item label="Battitura" name="Typing"/> + <combo_box.item label="Pace a destra" name="PeaceRight"/> </combo_box> <text name="emote_label"> Espressione </text> - <combo_box left_delta="100" name="emote_combo" tool_tip="Controlla ciò che fà il viso durante l'animazione" width="184"> + <combo_box left_delta="100" name="emote_combo" tool_tip="Definisce ciò che fa il viso durante l'animazione" width="184"> <combo_box.item label="(Nessuno)" name="[None]"/> <combo_box.item label="Aaaaah" name="Aaaaah"/> <combo_box.item label="Spavento" name="Afraid"/> @@ -147,7 +150,7 @@ La lunghezza massima è [MAX_LENGTH] secondi. <combo_box.item label="Pianto" name="Cry"/> <combo_box.item label="Disdegno" name="Disdain"/> <combo_box.item label="Imbarazzato" name="Embarrassed"/> - <combo_box.item label="Accigliato ?????" name="Frown"/> + <combo_box.item label="Accigliato" name="Frown"/> <combo_box.item label="Bacio" name="Kiss"/> <combo_box.item label="Risata" name="Laugh"/> <combo_box.item label="Plllppt" name="Plllppt"/> @@ -165,13 +168,13 @@ La lunghezza massima è [MAX_LENGTH] secondi. <combo_box left_delta="154" name="preview_base_anim" tool_tip="Da usarsi per controllare il comportamento dell'animazione mentre l'avatar svolge azioni abituali." width="130"> <combo_box.item label="In piedi" name="Standing"/> <combo_box.item label="Camminando" name="Walking"/> - <combo_box.item label="Sedendo" name="Sitting"/> - <combo_box.item label="Volando" name="Flying"/> + <combo_box.item label="Seduto" name="Sitting"/> + <combo_box.item label="Volo" name="Flying"/> </combo_box> - <spinner label="Avvio lento (sec)" label_width="125" name="ease_in_time" tool_tip="Tempo (in seconds) oltre il quale le animazioni si miscelano" width="192"/> - <spinner bottom_delta="-20" label="Arresto lento (sec)" label_width="125" left="10" name="ease_out_time" tool_tip="Tempo (in seconds) oltre il quale le animazioni terminano di miscelarsi" width="192"/> + <spinner label="Avvio lento (sec)" label_width="125" name="ease_in_time" tool_tip="Durata (in secondi) della fusione in entrata delle animazioni" width="192"/> + <spinner bottom_delta="-20" label="Arresto lento (sec)" label_width="125" left="10" name="ease_out_time" tool_tip="Durata (in secondi) della fusione in uscita delle animazioni" width="192"/> <button bottom_delta="-32" name="play_btn" tool_tip="Riproduci la tua animazione"/> - <button name="pause_btn" tool_tip="La tua animazione in Pause"/> + <button name="pause_btn" tool_tip="Metti in pausa la tua animazione"/> <button label="" name="stop_btn" tool_tip="Ferma la riproduzione dell'animazione"/> <text name="bad_animation_text"> Impossibile leggere il file dell'animazione. diff --git a/indra/newview/skins/default/xui/it/floater_auction.xml b/indra/newview/skins/default/xui/it/floater_auction.xml index aa7b79fc5063d3c580823fddef2c5d8874fbeea7..4cad8b744d10bffaf553d3408e07cd941eafe676 100644 --- a/indra/newview/skins/default/xui/it/floater_auction.xml +++ b/indra/newview/skins/default/xui/it/floater_auction.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_auction" title="INIZIA LA VENDITA DI TERRA LINDEN"> +<floater name="floater_auction" title="INIZIA LA VENDITA DI TERRENO LINDEN"> <floater.string name="already for sale"> Non puoi mettere in asta terreni che sono già in vendita. </floater.string> <check_box initial_value="true" label="Includi barriere di selezione gialle" name="fence_check"/> <button label="Fotografia" label_selected="Fotografia" name="snapshot_btn"/> <button label="Vendi a chiunque" label_selected="Vendi a chiunque" name="sell_to_anyone_btn"/> - <button label="Annulla le Impostazioni" label_selected="Annulla le Impostazioni" name="reset_parcel_btn"/> - <button label="Inizia l'Asta" label_selected="Inizia l'Asta" name="start_auction_btn"/> + <button label="Cancella impostazioni" label_selected="Cancella impostazioni" name="reset_parcel_btn"/> + <button label="Inizia l'asta" label_selected="Inizia l'asta" name="start_auction_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_avatar_picker.xml b/indra/newview/skins/default/xui/it/floater_avatar_picker.xml index e583d0b8b57cd697ec8f8c1fd782df6bdfe23755..7c037801e94a64ceb5bc001186bb87d5ef4e5592 100644 --- a/indra/newview/skins/default/xui/it/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/it/floater_avatar_picker.xml @@ -21,18 +21,18 @@ <tab_container name="ResidentChooserTabs"> <panel label="Cerca" name="SearchPanel"> <text name="InstructSearchResidentName"> - Scrivi parte del nome di una persona: + Comincia a digitare il nome della persona: </text> <button label="Vai" label_selected="Vai" name="Find"/> </panel> <panel label="Amici" name="FriendsPanel"> <text name="InstructSelectFriend"> - Seleziona una persona: + Scegli una persona: </text> </panel> <panel label="Vicino a me" name="NearMePanel"> <text name="InstructSelectResident"> - Seleziona una persona nei dintorni: + Scegli una persona nei dintorni </text> <slider bottom_delta="-36" label="Range" name="near_me_range"/> <text name="meters"> @@ -43,5 +43,5 @@ </panel> </tab_container> <button label="OK" label_selected="OK" name="ok_btn"/> - <button label="Cancella" label_selected="Cancella" name="cancel_btn"/> + <button label="Annulla" label_selected="Annulla" name="cancel_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_avatar_textures.xml b/indra/newview/skins/default/xui/it/floater_avatar_textures.xml index e5ce07f3000d62bab04e54e824fcd99c102dc48e..2935f0fdb6b1a9e206db6c38c07545ddcde9a419 100644 --- a/indra/newview/skins/default/xui/it/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/it/floater_avatar_textures.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="avatar_texture_debug" title="AVATAR TEXTURES"> +<floater name="avatar_texture_debug" title="TEXTURE DI AVATAR"> <floater.string name="InvalidAvatar"> AVATAR NON VALIDO </floater.string> @@ -7,26 +7,37 @@ Texture Composite </text> <button label="Deposito" label_selected="Deposito" name="Dump"/> - <texture_picker label="Capelli" name="hair_grain"/> - <texture_picker label="Capelli Alpha" name="hair_alpha"/> - <texture_picker label="Trucco" name="head_bodypaint"/> - <texture_picker label="Testa Alpha" name="head_alpha"/> - <texture_picker label="Tatuaggio Testa" name="head_tattoo"/> - <texture_picker label="Occhio" name="eyes_iris"/> - <texture_picker label="Occhi Alpha" name="eyes_alpha"/> - <texture_picker label="Bodypaint Corpo Superiore" name="upper_bodypaint"/> - <texture_picker label="Maglietta intima" name="upper_undershirt"/> - <texture_picker label="Guanti" name="upper_gloves"/> - <texture_picker label="Camicia" name="upper_shirt"/> - <texture_picker label="Giacca superiore" name="upper_jacket"/> - <texture_picker label="Alpha Superiore" name="upper_alpha"/> - <texture_picker label="Tatuaggio superiore" name="upper_tattoo"/> - <texture_picker label="Bodypaint Corpo Inferiore" name="lower_bodypaint"/> - <texture_picker label="Slip" name="lower_underpants"/> - <texture_picker label="Calze" name="lower_socks"/> - <texture_picker label="Scarpe" name="lower_shoes"/> - <texture_picker label="Pantaloni" name="lower_pants"/> - <texture_picker label="Giacca" name="lower_jacket"/> - <texture_picker label="Alpha Inferiore" name="lower_alpha"/> - <texture_picker label="Tatuaggio basso" name="lower_tattoo"/> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <texture_picker label="Capigliature" name="hair-baked"/> + <texture_picker label="Capigliature" name="hair_grain"/> + <texture_picker label="Alpha dei capelli" name="hair_alpha"/> + <texture_picker label="Testa" name="head-baked"/> + <texture_picker label="Makeup" name="head_bodypaint"/> + <texture_picker label="Alpha della testa" name="head_alpha"/> + <texture_picker label="Tatuaggio della testa" name="head_tattoo"/> + <texture_picker label="Occhi" name="eyes-baked"/> + <texture_picker label="Occhio" name="eyes_iris"/> + <texture_picker label="Alpha degli occhi" name="eyes_alpha"/> + <texture_picker label="Parte superiore del corpo" name="upper-baked"/> + <texture_picker label="Bodypaint parte superiore del corpo" name="upper_bodypaint"/> + <texture_picker label="Maglietta intima" name="upper_undershirt"/> + <texture_picker label="Guanti" name="upper_gloves"/> + <texture_picker label="Camicia" name="upper_shirt"/> + <texture_picker label="Parte superiore della giacca" name="upper_jacket"/> + <texture_picker label="Alpha superiore" name="upper_alpha"/> + <texture_picker label="Tatuaggio superiore" name="upper_tattoo"/> + <texture_picker label="Parte inferiore del corpo" name="lower-baked"/> + <texture_picker label="Bodypaint parte inferiore del corpo" name="lower_bodypaint"/> + <texture_picker label="Slip" name="lower_underpants"/> + <texture_picker label="Calzini" name="lower_socks"/> + <texture_picker label="Scarpe" name="lower_shoes"/> + <texture_picker label="Pantaloni" name="lower_pants"/> + <texture_picker label="Giacca" name="lower_jacket"/> + <texture_picker label="Alpha inferiore" name="lower_alpha"/> + <texture_picker label="Tattuaggio inferiore" name="lower_tattoo"/> + <texture_picker label="Gonna" name="skirt-baked"/> + <texture_picker label="Gonna" name="skirt"/> + </panel> + </scroll_container> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_beacons.xml b/indra/newview/skins/default/xui/it/floater_beacons.xml index 8fd69d811d809e614883f454f0eff0739c87e9f5..ca6711468d63f77e96f7d9fc3bd827aad23ef301 100644 --- a/indra/newview/skins/default/xui/it/floater_beacons.xml +++ b/indra/newview/skins/default/xui/it/floater_beacons.xml @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="beacons" title="BEACONS"> +<floater name="beacons" title="MARCATORI"> <panel name="beacons_panel"> <text name="label_show"> Mostra: </text> - <check_box label="Beacons" name="beacons"/> - <check_box label="Highlights" name="highlights"/> - <text name="beacon_width_label" tool_tip="Beacon width"> + <check_box label="Marcatori" name="beacons"/> + <check_box label="In evidenza" name="highlights"/> + <text name="beacon_width_label" tool_tip="Larghezza marcatore"> Larghezza: </text> <text name="label_objects"> @@ -15,7 +15,7 @@ <check_box label="Fisico" name="physical"/> <check_box label="Scripted" name="scripted"/> <check_box label="Tocca solo" name="touch_only"/> - <check_box label="Fonte del Suono" name="sounds"/> - <check_box label="Fonte delle Particle" name="particles"/> + <check_box label="Fonti sonore" name="sounds"/> + <check_box label="Fonti delle particelle" name="particles"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_build_options.xml b/indra/newview/skins/default/xui/it/floater_build_options.xml index 233efef19bbd78060b1ab05d322e0c2c8638a84d..326aab1a317beb7b5d092ce6d98840ba5d37acc1 100644 --- a/indra/newview/skins/default/xui/it/floater_build_options.xml +++ b/indra/newview/skins/default/xui/it/floater_build_options.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="build options floater" title="GRID OPTIONS"> - <spinner label="Grid Units (meters)" label_width="192" name="GridResolution" width="250"/> +<floater name="build options floater" title="OPZIONI DELLA GRIGLIA"> + <spinner label="Unità griglia (metri)" label_width="192" name="GridResolution" width="250"/> <spinner label="Estensione della griglia (metri)" label_width="192" name="GridDrawSize" width="250"/> - <check_box label="Usa allineamento sub-unitario" name="GridSubUnit"/> - <check_box label="Guarda le cross-sections" name="GridCrossSection"/> - <text name="grid_opacity_label" tool_tip="Opacità della Grid"> + <check_box label="Usa sottounità " name="GridSubUnit"/> + <check_box label="Guarda le sezioni trasversali" name="GridCrossSection"/> + <text name="grid_opacity_label" tool_tip="Opacità della griglia"> Opacità : </text> <slider label="Trasparenza della griglia" name="GridOpacity" width="250"/> diff --git a/indra/newview/skins/default/xui/it/floater_bulk_perms.xml b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml index 26890dc2093afbb2eddbdc43866b6ba9b836d94f..89f4a0cb71f6d9a146e18a9ccf47368be4135eee 100644 --- a/indra/newview/skins/default/xui/it/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml @@ -13,27 +13,27 @@ Conclusa richiesta di modifica dei permessi. </floater.string> <check_box label="Animazioni" name="check_animation"/> - <icon name="icon_animation" tool_tip="Animazioni"/> + <icon name="icon_animation" tool_tip="Animazione"/> <check_box label="Parti del corpo" name="check_bodypart"/> - <icon name="icon_bodypart" tool_tip="Parti del Corpo"/> + <icon name="icon_bodypart" tool_tip="Parti del corpo"/> <check_box label="Abiti" name="check_clothing"/> <icon name="icon_clothing" tool_tip="Vestiario"/> <check_box label="Gesture" name="check_gesture"/> - <icon name="icon_gesture" tool_tip="Gestures"/> + <icon name="icon_gesture" tool_tip="Gesture"/> <check_box label="Notecard" name="check_notecard"/> - <icon name="icon_notecard" tool_tip="Notecards"/> + <icon name="icon_notecard" tool_tip="Biglietti"/> <check_box label="Oggetti" name="check_object"/> <icon name="icon_object" tool_tip="Oggetti"/> <check_box label="Script" name="check_script"/> - <icon name="icon_script" tool_tip="Scripts"/> + <icon name="icon_script" tool_tip="Script"/> <check_box label="Suoni" name="check_sound"/> <icon name="icon_sound" tool_tip="Suoni"/> <check_box label="Texture" name="check_texture"/> - <icon name="icon_texture" tool_tip="Textures"/> - <button label="√ Tutto" label_selected="Tutti" name="check_all"/> - <button label="Pulisci" label_selected="Nessuno" name="check_none"/> + <icon name="icon_texture" tool_tip="Texture"/> + <button label="√ Tutti" label_selected="Tutti" name="check_all"/> + <button label="Cancella" label_selected="Nessuno" name="check_none"/> <text name="newperms"> - Nuovo Permessi del Contenuto + Nuovi permessi del contenuto </text> <text name="GroupLabel"> Gruppo: @@ -44,11 +44,11 @@ </text> <check_box label="Copia" name="everyone_copy"/> <text name="NextOwnerLabel"> - Prossimo proprietario: + Proprietario successivo: </text> <check_box label="Modificare" name="next_owner_modify"/> <check_box label="Copiare" name="next_owner_copy"/> - <check_box initial_value="true" label="Transfer" name="next_owner_transfer" tool_tip="Prossimo proprietario può donare o rivendere questo oggetto"/> - <button label="Ok" name="apply"/> - <button label="Cancella" name="close"/> + <check_box initial_value="true" label="Trasferisci" name="next_owner_transfer" tool_tip="Il prossimo proprietario può regalare o rivendere questo oggetto"/> + <button label="OK" name="apply"/> + <button label="Annulla" name="close"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_buy_contents.xml b/indra/newview/skins/default/xui/it/floater_buy_contents.xml index e84d396138b716bc3fb868f80df6025101b23600..a54751e6290f256e4050a829c691b49a3e2793bd 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_contents.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_contents.xml @@ -8,8 +8,7 @@ </text> <button label="Annulla" label_selected="Annulla" name="cancel_btn" width="73"/> <button label="Compra" label_selected="Compra" left_delta="-77" name="buy_btn" width="73"/> - <check_box bottom="-234" label="Indossa adesso -l'indumento" left_delta="-125" name="wear_check"/> + <check_box bottom="-234" label="Indossa adesso l'indumento" left_delta="-125" name="wear_check"/> <string name="no_copy_text"> (non copiabile) </string> diff --git a/indra/newview/skins/default/xui/it/floater_buy_currency.xml b/indra/newview/skins/default/xui/it/floater_buy_currency.xml index 9d97f7d72d542b8f92ae9133f91f144890d70962..1327e8b172a10dfd555ddf22279db8a75a3c92c9 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_currency.xml @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="buy currency" title="COMPRA L$"> +<floater name="buy currency" title="ACQUISTA L$"> <floater.string name="buy_currency"> - Compra L$ [LINDENS] per approx. [LOCALAMOUNT] + Acquista [LINDENS] L$ per circa [LOCALAMOUNT] </floater.string> <text font="SansSerifLarge" left="5" name="info_need_more" right="-5"> - Necessiti di più L$ + Ti servono più L$ </text> <text name="contacting"> Sto contattando il LindeX... </text> <text name="info_buying"> - COMPRA L$ + Acquista L$ </text> <text name="balance_label"> Io ho @@ -19,7 +19,7 @@ [AMT]L$ </text> <text name="currency_action" width="45"> - Io voglio comprare + Voglio acquistare </text> <text name="currency_label"> L$ @@ -31,13 +31,13 @@ Al prezzo </text> <text name="currency_est"> - approx. [LOCALAMOUNT] + circa [LOCALAMOUNT] </text> <text name="getting_data"> - Calcolando... + Stima in corso... </text> <text name="buy_action"> - [NAME] [PRICE]L$ + [ACTION] </text> <text name="total_label"> Il mio saldo sarà @@ -46,18 +46,18 @@ [AMT]L$ </text> <text name="currency_links"> - [http://www.secondlife.com/ payment method] | [http://www.secondlife.com/ currency] | [http://www.secondlife.com/my/account/exchange_rates.php exchange rate] + [http://www.secondlife.com/my/account/payment_method_management.php payment method] | [http://www.secondlife.com/my/account/currency.php currency] | [http://www.secondlife.com/my/account/exchange_rates.php exchange rate] </text> <text name="exchange_rate_note"> - Ri-scrivi un importo per vedere l'ultimo rapporto di cambio. + Riscrivi l'importo per vedere l'ultimo tasso al cambio. </text> <text name="purchase_warning_repurchase"> - Confermando questo acquisto di soli L$, non l'oggetto. + La conferma di questo acquisto compra solo L$, non l'oggetto. </text> <text bottom_delta="16" name="purchase_warning_notenough"> - Non stai acquistando abbastanza L$. Per favore aumenta l'importo. + Non stai acquistando abbastanza L$. Aumenta l'importo. </text> - <button label="Compra ora" name="buy_btn"/> + <button label="Acquista adesso" name="buy_btn"/> <button label="Cancella" name="cancel_btn"/> <text left="5" name="info_cannot_buy" right="-5"> Non in grado di acquistare diff --git a/indra/newview/skins/default/xui/it/floater_buy_land.xml b/indra/newview/skins/default/xui/it/floater_buy_land.xml index 9fa5bd5570ba2fb510b112862145810114dac3e8..f4e7a6c2c5929fc49c69802d7d42b53386645975 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_land.xml @@ -1,5 +1,134 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="buy land" title="COMPRA LA TERRA"> +<floater name="buy land" title="ACQUISTA TERRENO"> + <floater.string name="can_resell"> + Può essere rivenduta. + </floater.string> + <floater.string name="can_not_resell"> + Può non essere rivenduta. + </floater.string> + <floater.string name="can_change"> + Può essere unita o suddivisa. + </floater.string> + <floater.string name="can_not_change"> + Non può essere unita o suddivisa. + </floater.string> + <floater.string name="cant_buy_for_group"> + Non hai il permesso di comprare terra per il tuo gruppo attivo. + </floater.string> + <floater.string name="no_land_selected"> + Nessuna terra selezionata. + </floater.string> + <floater.string name="multiple_parcels_selected"> + Hai selezionato appezzamenti diversi. +Prova a selezionare un'area più piccola. + </floater.string> + <floater.string name="no_permission"> + Non hai il permesso di comprare terra per il tuo gruppo attivo. + </floater.string> + <floater.string name="parcel_not_for_sale"> + Il terreno selezionato non è in vendita. + </floater.string> + <floater.string name="group_already_owns"> + Il gruppo possiede già il terreno. + </floater.string> + <floater.string name="you_already_own"> + Possiedi già il terreno. + </floater.string> + <floater.string name="set_to_sell_to_other"> + Il terreno selezionato è già impostato per la vendita ad un altro gruppo. + </floater.string> + <floater.string name="no_public_land"> + L'area selezionata non è pubblica. + </floater.string> + <floater.string name="not_owned_by_you"> + È selezionato terreno di proprietà di un altro residente. +Prova a scegliere una superficie più piccola. + </floater.string> + <floater.string name="processing"> + Stiamo elaborando il tuo acquisto... + +(Potrebbe volerci un minuto o due.) + </floater.string> + <floater.string name="fetching_error"> + C'e stato un errore mentre si stavano ottenendo le informazioni sull'acquisto della terra. + </floater.string> + <floater.string name="buying_will"> + Comprando questa terra: + </floater.string> + <floater.string name="buying_for_group"> + Comprare la terra per il gruppo farà : + </floater.string> + <floater.string name="cannot_buy_now"> + Non puoi comprare ora: + </floater.string> + <floater.string name="not_for_sale"> + Non in vendita: + </floater.string> + <floater.string name="none_needed"> + nessuno necessario + </floater.string> + <floater.string name="must_upgrade"> + Il tuo tipo di account ha bisogno di un upgrade per possedere terra. + </floater.string> + <floater.string name="cant_own_land"> + Il tuo account può possedere terra. + </floater.string> + <floater.string name="land_holdings"> + Sei proprietario di [BUYER] m² di terreno. + </floater.string> + <floater.string name="pay_to_for_land"> + Paga [AMOUNT] L$ a [SELLER] per questa terra + </floater.string> + <floater.string name="buy_for_US"> + Acquista L$ [AMOUNT] per circa [LOCAL_AMOUNT], + </floater.string> + <floater.string name="parcel_meters"> + Questo lotto è di [AMOUNT] m² + </floater.string> + <floater.string name="premium_land"> + Questo terreno è premium, e costerà come [AMOUNT] m². + </floater.string> + <floater.string name="discounted_land"> + Questo terreno è scontato, e costerà come [AMOUNT] m². + </floater.string> + <floater.string name="meters_supports_object"> + [AMOUNT] m² +consente [AMOUNT2] oggetti + </floater.string> + <floater.string name="sold_with_objects"> + venduta con oggetti + </floater.string> + <floater.string name="sold_without_objects"> + Oggetti non inclusi + </floater.string> + <floater.string name="info_price_string"> + L$ [PRICE] +([PREZZO_PER_MQ] L$/m²) +[VENDUTO_CON_OGGETTI] + </floater.string> + <floater.string name="insufficient_land_credits"> + Il gruppo [GROUP] avrà bisogno di contribuzioni anticipate, mediante crediti d'uso terriero, +sufficienti a coprire l'area del terreno prima che l'acquisto +sia completato. + </floater.string> + <floater.string name="have_enough_lindens"> + Hai [AMOUNT] L$, che sono sufficienti per comprare questa terra. + </floater.string> + <floater.string name="not_enough_lindens"> + Hai solo [AMOUNT] L$, ed hai bisogno di altri [AMOUNT2] L$. + </floater.string> + <floater.string name="balance_left"> + Dopo l'acquisto, ti rimarranno [AMOUNT] L$. + </floater.string> + <floater.string name="balance_needed"> + Hai bisogno di acquistare almeno [AMOUNT] L$ per comprare questo terreno. + </floater.string> + <floater.string name="no_parcel_selected"> + (nessun terreno selezionato) + </floater.string> + <floater.string name="icon_PG" value="Parcel_PG_Dark"/> + <floater.string name="icon_M" value="Parcel_M_Dark"/> + <floater.string name="icon_R" value="Parcel_R_Dark"/> <text name="region_name_label"> Regione: </text> @@ -58,8 +187,8 @@ </text> <text name="info_price"> L$ 1500 -(L$ 1.1/m²) -sold with objects +( 1.1 L$/m²) +venduto con oggetti </text> <text name="info_action"> Comprando questa terra: @@ -75,16 +204,16 @@ sold with objects Solo i membri premium possono possedere terra. </text> <combo_box name="account_level"> - <combo_box.item label="US$9.95/mese, addebitato mensilmente" name="US$9.95/month,billedmonthly"/> - <combo_box.item label="US$7.50/mese, addebitato trimestralmente" name="US$7.50/month,billedquarterly"/> - <combo_box.item label="US$6.00/mese, addebitato annualmente" name="US$6.00/month,billedannually"/> + <combo_box.item label="US$ 9.95 al mese, addebitato mensilmente" name="US$9.95/month,billedmonthly"/> + <combo_box.item label="US$ 7.50 al mese, addebitato trimestralmente" name="US$7.50/month,billedquarterly"/> + <combo_box.item label="US$ 6.00 al mese, addebitato annualmente" name="US$6.00/month,billedannually"/> </combo_box> <text name="land_use_action"> Aumenta il tasso di pagamento mensile delle tasse d'uso della terra a 40 US$/mese. </text> <text name="land_use_reason"> Tu occupi 1309 m² di terreno. -This parcel is 512 m² di terreno. +Questo lotto consiste in 512 m² di terreno. </text> <text name="purchase_action"> Paga il residente Joe 4000 L$ per la terra @@ -99,7 +228,7 @@ This parcel is 512 m² di terreno. 1000 </line_editor> <text name="currency_est"> - per circa. [LOCAL_AMOUNT] + per circa [LOCAL_AMOUNT] </text> <text name="currency_balance"> Possiedi 2.100 L$. @@ -107,133 +236,4 @@ This parcel is 512 m² di terreno. <check_box label="Rimuovi [AMOUNT] m² di contribuzione dal gruppo." name="remove_contribution"/> <button label="Compra" name="buy_btn"/> <button label="Annulla" name="cancel_btn"/> - <string name="can_resell"> - Può essere rivenduta. - </string> - <string name="can_not_resell"> - Può non essere rivenduta. - </string> - <string name="can_change"> - Può essere unita o suddivisa. - </string> - <string name="can_not_change"> - Non può essere unita o suddivisa. - </string> - <string name="cant_buy_for_group"> - Non hai il permesso di comprare terra per il tuo gruppo attivo. - </string> - <string name="no_land_selected"> - Nessuna terra selezionata. - </string> - <string name="multiple_parcels_selected"> - Hai selezionato appezzamenti diversi. -Prova a selezionare un'area più piccola. - </string> - <string name="no_permission"> - Non hai il permesso di comprare terra per il tuo gruppo attivo. - </string> - <string name="parcel_not_for_sale"> - Il terreno selezionato non è in vendita. - </string> - <string name="group_already_owns"> - Il gruppo possiede già il terreno. - </string> - <string name="you_already_own"> - Possiedi già il terreno. - </string> - <string name="set_to_sell_to_other"> - Il terreno selezionato è già impostato per la vendita ad un altro gruppo. - </string> - <string name="no_public_land"> - L'area selezionata non è pubblica. - </string> - <string name="not_owned_by_you"> - Hai selezionato una terra posseduta da un altro utente. -Prova a selezionare un'area più piccola. - </string> - <string name="processing"> - Stiamo elaborando il tuo acquisto... - -(Potrebbe volerci un minuto o due.) - </string> - <string name="fetching_error"> - C'e stato un errore mentre si stavano ottenendo le informazioni sull'acquisto della terra. - </string> - <string name="buying_will"> - Comprando questa terra: - </string> - <string name="buying_for_group"> - Comprare la terra per il gruppo farà : - </string> - <string name="cannot_buy_now"> - Non puoi comprare ora: - </string> - <string name="not_for_sale"> - Non in vendita: - </string> - <string name="none_needed"> - nessuno necessario - </string> - <string name="must_upgrade"> - Il tuo tipo di account ha bisogno di un upgrade per possedere terra. - </string> - <string name="cant_own_land"> - Il tuo account può possedere terra. - </string> - <string name="land_holdings"> - Tu occupi [BUYER] m² di terreno. - </string> - <string name="pay_to_for_land"> - Paga [AMOUNT] L$ a [SELLER] per questa terra - </string> - <string name="buy_for_US"> - Compra L$ [AMOUNT] per circa. [LOCAL_AMOUNT], - </string> - <string name="parcel_meters"> - Questo parcel è [AMOUNT] m² - </string> - <string name="premium_land"> - Questo terreno è premium, e costerà [AMOUNT] m². - </string> - <string name="discounted_land"> - Questo terreno è scontato, e costerà [AMOUNT] m². - </string> - <string name="meters_supports_object"> - [AMOUNT] m² -mantiene [AMOUNT2] oggetti - </string> - <string name="sold_with_objects"> - venduta con oggetti - </string> - <string name="sold_without_objects"> - Oggetti non inclusi - </string> - <string name="info_price_string"> - L$ [PRICE] -(L$ [PREZZO_PER_QM]/m²) -[VENDUTO_CON_OGGETTI] - </string> - <string name="insufficient_land_credits"> - Il gruppo [GROUP] avrà bisogno di contribuzioni anticipate, mediante crediti d'uso terriero, -sufficienti a coprire l'area del terreno prima che l'acquisto -sia completato. - </string> - <string name="have_enough_lindens"> - Hai [AMOUNT] L$, che sono sufficienti per comprare questa terra. - </string> - <string name="not_enough_lindens"> - Hai solo [AMOUNT] L$, ed hai bisogno di altri [AMOUNT2] L$. - </string> - <string name="balance_left"> - Dopo l'acquisto, ti rimarranno [AMOUNT] L$. - </string> - <string name="balance_needed"> - Hai bisogno di acquistare almeno [AMOUNT] L$ per comprare questo terreno. - </string> - <string name="no_parcel_selected"> - (nessun terreno selezionato) - </string> - <string name="buy_currency"> - Compra [LINDENS] L$ per appross. [USD] US$ - </string> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_buy_object.xml b/indra/newview/skins/default/xui/it/floater_buy_object.xml index 5f3413931b54aadc81d364def557e58fb1f6c7d6..895d8aa74600cd9241fdf61add2af7a86d14312e 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_object.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_object.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="contents" title="COMPRA COPIA DELL'OGGETTO"> +<floater name="contents" title="ACQUISTA COPIA DELL'OGGETTO"> <text name="contents_text"> Contiene: </text> diff --git a/indra/newview/skins/default/xui/it/floater_camera.xml b/indra/newview/skins/default/xui/it/floater_camera.xml index 182f82f17ff6fee81509932e5b9ec854df4abec8..febbfd2739bb45328e5e1650413d947d557cf4c6 100644 --- a/indra/newview/skins/default/xui/it/floater_camera.xml +++ b/indra/newview/skins/default/xui/it/floater_camera.xml @@ -9,23 +9,35 @@ <floater.string name="move_tooltip"> Muovi la telecamera su e giù e a sinistra e destra </floater.string> + <floater.string name="orbit_mode_title"> + Ruota visuale + </floater.string> + <floater.string name="pan_mode_title"> + Panoramica + </floater.string> + <floater.string name="avatar_view_mode_title"> + Valori predefiniti + </floater.string> + <floater.string name="free_mode_title"> + Vedi oggetto + </floater.string> <panel name="controls"> - <joystick_track name="cam_track_stick" tool_tip="Sposta la visuale sù e giù, sinistra e destra"/> + <joystick_track name="cam_track_stick" tool_tip="Sposta la visuale in su e in giù, a sinistra e a destra"/> <panel name="zoom" tool_tip="Avvicina la telecamera nell'inquadratura"> - <slider_bar name="zoom_slider" tool_tip="Zoom verso il focus"/> + <slider_bar name="zoom_slider" tool_tip="Zoom verso il centro focale"/> </panel> - <joystick_rotate name="cam_rotate_stick" tool_tip="Ruota la visuale intorno al focus"/> + <joystick_rotate name="cam_rotate_stick" tool_tip="Ruota la visuale intorno al punto focale"/> <panel name="camera_presets"> <button name="rear_view" tool_tip="Visuale posteriore"/> - <button name="group_view" tool_tip="Visuale di Gruppo"/> - <button name="front_view" tool_tip="Visuale Frontale"/> - <button name="mouselook_view" tool_tip="Visuale Mouselook"/> + <button name="group_view" tool_tip="Visuale di gruppo"/> + <button name="front_view" tool_tip="Visuale frontale"/> + <button name="mouselook_view" tool_tip="Visuale soggettiva"/> </panel> </panel> <panel name="buttons"> <button label="" name="orbit_btn" tool_tip="Ruota la visuale"/> - <button label="" name="pan_btn" tool_tip="Visuale Panoramica"/> - <button label="" name="avatarview_btn" tool_tip="Guardare un avatar"/> + <button label="" name="pan_btn" tool_tip="Visuale panoramica"/> + <button label="" name="avatarview_btn" tool_tip="Valori predefiniti"/> <button label="" name="freecamera_btn" tool_tip="Vedi oggetto"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_color_picker.xml b/indra/newview/skins/default/xui/it/floater_color_picker.xml index 8551d65da2c6b8316447740fc16baf5b016122b3..38d4a0a037be322b18ea4f896f42b562c8758993 100644 --- a/indra/newview/skins/default/xui/it/floater_color_picker.xml +++ b/indra/newview/skins/default/xui/it/floater_color_picker.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="ColorPicker" title="SELETTORE di COLORE"> +<floater name="ColorPicker" title="SELETTORE DI COLORE"> <text name="r_val_text"> Rosso: </text> @@ -24,10 +24,10 @@ Luminosità : </text> <spinner left="84" name="lspin" width="47"/> - <check_box label="Applica ora" name="apply_immediate"/> + <check_box label="Applica adesso" name="apply_immediate"/> <button left_delta="150" name="color_pipette"/> <button label="Annulla" label_selected="Annulla" left_delta="55" name="cancel_btn"/> - <button label="Ok" label_selected="Ok" name="select_btn"/> + <button label="OK" label_selected="OK" name="select_btn"/> <text name="Current color:"> Colore attuale: </text> diff --git a/indra/newview/skins/default/xui/it/floater_customize.xml b/indra/newview/skins/default/xui/it/floater_customize.xml index 63e08444cd85e3b567c04f991cb6649020972c98..75ddf43f651c95948d78ca652738fdea6229a0b9 100644 --- a/indra/newview/skins/default/xui/it/floater_customize.xml +++ b/indra/newview/skins/default/xui/it/floater_customize.xml @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="ASPETTO" width="551"> <tab_container name="customize tab container" tab_min_width="120" width="549"> - <placeholder label="Parti del corpo" name="body_parts_placeholder"/> + <text label="Parti del corpo" name="body_parts_placeholder"> + Parti del corpo + </text> <panel label="Forma del corpo" left="124" name="Shape" width="389"> <button font="SansSerifSmall" label="Annulla le modifiche" label_selected="Annulla le modifiche" left="267" name="Revert" width="120"/> <button label="Corpo" label_selected="Corpo" name="Body"/> @@ -14,8 +16,8 @@ <button label="Torso" label_selected="Torso" name="Torso"/> <button label="Gambe" label_selected="Gambe" name="Legs"/> <radio_group name="sex radio"> - <radio_item label="Femmina" name="radio"/> - <radio_item label="Maschio" name="radio2"/> + <radio_item label="Femmina" name="radio" value="0"/> + <radio_item label="Maschio" name="radio2" value="1"/> </radio_group> <text name="title"> [DESC] @@ -33,8 +35,7 @@ Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova Forma del Corpo trascinandone una dall'inventario -sul tuo avatar. In alternativa, puoi crearne una nuova ed indossarla. + Metti una nuova figura corporea trascinandola dal tuo inventario sul tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. @@ -67,8 +68,7 @@ sul tuo avatar. In alternativa, puoi crearne una nuova ed indossarla. Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova pelle trascinandola dall'inventario al tuo avatar. -In alternativa, puoi crearne una nuova da zero ed indossarla. + Per mettere una nuova pelle, trascinala dal tuo inventario sul tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. @@ -105,8 +105,7 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi capelli trascinandoli dall'inventario al tuo avatar. -In alternativa, puoi crearne di nuovi da zero ed indossarli. + Per cambiare capelli, trascinali dal tuo inventario sul tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso per modificare questo indumento. @@ -137,8 +136,7 @@ In alternativa, puoi crearne di nuovi da zero ed indossarli. Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi occhi trascinandoli dall'inventario al tuo avatar. -In alternativa, puoi crearne di nuovi da zero ed indossarli. + Puoi cambiare gli occhi trascinandoli dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. @@ -152,12 +150,14 @@ In alternativa, puoi crearne di nuovi da zero ed indossarli. <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> <button font="SansSerifSmall" label="Annulla le modifiche" label_selected="Annulla le modifiche" left="267" name="Revert" width="120"/> </panel> - <placeholder label="Vestiti" name="clothes_placeholder"/> + <text label="Vestiti" name="clothes_placeholder"> + Abiti + </text> <panel label="Camicia" name="Shirt"> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea una nuova camicia" label_selected="Crea una nuova camicia" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> + <button label="Crea una nuova camicia" label_selected="Crea una nuova camicia" name="Create New"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> <button font="SansSerifSmall" label="Annulla le modifiche" label_selected="Annulla le modifiche" left="267" name="Revert" width="120"/> @@ -177,8 +177,7 @@ In alternativa, puoi crearne di nuovi da zero ed indossarli. Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova maglietta trascinandola dall'inventario al tuo avatar. -In alternativa, puoi crearne una nuova da zero ed indossarla. + Metti una nuova camicia trascinandola dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. @@ -190,8 +189,8 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. <panel label="Pantaloni" name="Pants"> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea nuovi pantaloni" label_selected="Crea nuovi pantaloni" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> + <button label="Crea nuovi pantaloni" label_selected="Crea nuovi pantaloni" name="Create New"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> <button font="SansSerifSmall" label="Annulla le modifiche" label_selected="Annulla le modifiche" left="267" name="Revert" width="120"/> @@ -211,8 +210,7 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi pantaloni trascinandoli dall'inventario al tuo avatar. -In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Metti dei nuovi pantaloni trascinandoli dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. @@ -238,9 +236,9 @@ In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. Ubicate in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove scarpe trascinandole dall'inventario al tuo avatar. -In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Metti delle nuove scarpe trascinandole dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea nuove scarpe" label_selected="Crea nuove scarpe" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -249,7 +247,6 @@ In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea nuove scarpe" label_selected="Crea nuove scarpe" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -272,9 +269,9 @@ In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove calze trascinandole dall'inventario al tuo avatar. -In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Metti delle nuove calze trascinandole dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea nuove calze" label_selected="Crea nuove calze" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -283,7 +280,6 @@ In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea nuove calze" label_selected="Crea nuove calze" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -306,9 +302,9 @@ In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova giacca trascinandola dall'inventario al tuo avatar. -In alternativa, puoi crearne una nuova da zero ed indossarla. + Metti una nuova giacca trascinandola dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea una nuova giacca" label_selected="Crea una nuova giacca" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -318,7 +314,6 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. <texture_picker label="Tessuto: superiore" name="Upper Fabric" tool_tip="Clicca per scegliere un'immagine" width="96"/> <texture_picker label="Tessuto: inferiore" name="Lower Fabric" tool_tip="Clicca per scegliere un'immagine" width="96"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea una nuova giacca" label_selected="Crea una nuova giacca" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -341,9 +336,9 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi guanti trascinandoli dall'inventario al tuo avatar. -In alternativa, puoi crearne un paio nuovo da zero ed indossarlo. + Metti dei nuovi guanti trascinandoli dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea nuovi guanti" label_selected="Crea nuovi guanti" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -352,7 +347,6 @@ In alternativa, puoi crearne un paio nuovo da zero ed indossarlo. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea nuovi guanti" label_selected="Crea nuovi guanti" name="Create New"/> <button font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off" width="115"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -375,9 +369,9 @@ In alternativa, puoi crearne un paio nuovo da zero ed indossarlo. Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova canottiera trascinandola dall'inventario al tuo avatar. -In alternativa, puoi crearne una nuovo da zero ed indossarla. + Metti una nuova maglietta intima trascinandola dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea una nuova canottiera" label_selected="Crea una nuova canottiera" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -386,7 +380,6 @@ In alternativa, puoi crearne una nuovo da zero ed indossarla. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea una nuova canottiera" label_selected="Crea una nuova canottiera" name="Create New"/> <button font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off" width="115"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -409,9 +402,9 @@ In alternativa, puoi crearne una nuovo da zero ed indossarla. Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove mutande trascinandole dall'inventario al tuo avatar. -In alternativa, puoi crearne una paio nuovo da zero ed indossarlo. + Metti dei nuovi slip trascinandoli dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea nuove mutande" label_selected="Crea nuove mutande" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -420,7 +413,6 @@ In alternativa, puoi crearne una paio nuovo da zero ed indossarlo. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea nuove mutande" label_selected="Crea nuove mutande" name="Create New"/> <button font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off" width="115"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> @@ -443,9 +435,9 @@ In alternativa, puoi crearne una paio nuovo da zero ed indossarlo. Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova gonna trascinandola dall'inventario al tuo avatar. -In alternativa, puoi crearne una nuova da zero ed indossarla. + Metti una nuova gonna trascinandola dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea una nuova gonna" label_selected="Crea una nuova gonna" name="Create New"/> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> @@ -454,13 +446,12 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> - <button label="Crea una nuova gonna" label_selected="Crea una nuova gonna" name="Create New"/> <button font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off" width="115"/> <button label="Salva" label_selected="Salva" left="95" name="Save" width="72"/> <button label="Salva come..." label_selected="Salva come..." left="171" name="Save As"/> <button font="SansSerifSmall" label="Annulla le modifiche" label_selected="Annulla le modifiche" left="267" name="Revert" width="120"/> </panel> - <panel label="Alpha" name="Alpha"> + <panel label="Tatuaggio" name="Tattoo"> <text name="title"> [DESC] </text> @@ -468,7 +459,7 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. [DESC]: non può essere modificato </text> <text name="title_loading"> - [DESC]: caricando... + [DESC]: caricamento in corso... </text> <text name="title_not_worn"> [DESC]: non indossato @@ -477,27 +468,24 @@ In alternativa, puoi crearne una nuova da zero ed indossarla. Collocato in [PATH] </text> <text name="not worn instructions"> - Metti una nuova alpha mask trascinandone una dall'inventario del tuo avatar. -In alternativa, creane una nuova partendo da zero e indossala. + Metti un nuovo tatuaggio trascinandolo dal tuo inventario al avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea un nuovo tatuaggio" label_selected="Crea un nuovo tatuaggio" name="Create New"/> <text name="no modify instructions"> - Non hai i permessi per modificare questa vestibilità . + Non hai i permessi per modificare questo capo. </text> <text name="Item Action Label"> - Alpha: + Tatuaggio: </text> - <texture_picker label="Alpha inferiore" name="Lower Alpha" tool_tip="Clicca per scegliere una fotografia"/> - <texture_picker label="Alpha superiore" name="Upper Alpha" tool_tip="Clicca per scegliere una foto"/> - <texture_picker label="Alpha della testa" name="Head Alpha" tool_tip="Clicca per scegliere una fotografia"/> - <texture_picker label="Alpha dell'occhio" name="Eye Alpha" tool_tip="Clicca per scegliere una fotografia"/> - <texture_picker label="Alpha dei capelli" name="Hair Alpha" tool_tip="Clicca per scegiere una fotografia"/> - <button label="Crea nuova alpha" label_selected="Crea nuova alpha" name="Create New"/> + <texture_picker label="Tatuaggio della testa" name="Head Tattoo" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tatuaggio superiore" name="Upper Tattoo" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tattuaggio inferiore" name="Lower Tattoo" tool_tip="Clicca per scegliere una fotografia"/> <button label="Togli" label_selected="Togli" name="Take Off"/> <button label="Salva" label_selected="Salva" name="Save"/> <button label="Salva con nome..." label_selected="Salva con nome..." name="Save As"/> <button label="Ripristina" label_selected="Ripristina" name="Revert"/> </panel> - <panel label="Tatuaggio" name="Tattoo"> + <panel label="Alpha (Trasparenza)" name="Alpha"> <text name="title"> [DESC] </text> @@ -505,7 +493,7 @@ In alternativa, creane una nuova partendo da zero e indossala. [DESC]: non può essere modificato </text> <text name="title_loading"> - [DESC]: caricando... + [DESC]: caricamento in corso... </text> <text name="title_not_worn"> [DESC]: non indossato @@ -514,19 +502,20 @@ In alternativa, creane una nuova partendo da zero e indossala. Collocato in [PATH] </text> <text name="not worn instructions"> - Metti un nuovo tatuaggio trascinandone uno dall'inventario del tuo avatar. -In alternativa, creane uno nuovo partendo da zero e indossalo. + Metti una nuova alpha mask trascinandola dal tuo inventario al tuo avatar. Oppure, crea un nuovo tatuaggio e indossalo. </text> + <button label="Crea nuovo Alpha" label_selected="Crea nuovo Alpha" name="Create New"/> <text name="no modify instructions"> - Non hai i permessi per moficare questa vestibilità . + Non hai i permessi per modificare questo capo. </text> <text name="Item Action Label"> - Tatuaggio: + Alpha: </text> - <texture_picker label="Tatuaggio della testa" name="Head Tattoo" tool_tip="Clicca per scegliere una foto"/> - <texture_picker label="Tatuaggio superiore" name="Upper Tattoo" tool_tip="Clicca per scegliere una fotografia"/> - <texture_picker label="Tatuaggio inferiore" name="Lower Tattoo" tool_tip="Clicca per scegliere una fotografia"/> - <button label="Crea Nuovo tatuaggio" label_selected="Crea un nuovo tatuaggio" name="Create New"/> + <texture_picker label="Alpha inferiore" name="Lower Alpha" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Alpha superiore" name="Upper Alpha" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Alpha della testa" name="Head Alpha" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Alpha dell'occhio" name="Eye Alpha" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Alpha dei capelli" name="Hair Alpha" tool_tip="Clicca per scegliere una fotografia"/> <button label="Togli" label_selected="Togli" name="Take Off"/> <button label="Salva" label_selected="Salva" name="Save"/> <button label="Salva con nome..." label_selected="Salva con nome..." name="Save As"/> @@ -534,6 +523,7 @@ In alternativa, creane uno nuovo partendo da zero e indossalo. </panel> </tab_container> <scroll_container left="254" name="panel_container"/> + <button label="Informazioni script" label_selected="Informazioni script" name="script_info" tool_tip="Mostra gli script collegati al tuo avatar"/> <button label="Crea vestiario" label_selected="Crea vestiario" name="make_outfit_btn"/> <button label="Annulla" label_selected="Annulla" name="Cancel"/> <button label="OK" label_selected="OK" name="Ok"/> diff --git a/indra/newview/skins/default/xui/it/floater_device_settings.xml b/indra/newview/skins/default/xui/it/floater_device_settings.xml index 2410a16882ef2515966f74a8cb2fc1bf22e91a38..97aa64086d4c4c4f8a7bf4f746255b09ad9711b2 100644 --- a/indra/newview/skins/default/xui/it/floater_device_settings.xml +++ b/indra/newview/skins/default/xui/it/floater_device_settings.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_device_settings" title="OPZIONI PER IL DISPOSITIVO VOICE CHAT"/> +<floater name="floater_device_settings" title="OPZIONI CHAT VOCALE"/> diff --git a/indra/newview/skins/default/xui/it/floater_event.xml b/indra/newview/skins/default/xui/it/floater_event.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0807e04c9e32e028b5c32c925dae04956c78442 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_event.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater label="Evento" name="Event" title="DETTAGLI DELL'EVENTO"> + <floater.string name="none"> + nessuno + </floater.string> + <floater.string name="notify"> + Avvisare + </floater.string> + <floater.string name="dont_notify"> + Non avvisare + </floater.string> + <floater.string name="moderate"> + Moderato + </floater.string> + <floater.string name="adult"> + Adulto + </floater.string> + <floater.string name="general"> + Generale + </floater.string> + <floater.string name="unknown"> + Sconosciuto + </floater.string> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <text name="event_name"> + Evento senza nome...di Doom De doom! Doom doom. + </text> + <text name="event_category"> + (nessuna categoria) + </text> + <text name="event_runby_label"> + Organizzato da: + </text> + <text initial_value="(recupero)" name="event_runby"/> + <text name="event_date_label"> + Data: + </text> + <text name="event_date"> + 10/10/2010 + </text> + <text name="event_duration_label"> + Durata: + </text> + <text name="event_duration"> + 1 ora + </text> + <text name="event_covercharge_label"> + Costo: + </text> + <text name="event_cover"> + Gratis + </text> + <text name="event_location_label"> + Luogo: + </text> + <text name="event_location" value="SampleParcel, Name Long (145, 228, 26)"/> + <text name="rating_label" value="Categoria:"/> + <text name="rating_value" value="sconosciuto"/> + <expandable_text name="event_desc"> + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </expandable_text> + </layout_panel> + <layout_panel name="button_panel"> + <button name="create_event_btn" tool_tip="Crea evento"/> + <button name="god_delete_event_btn" tool_tip="Elimina evento"/> + <button label="Avvisami" name="notify_btn"/> + <button label="Teleport" name="teleport_btn"/> + <button label="Mappa" name="map_btn"/> + </layout_panel> + </layout_stack> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_gesture.xml b/indra/newview/skins/default/xui/it/floater_gesture.xml index eefa3bb3921d538d2eaf975697055e80b8bbf1c7..b9419ebc220e73afc6f7ecfe7c98d2435fdf5415 100644 --- a/indra/newview/skins/default/xui/it/floater_gesture.xml +++ b/indra/newview/skins/default/xui/it/floater_gesture.xml @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater label="Posti" name="gestures" title="GESTURES"> +<floater label="Luoghi" name="gestures" title="GESTURE"> <floater.string name="loading"> - Caricando... + Caricamento in corso... </floater.string> <floater.string name="playing"> - (Riproducendo) + (Riproduzione in corso) </floater.string> <floater.string name="copy_name"> Copia di [COPY_NAME] </floater.string> - <scroll_list bottom_delta="-385" height="360" name="gesture_list"> - <scroll_list.columns label="Nome" name="name" width="129"/> - <scroll_list.columns label="Chat" name="trigger" width="106"/> - <scroll_list.columns label="Pulsante" name="shortcut" width="65"/> + <scroll_list name="gesture_list"> + <scroll_list.columns label="Nome" name="name"/> + <scroll_list.columns label="Chat" name="trigger"/> + <scroll_list.columns label="Pulsante" name="shortcut"/> </scroll_list> <panel label="bottom_panel" name="bottom_panel"> - <menu_button name="gear_btn" tool_tip="Più opzioni"/> + <menu_button name="gear_btn" tool_tip="Altre opzioni"/> <button name="new_gesture_btn" tool_tip="Crea nuova gesture"/> - <button name="activate_btn" tool_tip="Attiva/Disattiva la gesture selezionata"/> - <button name="del_btn" tool_tip="Cancella questa gesture"/> + <button name="activate_btn" tool_tip="Attiva/Disattiva gesture selezionata"/> + <button name="del_btn" tool_tip="Elimina questa gesture"/> </panel> <button label="Modifica" name="edit_btn"/> <button label="Play" name="play_btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_god_tools.xml b/indra/newview/skins/default/xui/it/floater_god_tools.xml new file mode 100644 index 0000000000000000000000000000000000000000..23d44780acfc1239ef502e2842028a2017da73c7 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_god_tools.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="godtools floater" title="GOD TOOLS"> + <tab_container name="GodTools Tabs"> + <panel label="Grid" name="grid"> + <button label="Espelli tutti i residenti" label_selected="Espelli tutti i residenti" name="Kick all users"/> + </panel> + <panel label="Region" name="region"> + <check_box label="Reset Home On Teleport" name="check reset home" tool_tip="Quando un residente esce con un teleport, reimposta la sua posizione di base sul luogo di destinazione."/> + </panel> + </tab_container> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_hardware_settings.xml b/indra/newview/skins/default/xui/it/floater_hardware_settings.xml index 08326b1da3de88b272274194c0311110d1cf1fb6..384e7c12721ff5fbc69ec001f623be35a22fba69 100644 --- a/indra/newview/skins/default/xui/it/floater_hardware_settings.xml +++ b/indra/newview/skins/default/xui/it/floater_hardware_settings.xml @@ -22,8 +22,7 @@ Attiva VBO: </text> <check_box initial_value="true" label="Attiva oggetti OpenGL Vertex Buffer" name="vbo" tool_tip="Attivandolo su un hardware moderno aumenta la performance. Ma, su un vecchio hardware, spesso l'implementazione dei VBO è scarsa e potresti avere dei crash quando è attivato."/> - <slider label="Texture Memory (MB):" name="GraphicsCardTextureMemory" tool_tip="Spazio di memoria da ssegnare alle textures. Memoria della scheda video in Defaults. Ridurre questa impostazione potrebbe migliorare il rendimento ma potrebbe anche rendere le textures poco definite."/> - <spinner label="Indice della distanza -della nebbia:" name="fog"/> + <slider label="Memoria texture (MB):" name="GraphicsCardTextureMemory" tool_tip="Spazio di memoria da ssegnare alle textures. Utilizza la memoria della scheda video come impostazione predefinita. La riduzione di questa impostazione potrebbe migliorare il rendimento ma potrebbe anche rendere le texture poco definite."/> + <spinner label="Indice della distanza della nebbia:" name="fog"/> <button label="OK" label_selected="OK" name="OK"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_help_browser.xml b/indra/newview/skins/default/xui/it/floater_help_browser.xml index 9a158c5216dfb6abd73ca728f3fb6c1e305649cf..008643afac38c4f8c0afe4642f51277313a4657f 100644 --- a/indra/newview/skins/default/xui/it/floater_help_browser.xml +++ b/indra/newview/skins/default/xui/it/floater_help_browser.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_help_browser" title="HELP BROWSER"> +<floater name="floater_help_browser" title="BROWSER DELL'AIUTO"> + <floater.string name="loading_text"> + Caricamento in corso... + </floater.string> <layout_stack name="stack1"> - <layout_panel name="external_controls"> - <button label="Apri nel mio Web Browser" name="open_browser"/> - </layout_panel> + <layout_panel name="external_controls"/> </layout_stack> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_hud.xml b/indra/newview/skins/default/xui/it/floater_hud.xml index e458913452f0c3afb7d2244af3b00a0ab3fc51a1..437d2d64963a69b43d0240a307f19931d811f0d6 100644 --- a/indra/newview/skins/default/xui/it/floater_hud.xml +++ b/indra/newview/skins/default/xui/it/floater_hud.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_hud" title="TUTORIAL"/> +<floater name="floater_hud" title="ESERCITAZIONE"/> diff --git a/indra/newview/skins/default/xui/it/floater_im.xml b/indra/newview/skins/default/xui/it/floater_im.xml index 6303615e60e61dca58ea25a6c1616a2a74500849..aa916adf2c00a7faf60677c3d9b912822d71d4ed 100644 --- a/indra/newview/skins/default/xui/it/floater_im.xml +++ b/indra/newview/skins/default/xui/it/floater_im.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <multi_floater name="im_floater" title=""> <string name="only_user_message"> - Sei l'unico utente di questa sessione. + Sei il solo residente presente nella sessione. </string> <string name="offline_message"> [FIRST] [LAST] è offline. @@ -10,7 +10,7 @@ Clicca il tasto [BUTTON NAME] per accettare/connetterti a questa voice chat. </string> <string name="muted_message"> - Hai bloccato questo residente. Spedendo un messaggio sarà automaticamente sbloccati. + Hai bloccato questo residente. Quando gli invii un messaggio, verrà automaticamente sbloccato. </string> <string name="generic_request_error"> Errore durante la richiesta, riprova più tardi. @@ -31,7 +31,7 @@ Un moderatore di gruppo ti ha disabilitato dalla chat di testo. </string> <string name="add_session_event"> - Impossibile aggiungere utenti alla chat con [RECIPIENT]. + Impossibile aggiungere residenti alla sessione chat con [RECIPIENT]. </string> <string name="message_session_event"> Impossibile inviare il messaggio nella chat con [RECIPIENT]. diff --git a/indra/newview/skins/default/xui/it/floater_im_container.xml b/indra/newview/skins/default/xui/it/floater_im_container.xml index 2970639f4c423f442b375f194e22be77605aa28e..fb8e77b32fe48fcc55b22a51ab578d753100598d 100644 --- a/indra/newview/skins/default/xui/it/floater_im_container.xml +++ b/indra/newview/skins/default/xui/it/floater_im_container.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<multi_floater name="floater_im_box" title="Instant Messages"/> +<multi_floater name="floater_im_box" title="CONVERSAZIONI"/> diff --git a/indra/newview/skins/default/xui/it/floater_im_session.xml b/indra/newview/skins/default/xui/it/floater_im_session.xml index 830c65b4439f52edf0b496de7432f13ae3f9ebbe..8d395ea04bc5e64e184e05e4efe06d7a8da85d4a 100644 --- a/indra/newview/skins/default/xui/it/floater_im_session.xml +++ b/indra/newview/skins/default/xui/it/floater_im_session.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="panel_im"> <layout_stack name="im_panels"> - <layout_panel label="Pannello di Controllo IM" name="panel_im_control_panel"/> + <layout_panel label="Pannello di controllo IM" name="panel_im_control_panel"/> <layout_panel> <line_editor label="A" name="chat_editor"/> </layout_panel> diff --git a/indra/newview/skins/default/xui/it/floater_image_preview.xml b/indra/newview/skins/default/xui/it/floater_image_preview.xml index 341202d8bc29051c9b37e4610cf4f69b65580a2f..6169c0222d4fbb1ead301c38dc51e0bc72d63663 100644 --- a/indra/newview/skins/default/xui/it/floater_image_preview.xml +++ b/indra/newview/skins/default/xui/it/floater_image_preview.xml @@ -12,15 +12,15 @@ immagine come: </text> <combo_box label="Tipo d'abito" left="120" name="clothing_type_combo" width="166"> <combo_box.item label="Immagine" name="Image"/> - <combo_box.item label="Capelli" name="Hair"/> - <combo_box.item label="Testa Femminile" name="FemaleHead"/> - <combo_box.item label="Corpo Femminile Superiore" name="FemaleUpperBody"/> - <combo_box.item label="Corpo Femminile Inferiore" name="FemaleLowerBody"/> - <combo_box.item label="Testa Maschile" name="MaleHead"/> - <combo_box.item label="Corpo Maschile Superiore" name="MaleUpperBody"/> - <combo_box.item label="Corpo Maschile Inferiore" name="MaleLowerBody"/> + <combo_box.item label="Capigliature" name="Hair"/> + <combo_box.item label="Testa femminile" name="FemaleHead"/> + <combo_box.item label="Parte superiore del corpo femminile" name="FemaleUpperBody"/> + <combo_box.item label="Parte inferiore del corpo femminile" name="FemaleLowerBody"/> + <combo_box.item label="Testa maschile" name="MaleHead"/> + <combo_box.item label="Parte superiore del corpo maschile" name="MaleUpperBody"/> + <combo_box.item label="Parte inferiore del corpo maschile" name="MaleLowerBody"/> <combo_box.item label="Gonna" name="Skirt"/> - <combo_box.item label="Sculpted Prim" name="SculptedPrim"/> + <combo_box.item label="Prim Sculpted" name="SculptedPrim"/> </combo_box> <text name="bad_image_text"> Non è stato possibile leggere l'immagine. diff --git a/indra/newview/skins/default/xui/it/floater_incoming_call.xml b/indra/newview/skins/default/xui/it/floater_incoming_call.xml index fc7b8de6f402e196ac782a2fb86f66c769cfe39a..81a6ea7a60e2007d18fc2996192188c3aba94c16 100644 --- a/indra/newview/skins/default/xui/it/floater_incoming_call.xml +++ b/indra/newview/skins/default/xui/it/floater_incoming_call.xml @@ -1,16 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="incoming call" title="UNA PERSONA SCONOSCIUTA STA' CHIAMANDO"> +<floater name="incoming call" title="UNA PERSONA SCONOSCIUTA STA CHIAMANDO"> + <floater.string name="lifetime"> + 5 + </floater.string> <floater.string name="localchat"> - Voice Chat nei dintorni + Chat vocale nei dintorni </floater.string> <floater.string name="anonymous"> anonimo </floater.string> <floater.string name="VoiceInviteP2P"> - stà chiamando. + sta chiamando. </floater.string> <floater.string name="VoiceInviteAdHoc"> - ha aggiunto una chiamata in Voice Chat ad una conferenza in chat. + ha aderito ad una chiamata in chat vocale in conferenza. + </floater.string> + <floater.string name="VoiceInviteGroup"> + ha accettato una chiamata in Chat vocale con il gruppo [GROUP]. </floater.string> <text name="question"> Vuoi abbandonare [CURRENT_CHAT] e aderire a questa voice chat? diff --git a/indra/newview/skins/default/xui/it/floater_inventory.xml b/indra/newview/skins/default/xui/it/floater_inventory.xml index 5049bb3e58cfe56851b6eb3b2d00b785d697a22b..2aa67959885f5592eff5aa6692c0e29ad72868c7 100644 --- a/indra/newview/skins/default/xui/it/floater_inventory.xml +++ b/indra/newview/skins/default/xui/it/floater_inventory.xml @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Inventory" title="INVENTARIO"> +<floater name="Inventory" title="IL MIO INVENTARIO"> <floater.string name="Title"> - Inventario + IL MIO INVENTARIO </floater.string> <floater.string name="TitleFetching"> - Inventario (Fetching [ITEM_COUNT] Items...) [FILTER] + IL MIO INVENTARIO (recupero di [ITEM_COUNT] articoli...) [FILTER] </floater.string> <floater.string name="TitleCompleted"> - Inventario ([ITEM_COUNT] Items) [FILTER] + IL MIO INVENTARIO ([ITEM_COUNT] articoli) [FILTER] </floater.string> <floater.string name="Fetched"> - Raggiunto ?????????? + Completato </floater.string> <panel label="Pannello dell'Inventario" name="Inventory Panel"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_inventory_item_properties.xml b/indra/newview/skins/default/xui/it/floater_inventory_item_properties.xml index aaf7b716566039feb01b47e6b13294fadcc00fef..d3dc4d7eae45960aa9479d9a93b3314a023d8657 100644 --- a/indra/newview/skins/default/xui/it/floater_inventory_item_properties.xml +++ b/indra/newview/skins/default/xui/it/floater_inventory_item_properties.xml @@ -56,7 +56,7 @@ </text> <check_box label="Condividi" name="CheckShareWithGroup"/> <text name="NextOwnerLabel" width="230"> - Prossimo Proprietario: + Proprietario successivo: </text> <check_box label="Modifica" name="CheckNextOwnerModify"/> <check_box label="Copiare" left_delta="88" name="CheckNextOwnerCopy"/> diff --git a/indra/newview/skins/default/xui/it/floater_lagmeter.xml b/indra/newview/skins/default/xui/it/floater_lagmeter.xml index 93bf11b069c5523e4913f33b2dc4fa3afb7ecc30..f7b2b1ab4a402cb60d0fd64d3819129f52120a4b 100644 --- a/indra/newview/skins/default/xui/it/floater_lagmeter.xml +++ b/indra/newview/skins/default/xui/it/floater_lagmeter.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_lagmeter" title="LAG METER"> +<floater name="floater_lagmeter" title="MISURATORE LAG"> <floater.string name="max_title_msg"> Misuratore del lag </floater.string> @@ -136,7 +136,7 @@ <text left="30" name="client_lag_cause" right="-10"/> <button label="" label_selected="" name="network_lagmeter" tool_tip="Stato del lag del network"/> <text name="network"> - Network + Rete </text> <text font="SansSerifSmall" name="network_text"> Normale @@ -150,5 +150,5 @@ Normale </text> <text left="30" name="server_lag_cause" right="-32"/> - <button label=">>" name="minimize" tool_tip="Pulsante per minimizzare"/> + <button label=">>" name="minimize" tool_tip="Cambia dimensioni floater"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_land_holdings.xml b/indra/newview/skins/default/xui/it/floater_land_holdings.xml index 9f2884448d05ca675bfb39ddc41b4efd6af1c4e3..1b2f2605f7fd758f97a10cc29337c96a86ba13de 100644 --- a/indra/newview/skins/default/xui/it/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/it/floater_land_holdings.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="land holdings floater" title="LA MIA TERRA"> +<floater name="land holdings floater" title="IL MIO TERRENO"> <scroll_list name="parcel list"> - <column label="Parcel" name="name"/> + <column label="Lotto" name="name"/> <column label="Regione" name="location"/> <column label="Tipo" name="type"/> <column label="Area" name="area"/> </scroll_list> <button label="Teletrasportati" label_selected="Teletrasportati" name="Teleport" tool_tip="Teletrasportati al centro di questo terreno."/> - <button label="Mappa" label_selected="Mappa" name="Show on Map" tool_tip="Mostra questa terra nella mappa del mondo" width="130"/> + <button label="Mappa" label_selected="Mappa" name="Show on Map" tool_tip="Mostra il terreno sulla mappa del mondo" width="130"/> <text name="contrib_label"> Contributi ai tuoi gruppi: </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 d86b834c38d585dd803e1a83f71d39423afc4bd2..0bd2b02323bc47d52e5d7e018ee47c208c5453a8 100644 --- a/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml +++ b/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="script ed float" title="SCRIPT: NUOVO SCRIPT"> <floater.string name="not_allowed"> - Non puoi vedere o modificare questo script, perchè è impostato come "no copy". Necesiti tutti i permessi per vedere o modificare lo script dentro un oggetto. + Per impostazione, questo script non può essere visualizzato né modificato. Per visualizzare o modificare uno script all'interno di un oggetto, devi avere i necessari diritti di modifica. </floater.string> <floater.string name="script_running"> In esecuzione </floater.string> <floater.string name="Title"> - Script: [NAME] + SCRIPT: [NAME] </floater.string> <button label="Ripristina" label_selected="Ripristina" name="Reset"/> <check_box initial_value="true" label="In esecuzione" left="4" name="running"/> diff --git a/indra/newview/skins/default/xui/it/floater_lsl_guide.xml b/indra/newview/skins/default/xui/it/floater_lsl_guide.xml index b699b280b6359f3d198bb8db8c8747fa0ae9993f..47fe2de051a44f4128b87406d34ece4787a7790e 100644 --- a/indra/newview/skins/default/xui/it/floater_lsl_guide.xml +++ b/indra/newview/skins/default/xui/it/floater_lsl_guide.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="script ed float" title="LSL WIKI"> +<floater name="script ed float" title="RIFERIMENTO LSL"> <check_box label="Segui il cursore" name="lock_check"/> <combo_box label="Blocca" left_delta="120" name="history_combo" width="70"/> <button label="Indietro" left_delta="75" name="back_btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_map.xml b/indra/newview/skins/default/xui/it/floater_map.xml index ec4bd4ef4adfd896d6adcc5e8b29df6a85ea5ceb..70ab8dcb5a5111f01b1831f503bc985070e9b52f 100644 --- a/indra/newview/skins/default/xui/it/floater_map.xml +++ b/indra/newview/skins/default/xui/it/floater_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Map"> +<floater name="Map" title="Mini mappa"> <floater.string name="mini_map_north"> N </floater.string> diff --git a/indra/newview/skins/default/xui/it/floater_media_browser.xml b/indra/newview/skins/default/xui/it/floater_media_browser.xml index 0e25cef60b7f79645597fd82a5afb50290b1b7df..0a8c0f1c414fa9a6b32cf5d82354add8d800af58 100644 --- a/indra/newview/skins/default/xui/it/floater_media_browser.xml +++ b/indra/newview/skins/default/xui/it/floater_media_browser.xml @@ -9,13 +9,13 @@ <layout_stack name="stack1"> <layout_panel name="nav_controls"> <button label="Indietro" name="back" width="75"/> - <button label="Avanti" name="forward" left_delta="75" width="70"/> - <button label="Ricarica" name="reload" left_delta="75"/> + <button label="Avanti" left_delta="75" name="forward" width="70"/> + <button label="Ricarica" left_delta="75" name="reload"/> <combo_box left_delta="75" name="address" width="510"/> - <button label="Vai" name="go" left_delta="515"/> + <button label="Vai" left_delta="515" name="go"/> </layout_panel> <layout_panel name="parcel_owner_controls"> - <button label="Invia questo URL al terreno" name="assign"/> + <button label="Invia la pagina attuale al lotto" name="assign"/> </layout_panel> <layout_panel name="external_controls"> <button label="Apri nel web browser" name="open_browser"/> diff --git a/indra/newview/skins/default/xui/it/floater_media_settings.xml b/indra/newview/skins/default/xui/it/floater_media_settings.xml index b99a11b8816fe15c07c035c46901891a3e4bfe7f..d521502a4c68ffdd1d1eda0b5eb9c4c0c1df64cb 100644 --- a/indra/newview/skins/default/xui/it/floater_media_settings.xml +++ b/indra/newview/skins/default/xui/it/floater_media_settings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="media_settings" title="IMPOSTAZIONI MEDIA"> <button label="OK" label_selected="OK" name="OK"/> - <button label="Cancella" label_selected="Cancella" name="Cancel"/> + <button label="Annulla" label_selected="Annulla" name="Cancel"/> <button label="Applica" label_selected="Applica" name="Apply"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_mem_leaking.xml b/indra/newview/skins/default/xui/it/floater_mem_leaking.xml index ee3d642fefd76d9056f8d1d60dbea9ff17c57d7e..63074d5a4caac559b4d7e241c0762e3a39e33251 100644 --- a/indra/newview/skins/default/xui/it/floater_mem_leaking.xml +++ b/indra/newview/skins/default/xui/it/floater_mem_leaking.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="MemLeak" title="SIMULA UNA PERDITA DI MEMORIA"> +<floater name="MemLeak" title="SIMULA UNA FUGA DI MEMORIA"> <spinner label="Perdità di velocità (bytes per frame):" name="leak_speed"/> <spinner label="Memoria Persa Max (MB):" name="max_leak"/> <text name="total_leaked_label"> diff --git a/indra/newview/skins/default/xui/it/floater_moveview.xml b/indra/newview/skins/default/xui/it/floater_moveview.xml index edc5d9178da1141fa71a81081a6cf73b186a12bd..26d861c566c3873d514ff84c3c5b0785f7e948a2 100644 --- a/indra/newview/skins/default/xui/it/floater_moveview.xml +++ b/indra/newview/skins/default/xui/it/floater_moveview.xml @@ -1,35 +1,43 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="move_floater"> <string name="walk_forward_tooltip"> - Cammina in avanti (premi Freccia Sù o W) + Cammina in avanti (premi freccia su o W) </string> <string name="walk_back_tooltip"> - Cammina indietro (premi Freccia Giù o S) + Cammina indietro (premi freccia giù o S) </string> <string name="run_forward_tooltip"> - Corri in avanti (premi Freccia Sù o W) + Corri in avanti (premi freccia su o W) </string> <string name="run_back_tooltip"> - Corri indietro (premi Freccia Giù o S) + Corri indietro (premi freccia giù o S) </string> <string name="fly_forward_tooltip"> - Vola in avanti (premi Freccia Sù o W) + Vola in avanti (premi freccia su o W) </string> <string name="fly_back_tooltip"> - Vola indietro (premi Freccia Giù o S) + Vola indietro (premi freccia giù o S) + </string> + <string name="walk_title"> + Cammina + </string> + <string name="run_title"> + Corri + </string> + <string name="fly_title"> + Vola </string> <panel name="panel_actions"> - <button label="" label_selected="" name="turn left btn" tool_tip="Gira a sinistra (premi Freccia Sinistra o A)"/> - <button label="" label_selected="" name="turn right btn" tool_tip="Gira a destra (premi Freccia Destra o D)"/> - <button label="" label_selected="" name="move up btn" tool_tip="Vola in alto, premi "E""/> - <button label="" label_selected="" name="move down btn" tool_tip="Vola in basso, premi "C""/> - <joystick_turn name="forward btn" tool_tip="Cammina in avanti (premi Freccia Sù o W)"/> - <joystick_turn name="backward btn" tool_tip="Cammina indietro (premi Freccia Giù o S)"/> + <button label="" label_selected="" name="turn left btn" tool_tip="Gira a sinistra (premi freccia sinistra o A)"/> + <button label="" label_selected="" name="turn right btn" tool_tip="Gira a destra (premi freccia destra o D)"/> + <button label="" label_selected="" name="move up btn" tool_tip="Vola in alto, premi E"/> + <button label="" label_selected="" name="move down btn" tool_tip="Vola in basso, premi C"/> + <joystick_turn name="forward btn" tool_tip="Cammina in avanti (premi freccia su o W)"/> + <joystick_turn name="backward btn" tool_tip="Cammina indietro (premi freccia giù o S)"/> </panel> <panel name="panel_modes"> - <button label="" name="mode_walk_btn" tool_tip="Modalità per camminare"/> - <button label="" name="mode_run_btn" tool_tip="Modalità per correre"/> - <button label="" name="mode_fly_btn" tool_tip="Modalità di volo"/> - <button label="Ferma il volo" name="stop_fly_btn" tool_tip="Ferma il volo"/> + <button label="" name="mode_walk_btn" tool_tip="Modalità cammina"/> + <button label="" name="mode_run_btn" tool_tip="Modalità corsa"/> + <button label="" name="mode_fly_btn" tool_tip="Modalità volo"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_mute_object.xml b/indra/newview/skins/default/xui/it/floater_mute_object.xml index 81cd46ec4d0489ec8c3225053b7d3a42dc7b675c..dd1a2b67d73693bac6fe7d4fe25ecf9a04ba6043 100644 --- a/indra/newview/skins/default/xui/it/floater_mute_object.xml +++ b/indra/newview/skins/default/xui/it/floater_mute_object.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="mute by name" title="BLOCCA OGGETTO PER NOME"> +<floater name="mute by name" title="BLOCCA OGGETTO IN BASE AL NOME"> <text name="message"> Blocca un oggetto: </text> diff --git a/indra/newview/skins/default/xui/it/floater_nearby_chat.xml b/indra/newview/skins/default/xui/it/floater_nearby_chat.xml index 364b62fbdb36a5bb4ec16ec1e9228d21b9fa3dc8..9878fe85eac25758a96883b7d9e8ab53dc494a68 100644 --- a/indra/newview/skins/default/xui/it/floater_nearby_chat.xml +++ b/indra/newview/skins/default/xui/it/floater_nearby_chat.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="nearby_chat" title="CHAT VICINA"/> +<floater name="nearby_chat" title="CHAT NEI DINTORNI"/> diff --git a/indra/newview/skins/default/xui/it/floater_outfit_save_as.xml b/indra/newview/skins/default/xui/it/floater_outfit_save_as.xml new file mode 100644 index 0000000000000000000000000000000000000000..dff5f33e5751d41fc9ad2395e64d1f397c169237 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_outfit_save_as.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="modal container" title="Salva vestiario"> + <button label="Salva" label_selected="Salva" name="Save"/> + <button label="Annulla" label_selected="Annulla" name="Cancel"/> + <text name="Save item as:"> + Salva quello che indosso +come nuovo vestiario: + </text> + <line_editor name="name ed"> + [DESC] (nuovo) + </line_editor> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_outgoing_call.xml b/indra/newview/skins/default/xui/it/floater_outgoing_call.xml index b4536e31cccf1160c12e4b6b6f051f4765a66d06..268d46e07e3eff23af025636964e23e24ca1b8cf 100644 --- a/indra/newview/skins/default/xui/it/floater_outgoing_call.xml +++ b/indra/newview/skins/default/xui/it/floater_outgoing_call.xml @@ -1,28 +1,40 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="outgoing call" title="CHIAMANDO"> +<floater name="outgoing call" title="CHIAMATA IN CORSO"> + <floater.string name="lifetime"> + 5 + </floater.string> <floater.string name="localchat"> - Voice Chat nei dintorni + Chat vocale nei dintorni </floater.string> <floater.string name="anonymous"> anonimo </floater.string> <floater.string name="VoiceInviteP2P"> - stà chiamando. + sta chiamando. </floater.string> <floater.string name="VoiceInviteAdHoc"> - ha aderito ad una chiamata Voice Chat con una chat in conferenza. + ha aderito ad una chiamata in chat vocale in conferenza. </floater.string> <text name="connecting"> - Connettendo a [CALLEE_NAME] + Collegamento in corso a [CALLEE_NAME] </text> <text name="calling"> - Chiamando [CALLEE_NAME] + Chiamata a [CALLEE_NAME] </text> <text name="noanswer"> - Nessuna risposta. Per favore riprova più tardi. + Nessuna risposta. Riprova più tardi. + </text> + <text name="nearby"> + Sei stato scollegato da [VOICE_CHANNEL_NAME]. [RECONNECT_NEARBY] + </text> + <text name="nearby_P2P_by_other"> + [VOICE_CHANNEL_NAME] ha chiuso la chiamata. [RECONNECT_NEARBY] + </text> + <text name="nearby_P2P_by_agent"> + Hai chiuso la chiamata. [RECONNECT_NEARBY] </text> <text name="leaving"> - Abbandonando [CURRENT_CHAT]. + Chiusura chat [CURRENT_CHAT]. </text> - <button label="Cancella" label_selected="Cancella" name="Cancel"/> + <button label="Annulla" label_selected="Annulla" name="Cancel"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_pay.xml b/indra/newview/skins/default/xui/it/floater_pay.xml index 59004bbbd705372dac51dda7178f4d66b9424fb4..c1ea8ec9c8e243e7cdef68b2b7d98eaf2a843d04 100644 --- a/indra/newview/skins/default/xui/it/floater_pay.xml +++ b/indra/newview/skins/default/xui/it/floater_pay.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Give Money" title=""> <string name="payee_group"> - Paga Gruppo + Paga gruppo </string> <string name="payee_resident"> - Paga Residente + Paga residente </string> <text left="5" name="payee_label" width="105"> Paga: @@ -18,7 +18,7 @@ <button label="10 L$" label_selected="10 L$" left="118" name="fastpay 10" width="80"/> <button label="20 L$" label_selected="20 L$" left="210" name="fastpay 20"/> <text left="4" name="amount text"> - O, scegli importo: + Oppure, scegli importo: </text> <line_editor left="70" name="amount" width="49"/> <button label="Paga" label_selected="Paga" left="127" name="pay btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_pay_object.xml b/indra/newview/skins/default/xui/it/floater_pay_object.xml index c51a2b7b317dfb09cf013770100814345a536812..37f549b5da077bafd80205a9fe27d2993bd490a6 100644 --- a/indra/newview/skins/default/xui/it/floater_pay_object.xml +++ b/indra/newview/skins/default/xui/it/floater_pay_object.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Give Money" title=""> <string halign="left" name="payee_group" width="100"> - Paga Gruppo + Paga gruppo </string> <string halign="left" name="payee_resident" width="120"> - Pags Residente + Paga residente </string> <icon name="icon_person" tool_tip="Persona"/> <text left="120" name="payee_name"> @@ -15,14 +15,14 @@ </text> <icon name="icon_object" tool_tip="Oggetti"/> <text left="120" name="object_name_text"> - ... + Il mio oggetto con un nome veramente lungo </text> <button label="1 L$" label_selected="1 L$" left="125" name="fastpay 1" width="70"/> <button label="5 L$" label_selected="5 L$" left="200" name="fastpay 5" width="70"/> <button label="10 L$" label_selected="10 L$" left="125" name="fastpay 10" width="70"/> <button label="20 L$" label_selected="20 L$" left="200" name="fastpay 20" width="70"/> <text halign="left" left="5" name="amount text"> - O, scegli importo: + Oppure, scegli importo: </text> <line_editor left="74" name="amount" width="50"/> <button label="Paga" label_selected="Paga" name="pay btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_perm_prefs.xml b/indra/newview/skins/default/xui/it/floater_perm_prefs.xml index 67e40939513cbc6792da9e4789ae8749a3c8d5ce..a02b3b507519646b27df3726fc14a420cf4a333d 100644 --- a/indra/newview/skins/default/xui/it/floater_perm_prefs.xml +++ b/indra/newview/skins/default/xui/it/floater_perm_prefs.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="perm prefs" title="PERMESSI di UPLOAD in DEFAULT"> +<floater name="perm prefs" title="DIRITTI DI CARICAMENTO PREDEFINITI"> <panel label="Permessi" name="permissions"> <button label="?" label_selected="?" name="help"/> <check_box label="Condividi con il gruppo" name="share_with_group"/> diff --git a/indra/newview/skins/default/xui/it/floater_postcard.xml b/indra/newview/skins/default/xui/it/floater_postcard.xml index de246db826619f7e991733e315650018d5b7698b..cb2916268a95f34546a4fe6d29f3a02b2bd53674 100644 --- a/indra/newview/skins/default/xui/it/floater_postcard.xml +++ b/indra/newview/skins/default/xui/it/floater_postcard.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Postcard" title="ISTANTANEA IN EMAIL"> +<floater name="Postcard" title="INVIA FOTO VIA E-MAIL"> <text name="to_label" width="135"> Email del destinatario: </text> @@ -35,6 +35,6 @@ Vieni a vedere! </string> <string name="upload_message"> - Spedendo... + Invio... </string> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_preferences.xml b/indra/newview/skins/default/xui/it/floater_preferences.xml index a76b9e3e27d14bbb11db5c37cf8cd424b267860d..5ffe7f480254ae83c3d818a7fc5c8ebb344ee161 100644 --- a/indra/newview/skins/default/xui/it/floater_preferences.xml +++ b/indra/newview/skins/default/xui/it/floater_preferences.xml @@ -5,11 +5,11 @@ <tab_container name="pref core" tab_width="146" width="646"> <panel label="Generale" name="general"/> <panel label="Grafica" name="display"/> - <panel label="Privacy" name="im"/> - <panel label="Suono" name="audio"/> + <panel label="Riservatezza" name="im"/> + <panel label="Audio e media" name="audio"/> <panel label="Chat" name="chat"/> <panel label="Notifiche" name="msgs"/> - <panel label="Configurazione" name="input"/> - <panel label="Avanzato" name="advanced1"/> + <panel label="Impostazione" name="input"/> + <panel label="Avanzate" name="advanced1"/> </tab_container> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_preview_animation.xml b/indra/newview/skins/default/xui/it/floater_preview_animation.xml index 006198781ba63b0102923ff3a92c2e7152a1b034..73082c952686bcd9ab11c5b86bf60078eae46747 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_animation.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_animation.xml @@ -6,6 +6,6 @@ <text name="desc txt"> Descrizione: </text> - <button label="Esegui inworld" label_selected="Ferma" left="20" name="Anim play btn" tool_tip="Riproduci questa animazione così che gli altri possano vederla" width="131"/> + <button label="Riproduci in Second Life" label_selected="Ferma" left="20" name="Anim play btn" tool_tip="Riproduci questa animazione così che gli altri possano vederla" width="131"/> <button label="Esegui localmente" label_selected="Ferma" left="162" name="Anim audition btn" tool_tip="Riproduci questa animazione così che solo tu possa vederla" width="125"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_preview_gesture.xml b/indra/newview/skins/default/xui/it/floater_preview_gesture.xml index 850f4c21acc9120f24689dad9bede56679e48206..4e926cedc9250bd2b645fb40b5296c21488892be 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_gesture.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_gesture.xml @@ -24,6 +24,9 @@ <floater.string name="Title"> Gesture: [NAME] </floater.string> + <text name="name_text"> + Nome: + </text> <text name="desc_label"> Descrizione: </text> @@ -47,18 +50,18 @@ <text name="steps_label"> Fasi: </text> - <button label="Sù" name="up_btn"/> + <button label="Su" name="up_btn"/> <button label="Giù" name="down_btn"/> <button label="Elimina" name="delete_btn"/> <radio_group name="animation_trigger_type"> - <radio_item label="Inizia" name="start"/> - <radio_item label="Stop" name="stop"/> + <radio_item label="Attiva" name="start"/> + <radio_item label="Ferma" name="stop"/> </radio_group> <check_box label="finché le animazioni sono eseguite" left="226" name="wait_anim_check"/> <check_box label="tempo in secondi" name="wait_time_check"/> <line_editor left_delta="114" name="wait_time_editor"/> <text name="help_label"> - Tutte le fasi avvengono simultaneamente, a meno che non aggiungi una fase attendi. + Tutte le fasi avvengono contemporaneamente, a meno che non aggiungi fasi di attesa. </text> <check_box label="Attiva" name="active_check" tool_tip="Le gesture attivate possono essere eseguite scrivendo in chat la parola chiave o premendo i tasti chiave. Le gesture generalmente si disattivano quando c'è un conflitto nei relativi tasti."/> <button label="Anteprima" name="preview_btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_preview_gesture_info.xml b/indra/newview/skins/default/xui/it/floater_preview_gesture_info.xml index 660b868cae4069554f82a2dec36a45d2836df945..d490416cc7e7de128e11fdfe42f0a83a60f2e244 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_gesture_info.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_gesture_info.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Gesture" title="GESTURE SHORTCUT"/> +<floater name="Gesture" title="SCORCIATOIA GESTURE"/> diff --git a/indra/newview/skins/default/xui/it/floater_preview_gesture_shortcut.xml b/indra/newview/skins/default/xui/it/floater_preview_gesture_shortcut.xml index 942d5ed1cee7afc05f1767ffe1070470e43ff0b2..eb0bc4d86877e1265bd2d70becba32e4d436b86b 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_gesture_shortcut.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_gesture_shortcut.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Gesture" title="TASTO RAPIDO PER GESTURE"> +<floater name="Gesture" title="SCORCIATOIA GESTURE"> <text name="trigger_label"> Chat: </text> @@ -8,8 +8,8 @@ </text> <combo_box label="Nessuno" name="modifier_combo"/> <combo_box label="Nessuno" name="key_combo"/> - <text name="replace_text" tool_tip="Sostituisci la parola chiave con queste parole. Per esempio, parola chiave 'ciao' sostituendo con 'buongiorno' cambierà la chat da 'Io dico ciao' in 'Io dico buongiorno' non appena attiverete la gesture!"> + <text name="replace_text" tool_tip="Sostituisci la parola chiave con queste parole. Per esempio, se si sceglie di sostituire la parola chiave 'ciao' con 'buongiorno', nella chat il testo 'Volevo dire ciao' diventerà 'Volevo dire buongiorno' e verrà attivata la gesture."> Sostituisci: </text> - <line_editor name="replace_editor" tool_tip="Sostituisci la parola chiave con queste parole. Per esempio, parola chiave 'ciao' sostituendo con 'buongiorno' cambierà la chat da 'Io dico ciao' in 'Io dico buongiorno' non appena attiverete la gesture"/> + <line_editor name="replace_editor" tool_tip="Sostituisci la parola chiave con queste parole. Per esempio, se si sceglie di sostituire la parola chiave 'ciao' con 'buongiorno', nella chat il testo 'Volevo dire ciao' diventerà 'Volevo dire buongiorno' e verrà attivata la gesture"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_preview_gesture_steps.xml b/indra/newview/skins/default/xui/it/floater_preview_gesture_steps.xml index 7c1f55ddbac87850375e755fc8f6051039af7e51..d490416cc7e7de128e11fdfe42f0a83a60f2e244 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_gesture_steps.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_gesture_steps.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Gesture" title="TASTO RAPIDO GESTURE"/> +<floater name="Gesture" title="SCORCIATOIA GESTURE"/> diff --git a/indra/newview/skins/default/xui/it/floater_preview_notecard.xml b/indra/newview/skins/default/xui/it/floater_preview_notecard.xml index 08f50872427272e1b73dff02938ca64097d0b33a..70e28dde3541c360423bca464b837d2f4667048c 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_notecard.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_notecard.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="preview notecard" title="NOTE:"> +<floater name="preview notecard" title="BIGLIETTO:"> <floater.string name="no_object"> - Impossibile trovare l'oggetto che contiene questa nota. + Impossibile trovare un oggetto contenente questo biglietto </floater.string> <floater.string name="not_allowed"> - Non hai i permessi per leggere questa nota. + Non hai il permesso di leggere questo biglietto. </floater.string> <floater.string name="Title"> - Notecard: [NAME] + Biglietto: [NAME] </floater.string> <floater.string label="Salva" label_selected="Salva" name="Save"> Salva diff --git a/indra/newview/skins/default/xui/it/floater_preview_sound.xml b/indra/newview/skins/default/xui/it/floater_preview_sound.xml index 182243561cf549b431a54df8cd7530a48f3a205a..8eb9573e5442286e6d4b9f6c7e331ff37ae15598 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_sound.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_sound.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview_sound"> <floater.string name="Title"> - Suono: [NAME] + Suono : [NAME] </floater.string> <text name="desc txt"> Descrizione: </text> - <button label="Avvia inworld" label_selected="Avvia inworld" name="Sound play btn" tool_tip="Riproduci questo suono in modo che gli altri possano sentirlo"/> - <button label="Avvia localmente" label_selected="Avvia localmente" name="Sound audition btn" tool_tip="Riproduci questo suono in modo che solo tu possa sentirlo"/> + <button label="Riproduci in Second Life" label_selected="Riproduci in Second Life" name="Sound play btn" tool_tip="Riproduci questo suono in modo che anche gli altri possano udirlo"/> + <button label="Avvia localmente" label_selected="Avvia localmente" name="Sound audition btn" tool_tip="Riproduci questo suono in modo che solo tu possa udirlo"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_preview_texture.xml b/indra/newview/skins/default/xui/it/floater_preview_texture.xml index dd24079ea3bcaa13e9b22169083c683de5fd9c6d..5b4054514e3663232160211b72b137a6d243cbcd 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_texture.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_texture.xml @@ -10,35 +10,38 @@ Descrizione: </text> <text name="dimensions"> - [WIDTH]px x [HEIGHT]px + [WIDTH] px x [HEIGHT] px </text> - <combo_box name="combo_aspect_ratio" tool_tip="Anteprima del rapporto d'aspetto impostato"> + <text name="aspect_ratio"> + Antreprima rapporto di visualizzazione + </text> + <combo_box name="combo_aspect_ratio" tool_tip="Anteprima con rapporto di visualizzazione fisso"> <combo_item name="Unconstrained"> Libero </combo_item> - <combo_item name="1:1" tool_tip="Immagine del Gruppo o Profilo nel Mondo Reale"> + <combo_item name="1:1" tool_tip="Logo del gruppo o profilo nel mondo reale"> 1:1 </combo_item> - <combo_item name="4:3" tool_tip="[SECOND_LIFE] profilo"> + <combo_item name="4:3" tool_tip="Profilo [SECOND_LIFE]"> 4:3 </combo_item> - <combo_item name="10:7" tool_tip="Annunci ed elenco del Cerca, landmarks"> + <combo_item name="10:7" tool_tip="Annunci e inserzioni, punti di riferimento"> 10:7 </combo_item> - <combo_item name="3:2" tool_tip="Info sul terreno"> + <combo_item name="3:2" tool_tip="Informazioni sul terreno"> 3:2 </combo_item> <combo_item name="16:10"> 16:10 </combo_item> - <combo_item name="16:9" tool_tip="Preferiti nel Profilo"> + <combo_item name="16:9" tool_tip="Preferiti del Profilo"> 16:9 </combo_item> <combo_item name="2:1"> 2:1 </combo_item> </combo_box> - <button label="OK" name="keep"/> - <button label="Cancella" name="discard"/> - <button label="Salva come:" name="save_tex_btn"/> + <button label="OK" name="Keep"/> + <button label="Elimina" name="Discard"/> + <button label="Salva con nome" name="save_tex_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_publish_classified.xml b/indra/newview/skins/default/xui/it/floater_publish_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..698441272856cc838166b69c46426f99f74d9f9d --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_publish_classified.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="publish_classified" title="Pubblicazione inserzione"> + <text name="explanation_text"> + La tua inserzione sarà visibile per una settimana dal giorno della sua pubblicazione. + +Ricordiamo che i costi per gli annunci non possono essere rimborsati + </text> + <spinner label="Prezzo per inserzione:" name="price_for_listing" tool_tip="Prezzo per inserzione:" value="50"/> + <text name="l$_text" value="L$"/> + <text name="more_info_text"> + Maggiori informazioni (link alla guida sugli annunci) + </text> + <button label="Pubblica" name="publish_btn"/> + <button label="Annulla" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_region_info.xml b/indra/newview/skins/default/xui/it/floater_region_info.xml index 98808e4b55c60b10aa4381cbb2e6c57a3486ced3..dc2c24ca569bd5a7770414172ed7374b8e55d446 100644 --- a/indra/newview/skins/default/xui/it/floater_region_info.xml +++ b/indra/newview/skins/default/xui/it/floater_region_info.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="regioninfo" title="REGIONE/PROPRIETA'"/> +<floater name="regioninfo" title="Regione/proprietà immobiliare"/> 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 a1e430b6b2380b4c2fc47efd47a7368465c615a1..4827cc739d1e7552149864d1d51b013ab80698ec 100644 --- a/indra/newview/skins/default/xui/it/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/it/floater_report_abuse.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_report_abuse" title="DENUNCIA DI ABUSO"> <floater.string name="Screenshot"> - Fotografia + Immagine </floater.string> - <check_box label="Utilizza questa fotografia" name="screen_check"/> + <check_box label="Utilizza questa immagine" name="screen_check"/> <text name="reporter_title"> Segnalato da: </text> @@ -41,8 +41,8 @@ <combo_box name="category_combo" tool_tip="Categoria -- scegli la categoria che descrive meglio questa segnalazione"> <combo_box.item label="Scegli la categoria" name="Select_category"/> <combo_box.item label="Età > Far finta di essere minore" name="Age__Age_play"/> - <combo_box.item label="Età > Residente adulto nella Teen Second Life" name="Age__Adult_resident_on_Teen_Second_Life"/> - <combo_box.item label="Età > Residente minorenne al di fuori della 'Second Life per Teenager'" name="Age__Underage_resident_outside_of_Teen_Second_Life"/> + <combo_box.item label="Età > Residente adulto in Teen Second Life" name="Age__Adult_resident_on_Teen_Second_Life"/> + <combo_box.item label="Età > Residente minorenne fuori da Teen Second Life" name="Age__Underage_resident_outside_of_Teen_Second_Life"/> <combo_box.item label="Assalto > sandbox da combattimento / area pericolosa" name="Assault__Combat_sandbox___unsafe_area"/> <combo_box.item label="Assalto > Area sicura" name="Assault__Safe_area"/> <combo_box.item label="Assalto > Test di armi in sandbox" name="Assault__Weapons_testing_sandbox"/> @@ -82,7 +82,7 @@ <text name="abuser_name_title"> Nome di chi ha commesso l'abuso: </text> - <button label="Scegli un residente" label_selected="" name="select_abuser" tool_tip="Scegli il nome di chi ha commesso l'abuso dalla lista"/> + <button label="Scegli" label_selected="" name="select_abuser" tool_tip="Scegli il nome di chi ha commesso l'abuso dalla lista"/> <text name="abuser_name_title2"> Luogo dell'abuso: </text> @@ -93,10 +93,10 @@ Dettagli: </text> <text name="bug_aviso"> - Specifica data, luogo, natura dell'abuso, testo rilevante di chat/IM, e se possibile indica l'oggetto. + Fornisci informazioni specifiche il più possibile </text> <text name="incomplete_title"> - * Nota: segnalazioni incomplete non saranno esaminate + * le segnalazioni incomplete non saranno esaminate </text> <button label="Segnala abuso" label_selected="Segnala abuso" name="send_btn"/> <button label="Annulla" label_selected="Annulla" name="cancel_btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_script_limits.xml b/indra/newview/skins/default/xui/it/floater_script_limits.xml new file mode 100644 index 0000000000000000000000000000000000000000..2383b85bb76ae5695482bd1037ee5df5f972282c --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_script_limits.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="scriptlimits" title="INFORMAZIONI SULLO SCRIPT"/> diff --git a/indra/newview/skins/default/xui/it/floater_script_preview.xml b/indra/newview/skins/default/xui/it/floater_script_preview.xml index 942829739770bd03c9fa2ddc46b1ce2f337d3f0f..d007774f4344905f6eea3071d9ead81efb23f7f8 100644 --- a/indra/newview/skins/default/xui/it/floater_script_preview.xml +++ b/indra/newview/skins/default/xui/it/floater_script_preview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview lsl text" title="SCRIPT: SCRIPT DI ROTAZIONE"> <floater.string name="Title"> - Script: [NAME] + SCRIPT: [NAME] </floater.string> <text name="desc txt"> Descrizione: diff --git a/indra/newview/skins/default/xui/it/floater_script_queue.xml b/indra/newview/skins/default/xui/it/floater_script_queue.xml index 728fbe8c8d968aa9137d4997145ce44788bc8763..f4117d30a2055805bd29ee43902ee96508884887 100644 --- a/indra/newview/skins/default/xui/it/floater_script_queue.xml +++ b/indra/newview/skins/default/xui/it/floater_script_queue.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="queue" title="RESETTA IL PROGRESSO"> +<floater name="queue" title="AZZERA AVANZAMENTO"> <floater.string name="Starting"> - Conteggio [START] degli [COUNT] articoli. + Avvio di [START] di [COUNT] oggetti. </floater.string> <floater.string name="Done"> - Eseguito. + Fine. </floater.string> <floater.string name="Resetting"> - Resettando + Ripristino in corso </floater.string> <floater.string name="Running"> In esecuzione diff --git a/indra/newview/skins/default/xui/it/floater_search.xml b/indra/newview/skins/default/xui/it/floater_search.xml index 6afdd2437ee0bcf2deecf6f82d0ed83a045e4b9e..05f5dfe71990fc96a59fadb3113db62606dbeffa 100644 --- a/indra/newview/skins/default/xui/it/floater_search.xml +++ b/indra/newview/skins/default/xui/it/floater_search.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_search" title="TROVA"> <floater.string name="loading_text"> - Caricando... + Caricamento in corso... </floater.string> <floater.string name="done_text"> - Eseguito + Fine </floater.string> <layout_stack name="stack1"> <layout_panel name="browser_layout"> <text name="refresh_search"> - Redo search to reflect current God level + Ripeti ricerca in modo che rifletta il livello di diritti Admin attuale </text> </layout_panel> </layout_stack> diff --git a/indra/newview/skins/default/xui/it/floater_select_key.xml b/indra/newview/skins/default/xui/it/floater_select_key.xml index 181b7d529203fdd8f8098db258662e3ef0db7394..014bc76ffbbc1ea60f12c09fd0d51e6886edf708 100644 --- a/indra/newview/skins/default/xui/it/floater_select_key.xml +++ b/indra/newview/skins/default/xui/it/floater_select_key.xml @@ -2,6 +2,6 @@ <floater name="modal container" title=""> <button label="Annulla" label_selected="Annulla" name="Cancel"/> <text name="Save item as:"> - clicca un tasto per impostare la modalità PARLA con il tuo pulsante. + Premi una chiave per configurarla come pulsante da premere per parlare. </text> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_sell_land.xml b/indra/newview/skins/default/xui/it/floater_sell_land.xml index 2a4fa05b54b1c27ecf731a599aea9f555ad1c726..0f8d24ebbd2ff625222502a0a8864c6c80fae988 100644 --- a/indra/newview/skins/default/xui/it/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/it/floater_sell_land.xml @@ -1,21 +1,21 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="sell land" title="VENDI LA TERRA"> +<floater name="sell land" title="VENDI TERRENO"> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> <text name="info_parcel_label"> - Parcel: + Lotto: </text> <text left="82" name="info_parcel"> - NOME DEL PARCEL + NOME DEL LOTTO </text> <text name="info_size_label"> - Misura: + Dimensioni: </text> <text left="82" name="info_size"> [AREA] m² </text> <text bottom_delta="-57" height="28" name="info_action"> - Vendere questo parcel: + Per vendere questo lotto: </text> <text name="price_label"> 1. Imposta un prezzo: @@ -30,36 +30,36 @@ 0 </line_editor> <text name="price_per_m"> - (L$[PER_METER] per m²) + ([PER_METER] L$ per m²) </text> <text name="sell_to_label"> - 2. Vendi la terra a: + 2. Vendi il terreno a: </text> <text name="sell_to_text"> - Scegli se vendere a chiunque o ad un specifico compratore. + Scegli se vendere a chiunque o ad un determinato acquirente. </text> <combo_box name="sell_to"> <combo_box.item label="- Seleziona uno -" name="--selectone--"/> <combo_box.item label="Chiunque" name="Anyone"/> - <combo_box.item label="Persona Specifica:" name="Specificuser:"/> + <combo_box.item label="Persona specifica:" name="Specificuser:"/> </combo_box> <button label="Seleziona" name="sell_to_select_agent"/> <text name="sell_objects_label"> 3. Vendi gli oggetti con la terra? </text> <text name="sell_objects_text"> - Gli oggetti trasferibili del proprietaio della Terra cambieranno proprietà . + Gli oggetti trasferibili del proprietario presenti sul lotto cambieranno di proprietà . </text> <radio_group bottom_delta="-58" name="sell_objects"> - <radio_item label="No, mantieni la proprietà sugli oggetti" name="no"/> + <radio_item label="No, mantieni la proprietà degli oggetti" name="no"/> <radio_item label="Si, vendi gli oggetti con la terra" name="yes"/> </radio_group> - <button label="Mostra Oggetti" name="show_objects"/> + <button label="Mostra oggetti" name="show_objects"/> <text name="nag_message_label"> RICORDA: Tutte le vendite sono definitive. </text> - <button label="Imposta Terra in Vendita" name="sell_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="Imposta terreno come in vendita" name="sell_btn"/> + <button label="Annulla" name="cancel_btn"/> </panel> </scroll_container> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_settings_debug.xml b/indra/newview/skins/default/xui/it/floater_settings_debug.xml index 385a7ed6e9169850e9f99b7afaa612c826bf6c98..aab00a26ce47a570fc005ba850b123cfcff48689 100644 --- a/indra/newview/skins/default/xui/it/floater_settings_debug.xml +++ b/indra/newview/skins/default/xui/it/floater_settings_debug.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="settings_debug" title="DEBUG SETTINGS"> - <combo_box name="boolean_combo"> - <combo_box.item label="VERO" name="TRUE"/> - <combo_box.item label="FALSO" name="FALSE"/> - </combo_box> +<floater name="settings_debug" title="PARAMETRI DI DEBUG"> + <radio_group name="boolean_combo"> + <radio_item label="VERO" name="TRUE" value="vero"/> + <radio_item label="FALSO" name="FALSE" value=""/> + </radio_group> <color_swatch label="Colore" name="val_color_swatch"/> <spinner label="x" name="val_spinner_1"/> <spinner label="x" name="val_spinner_2"/> diff --git a/indra/newview/skins/default/xui/it/floater_snapshot.xml b/indra/newview/skins/default/xui/it/floater_snapshot.xml index 668c3c8c9e263f2410ce2b95a871735d987c3d7c..03aaed46be8f193eba4fdbb1192cf24c3e2fd665 100644 --- a/indra/newview/skins/default/xui/it/floater_snapshot.xml +++ b/indra/newview/skins/default/xui/it/floater_snapshot.xml @@ -4,23 +4,23 @@ Destinazione della fotografia </text> <radio_group label="Tipo di fotografia" name="snapshot_type_radio" width="228"> - <radio_item label="Invia via email" name="postcard"/> - <radio_item label="Salva nel tuo inventario ([AMOUNT] L$)" name="texture"/> - <radio_item label="Salva sul tuo pc" name="local"/> + <radio_item label="E-mail" name="postcard"/> + <radio_item label="Il mio inventario (L$[AMOUNT])" name="texture"/> + <radio_item label="Salva sul mio computer" name="local"/> </radio_group> <text name="file_size_label"> - Grandezza del file: [SIZE] KB + [SIZE] KB </text> <button label="Aggiorna la fotografia" name="new_snapshot_btn"/> <button label="Invia" name="send_btn"/> <button label="Salva ([AMOUNT] L$)" name="upload_btn"/> <flyout_button label="Salva" name="save_btn" tool_tip="Salva l'immagine come file"> <flyout_button_item label="Salva" name="save_item"/> - <flyout_button_item label="Salva come..." name="saveas_item"/> + <flyout_button_item label="Salva con nome..." name="saveas_item"/> </flyout_button> <button label="Annulla" name="discard_btn"/> - <button label="Espandi >>" name="more_btn" tool_tip="Opzioni Avanzate"/> - <button label="<< Diminuisci" name="less_btn" tool_tip="Opzioni Avanzate"/> + <button label="Altro" name="more_btn" tool_tip="Opzioni Avanzate"/> + <button label="Meno" name="less_btn" tool_tip="Opzioni Avanzate"/> <text name="type_label2"> Grandezza </text> @@ -59,7 +59,7 @@ <spinner label="Larghezza" label_width="58" name="snapshot_width" width="116"/> <spinner label="Altezza" label_width="41" left="130" name="snapshot_height" width="101"/> <check_box label="Mantieni le proporzioni" name="keep_aspect_check"/> - <slider label="Qualità d'immagine" name="image_quality_slider"/> + <slider label="Qualità dell'immagine" name="image_quality_slider"/> <text name="layer_type_label" width="55"> Fotografa: </text> @@ -68,11 +68,10 @@ <combo_box.item label="Profondità " name="Depth"/> <combo_box.item label="Colori primari degli oggetti" name="ObjectMattes"/> </combo_box> - <check_box label="Mostra l'interfaccia nella fotografia" name="ui_check"/> - <check_box bottom_delta="-17" label="Mostra i dispositivi indossati nella foto" name="hud_check"/> + <check_box label="Interfaccia" name="ui_check"/> + <check_box bottom_delta="-17" label="HUD" name="hud_check"/> <check_box bottom_delta="-17" label="Mantieni aperto dopo aver salvato" name="keep_open_check"/> - <check_box bottom_delta="-17" label="Blocca l'anteprima -(Anteprima a schermo intero)" name="freeze_frame_check"/> + <check_box bottom_delta="-17" label="Congela il frame (pieno schermo)" name="freeze_frame_check"/> <check_box bottom_delta="-29" label="Auto-Aggiorna" name="auto_snapshot_check"/> <string name="unknown"> sconosciuto diff --git a/indra/newview/skins/default/xui/it/floater_stats.xml b/indra/newview/skins/default/xui/it/floater_stats.xml index 7c8e6ba1a18e314272760c7cc4662d3372bddb30..aed2a03a2189dfbfc3a1b4f90e272ebf2557d22b 100644 --- a/indra/newview/skins/default/xui/it/floater_stats.xml +++ b/indra/newview/skins/default/xui/it/floater_stats.xml @@ -2,68 +2,68 @@ <floater name="Statistics" title="STATISTICHE"> <scroll_container name="statistics_scroll"> <container_view name="statistics_view"> - <stat_view label="Base" name="basic"> + <stat_view label="Di base" name="basic"> <stat_bar label="FPS" name="fps"/> - <stat_bar label="Larghezza Banda" name="bandwidth"/> - <stat_bar label="Perdita Pacchetti" name="packet_loss"/> + <stat_bar label="Larghezza banda" name="bandwidth"/> + <stat_bar label="Perdita pacchetti" name="packet_loss"/> <stat_bar label="Tempo Ping Sim" name="ping"/> </stat_view> - <stat_view label="Avanzato" name="advanced"> + <stat_view label="Avanzata" name="advanced"> <stat_view label="Render" name="render"> - <stat_bar label="KTris Disegnate" name="ktrisframe"/> - <stat_bar label="KTris Disegnate" name="ktrissec"/> - <stat_bar label="Totale Oggetti" name="objs"/> - <stat_bar label="Nuovi Oggetti" name="newobjs"/> + <stat_bar label="KTris disegnate" name="ktrisframe"/> + <stat_bar label="KTris disegnate" name="ktrissec"/> + <stat_bar label="Totale oggetti" name="objs"/> + <stat_bar label="Nuovi oggetti" name="newobjs"/> </stat_view> <stat_view label="Texture" name="texture"> <stat_bar label="Conteggio" name="numimagesstat"/> - <stat_bar label="Conteggio Grezzo" name="numrawimagesstat"/> + <stat_bar label="Conteggio grezzo" name="numrawimagesstat"/> <stat_bar label="Memoria GL" name="gltexmemstat"/> - <stat_bar label="Memoria Formattata" name="formattedmemstat"/> - <stat_bar label="Memoria Complessiva" name="rawmemstat"/> - <stat_bar label="Memoria Impegnata" name="glboundmemstat"/> + <stat_bar label="Memoria formattata" name="formattedmemstat"/> + <stat_bar label="Memoria complessiva" name="rawmemstat"/> + <stat_bar label="Memoria impegnata" name="glboundmemstat"/> </stat_view> <stat_view label="Rete" name="network"> - <stat_bar label="Pacchetti In Ingresso" name="packetsinstat"/> - <stat_bar label="Pacchetti In Uscita" name="packetsoutstat"/> + <stat_bar label="Pacchetti in ingresso" name="packetsinstat"/> + <stat_bar label="Pacchetti in uscita" name="packetsoutstat"/> <stat_bar label="Oggetti" name="objectkbitstat"/> <stat_bar label="Texture" name="texturekbitstat"/> - <stat_bar label="Risorse Server" name="assetkbitstat"/> + <stat_bar label="Risorse server" name="assetkbitstat"/> <stat_bar label="Layer" name="layerskbitstat"/> - <stat_bar label="Effettivi In Ingresso" name="actualinkbitstat"/> - <stat_bar label="Effettivi in Uscita" name="actualoutkbitstat"/> + <stat_bar label="Effettivi in ingresso" name="actualinkbitstat"/> + <stat_bar label="Effettivi in uscita" name="actualoutkbitstat"/> <stat_bar label="Operazioni pendenti VFS" name="vfspendingoperations"/> </stat_view> </stat_view> <stat_view label="Simulatore" name="sim"> <stat_bar label="Dilatazione temporale" name="simtimedilation"/> <stat_bar label="FPS Sim" name="simfps"/> - <stat_bar label="FPS Motore Fisico" name="simphysicsfps"/> - <stat_view label="Dettagli Motore Fisico" name="physicsdetail"> - <stat_bar label="Oggetti Pinzati" name="physicspinnedtasks"/> + <stat_bar label="FPS motore fisico" name="simphysicsfps"/> + <stat_view label="Dettagli motore fisico" name="physicsdetail"> + <stat_bar label="Oggetti pinzati" name="physicspinnedtasks"/> <stat_bar label="Oggetti a basso LOD" name="physicslodtasks"/> - <stat_bar label="Memoria Allocata" name="physicsmemoryallocated"/> - <stat_bar label="Agenti Aggiornamenti al Sec" name="simagentups"/> - <stat_bar label="Agenti Principali" name="simmainagents"/> - <stat_bar label="Agenti Figli" name="simchildagents"/> + <stat_bar label="Memoria allocata" name="physicsmemoryallocated"/> + <stat_bar label="Aggiornamenti agenti al sec" name="simagentups"/> + <stat_bar label="Avatar principali" name="simmainagents"/> + <stat_bar label="Avatar secondari" name="simchildagents"/> <stat_bar label="Oggetti" name="simobjects"/> - <stat_bar label="Oggetti Attivi" name="simactiveobjects"/> - <stat_bar label="Script Attivi" name="simactivescripts"/> - <stat_bar label="Eventi Script" name="simscripteps"/> - <stat_bar label="Pacchetti In Ingresso" name="siminpps"/> - <stat_bar label="Pacchetti In Uscita" name="simoutpps"/> - <stat_bar label="Download Pendenti" name="simpendingdownloads"/> - <stat_bar label="Upload Pendenti" name="simpendinguploads"/> - <stat_bar label="Numero totale byte non risposti" name="simtotalunackedbytes"/> + <stat_bar label="Oggetti attivi" name="simactiveobjects"/> + <stat_bar label="Script attivi" name="simactivescripts"/> + <stat_bar label="Eventi di script" name="simscripteps"/> + <stat_bar label="Pacchetti in ingresso" name="siminpps"/> + <stat_bar label="Pacchetti in uscita" name="simoutpps"/> + <stat_bar label="Download in attesa" name="simpendingdownloads"/> + <stat_bar label="Caricamenti in attesa" name="simpendinguploads"/> + <stat_bar label="Numero totale byte non confermati (Unacked)" name="simtotalunackedbytes"/> </stat_view> <stat_view label="Tempo (ms)" name="simperf"> - <stat_bar label="Tempo Totale Frame" name="simframemsec"/> - <stat_bar label="Tempo Netto" name="simnetmsec"/> - <stat_bar label="Tempo Motore Fisico" name="simsimphysicsmsec"/> - <stat_bar label="Tempo Simulazione" name="simsimothermsec"/> - <stat_bar label="Tempo Agenti" name="simagentmsec"/> - <stat_bar label="Tempo Immagini" name="simimagesmsec"/> - <stat_bar label="Tempo Script" name="simscriptmsec"/> + <stat_bar label="Tempo totale Frame" name="simframemsec"/> + <stat_bar label="Tempo netto" name="simnetmsec"/> + <stat_bar label="Tempo motore fisico" name="simsimphysicsmsec"/> + <stat_bar label="Tempo simulazione" name="simsimothermsec"/> + <stat_bar label="Tempo avatar" name="simagentmsec"/> + <stat_bar label="Tempo immagini" name="simimagesmsec"/> + <stat_bar label="Tempo script" name="simscriptmsec"/> </stat_view> </stat_view> </container_view> diff --git a/indra/newview/skins/default/xui/it/floater_sys_well.xml b/indra/newview/skins/default/xui/it/floater_sys_well.xml index 057d3657d0497b7cebee87d910d3cd952fe7755d..e1c0b899028f492b7c8b35e493dd4077ecce30ab 100644 --- a/indra/newview/skins/default/xui/it/floater_sys_well.xml +++ b/indra/newview/skins/default/xui/it/floater_sys_well.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="sys_well_window" title="NOTIFICHE"> +<floater name="sys_well_window" title="AVVISI"> <string name="title_im_well_window"> - SESSIONE IM + CONVERSAZIONI </string> <string name="title_notification_well_window"> - NOTIFICHE + AVVISI </string> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_telehub.xml b/indra/newview/skins/default/xui/it/floater_telehub.xml index 08f5564c7ba251bdaf185485224832f46bfe72c3..15312a8959612c0e5adf512253c20ed5d8b309d0 100644 --- a/indra/newview/skins/default/xui/it/floater_telehub.xml +++ b/indra/newview/skins/default/xui/it/floater_telehub.xml @@ -21,9 +21,9 @@ <button label="Aggiungi punti rigenerazione" name="add_spawn_point_btn" width="165"/> <button label="Rimuovi punti" left="175" name="remove_spawn_point_btn" width="105"/> <text name="spawn_point_help"> - Seleziona un oggetto e click "Aggiungi Spawn" per specificare la posizione. + Seleziona un oggetto e fai clic su Aggiungi per specificare la posizione. Ora puoi spostare o cancellare l'oggetto. -Le Posizioni sono relative al centro del telehub. +Le posizioni sono relative al centro del telehub. Seleziona un oggetto nella lista per evidenziarlo nel mondo. </text> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml b/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml index e57c37073ad65eb7ff66dec91f2d7b4ff60d2a8d..7b77584ba05a0d43227e989288e71dccc7cf3f6d 100644 --- a/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml +++ b/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml @@ -1,22 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="texture picker" title="Foto: TEXTURE"> +<floater name="texture picker" title="PREFERITO: TEXTURE"> <string name="choose_picture"> Clicca per scegliere l'immagine </string> <text name="Multiple"> - Textures multiple + Texture multiple </text> <text name="unknown"> - Misura: [Dimensions] + Dimensioni: [DIMENSIONS] </text> <button label="Default" label_selected="Default" name="Default"/> <button label="Niente" label_selected="Niente" name="None"/> <button label="Vuoto" label_selected="Vuoto" name="Blank"/> <check_box label="Mostra cartelle" name="show_folders_check"/> - <search_editor label="Filtro Textures" name="inventory search editor"/> - <check_box label="Applica ora" name="apply_immediate_check"/> + <search_editor label="Filtro texture" name="inventory search editor"/> + <check_box label="Applica adesso" name="apply_immediate_check"/> <button label="Annulla" label_selected="Annulla" name="Cancel"/> - <button label="Ok" label_selected="Ok" name="Select"/> + <button label="OK" label_selected="OK" name="Select"/> <string name="pick title"> Scegli: </string> diff --git a/indra/newview/skins/default/xui/it/floater_tools.xml b/indra/newview/skins/default/xui/it/floater_tools.xml index dda957025b6ab67e11cf975028d9fc4ac3a05d81..16ee797ce410d675aa2ad81f18b062071fc75c1b 100644 --- a/indra/newview/skins/default/xui/it/floater_tools.xml +++ b/indra/newview/skins/default/xui/it/floater_tools.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="toolbox floater" short_title="STRUMENTI/ATTREZZI PER COSTRUIRE" title="" width="288"> +<floater name="toolbox floater" short_title="STRUMENTI PER COSTRUZIONE" title="" width="288"> <floater.string name="status_rotate"> Sposta le fasce colorate per ruotare l'oggetto </floater.string> @@ -16,7 +16,7 @@ Clicca e trascina per spostare la camera </floater.string> <floater.string name="status_grab"> - Trascina per spostare, Ctrl per sollevare, Ctrl+Shift per ruotare + Trascina per spostare, Ctrl per sollevare, Ctrl+Maiusc per ruotare </floater.string> <floater.string name="status_place"> Clicca inworld per costruire @@ -50,32 +50,32 @@ <radio_group name="focus_radio_group"> <radio_item label="Zoom" name="radio zoom"/> <radio_item label="Guarda ruotando (Ctrl)" name="radio orbit"/> - <radio_item label="Panoramica (Ctrl+Shift)" name="radio pan"/> + <radio_item label="Panoramica (Ctrl+Maiusc)" name="radio pan"/> </radio_group> <radio_group name="move_radio_group"> <radio_item label="Muovi" name="radio move"/> <radio_item label="Alza (Ctrl)" name="radio lift"/> - <radio_item label="Ruota (Ctrl+Shift)" name="radio spin"/> + <radio_item label="Gira (Ctrl+Maiusc)" name="radio spin"/> </radio_group> <radio_group name="edit_radio_group"> <radio_item label="Sposta" name="radio position"/> <radio_item label="Ruota (Ctrl)" name="radio rotate"/> - <radio_item label="Estendi/Stira???!!!! (Ctrl+Shift)" name="radio stretch"/> - <radio_item label="Seleziona Faccia multimediale" name="radio select face"/> + <radio_item label="Allunga (Ctrl+Maiusc)" name="radio stretch"/> + <radio_item label="Seleziona faccia" name="radio select face"/> </radio_group> <check_box label="Modifica parti collegate" name="checkbox edit linked parts"/> - <text name="RenderingCost" tool_tip="Mostra il rendering cost calcolato per questo oggetto"> + <text name="RenderingCost" tool_tip="Mostra il costo di rendering calcolato per questo oggetto"> þ: [COUNT] </text> <check_box label="Ridimens. simmetricamente" name="checkbox uniform"/> <check_box initial_value="true" label="Ridimensiona le texture" name="checkbox stretch textures"/> - <check_box initial_value="true" label="Posiziona nella rete???!!!" name="checkbox snap to grid"/> + <check_box initial_value="true" label="Posiziona nella griglia" name="checkbox snap to grid"/> <combo_box left_delta="48" name="combobox grid mode" tool_tip="Scegli il tipo di righello per posizionare l'oggetto"> - <combo_box.item label="Rete del Mondo" name="World"/> + <combo_box.item label="Rete del mondo" name="World"/> <combo_box.item label="Rete locale" name="Local"/> - <combo_box.item label="Riferimento della rete???!!!!" name="Reference"/> + <combo_box.item label="Griglia di riferimento" name="Reference"/> </combo_box> - <button label="Opzioni..." label_selected="Opzioni..." name="Options..." tool_tip="Vedi più opzioni delle rete"/> + <button label="Opzioni..." label_selected="Opzioni..." name="Options..." tool_tip="Vedi più opzioni della griglia"/> <button label="" label_selected="" name="ToolCube" tool_tip="Cubo"/> <button label="" label_selected="" name="ToolPrism" tool_tip="Prisma"/> <button label="" label_selected="" name="ToolPyramid" tool_tip="Piramide"/> @@ -91,10 +91,10 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Anello"/> <button label="" label_selected="" name="ToolTree" tool_tip="Albero"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Erba"/> - <check_box label="Mantieni lo strumento/attrezzo selezionato" name="checkbox sticky"/> - <check_box label="Seleziona la Copia" name="checkbox copy selection"/> - <check_box initial_value="true" label="Centra la Copia" name="checkbox copy centers"/> - <check_box label="Ruotare la Copia" name="checkbox copy rotates"/> + <check_box label="Mantieni lo strumento selezionato" name="checkbox sticky"/> + <check_box label="Copia la selezione" name="checkbox copy selection"/> + <check_box initial_value="true" label="Centra la copia" name="checkbox copy centers"/> + <check_box label="Ruota la copia" name="checkbox copy rotates"/> <radio_group name="land_radio_group"> <radio_item label="Seleziona il terreno" name="radio select land"/> <radio_item label="Appiattisci" name="radio flatten"/> @@ -114,26 +114,26 @@ <text name="Strength:"> Potenza </text> - <button label="Applica" label_selected="Applica" left="146" name="button apply to selection" tool_tip="Modifica la terra selezionata"/> + <button label="Applica" label_selected="Applica" left="146" name="button apply to selection" tool_tip="Modifica il terreno selezionato"/> <text left="134" name="obj_count"> Oggetti: [COUNT] </text> <text left="134" name="prim_count"> - Prims: [COUNT] + Prim: [COUNT] </text> <tab_container name="Object Info Tabs" tab_max_width="150" tab_min_width="30" width="288"> <panel label="Generale" name="General"> <panel.string name="text deed continued"> - Intesta + Cessione </panel.string> <panel.string name="text deed"> Cedi al gruppo </panel.string> <panel.string name="text modify info 1"> - Puoi modificare questo oggetto + Tu puoi modificare questo oggetto </panel.string> <panel.string name="text modify info 2"> - Puoi modificare questi oggetti + Tu puoi modificare questi oggetti </panel.string> <panel.string name="text modify info 3"> Non puoi modificare questo oggetto @@ -148,10 +148,10 @@ Prezzo: L$ </panel.string> <panel.string name="Cost Total"> - Prezzo Totale: L$ + Prezzo totale: L$ </panel.string> <panel.string name="Cost Per Unit"> - Prezzo per Unità : L$ + Prezzo per: L$ </panel.string> <panel.string name="Cost Mixed"> Prezzo misto @@ -180,20 +180,20 @@ <text name="Group:"> Gruppo: </text> - <button label="Imposta..." label_selected="Imposta..." name="button set group" tool_tip="Scegli un gruppo per condividere i permessi di questo oggetto"/> - <name_box initial_value="Caricando..." name="Group Name Proxy"/> - <button label="Intesta" label_selected="Intesta" left_delta="152" name="button deed" tool_tip="Intestando permette di regalare questo oggetto con i permessi del prossimo proprietario. Gli oggetti condivisi dal gruppo posso essere instestati solo da un officer del gruppo." width="98"/> - <check_box label="Condividi" name="checkbox share with group" tool_tip="Permetti ai membri del gruppo selezionato di condividere i tuoi permessi modify per questo oggetto. Tu devi Intestare per attivare le restrizioni al ruolo."/> + <button label="Imposta..." label_selected="Imposta..." name="button set group" tool_tip="Scegli un gruppo con cui condividere i diritti relativi all'oggetto"/> + <name_box initial_value="Caricamento in corso..." name="Group Name Proxy"/> + <button label="Cessione" label_selected="Cessione" left_delta="152" name="button deed" tool_tip="Con una cessione si trasferisce il bene con i diritti al proprietario successivo Gli oggetti in proprietà condivisa di gruppo possono essere ceduti soltanto da un funzionario del gruppo." width="98"/> + <check_box label="Condividi" name="checkbox share with group" tool_tip="Consenti a tutti i membri del gruppo selezionato di condividere i tuoi diritti di modifica di questo oggetto. Per attivare le restrizioni per ruolo devi prima effettuare la cessione."/> <text name="label click action" width="220"> - Clicca: + Fai clic per: </text> <combo_box name="clickaction" width="192"> - <combo_box.item label="Tocca (default)" name="Touch/grab(default)"/> + <combo_box.item label="Tocca (predefinito)" name="Touch/grab(default)"/> <combo_box.item label="Siediti sull'oggetto" name="Sitonobject"/> <combo_box.item label="Compra l'oggetto" name="Buyobject"/> <combo_box.item label="Paga l'oggetto" name="Payobject"/> <combo_box.item label="Apri" name="Open"/> - <combo_box.item label="Zoom" name="Zoom"/> + <combo_box.item label="Ingrandisci" name="Zoom"/> </combo_box> <check_box label="In vendita:" name="checkbox for sale"/> <combo_box name="sale type"> @@ -205,7 +205,7 @@ <check_box label="Mostra nella ricerca" name="search_check" tool_tip="Permetti che l'oggetto sia visibile nella ricerca"/> <panel name="perms_build"> <text name="perm_modify"> - Puoi modificare questo oggetto + Tu puoi modificare questo oggetto </text> <text name="Anyone can:"> Chiunque: @@ -213,11 +213,11 @@ <check_box label="Sposta" name="checkbox allow everyone move"/> <check_box label="Copia" name="checkbox allow everyone copy"/> <text name="Next owner can:"> - Prossimo proprietario: + Proprietario successivo: </text> <check_box label="Modificare" name="checkbox next owner can modify"/> <check_box label="Copiare" left_delta="80" name="checkbox next owner can copy"/> - <check_box label="Transfer" left_delta="67" name="checkbox next owner can transfer" tool_tip="Il prossimo proprietario può regalare o rivendere questo oggetto"/> + <check_box label="Trasferisci" left_delta="67" name="checkbox next owner can transfer" tool_tip="Il prossimo proprietario può regalare o rivendere questo oggetto"/> <text name="B:"> B: </text> @@ -241,7 +241,7 @@ <panel label="Oggetto" name="Object"> <check_box label="Bloccato" name="checkbox locked" tool_tip="Previene lo spostamento o la cancellazione dell'oggetto. Spesso utile mentre si costruisce per evitare involontarie modifiche."/> <check_box label="Fisico" name="Physical Checkbox Ctrl" tool_tip="Permette all'oggetto di essere spostato e di subire gli effetti della gravità "/> - <check_box label="Temporaneo" name="Temporary Checkbox Ctrl" tool_tip="Causa la cancellazione dell'oggetto 1 minuto dopo la sua creazione"/> + <check_box label="Temporaneo" name="Temporary Checkbox Ctrl" tool_tip="Determina la cancellazione dell'oggetto 1 minuto dopo la sua creazione"/> <check_box label="Fantasma" name="Phantom Checkbox Ctrl" tool_tip="Rende l'oggetto penetrabile dagli altri oggetti e dagli avatars"/> <text name="label position"> Posizione (metri) @@ -281,7 +281,7 @@ <combo_box.item label="Gomma" name="Rubber"/> </combo_box> <text name="text cut"> - Riduci una sezione (begin/end) + Riduci una sezione (inizio/fine) </text> <spinner label="I" name="cut begin"/> <spinner label="F" name="cut end"/> @@ -301,7 +301,7 @@ <combo_box.item label="Triangolare" name="Triangle"/> </combo_box> <text name="text twist"> - Attorciglia (begin/end) + Attorciglia (inizio/fine) </text> <spinner label="I" name="Twist Begin"/> <spinner label="F" name="Twist End"/> @@ -319,13 +319,13 @@ <spinner label="X" name="Shear X"/> <spinner label="Y" name="Shear Y"/> <text name="advanced_cut" width="149"> - Riduci un bordo (begin/end) + Riduci un bordo (inizio/fine) </text> <text name="advanced_dimple"> - Fossetta???!!!! (begin/end) + Scava (inizio/fine) </text> <text name="advanced_slice"> - Taglia???!!! (begin/end) + Taglia (inizio/fine) </text> <spinner label="I" name="Path Limit Begin"/> <spinner label="F" name="Path Limit End"/> @@ -361,7 +361,7 @@ <text name="edit_object"> Modifica le caratteristiche dell'oggetto: </text> - <check_box label="Flessibilità " name="Flexible1D Checkbox Ctrl" tool_tip="Permetti all'oggetto di flettersi lungo l'asse Z (Client-side only)"/> + <check_box label="Flessibilità " name="Flexible1D Checkbox Ctrl" tool_tip="Consenti all'oggetto di flettersi lungo l'asse Z (solo lato client)"/> <spinner label="Morbidezza" label_width="72" name="FlexNumSections" width="135"/> <spinner label="Gravità " label_width="72" name="FlexGravity" width="135"/> <spinner label="Elasticità " label_width="72" name="FlexFriction" width="135"/> @@ -372,11 +372,11 @@ <spinner label="Forza Z" label_width="72" name="FlexForceZ" width="135"/> <check_box label="Luce" name="Light Checkbox Ctrl" tool_tip="Imposta l'oggetto come sorgente di luce"/> <color_swatch label="" name="colorswatch" tool_tip="Clicca per aprire il selettore dei colori"/> - <texture_picker label="" name="light texture control" tool_tip="Clicca per scegliere una proiezione dell'immagine (funziona solo con deferred rendering attivato)"/> + <texture_picker label="" name="light texture control" tool_tip="Clicca per scegliere un'immagine da proiettare (funziona solo con il rendering differito attivato)"/> <spinner label="Intensità " label_width="72" name="Light Intensity" width="135"/> - <spinner label="FOV" name="Light FOV"/> + <spinner label="Angolo di vista" name="Light FOV"/> <spinner label="Raggio" label_width="72" name="Light Radius" width="135"/> - <spinner label="Focus" name="Light Focus"/> + <spinner label="Centro focale" name="Light Focus"/> <spinner label="Attenuazione" label_width="72" name="Light Falloff" width="135"/> <spinner label="Atmosfera" name="Light Ambiance"/> </panel> @@ -395,8 +395,7 @@ <text name="glow label"> Bagliore </text> - <check_box bottom_delta="-21" label="Massima -luminosità " name="checkbox fullbright"/> + <check_box bottom_delta="-21" label="Massima luminosità " name="checkbox fullbright"/> <text name="tex gen"> Applicazione della texture @@ -438,32 +437,32 @@ della texture <combo_box.item label="Trama" name="weave"/> </combo_box> <text name="tex scale"> - Ripeti / Lato + Ripetizioni / Faccia </text> <spinner label="Orizzontale (U)" name="TexScaleU"/> <check_box label="Inverti" name="checkbox flip s"/> <spinner label="Verticale (V)" name="TexScaleV"/> <check_box label="Inverti" name="checkbox flip t"/> <spinner label="RotazioneËš" left="120" name="TexRot" width="60"/> - <spinner label="Ripete / Metri" left="120" name="rptctrl" width="60"/> + <spinner label="Ripetizioni / Metro" left="120" name="rptctrl" width="60"/> <button label="Applica" label_selected="Applica" left_delta="72" name="button apply"/> <text name="tex offset"> - Bilanciamento della Texture + Bilanciamento della texture </text> <spinner label="Orizzontale (U)" name="TexOffsetU"/> <spinner label="Verticale (V)" name="TexOffsetV"/> <panel name="Add_Media"> <text name="media_tex"> - Media + Multimediale </text> - <button name="add_media" tool_tip="Aggiungi Media"/> + <button name="add_media" tool_tip="Aggiungi media"/> <button name="delete_media" tool_tip="Cancella questa media texture"/> - <button name="edit_media" tool_tip="Modifica questo Media"/> - <button label="Alllinea" label_selected="Allinea Media" name="button align" tool_tip="Allinea media texture (must load first)"/> + <button name="edit_media" tool_tip="Modifica questo media"/> + <button label="Alllinea" label_selected="Allinea media" name="button align" tool_tip="Allinea texture del media (il caricamento deve prima essere completato)"/> </panel> </panel> <panel label="Contenuto" name="Contents"> - <button label="Nuovo Script" label_selected="Nuovo Script" name="button new script"/> + <button label="Nuovo Script" label_selected="Nuovo script" name="button new script"/> <button label="Permessi" name="button permissions"/> </panel> </tab_container> @@ -472,29 +471,22 @@ della texture Informazioni sul terreno </text> <text name="label_area_price"> - Prezzo: L$[PRICE] per [AREA] m² + Prezzo: L$ [PRICE] per [AREA] m² </text> <text name="label_area"> - Area: [AREA] m² + Zona: [AREA] m² </text> - <button label="Info sul terreno" label_selected="Info sul terreno" name="button about land" width="156"/> - <check_box label="Mostra i proprietari" name="checkbox show owners" tool_tip="Colora i terreni in base ai loro proprietari: - -Verde = il tuo terreno -Acqua = la terra del tuo gruppo -Rosso = posseduta da altri -Giallo = in vendita -Viola = in asta -Grigia = pubblica"/> + <button label="Informazioni sui terreni" label_selected="Informazioni sui terreni" name="button about land" width="156"/> + <check_box label="Mostra i proprietari" name="checkbox show owners" tool_tip="Colora i terreni in base ai loro proprietari: Verde = il tuo terreno Acqua = la terra del tuo gruppo Rosso = posseduta da altri Giallo = in vendita Viola = in asta Grigia = pubblica"/> <text name="label_parcel_modify"> Modifica il terreno </text> <button label="Suddividi" label_selected="Suddividi" name="button subdivide land" width="156"/> - <button label="Aderisci" label_selected="Aderisci" name="button join land" width="156"/> + <button label="Iscriviti" label_selected="Iscriviti" name="button join land" width="156"/> <text name="label_parcel_trans"> Transazioni del territorio </text> - <button label="Compra la Terra" label_selected="Compra la Terra" name="button buy land" width="156"/> - <button label="Abbandona la Terra" label_selected="Abbandona la Terra" name="button abandon land" width="156"/> + <button label="Acquista terreno" label_selected="Acquista terreno" name="button buy land" width="156"/> + <button label="Abbandona il terreno" label_selected="Abbandona il terreno" name="button abandon land" width="156"/> </panel> </floater> 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 8f7f3e060aa1c7d9dc0321f57dae26501bdd1479..939c5e83a045f199093d162800f508724a538bb1 100644 --- a/indra/newview/skins/default/xui/it/floater_top_objects.xml +++ b/indra/newview/skins/default/xui/it/floater_top_objects.xml @@ -1,58 +1,59 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="top_objects" title="Oggetti principali"> + <floater.string name="top_scripts_title"> + Script pesanti + </floater.string> + <floater.string name="top_scripts_text"> + [COUNT] script richiedono un totale di [TIME] ms + </floater.string> + <floater.string name="scripts_score_label"> + Ora + </floater.string> + <floater.string name="scripts_mono_time_label"> + Ora 'Mono' + </floater.string> + <floater.string name="top_colliders_title"> + Oggetti con maggiori collisioni + </floater.string> + <floater.string name="top_colliders_text"> + I [COUNT] oggetti che sperimentano il maggior numero di collisioni + </floater.string> + <floater.string name="colliders_score_label"> + Punteggio + </floater.string> + <floater.string name="none_descriptor"> + Nulla di rilevato. + </floater.string> <text name="title_text"> In caricamento... </text> <scroll_list name="objects_list"> - <column label="Punteggio" name="score" width="84"/> - <column label="Nome" name="name" width="84"/> - <column label="Proprietario" name="owner" width="84"/> - <column label="Ubicazione" name="location" width="84"/> - <column label="Ora" name="time" width="84"/> - <column label="Ora (Mono)" name="mono_time" width="84"/> + <scroll_list.columns label="Punteggio" name="score" width="84"/> + <scroll_list.columns label="Nome" name="name" width="84"/> + <scroll_list.columns label="Proprietario" name="owner" width="84"/> + <scroll_list.columns label="Ubicazione" name="location" width="84"/> + <scroll_list.columns label="Ora" name="time" width="84"/> + <scroll_list.columns label="Ora (Mono)" name="mono_time" width="84"/> + <scroll_list.columns label="URL" name="URLs"/> </scroll_list> - <line_editor font="SansSerifSmall" left="90" name="id_editor" width="280"/> - <line_editor font="SansSerifSmall" left="90" name="object_name_editor" width="280"/> - <line_editor font="SansSerifSmall" left="90" name="owner_name_editor" width="280"/> <text name="id_text"> ID oggetto: </text> + <line_editor font="SansSerifSmall" left="90" name="id_editor" width="280"/> <button label="Mostra segnali luminosi" name="show_beacon_btn" width="150"/> <text name="obj_name_text"> Nome dell'oggetto: </text> + <line_editor font="SansSerifSmall" left="90" name="object_name_editor" width="280"/> <button label="Filtro" name="filter_object_btn" width="150"/> <text name="owner_name_text"> Proprietario: </text> + <line_editor font="SansSerifSmall" left="90" name="owner_name_editor" width="280"/> <button label="Filtro" name="filter_owner_btn" width="150"/> + <button label="Aggiorna" name="refresh_btn" width="150"/> <button label="Restituisci selezionato" name="return_selected_btn" width="150"/> <button label="Restituisci tutti" left="170" name="return_all_btn"/> <button label="Disabilita selezionato" name="disable_selected_btn" width="150"/> <button label="Disabilita per tutti" left="170" name="disable_all_btn"/> - <button label="Aggiorna" name="refresh_btn" width="150"/> - <string name="top_scripts_title"> - Script pesanti - </string> - <string name="top_scripts_text"> - [COUNT] script richiedono un totale di [TIME] ms - </string> - <string name="scripts_score_label"> - Ora - </string> - <string name="scripts_mono_time_label"> - Ora 'Mono' - </string> - <string name="top_colliders_title"> - Oggetti con maggiori collisioni - </string> - <string name="top_colliders_text"> - I [COUNT] oggetti che sperimentano il maggior numero di collisioni - </string> - <string name="colliders_score_label"> - Punteggio - </string> - <string name="none_descriptor"> - Nulla di rilevato. - </string> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_tos.xml b/indra/newview/skins/default/xui/it/floater_tos.xml index f3f8072f568fca80ddb610b9bfe2177646a8e5be..a11ccdc3af85331e77265e2106ab50cbb210e6ba 100644 --- a/indra/newview/skins/default/xui/it/floater_tos.xml +++ b/indra/newview/skins/default/xui/it/floater_tos.xml @@ -2,9 +2,9 @@ <floater name="modal container" title=""> <button label="Continua" label_selected="Continua" name="Continue"/> <button label="Annulla" label_selected="Annulla" name="Cancel"/> - <check_box label="Accetto i Termini di Servizio" name="agree_chk"/> + <check_box label="Accetto i Termini del servizio e le Regole sulla privacy" name="agree_chk"/> <text name="tos_heading"> - Per favore leggi attentamente i seguenti Termini di Servizio. Per continuare il log in [SECOND_LIFE], devi accettare le condizioni. + Sei pregato di leggere attentamente i Termini del servizio e le Regole sulla privacy di seguito. Per continuare l'accesso a [SECOND_LIFE], devi accettare le condizioni. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/it/floater_voice_controls.xml b/indra/newview/skins/default/xui/it/floater_voice_controls.xml index e4c54d44eb4f298877b4ee2b1938d4a226c0c844..07368da0dd7f9ec8a254036fd6c4a67c325997e8 100644 --- a/indra/newview/skins/default/xui/it/floater_voice_controls.xml +++ b/indra/newview/skins/default/xui/it/floater_voice_controls.xml @@ -1,25 +1,26 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_voice_controls" title="Controlli del Voice"> +<floater name="floater_voice_controls" title="Regolazione voce"> <string name="title_nearby"> - VOICE NEI DINTORNI + VOCE NEI DINTORNI </string> <string name="title_group"> - Chiamata di Gruppo con [GROUP] + Chiamata di gruppo con [GROUP] </string> <string name="title_adhoc"> - Conference Call + Chiamata in conferenza </string> <string name="title_peer_2_peer"> - Chiama con [NAME] + Chiamata con [NAME] </string> <string name="no_one_near"> - Nessuno vicino + Nessuno nei dintorni ha attivato la funzione voce </string> - <panel name="control_panel"> - <layout_stack> - <layout_panel name="leave_btn_panel"> - <button label="Chiudi Chiamata" name="leave_call_btn"/> - </layout_panel> - </layout_stack> - </panel> + <layout_stack name="my_call_stack"> + <layout_panel name="my_panel"> + <text name="user_text" value="Il mio avatar:"/> + </layout_panel> + <layout_panel name="leave_call_btn_panel"> + <button label="Abbandona chiamata" name="leave_call_btn"/> + </layout_panel> + </layout_stack> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_water.xml b/indra/newview/skins/default/xui/it/floater_water.xml index d2849440d61f9f8179bb0d0c4d6b0507a30f2692..c6ab646fbfac3905f66b2c5f36dea767f97b8c42 100644 --- a/indra/newview/skins/default/xui/it/floater_water.xml +++ b/indra/newview/skins/default/xui/it/floater_water.xml @@ -8,7 +8,7 @@ <button label="Salva" label_selected="Salva" name="WaterSavePreset"/> <button label="Cancella" label_selected="Cancella" name="WaterDeletePreset"/> <tab_container name="Water Tabs"> - <panel label="Impostazioni" name="Settings"> + <panel label="IMPOSTAZIONI" name="Settings"> <text name="BHText"> Colore della nebbiosità dell'acqua </text> @@ -62,7 +62,7 @@ </text> <button label="?" left="650" name="WaterBlurMultiplierHelp"/> </panel> - <panel label="Immagine" name="Waves"> + <panel label="IMMAGINE" name="Waves"> <text name="BHText"> Direzione della grande onda </text> diff --git a/indra/newview/skins/default/xui/it/floater_wearable_save_as.xml b/indra/newview/skins/default/xui/it/floater_wearable_save_as.xml index dcb7620bd5a8fd274035b823c438cf3068718393..7c3754f00473b98a41f7302afba22b302c748ece 100644 --- a/indra/newview/skins/default/xui/it/floater_wearable_save_as.xml +++ b/indra/newview/skins/default/xui/it/floater_wearable_save_as.xml @@ -3,7 +3,7 @@ <button label="Salva" label_selected="Salva" name="Save"/> <button label="Annulla" label_selected="Annulla" name="Cancel"/> <text name="Save item as:"> - Salva oggetto come: + Salva oggetto nel mio inventario come: </text> <line_editor name="name ed"> Nuovo [DESC] diff --git a/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml b/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml index 6d68db058d1be861c67bc78d4059486df3a978be..9abc968b941babdf5011668483183d0b608f3929 100644 --- a/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml +++ b/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="whitelist_entry"> +<floater name="whitelist_entry" title="VOCE DELLA LISTA BIANCA"> <text name="media_label"> Inserisci un URL o una configurazione URL da aggiungere alla lista dei domini permessi </text> <line_editor name="whitelist_entry" tool_tip="Inserisci un URL o una configurazione URL alla lista bianca"/> <button label="OK" name="ok_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="Annulla" name="cancel_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_windlight_options.xml b/indra/newview/skins/default/xui/it/floater_windlight_options.xml index e86d656e3922544ddbbd4cebe381b9cb6c7884ee..1f6f0fab58a9d70a0e3628b667440431df5c369c 100644 --- a/indra/newview/skins/default/xui/it/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/it/floater_windlight_options.xml @@ -4,15 +4,15 @@ Cieli predefiniti: </text> <button label="Nuovo" label_selected="Nuovo" name="WLNewPreset"/> - <button label="Salva" label_selected="Salva" name="WLSavePreset" left_delta="72"/> - <button label="Elimina" label_selected="Elimina" name="WLDeletePreset" left_delta="72"/> - <button font="SansSerifSmall" width="165" left_delta="85" label="Editor del ciclo giorno/notte" label_selected="Editor del ciclo giorno/notte" name="WLDayCycleMenuButton"/> + <button label="Salva" label_selected="Salva" left_delta="72" name="WLSavePreset"/> + <button label="Elimina" label_selected="Elimina" left_delta="72" name="WLDeletePreset"/> + <button font="SansSerifSmall" label="Editor del ciclo giorno/notte" label_selected="Editor del ciclo giorno/notte" left_delta="85" name="WLDayCycleMenuButton" width="165"/> <tab_container name="WindLight Tabs"> - <panel label="Atmosfera" name="Atmosphere"> + <panel label="ATMOSFERA" name="Atmosphere"> <text name="BHText"> Blu dell'Orizzonte </text> - <button label="?" name="WLBlueHorizonHelp" left="189"/> + <button label="?" left="189" name="WLBlueHorizonHelp"/> <text name="BHText2"> R </text> @@ -25,14 +25,14 @@ <text name="BHText5"> I </text> - <text name="BDensText" font="SansSerifSmall"> + <text font="SansSerifSmall" name="BDensText"> Altezza della Foschia all'Orizzonte </text> - <button label="?" name="WLHazeHorizonHelp" left="189" /> + <button label="?" left="189" name="WLHazeHorizonHelp"/> <text name="BDensText2"> Densità del Blu </text> - <button label="?" name="WLBlueDensityHelp" /> + <button label="?" name="WLBlueDensityHelp"/> <text name="BHText6"> R </text> @@ -52,17 +52,17 @@ <text name="DensMultText"> Moltiplicatore di Densità </text> - <button label="?" name="WLDensityMultHelp" left="645"/> + <button label="?" left="645" name="WLDensityMultHelp"/> <text name="WLDistanceMultText"> Moltiplicatore della Distanza </text> - <button label="?" name="WLDistanceMultHelp" left="645"/> + <button label="?" left="645" name="WLDistanceMultHelp"/> <text name="MaxAltText"> Altitudine Massima </text> - <button label="?" name="WLMaxAltitudeHelp" left="645"/> + <button label="?" left="645" name="WLMaxAltitudeHelp"/> </panel> - <panel label="Illuminazione" name="Lighting"> + <panel label="ILLUMINAZIONE" name="Lighting"> <text name="SLCText"> Colore Sole/Luna </text> @@ -118,7 +118,7 @@ </text> <button label="?" name="WLStarBrightnessHelp"/> </panel> - <panel label="Nuvole" name="Clouds"> + <panel label="NUVOLE" name="Clouds"> <text name="WLCloudColorText"> Colore delle Nuvole </text> @@ -151,15 +151,15 @@ <text name="WLCloudCoverageText"> Copertura delle Nuvole </text> - <button label="?" name="WLCloudCoverageHelp" left="415"/> + <button label="?" left="415" name="WLCloudCoverageHelp"/> <text name="WLCloudScaleText"> Altitudine delle Nuvole </text> - <button label="?" name="WLCloudScaleHelp" left="415"/> + <button label="?" left="415" name="WLCloudScaleHelp"/> <text name="WLCloudDetailText"> Dettagli Nuvole (XY/ Densità ) </text> - <button label="?" name="WLCloudDetailHelp" left="415"/> + <button label="?" left="415" name="WLCloudDetailHelp"/> <text name="BHText8"> X </text> @@ -180,7 +180,7 @@ <button label="?" name="WLCloudScrollYHelp"/> <check_box label="Blocca" name="WLCloudLockY"/> <check_box label="Mostra le Nuvole Classiche" name="DrawClassicClouds"/> - <button label="?" name="WLClassicCloudsHelp" left="645"/> + <button label="?" left="645" name="WLClassicCloudsHelp"/> </panel> </tab_container> <string name="WLDefaultSkyNames"> diff --git a/indra/newview/skins/default/xui/it/floater_window_size.xml b/indra/newview/skins/default/xui/it/floater_window_size.xml new file mode 100644 index 0000000000000000000000000000000000000000..036b74b7d99e3a61e2753fb1b519601b16a61b59 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_window_size.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="window_size" title="DIMENSIONE FINESTRA"> + <string name="resolution_format"> + [RES_X] x [RES_Y] + </string> + <text name="windowsize_text"> + Imposta dimensione finestra: + </text> + <combo_box name="window_size_combo" tool_tip="larghezza x altezza"> + <combo_box.item label="1000 x 700 (default)" name="item0"/> + <combo_box.item label="1024 x 768" name="item1"/> + <combo_box.item label="1280 x 720 (720p)" name="item2"/> + <combo_box.item label="1920 x 1080 (1080p)" name="item3"/> + </combo_box> + <button label="Imposta" name="set_btn"/> + <button label="Annulla" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_world_map.xml b/indra/newview/skins/default/xui/it/floater_world_map.xml index 1b47dd7d7e5ab22621c5b9290fe08067ae06914f..31d7a8df9ea9e3cf4cb958a899cfdaa6e52507bd 100644 --- a/indra/newview/skins/default/xui/it/floater_world_map.xml +++ b/indra/newview/skins/default/xui/it/floater_world_map.xml @@ -5,71 +5,66 @@ Legenda </text> </panel> - <panel - name="layout_panel_2"> - <button font="SansSerifSmall" label="Mostra la mia posizione" label_selected="Mostra la mia posizione" left_delta="91" name="Show My Location" tool_tip="Centra la mappa sul luogo dove si trova il mio avatar" width="135"/> - <text name="person_label"> + <panel name="layout_panel_2"> + <button name="Show My Location" tool_tip="Centra la mappa sulla posizione del mio avatar"/> + <text name="me_label"> Io </text> - <check_box label="Residenti" name="people_chk"/> - <check_box label="Punto informativo" name="infohub_chk"/> + <text name="person_label"> + Persona + </text> <text name="infohub_label"> Infohub </text> - <check_box bottom="-170" label="Terra in vendita" name="land_for_sale_chk"/> - <icon bottom="-170" name="landforsale"/> <text name="land_sale_label"> - Vendita di terra + Vendita terreno + </text> + <text name="by_owner_label"> + da parte del proprietario </text> <text name="auction_label"> - per conto del proprietario + asta di terreni </text> - <button label="Vai a Casa" label_selected="Vai a Casa" name="Go Home" tool_tip="Teleport a casa mia"/> + <button name="Go Home" tool_tip="Teleport a casa"/> <text name="Home_label"> - Casa + Home </text> <text name="events_label"> Eventi: </text> - <check_box label="PG" name="event_chk"/> - <check_box initial_value="true" label="Mature" name="event_mature_chk"/> + <text name="pg_label"> + Generale + </text> + <check_box initial_value="vero" name="event_mature_chk"/> <text name="mature_label"> - Mature + Moderato + </text> + <text name="adult_label"> + Adulto </text> - <check_box label="Adult" name="event_adult_chk"/> </panel> - <panel - name="layout_panel_3"> + <panel name="layout_panel_3"> <text name="find_on_map_label"> - Trova sulla Mappa + Trova sulla mappa </text> </panel> - <panel - name="layout_panel_4"> - <combo_box label="Amici Online" name="friend combo" tool_tip="Mostra amici sulla mappa"> - <combo_box.item label="Miei Amici Online" name="item1"/> + <panel name="layout_panel_4"> + <combo_box label="Amici online" name="friend combo" tool_tip="Mostra amici sulla mappa"> + <combo_box.item label="I miei amici online" name="item1"/> </combo_box> - <combo_box label="Miei Landmarks" name="landmark combo" tool_tip="Landmark da mostrare sulla mappa"> - <combo_box.item label="Miei Landmarks" name="item1"/> + <combo_box label="I miei punti di riferimento" name="landmark combo" tool_tip="Punto di riferimento da mostrare sulla mappa"> + <combo_box.item label="I miei punti di riferimento" name="item1"/> </combo_box> - <search_editor label="Regione per nome" name="location" tool_tip="Scrivi il nome di una regione"/> - <button label="Trova" name="DoSearch" tool_tip="Cerca regione"/> - <scroll_list bottom_delta="-310" height="304" name="search_results"> - <scroll_list.columns label="" name="icon"/> - <scroll_list.columns label="" name="sim_name"/> - </scroll_list> - <button font="SansSerifSmall" label="Teletrasporto" label_selected="Teletrasporto" name="Teleport" tool_tip="Teletrasporto al luogo prescelto"/> - <button font="SansSerifSmall" label="Copia SLurl" name="copy_slurl" tool_tip="Copia il luogo attuale come SLurl per essere usato nel web."/> - <button font="SansSerifSmall" label="Mostra Selezione" label_selected="Mostra destinazione" left_delta="91" name="Show Destination" tool_tip="Centra la mappa sul luogo prescelto" width="135"/> + <search_editor label="Regioni secondo il nome" name="location" tool_tip="Digita il nome di una regione"/> + <button label="Trova" name="DoSearch" tool_tip="Cerca la regione"/> + <button name="Clear" tool_tip="Elimina le linee di monitoraggio e reimposta la mappa"/> + <button label="Teleport" name="Teleport" tool_tip="Teleport al luogo selezionato"/> + <button label="Copia SLurl" name="copy_slurl" tool_tip="Copia la posizione attuale come un SLurl da usare nel Web."/> + <button label="Mostra la selezione" name="Show Destination" tool_tip="Centra la mappa sul luogo selezionato"/> </panel> - <panel - name="layout_panel_5"> + <panel name="layout_panel_5"> <text name="zoom_label"> - Zoom + Ingrandisci </text> </panel> - <panel - name="layout_panel_6"> - <slider label="Zoom" name="zoom slider"/> - </panel> </floater> diff --git a/indra/newview/skins/default/xui/it/inspect_avatar.xml b/indra/newview/skins/default/xui/it/inspect_avatar.xml index 61f7a6923474e1c6353ac5d442ef70419eda1f27..ec5561a5b21ff4fa03c8114570ed703df8fb571e 100644 --- a/indra/newview/skins/default/xui/it/inspect_avatar.xml +++ b/indra/newview/skins/default/xui/it/inspect_avatar.xml @@ -5,17 +5,17 @@ --> <floater name="inspect_avatar"> <string name="Subtitle"> - [ETA'] + [AGE] </string> <string name="Details"> - [PROFILO_SL] + [SL_PROFILE] </string> - <slider name="volume_slider" tool_tip="Volume del Voice" value="0.5"/> - <button label="Aggiungi Amico" name="add_friend_btn"/> + <slider name="volume_slider" tool_tip="Volume voce" value="0.5"/> + <button label="Aggiungi amico" name="add_friend_btn"/> <button label="IM" name="im_btn"/> - <button label="Di più" name="view_profile_btn"/> + <button label="Profilo" name="view_profile_btn"/> <panel name="moderator_panel"> - <button label="Disattiva il Voice" name="disable_voice"/> - <button label="Attiva Voice" name="enable_voice"/> + <button label="Disattiva voce" name="disable_voice"/> + <button label="Attiva voce" name="enable_voice"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/it/inspect_group.xml b/indra/newview/skins/default/xui/it/inspect_group.xml index d7b86fdbcb106a56c05096ec3cf80152379ce80a..2416f4bb129b2858173766170097ae77f82da8e6 100644 --- a/indra/newview/skins/default/xui/it/inspect_group.xml +++ b/indra/newview/skins/default/xui/it/inspect_group.xml @@ -5,18 +5,18 @@ --> <floater name="inspect_group"> <string name="PrivateGroup"> - Gruppo Privato + Gruppo privato </string> <string name="FreeToJoin"> Adesione libera </string> <string name="CostToJoin"> - L$[AMOUNT] per aderire + L$ [AMOUNT] per aderire </string> <string name="YouAreMember"> - Tu sei un Membro + Tu sei un iscritto </string> - <button label="Aderire" name="join_btn"/> - <button label="Abbandona" name="leave_btn"/> - <button label="Vedi Profilo" name="view_profile_btn"/> + <button label="Iscriviti" name="join_btn"/> + <button label="Chiudi" name="leave_btn"/> + <button label="Vedi profilo" name="view_profile_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/inspect_object.xml b/indra/newview/skins/default/xui/it/inspect_object.xml index 7e6d195cb1f64bcde277a45576d6e814ea0c93ae..fd58c18e0be2e49e2a7a0b8ea048a51398a427f0 100644 --- a/indra/newview/skins/default/xui/it/inspect_object.xml +++ b/indra/newview/skins/default/xui/it/inspect_object.xml @@ -9,10 +9,10 @@ </string> <string name="CreatorAndOwner"> Di [CREATOR] -owner [OWNER] +proprietario [OWNER] </string> <string name="Price"> - L$[AMOUNT] + L$ [AMOUNT] </string> <string name="PriceFree"> Gratis! @@ -21,14 +21,14 @@ owner [OWNER] Tocca </string> <string name="Sit"> - Siedi + Siediti </string> - <button label="Compra" name="buy_btn"/> + <button label="Acquista" name="buy_btn"/> <button label="Paga" name="pay_btn"/> - <button label="Fai una Copia" name="take_free_copy_btn"/> + <button label="Prendi copia" name="take_free_copy_btn"/> <button label="Tocca" name="touch_btn"/> - <button label="Siedi" name="sit_btn"/> + <button label="Siediti" name="sit_btn"/> <button label="Apri" name="open_btn"/> - <icon name="secure_browsing" tool_tip="Secure Browsing"/> - <button label="Ulteriore" name="more_info_btn"/> + <icon name="secure_browsing" tool_tip="Browsing sicuro"/> + <button label="Altro" name="more_info_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/inspect_remote_object.xml b/indra/newview/skins/default/xui/it/inspect_remote_object.xml index 9fabe2ca0b55aff73f72798984cdde7bd456bca4..b2d96ad7579d25f0c75930f79725660435225b5b 100644 --- a/indra/newview/skins/default/xui/it/inspect_remote_object.xml +++ b/indra/newview/skins/default/xui/it/inspect_remote_object.xml @@ -8,6 +8,6 @@ Proprietario: </text> <button label="Mappa" name="map_btn"/> - <button label="Bloccare" name="block_btn"/> + <button label="Blocca" name="block_btn"/> <button label="Chiudi" name="close_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/menu_attachment_other.xml b/indra/newview/skins/default/xui/it/menu_attachment_other.xml index ff068b90a5c5f73289ff751b1a78707a6c5637f8..3dfadd969001e148bfd9756fffc78c1426d8ca14 100644 --- a/indra/newview/skins/default/xui/it/menu_attachment_other.xml +++ b/indra/newview/skins/default/xui/it/menu_attachment_other.xml @@ -2,16 +2,16 @@ <!-- *NOTE: See also menu_avatar_other.xml --> <context_menu name="Avatar Pie"> <menu_item_call label="Vedi profilo" name="Profile..."/> - <menu_item_call label="Chiedi amicizia" name="Add Friend"/> + <menu_item_call label="Aggiungi amico" name="Add Friend"/> <menu_item_call label="IM" name="Send IM..."/> <menu_item_call label="Chiama" name="Call"/> - <menu_item_call label="Invita nel gruppo" name="Invite..."/> + <menu_item_call label="Invita al gruppo" name="Invite..."/> <menu_item_call label="Blocca" name="Avatar Mute"/> - <menu_item_call label="Denuncia" name="abuse"/> + <menu_item_call label="Segnala" name="abuse"/> <menu_item_call label="Congela" name="Freeze..."/> <menu_item_call label="Espelli" name="Eject..."/> <menu_item_call label="Debug" name="Debug..."/> - <menu_item_call label="Avvicinati" name="Zoom In"/> + <menu_item_call label="Zoom avanti" name="Zoom In"/> <menu_item_call label="Paga" name="Pay..."/> - <menu_item_call label="Profilo oggetto" name="Object Inspect"/> + <menu_item_call label="Profilo dell'oggetto" name="Object Inspect"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_attachment_self.xml b/indra/newview/skins/default/xui/it/menu_attachment_self.xml index 9711b5918a382721938078df123a549b27fdda01..f30b286901ad1226c55d6ad3b6866375e4644e68 100644 --- a/indra/newview/skins/default/xui/it/menu_attachment_self.xml +++ b/indra/newview/skins/default/xui/it/menu_attachment_self.xml @@ -5,8 +5,8 @@ <menu_item_call label="Stacca" name="Detach"/> <menu_item_call label="Lascia" name="Drop"/> <menu_item_call label="Alzati" name="Stand Up"/> - <menu_item_call label="Il mio aspetto fisico" name="Appearance..."/> - <menu_item_call label="I miei amici" name="Friends..."/> + <menu_item_call label="Il mio aspetto" name="Appearance..."/> + <menu_item_call label="I miei amici..." name="Friends..."/> <menu_item_call label="I miei gruppi" name="Groups..."/> <menu_item_call label="Il mio profilo" name="Profile..."/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_avatar_icon.xml b/indra/newview/skins/default/xui/it/menu_avatar_icon.xml index 522c7ab4e6a5b54f1e20bb4bfa437f3824852bf3..b93b695300829f0c3c2957f743e445c0a499169a 100644 --- a/indra/newview/skins/default/xui/it/menu_avatar_icon.xml +++ b/indra/newview/skins/default/xui/it/menu_avatar_icon.xml @@ -2,6 +2,6 @@ <menu name="Avatar Icon Menu"> <menu_item_call label="Vedi profilo" name="Show Profile"/> <menu_item_call label="Manda IM..." name="Send IM"/> - <menu_item_call label="Chiedi amicizia..." name="Add Friend"/> + <menu_item_call label="Aggiungi come amico..." name="Add Friend"/> <menu_item_call label="Togli amicizia..." name="Remove Friend"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_avatar_other.xml b/indra/newview/skins/default/xui/it/menu_avatar_other.xml index a435fcd3117b036bbe2ba2980937ba8ccd06d20f..8a1ff3d7ecd399e98738e762041405c00058ea10 100644 --- a/indra/newview/skins/default/xui/it/menu_avatar_other.xml +++ b/indra/newview/skins/default/xui/it/menu_avatar_other.xml @@ -2,15 +2,15 @@ <!-- *NOTE: See also menu_attachment_other.xml --> <context_menu name="Avatar Pie"> <menu_item_call label="Vedi profilo" name="Profile..."/> - <menu_item_call label="Chiedi amicizia" name="Add Friend"/> + <menu_item_call label="Aggiungi amico" name="Add Friend"/> <menu_item_call label="IM" name="Send IM..."/> <menu_item_call label="Chiama" name="Call"/> - <menu_item_call label="Invita nel gruppo" name="Invite..."/> + <menu_item_call label="Invita al gruppo" name="Invite..."/> <menu_item_call label="Blocca" name="Avatar Mute"/> - <menu_item_call label="Denuncia" name="abuse"/> + <menu_item_call label="Segnala" name="abuse"/> <menu_item_call label="Congela" name="Freeze..."/> <menu_item_call label="Espelli" name="Eject..."/> <menu_item_call label="Debug" name="Debug..."/> - <menu_item_call label="Avvicinati" name="Zoom In"/> + <menu_item_call label="Zoom avanti" name="Zoom In"/> <menu_item_call label="Paga" name="Pay..."/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_avatar_self.xml b/indra/newview/skins/default/xui/it/menu_avatar_self.xml index b7a9f8efbed31fa507b2cdf74ec2a41392da2362..09219cb843f92475342466691efa96b46f029923 100644 --- a/indra/newview/skins/default/xui/it/menu_avatar_self.xml +++ b/indra/newview/skins/default/xui/it/menu_avatar_self.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Self Pie"> <menu_item_call label="Alzati" name="Stand Up"/> - <context_menu label="Vola >" name="Take Off >"> - <context_menu label="Abiti >" name="Clothes >"> - <menu_item_call label="Gonna" name="Shirt"/> + <context_menu label="Togli â–¶" name="Take Off >"> + <context_menu label="Abiti â–¶" name="Clothes >"> + <menu_item_call label="Camicia" name="Shirt"/> <menu_item_call label="Pantaloni" name="Pants"/> <menu_item_call label="Gonna" name="Skirt"/> <menu_item_call label="Scarpe" name="Shoes"/> @@ -13,15 +13,15 @@ <menu_item_call label="Maglietta intima" name="Self Undershirt"/> <menu_item_call label="Slip" name="Self Underpants"/> <menu_item_call label="Tatuaggio" name="Self Tattoo"/> - <menu_item_call label="Alfa (trasparenza)" name="Self Alpha"/> + <menu_item_call label="Alpha (Trasparenza)" name="Self Alpha"/> <menu_item_call label="Tutti gli abiti" name="All Clothes"/> </context_menu> - <context_menu label="HUD >" name="Object Detach HUD"/> - <context_menu label="Stacca >" name="Object Detach"/> + <context_menu label="HUD â–¶" name="Object Detach HUD"/> + <context_menu label="Stacca â–¶" name="Object Detach"/> <menu_item_call label="Stacca tutto" name="Detach All"/> </context_menu> - <menu_item_call label="Il mio aspetto fisico" name="Appearance..."/> - <menu_item_call label="I miei amici" name="Friends..."/> + <menu_item_call label="Il mio aspetto" name="Appearance..."/> + <menu_item_call label="I miei amici..." name="Friends..."/> <menu_item_call label="I miei gruppi" name="Groups..."/> <menu_item_call label="Il mio profilo" name="Profile..."/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_bottomtray.xml b/indra/newview/skins/default/xui/it/menu_bottomtray.xml index 185cf75183f933012b27f70ad9935bb5e6a02d6a..7203d002d2ee649b72a54c4ec42afc55d224d0b6 100644 --- a/indra/newview/skins/default/xui/it/menu_bottomtray.xml +++ b/indra/newview/skins/default/xui/it/menu_bottomtray.xml @@ -2,11 +2,11 @@ <menu name="hide_camera_move_controls_menu"> <menu_item_check label="Tasto Gesture" name="ShowGestureButton"/> <menu_item_check label="Tasto Movimento" name="ShowMoveButton"/> - <menu_item_check label="Tasto Camera" name="ShowCameraButton"/> - <menu_item_check label="Tasto Snapshot" name="ShowSnapshotButton"/> + <menu_item_check label="Tasto Visuale" name="ShowCameraButton"/> + <menu_item_check label="Tasto Foto" name="ShowSnapshotButton"/> <menu_item_call label="Taglia" name="NearbyChatBar_Cut"/> <menu_item_call label="Copia" name="NearbyChatBar_Copy"/> <menu_item_call label="Incolla" name="NearbyChatBar_Paste"/> - <menu_item_call label="Cancella" name="NearbyChatBar_Delete"/> - <menu_item_call label="Seleziona Tutto" name="NearbyChatBar_Select_All"/> + <menu_item_call label="Elimina" name="NearbyChatBar_Delete"/> + <menu_item_call label="Seleziona tutto" name="NearbyChatBar_Select_All"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_favorites.xml b/indra/newview/skins/default/xui/it/menu_favorites.xml index 9c4966d198f60aafd21da7aebbbb259a367f836c..7813ef44b52c345a47a94fe9455d57fbc45a8502 100644 --- a/indra/newview/skins/default/xui/it/menu_favorites.xml +++ b/indra/newview/skins/default/xui/it/menu_favorites.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="Popup"> <menu_item_call label="Teleport" name="Teleport To Landmark"/> - <menu_item_call label="Vedi/Modifica Landmark" name="Landmark Open"/> + <menu_item_call label="Vedi/Modifica punto di riferimento" name="Landmark Open"/> <menu_item_call label="Copia SLurl" name="Copy slurl"/> <menu_item_call label="Mostra sulla mappa" name="Show On Map"/> <menu_item_call label="Copia" name="Landmark Copy"/> <menu_item_call label="Incolla" name="Landmark Paste"/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Elimina" name="Delete"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_gesture_gear.xml b/indra/newview/skins/default/xui/it/menu_gesture_gear.xml index c4f9d21d14dc833f33a2bc72d17ba994bf52154e..7cfcc6287e0b10237f764177e663aab338d6b39e 100644 --- a/indra/newview/skins/default/xui/it/menu_gesture_gear.xml +++ b/indra/newview/skins/default/xui/it/menu_gesture_gear.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_gesture_gear"> - <menu_item_call label="Aggiungi/Cancella dai favoriti" name="activate"/> + <menu_item_call label="Aggiungi/Rimuovi dai preferiti" name="activate"/> <menu_item_call label="Copia" name="copy_gesture"/> <menu_item_call label="Incolla" name="paste"/> <menu_item_call label="Copia UUID" name="copy_uuid"/> - <menu_item_call label="Salva outfit" name="save_to_outfit"/> + <menu_item_call label="Salva vestiario" name="save_to_outfit"/> <menu_item_call label="Modifica" name="edit_gesture"/> <menu_item_call label="Ispeziona" name="inspect"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_group_plus.xml b/indra/newview/skins/default/xui/it/menu_group_plus.xml index 6b7692a06711a4fb56bd628284fe75b38eed2682..3b76fb94a921590966517c376bc797985e7e64f7 100644 --- a/indra/newview/skins/default/xui/it/menu_group_plus.xml +++ b/indra/newview/skins/default/xui/it/menu_group_plus.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_call label="Unisciti al gruppo..." name="item_join"/> + <menu_item_call label="Aderisci al gruppo..." name="item_join"/> <menu_item_call label="Nuovo gruppo..." name="item_new"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_hide_navbar.xml b/indra/newview/skins/default/xui/it/menu_hide_navbar.xml index a87e76a19b25e48d3a52c8f14e4df659c3f84d78..ee50a18ba5dc97d94b63e1ab9a968eee426c2f4b 100644 --- a/indra/newview/skins/default/xui/it/menu_hide_navbar.xml +++ b/indra/newview/skins/default/xui/it/menu_hide_navbar.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="hide_navbar_menu"> <menu_item_check label="Mostra la barra di navigazione" name="ShowNavbarNavigationPanel"/> - <menu_item_check label="Mostra la barra dei favoriti" name="ShowNavbarFavoritesPanel"/> + <menu_item_check label="Mostra la barra dei Preferiti" name="ShowNavbarFavoritesPanel"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_im_well_button.xml b/indra/newview/skins/default/xui/it/menu_im_well_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..9e471b771c78053239a5a2a367a145964d3690ed --- /dev/null +++ b/indra/newview/skins/default/xui/it/menu_im_well_button.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<context_menu name="IM Well Button Context Menu"> + <menu_item_call label="Chiudi tutto" name="Close All"/> +</context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_imchiclet_group.xml b/indra/newview/skins/default/xui/it/menu_imchiclet_group.xml index f39ad316fe335a73169f48993e1b0ba3a6c563f5..baa4e671b07f4e595df3795425ec84fa0157b840 100644 --- a/indra/newview/skins/default/xui/it/menu_imchiclet_group.xml +++ b/indra/newview/skins/default/xui/it/menu_imchiclet_group.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="IMChiclet Group Menu"> - <menu_item_call label="Informazioni gruppo" name="Show Profile"/> + <menu_item_call label="Informazioni sul gruppo" name="Show Profile"/> <menu_item_call label="Mostra sessione" name="Chat"/> <menu_item_call label="Fine sessione" name="End Session"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_imchiclet_p2p.xml b/indra/newview/skins/default/xui/it/menu_imchiclet_p2p.xml index e89576b1f98415f6bd2ef6571b785f4b993f758b..2eacbb09ad7787e10e1f930c6adfc0d5d1d30ae8 100644 --- a/indra/newview/skins/default/xui/it/menu_imchiclet_p2p.xml +++ b/indra/newview/skins/default/xui/it/menu_imchiclet_p2p.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="IMChiclet P2P Menu"> <menu_item_call label="Vedi profilo" name="Show Profile"/> - <menu_item_call label="Chiedi amicizia" name="Add Friend"/> + <menu_item_call label="Aggiungi amico" name="Add Friend"/> <menu_item_call label="Mostra sessione" name="Send IM"/> <menu_item_call label="Fine sessione" name="End Session"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_inspect_avatar_gear.xml b/indra/newview/skins/default/xui/it/menu_inspect_avatar_gear.xml index 968fbd37aeed25cd884990251775785a27d6209b..ca6d5a4ad85ec70d9f672b07551eaa8c6a63c680 100644 --- a/indra/newview/skins/default/xui/it/menu_inspect_avatar_gear.xml +++ b/indra/newview/skins/default/xui/it/menu_inspect_avatar_gear.xml @@ -1,17 +1,19 @@ <?xml version="1.0" encoding="utf-8"?> <menu name="Gear Menu"> <menu_item_call label="Vedi profilo" name="view_profile"/> - <menu_item_call label="Chiedi amicizia" name="add_friend"/> + <menu_item_call label="Aggiungi amico" name="add_friend"/> <menu_item_call label="IM" name="im"/> <menu_item_call label="Chiama" name="call"/> <menu_item_call label="Teleport" name="teleport"/> - <menu_item_call label="Invita nel gruppo" name="invite_to_group"/> + <menu_item_call label="Invita al gruppo" name="invite_to_group"/> <menu_item_call label="Blocca" name="block"/> - <menu_item_call label="Denuncia" name="report"/> + <menu_item_call label="Sblocca" name="unblock"/> + <menu_item_call label="Segnala" name="report"/> <menu_item_call label="Congela" name="freeze"/> <menu_item_call label="Espelli" name="eject"/> <menu_item_call label="Debug" name="debug"/> <menu_item_call label="Trova sulla mappa" name="find_on_map"/> - <menu_item_call label="Avvicinati" name="zoom_in"/> + <menu_item_call label="Zoom avanti" name="zoom_in"/> <menu_item_call label="Paga" name="pay"/> + <menu_item_call label="Condividi" name="share"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_inspect_object_gear.xml b/indra/newview/skins/default/xui/it/menu_inspect_object_gear.xml index 74d828fc20d2c6b7d38f03da5a6853e7526cdcea..eb10ebd0b62875e9448d5547ab1f70a98a8f6daf 100644 --- a/indra/newview/skins/default/xui/it/menu_inspect_object_gear.xml +++ b/indra/newview/skins/default/xui/it/menu_inspect_object_gear.xml @@ -1,17 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <menu name="Gear Menu"> <menu_item_call label="Tocca" name="touch"/> - <menu_item_call label="Siedi" name="sit"/> + <menu_item_call label="Siediti" name="sit"/> <menu_item_call label="Paga" name="pay"/> - <menu_item_call label="Compra" name="buy"/> + <menu_item_call label="Acquista" name="buy"/> <menu_item_call label="Prendi" name="take"/> <menu_item_call label="Prendi copia" name="take_copy"/> <menu_item_call label="Apri" name="open"/> <menu_item_call label="Modifica" name="edit"/> <menu_item_call label="Indossa" name="wear"/> - <menu_item_call label="Denuncia" name="report"/> + <menu_item_call label="Segnala" name="report"/> <menu_item_call label="Blocca" name="block"/> - <menu_item_call label="Avvicinati" name="zoom_in"/> - <menu_item_call label="Cancella" name="remove"/> - <menu_item_call label="Più info" name="more_info"/> + <menu_item_call label="Zoom avanti" name="zoom_in"/> + <menu_item_call label="Rimuovi" name="remove"/> + <menu_item_call label="Maggiori informazioni" name="more_info"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_inspect_self_gear.xml b/indra/newview/skins/default/xui/it/menu_inspect_self_gear.xml index 1812a21b0db32730a153f3fc6a3895f32978786f..359afcc28326e297fd0e12a6aa6a8513af0fc01d 100644 --- a/indra/newview/skins/default/xui/it/menu_inspect_self_gear.xml +++ b/indra/newview/skins/default/xui/it/menu_inspect_self_gear.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <menu name="Gear Menu"> <menu_item_call label="Alzati" name="stand_up"/> - <menu_item_call label="Il mio aspetto fisico" name="my_appearance"/> + <menu_item_call label="Il mio aspetto" name="my_appearance"/> <menu_item_call label="Il mio profilo" name="my_profile"/> - <menu_item_call label="I miei amici" name="my_friends"/> + <menu_item_call label="I miei amici..." name="my_friends"/> <menu_item_call label="I miei gruppi" name="my_groups"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_inventory.xml b/indra/newview/skins/default/xui/it/menu_inventory.xml index edb9490914ced803387fd338c5303ced33948286..9662f6f93737c5b307e283c2794966cc6fe0802c 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory.xml @@ -10,9 +10,9 @@ <menu_item_call label="Svuota gli oggetti persi e ritrovati" name="Empty Lost And Found"/> <menu_item_call label="Nuova Cartella" name="New Folder"/> <menu_item_call label="Nuovo Script" name="New Script"/> - <menu_item_call label="Nuova Notecard" name="New Note"/> + <menu_item_call label="Nuovo biglietto" name="New Note"/> <menu_item_call label="Nuova Gesture" name="New Gesture"/> - <menu label="Maglietta Intima" name="New Clothes"> + <menu label="Maglietta intima" name="New Clothes"> <menu_item_call label="Nuova Maglietta" name="New Shirt"/> <menu_item_call label="Nuovi Pantaloni" name="New Pants"/> <menu_item_call label="Nuove Scarpe" name="New Shoes"/> @@ -23,47 +23,46 @@ <menu_item_call label="Nuova Canottiera" name="New Undershirt"/> <menu_item_call label="Nuove Mutande" name="New Underpants"/> <menu_item_call label="Nuovo Alfa Mask" name="New Alpha Mask"/> - <menu_item_call label="Nuovo Tatuaggio" name="New Tattoo"/> + <menu_item_call label="Nuovo tatuaggio" name="New Tattoo"/> </menu> - <menu label="Nuove Parti del Corpo" name="New Body Parts"> + <menu label="Nuove parti del corpo" name="New Body Parts"> <menu_item_call label="Nuova Forma del corpo" name="New Shape"/> <menu_item_call label="Nuova Pelle" name="New Skin"/> <menu_item_call label="Nuovi Capelli" name="New Hair"/> <menu_item_call label="Nuovi Occhi" name="New Eyes"/> </menu> - <menu label="Cambia Tipo" name="Change Type"> + <menu label="Cambia tipo" name="Change Type"> <menu_item_call label="Predefinito" name="Default"/> <menu_item_call label="Guanti" name="Gloves"/> <menu_item_call label="Giacca" name="Jacket"/> <menu_item_call label="Pantaloni" name="Pants"/> - <menu_item_call label="Shape" name="Shape"/> + <menu_item_call label="Figura corporea" name="Shape"/> <menu_item_call label="Scarpe" name="Shoes"/> <menu_item_call label="Camicia" name="Shirt"/> <menu_item_call label="Gonna" name="Skirt"/> <menu_item_call label="Slip" name="Underpants"/> - <menu_item_call label="Maglietta Intima" name="Undershirt"/> + <menu_item_call label="Maglietta intima" name="Undershirt"/> </menu> <menu_item_call label="Teletrasportati" name="Landmark Open"/> <menu_item_call label="Apri" name="Animation Open"/> <menu_item_call label="Apri" name="Sound Open"/> + <menu_item_call label="Sostituisci vestiti" name="Replace Outfit"/> + <menu_item_call label="Aggiungi al vestiario" name="Add To Outfit"/> <menu_item_call label="Elimina oggetto" name="Purge Item"/> <menu_item_call label="Ripristina oggetto" name="Restore Item"/> - <menu_item_call label="Vai al Link" name="Goto Link"/> <menu_item_call label="Apri" name="Open"/> <menu_item_call label="Proprietà " name="Properties"/> <menu_item_call label="Rinomina" name="Rename"/> <menu_item_call label="Copia UUID dell'oggetto" name="Copy Asset UUID"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Incolla come Link" name="Paste As Link"/> + <menu_item_call label="Incolla come link" name="Paste As Link"/> <menu_item_call label="Cancella" name="Delete"/> - <menu_item_call label="Togli gli oggetti" name="Take Off Items"/> - <menu_item_call label="Aggiungi all'outfit" name="Add To Outfit"/> - <menu_item_call label="Sostituisci outfit" name="Replace Outfit"/> + <menu_item_call label="Elimina la cartella di sistema" name="Delete System Folder"/> <menu_item_call label="Inizia la conferenza chat" name="Conference Chat Folder"/> <menu_item_call label="Esegui" name="Sound Play"/> - <menu_item_call label="Informazioni sul Landmark" name="About Landmark"/> - <menu_item_call label="Esegui inworld" name="Animation Play"/> + <menu_item_call label="Informazioni sul punto di riferimento" name="About Landmark"/> + <menu_item_call label="Riproduci in Second Life" name="Animation Play"/> <menu_item_call label="Esegui localmente" name="Animation Audition"/> <menu_item_call label="Invia un Instant Message" name="Send Instant Message"/> <menu_item_call label="Offri teletrasporto..." name="Offer Teleport..."/> diff --git a/indra/newview/skins/default/xui/it/menu_inventory_add.xml b/indra/newview/skins/default/xui/it/menu_inventory_add.xml index d33dabc4c36fe253a7507be65ffe870906d6b0e2..05f53f44ba77c4618450d17ea48d3be524158da0 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory_add.xml @@ -1,32 +1,32 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_inventory_add"> - <menu label="Carica sul server" name="upload"> + <menu label="Carica nel server" name="upload"> <menu_item_call label="Immagine ([COST]L$)..." name="Upload Image"/> <menu_item_call label="Suono ([COST]L$)..." name="Upload Sound"/> <menu_item_call label="Animazione ([COST]L$)..." name="Upload Animation"/> <menu_item_call label="In blocco ([COST]L$ per file)..." name="Bulk Upload"/> </menu> - <menu_item_call label="Nuova Cartella" name="New Folder"/> - <menu_item_call label="Nuovo Script" name="New Script"/> - <menu_item_call label="Nuova Notecard" name="New Note"/> - <menu_item_call label="Nuova Gesture" name="New Gesture"/> - <menu label="Nuovi Abiti" name="New Clothes"> - <menu_item_call label="Nuova Camicia" name="New Shirt"/> - <menu_item_call label="Nuovi Pantaloni" name="New Pants"/> - <menu_item_call label="Nuove Scarpe" name="New Shoes"/> - <menu_item_call label="Nuove Calze" name="New Socks"/> - <menu_item_call label="Nuova Giacca" name="New Jacket"/> - <menu_item_call label="Nuova Gonna" name="New Skirt"/> - <menu_item_call label="Nuovi Guanti" name="New Gloves"/> - <menu_item_call label="Nuova Maglietta Intima" name="New Undershirt"/> - <menu_item_call label="Nuovi Slip" name="New Underpants"/> - <menu_item_call label="Nuovo Alfa (Trasparenza)" name="New Alpha"/> - <menu_item_call label="Nuovo Tatuaggio" name="New Tattoo"/> + <menu_item_call label="Nuova cartella" name="New Folder"/> + <menu_item_call label="Nuovo script" name="New Script"/> + <menu_item_call label="Nuovo biglietto" name="New Note"/> + <menu_item_call label="Nuova gesture" name="New Gesture"/> + <menu label="Maglietta intima" name="New Clothes"> + <menu_item_call label="Nuova camicia" name="New Shirt"/> + <menu_item_call label="Nuovi pantaloni" name="New Pants"/> + <menu_item_call label="Nuove scarpe" name="New Shoes"/> + <menu_item_call label="Nuove calze" name="New Socks"/> + <menu_item_call label="Nuova giacca" name="New Jacket"/> + <menu_item_call label="Nuova gonna" name="New Skirt"/> + <menu_item_call label="Nuovi guanti" name="New Gloves"/> + <menu_item_call label="Nuova maglietta intima" name="New Undershirt"/> + <menu_item_call label="Nuovi slip" name="New Underpants"/> + <menu_item_call label="Nuovo Alfa (trasparenza)" name="New Alpha"/> + <menu_item_call label="Nuovo tatuaggio" name="New Tattoo"/> </menu> - <menu label="Nuove Parti del Corpo" name="New Body Parts"> - <menu_item_call label="Nuova Shape" name="New Shape"/> - <menu_item_call label="Nuova Pelle" name="New Skin"/> - <menu_item_call label="Nuovi Capelli" name="New Hair"/> - <menu_item_call label="Nuovi Occhi" name="New Eyes"/> + <menu label="Nuove parti del corpo" name="New Body Parts"> + <menu_item_call label="Nuova figura corporea" name="New Shape"/> + <menu_item_call label="Nuova pelle" name="New Skin"/> + <menu_item_call label="Nuovi capelli" name="New Hair"/> + <menu_item_call label="Nuovi occhi" name="New Eyes"/> </menu> </menu> 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 e97af5c9505d2f9d655ce493e3c95936d78c6117..cf87148f2e7cc41897a0f739054a3c2aa70b883a 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory_gear_default.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_gear_default"> - <menu_item_call label="Nuova Finestra di Inventory" name="new_window"/> - <menu_item_call label="Ordina per nome" name="sort_by_name"/> - <menu_item_call label="Ordina per data (più recenti)" name="sort_by_recent"/> - <menu_item_call label="Mostra i Filtri" name="show_filters"/> - <menu_item_call label="Cancella i Filtri" name="reset_filters"/> - <menu_item_call label="Chiudi le cartelle" name="close_folders"/> + <menu_item_call label="Nuova finestra inventario" name="new_window"/> + <menu_item_call label="Ordina in base al nome" name="sort_by_name"/> + <menu_item_call label="Mostra prima i più recenti" name="sort_by_recent"/> + <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 cestino" name="empty_trash"/> - <menu_item_call label="Svuota Persi e Ritrovati" name="empty_lostnfound"/> + <menu_item_call label="Svuota oggetti smarriti" name="empty_lostnfound"/> <menu_item_call label="Salva texture come" name="Save Texture As"/> <menu_item_call label="Trova originale" name="Find Original"/> <menu_item_call label="Trova tutti i link" name="Find All Links"/> diff --git a/indra/newview/skins/default/xui/it/menu_land.xml b/indra/newview/skins/default/xui/it/menu_land.xml index 173c080c3fa4eab214e245ab9e7132db697401da..f510078e147c1deff080c483c8adc18d6acf9fe4 100644 --- a/indra/newview/skins/default/xui/it/menu_land.xml +++ b/indra/newview/skins/default/xui/it/menu_land.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Land Pie"> - <menu_item_call label="Info sul terreno" name="Place Information..."/> - <menu_item_call label="Siedi qui" name="Sit Here"/> - <menu_item_call label="Compra questo terreno" name="Land Buy"/> - <menu_item_call label="Compra permesso" name="Land Buy Pass"/> + <menu_item_call label="Informazioni sui terreni" name="Place Information..."/> + <menu_item_call label="Siediti qui" name="Sit Here"/> + <menu_item_call label="Acquista questo terreno" name="Land Buy"/> + <menu_item_call label="Acquista Permesso" name="Land Buy Pass"/> <menu_item_call label="Costruisci" name="Create"/> <menu_item_call label="Modifica terreno" name="Edit Terrain"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_landmark.xml b/indra/newview/skins/default/xui/it/menu_landmark.xml index 58e3e992ed8e6b5842a79088ac8a3a20e6822c86..b3cddab783e43072ee481fc5636e7ba5683287f4 100644 --- a/indra/newview/skins/default/xui/it/menu_landmark.xml +++ b/indra/newview/skins/default/xui/it/menu_landmark.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="landmark_overflow_menu"> <menu_item_call label="Copia SLurl" name="copy"/> - <menu_item_call label="Cancella" name="delete"/> - <menu_item_call label="Crea luogo consigliato" name="pick"/> - <menu_item_call label="Aggiungi alla barra dei favoriti" name="add_to_favbar"/> + <menu_item_call label="Elimina" name="delete"/> + <menu_item_call label="Crea Luogo consigliato" name="pick"/> + <menu_item_call label="Aggiungi alla barra dei Preferiti" name="add_to_favbar"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/it/menu_login.xml b/indra/newview/skins/default/xui/it/menu_login.xml index db3b84df29442cd251bb0962efdca892a51fea13..36eeadc478480d1cefcda2d14ad57fe2cac6eecd 100644 --- a/indra/newview/skins/default/xui/it/menu_login.xml +++ b/indra/newview/skins/default/xui/it/menu_login.xml @@ -10,21 +10,21 @@ <menu label="Debug" name="Debug"> <menu label="Modifica" name="Edit"> <menu_item_call label="Annulla" name="Undo"/> - <menu_item_call label="Ripeti" name="Redo"/> + <menu_item_call label="Rifai" name="Redo"/> <menu_item_call label="Taglia" name="Cut"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Elimina" name="Delete"/> <menu_item_call label="Duplica" name="Duplicate"/> - <menu_item_call label="Seleziona Tutto" name="Select All"/> + <menu_item_call label="Seleziona tutto" name="Select All"/> <menu_item_call label="Deseleziona" name="Deselect"/> </menu> - <menu_item_call label="Mostra Impostazioni di Debug" name="Debug Settings"/> - <menu_item_call label="Impostazioni colori Interfaccia" name="UI/Color Settings"/> - <menu_item_call label="Mostra la finestra laterale" name="Show Side Tray"/> - <menu label="Test Interfaccia Utente" name="UI Tests"/> - <menu_item_call label="Mostra i Termini di Servizio (TOS)" name="TOS"/> - <menu_item_call label="Mostra Messaggi critici" name="Critical"/> - <menu_item_call label="Test Web browser" name="Web Browser Test"/> + <menu_item_call label="Mostra impostazioni di debug" name="Debug Settings"/> + <menu_item_call label="Impostazioni colori interfaccia" name="UI/Color Settings"/> + <menu label="Test interfaccia utente" name="UI Tests"/> + <menu_item_call label="Imposta dimensioni della finestra..." name="Set Window Size..."/> + <menu_item_call label="Mostra i Termini del servizio (TOS)" name="TOS"/> + <menu_item_call label="Mostra messaggio critico" name="Critical"/> + <menu_item_call label="Test browser Web" name="Web Browser Test"/> </menu> </menu_bar> diff --git a/indra/newview/skins/default/xui/it/menu_mini_map.xml b/indra/newview/skins/default/xui/it/menu_mini_map.xml index 7caa7fd226e3442984d6238df4aa872826d9ca6e..fa574230e03e67aed9aaaefd1896e8b810f638e0 100644 --- a/indra/newview/skins/default/xui/it/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/it/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom ravvicinato" name="Zoom Close"/> <menu_item_call label="Zoom Medio" name="Zoom Medium"/> <menu_item_call label="Zoom Distante" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/it/menu_navbar.xml b/indra/newview/skins/default/xui/it/menu_navbar.xml index 3d855cf7017907a11886ffc58da61b995ec88f3f..e42d913a6f18d76c18973ab2717f46f8a9eb8e06 100644 --- a/indra/newview/skins/default/xui/it/menu_navbar.xml +++ b/indra/newview/skins/default/xui/it/menu_navbar.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="Navbar Menu"> <menu_item_check label="Mostra le coordinate" name="Show Coordinates"/> - <menu_item_check label="Mostra proprietà parcel" name="Show Parcel Properties"/> - <menu_item_call label="Landmark" name="Landmark"/> + <menu_item_check label="Mostra proprietà lotto" name="Show Parcel Properties"/> + <menu_item_call label="Punto di riferimento" name="Landmark"/> <menu_item_call label="Taglia" name="Cut"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Elimina" name="Delete"/> <menu_item_call label="Seleziona tutto" name="Select All"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_nearby_chat.xml b/indra/newview/skins/default/xui/it/menu_nearby_chat.xml index 2a625fc7633b76e1ca9a0b3a79fd9884e332dd14..719a6d326187bb99d1c815fb763c10d4feded11d 100644 --- a/indra/newview/skins/default/xui/it/menu_nearby_chat.xml +++ b/indra/newview/skins/default/xui/it/menu_nearby_chat.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="NearBy Chat Menu"> <menu_item_call label="Mostra le persone vicine..." name="nearby_people"/> - <menu_item_check label="Mostra Testo bloccato" name="muted_text"/> - <menu_item_check label="Mostra Icone amici" name="show_buddy_icons"/> + <menu_item_check label="Mostra il testo bloccato" name="muted_text"/> + <menu_item_check label="Mostra icone amici" name="show_buddy_icons"/> <menu_item_check label="Mostra nomi" name="show_names"/> - <menu_item_check label="Mostra Icone e nomi" name="show_icons_and_names"/> - <menu_item_call label="Dimensioni del Font" name="font_size"/> + <menu_item_check label="Mostra icone e nomi" name="show_icons_and_names"/> + <menu_item_call label="Dimensioni caratteri" name="font_size"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_notification_well_button.xml b/indra/newview/skins/default/xui/it/menu_notification_well_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..8c82e30f0ed78c3240b284926d26556baa11b74d --- /dev/null +++ b/indra/newview/skins/default/xui/it/menu_notification_well_button.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<context_menu name="Notification Well Button Context Menu"> + <menu_item_call label="Chiudi tutto" name="Close All"/> +</context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_object.xml b/indra/newview/skins/default/xui/it/menu_object.xml index 955d4c8776eb4f55e56e883cfff6603adff1e613..237b6b3a0e8fa5c73a8fe9d8d4f4361e1c1ac444 100644 --- a/indra/newview/skins/default/xui/it/menu_object.xml +++ b/indra/newview/skins/default/xui/it/menu_object.xml @@ -4,21 +4,24 @@ <menu_item_call label="Modifica" name="Edit..."/> <menu_item_call label="Costruisci" name="Build"/> <menu_item_call label="Apri" name="Open"/> - <menu_item_call label="Siedi qui" name="Object Sit"/> - <menu_item_call label="Profilo oggetto" name="Object Inspect"/> - <context_menu label="Metti >" name="Put On"> + <menu_item_call label="Siediti qui" name="Object Sit"/> + <menu_item_call label="Alzati" name="Object Stand Up"/> + <menu_item_call label="Profilo dell'oggetto" name="Object Inspect"/> + <menu_item_call label="Zoom avanti" name="Zoom In"/> + <context_menu label="Indossa â–¶" name="Put On"> <menu_item_call label="Indossa" name="Wear"/> - <context_menu label="Attacca >" name="Object Attach"/> - <context_menu label="Attacca HUD >" name="Object Attach HUD"/> + <context_menu label="Attacca â–¶" name="Object Attach"/> + <context_menu label="Attacca HUD â–¶" name="Object Attach HUD"/> </context_menu> - <context_menu label="Togli >" name="Remove"> - <menu_item_call label="Prendi" name="Pie Object Take"/> - <menu_item_call label="Denuncia abuso" name="Report Abuse..."/> + <context_menu label="Togli â–¶" name="Remove"> + <menu_item_call label="Segnala abuso" name="Report Abuse..."/> <menu_item_call label="Blocca" name="Object Mute"/> <menu_item_call label="Restituisci" name="Return..."/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Elimina" name="Delete"/> </context_menu> + <menu_item_call label="Acquista" name="Pie Object Bye"/> + <menu_item_call label="Prendi" name="Pie Object Take"/> <menu_item_call label="Prendi copia" name="Take Copy"/> <menu_item_call label="Paga" name="Pay..."/> - <menu_item_call label="Compra" name="Buy..."/> + <menu_item_call label="Acquista" name="Buy..."/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_participant_list.xml b/indra/newview/skins/default/xui/it/menu_participant_list.xml index 33c8fc404d82974059656670f977b9747b11f691..e641d3850837557ca2c91d05dd0c0c17132bcc73 100644 --- a/indra/newview/skins/default/xui/it/menu_participant_list.xml +++ b/indra/newview/skins/default/xui/it/menu_participant_list.xml @@ -1,16 +1,20 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Participant List Context Menu"> + <menu_item_check label="Ordina in base al nome" name="SortByName"/> + <menu_item_check label="Ordina in base a intervenuti recenti" name="SortByRecentSpeakers"/> <menu_item_call label="Vedi profilo" name="View Profile"/> - <menu_item_call label="Chiedi amicizia" name="Add Friend"/> + <menu_item_call label="Aggiungi amico" name="Add Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="Chiama" name="Call"/> <menu_item_call label="Condividi" name="Share"/> <menu_item_call label="Paga" name="Pay"/> - <menu_item_check label="Blocca/Sblocca" name="Block/Unblock"/> - <menu_item_check label="Muta testo" name="MuteText"/> - <menu_item_check label="Consenti chat di testo" name="AllowTextChat"/> - <menu_item_call label="Muta questo partecipante" name="ModerateVoiceMuteSelected"/> - <menu_item_call label="Muta tutti gli altri" name="ModerateVoiceMuteOthers"/> - <menu_item_call label="Riabilita questo partecipante" name="ModerateVoiceUnMuteSelected"/> - <menu_item_call label="Riabilita tutti gli altri" name="ModerateVoiceUnMuteOthers"/> + <menu_item_check label="Blocca voce" name="Block/Unblock"/> + <menu_item_check label="Blocca testo" name="MuteText"/> + <context_menu label="Opzioni moderatore >" name="Moderator Options"> + <menu_item_check label="Consenti chat di testo" name="AllowTextChat"/> + <menu_item_call label="Disattiva audio di questo participante" name="ModerateVoiceMuteSelected"/> + <menu_item_call label="Disattiva audio di tutti gli altri" name="ModerateVoiceMuteOthers"/> + <menu_item_call label="Riattiva audio di questo participante" name="ModerateVoiceUnMuteSelected"/> + <menu_item_call label="Disattiva audio di tutti gli altri" name="ModerateVoiceUnMuteOthers"/> + </context_menu> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_people_friends_view_sort.xml b/indra/newview/skins/default/xui/it/menu_people_friends_view_sort.xml index ad8927be132aca215476621cbaa8c0589a67f434..1f987890c4ffb1c8082cd4628e71af4f0f78e817 100644 --- a/indra/newview/skins/default/xui/it/menu_people_friends_view_sort.xml +++ b/indra/newview/skins/default/xui/it/menu_people_friends_view_sort.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="Ordina per nome" name="sort_name"/> - <menu_item_check label="Ordina per stato" name="sort_status"/> + <menu_item_check label="Ordina in base al nome" name="sort_name"/> + <menu_item_check label="Ordina in base allo stato" name="sort_status"/> <menu_item_check label="Icone persone" name="view_icons"/> - <menu_item_call label="Mostra gli & oggetti dei residenti bloccati" name="show_blocked_list"/> + <menu_item_call label="Mostra oggetti e residenti bloccati" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_people_groups.xml b/indra/newview/skins/default/xui/it/menu_people_groups.xml new file mode 100644 index 0000000000000000000000000000000000000000..30a97a1c7246d21a9c79adbe73685245c5ed2827 --- /dev/null +++ b/indra/newview/skins/default/xui/it/menu_people_groups.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="menu_group_plus"> + <menu_item_call label="Mostra informazioni" name="View Info"/> + <menu_item_call label="Chat" name="Chat"/> + <menu_item_call label="Chiama" name="Call"/> + <menu_item_call label="Attiva" name="Activate"/> + <menu_item_call label="Chiudi" name="Leave"/> +</menu> diff --git a/indra/newview/skins/default/xui/it/menu_people_nearby.xml b/indra/newview/skins/default/xui/it/menu_people_nearby.xml index be071a507432b209ac7b919dbfcb563bbf23dcb7..a974bd181df5ab2f43c13f4451cf913c6ad178be 100644 --- a/indra/newview/skins/default/xui/it/menu_people_nearby.xml +++ b/indra/newview/skins/default/xui/it/menu_people_nearby.xml @@ -1,10 +1,13 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Avatar Context Menu"> <menu_item_call label="Vedi profilo" name="View Profile"/> - <menu_item_call label="Chiedi amicizia" name="Add Friend"/> + <menu_item_call label="Aggiungi amico" name="Add Friend"/> + <menu_item_call label="Rimuovi amico" name="Remove Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="Chiama" name="Call"/> + <menu_item_call label="Mappa" name="Map"/> <menu_item_call label="Condividi" name="Share"/> <menu_item_call label="Paga" name="Pay"/> <menu_item_check label="Blocca/Sblocca" name="Block/Unblock"/> + <menu_item_call label="Offri Teleport" name="teleport"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_people_nearby_multiselect.xml b/indra/newview/skins/default/xui/it/menu_people_nearby_multiselect.xml index f9fda2fb9858f2b97a67208b6eeee9644b28c287..9784a4cc9a86382cad76d08bf61ab32e5c09bc04 100644 --- a/indra/newview/skins/default/xui/it/menu_people_nearby_multiselect.xml +++ b/indra/newview/skins/default/xui/it/menu_people_nearby_multiselect.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Multi-Selected People Context Menu"> - <menu_item_call label="Chiedi amicizie" name="Add Friends"/> + <menu_item_call label="Aggiungi amici" name="Add Friends"/> + <menu_item_call label="Rimuovi amici" name="Remove Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="Chiama" name="Call"/> <menu_item_call label="Condividi" name="Share"/> diff --git a/indra/newview/skins/default/xui/it/menu_people_nearby_view_sort.xml b/indra/newview/skins/default/xui/it/menu_people_nearby_view_sort.xml index c1b384196d00b285af6014a221177c7d42ac9ea4..aae23137028ad6b447454338da82b11d83d84070 100644 --- a/indra/newview/skins/default/xui/it/menu_people_nearby_view_sort.xml +++ b/indra/newview/skins/default/xui/it/menu_people_nearby_view_sort.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="Ordina mettendo per primo chi ha parlato per ultimo" name="sort_by_recent_speakers"/> - <menu_item_check label="Ordina per nome" name="sort_name"/> - <menu_item_check label="Ordina per Distanza" name="sort_distance"/> - <menu_item_check label="Vedi le icone delle persone" name="view_icons"/> - <menu_item_call label="Mostra gli & oggetti dei residenti bloccati" name="show_blocked_list"/> + <menu_item_check label="Ordina in base a intervenuti recenti" name="sort_by_recent_speakers"/> + <menu_item_check label="Ordina in base al nome" name="sort_name"/> + <menu_item_check label="Ordina in base alla distanza" name="sort_distance"/> + <menu_item_check label="Icone persone" name="view_icons"/> + <menu_item_call label="Mostra oggetti e residenti bloccati" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_people_recent_view_sort.xml b/indra/newview/skins/default/xui/it/menu_people_recent_view_sort.xml index f8fd9dca79d3a9b27f88924b59b3b879d27d064c..7fccd1621ad84f56e36d510924c9dcad96c63eb7 100644 --- a/indra/newview/skins/default/xui/it/menu_people_recent_view_sort.xml +++ b/indra/newview/skins/default/xui/it/menu_people_recent_view_sort.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> <menu_item_check label="Mostra prima i più recenti" name="sort_most"/> - <menu_item_check label="Ordina per nome" name="sort_name"/> - <menu_item_check label="Vedi le icone delle persone" name="view_icons"/> - <menu_item_call label="Mostra gli & oggetti dei residenti bloccati" name="show_blocked_list"/> + <menu_item_check label="Ordina in base al nome" name="sort_name"/> + <menu_item_check label="Icone persone" name="view_icons"/> + <menu_item_call label="Mostra oggetti e residenti bloccati" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_picks.xml b/indra/newview/skins/default/xui/it/menu_picks.xml index e84b321ccf8c77012b9b045d9ba7568f2229430d..000d219ed0c3dc3a990698f0e3ca484d1621bbee 100644 --- a/indra/newview/skins/default/xui/it/menu_picks.xml +++ b/indra/newview/skins/default/xui/it/menu_picks.xml @@ -4,5 +4,5 @@ <menu_item_call label="Modifica" name="pick_edit"/> <menu_item_call label="Teleport" name="pick_teleport"/> <menu_item_call label="Mappa" name="pick_map"/> - <menu_item_call label="Cancella" name="pick_delete"/> + <menu_item_call label="Elimina" name="pick_delete"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_picks_plus.xml b/indra/newview/skins/default/xui/it/menu_picks_plus.xml index d758a9715e22cf53de6646ba4803146ddbd9e2b7..7fbd5abd57dffce82f9bd026bfdab31ac0389647 100644 --- a/indra/newview/skins/default/xui/it/menu_picks_plus.xml +++ b/indra/newview/skins/default/xui/it/menu_picks_plus.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="picks_plus_menu"> - <menu_item_call label="Nuovo luogo consigliato" name="create_pick"/> - <menu_item_call label="Nuovo Annuncio" name="create_classified"/> + <menu_item_call label="Nuovo luogo preferito" name="create_pick"/> + <menu_item_call label="Nuovo annuncio" name="create_classified"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/it/menu_place.xml b/indra/newview/skins/default/xui/it/menu_place.xml index 5b9261b159a1c2eff863a23f52b552012e6ecca3..5381a4effa145f30e2cd077c0984de93815fbb7e 100644 --- a/indra/newview/skins/default/xui/it/menu_place.xml +++ b/indra/newview/skins/default/xui/it/menu_place.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="place_overflow_menu"> - <menu_item_call label="Prendi il Landmark" name="landmark"/> - <menu_item_call label="Crea luogo consigliato" name="pick"/> - <menu_item_call label="Compra Permesso" name="pass"/> + <menu_item_call label="Salva come punto di riferimento" name="landmark"/> + <menu_item_call label="Crea Luogo consigliato" name="pick"/> + <menu_item_call label="Acquista Permesso" name="pass"/> <menu_item_call label="Modifica" name="edit"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/it/menu_place_add_button.xml b/indra/newview/skins/default/xui/it/menu_place_add_button.xml index 6dd10f422ec8fdf3097a3755e33c1a855e815517..0e783c0000d4c12b77b0bed8aa97d6ad2cb25155 100644 --- a/indra/newview/skins/default/xui/it/menu_place_add_button.xml +++ b/indra/newview/skins/default/xui/it/menu_place_add_button.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_folder_gear"> <menu_item_call label="Aggiungi cartella" name="add_folder"/> - <menu_item_call label="Aggiungi landmark" name="add_landmark"/> + <menu_item_call label="Aggiungi punto di riferimento" name="add_landmark"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_places_gear_folder.xml b/indra/newview/skins/default/xui/it/menu_places_gear_folder.xml index 45765bf77dfe489dd7ea34aaf3a265cde10be313..59fbb86ddc19b4bd6cd53557e9a501112a5f9b36 100644 --- a/indra/newview/skins/default/xui/it/menu_places_gear_folder.xml +++ b/indra/newview/skins/default/xui/it/menu_places_gear_folder.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_folder_gear"> - <menu_item_call label="Aggiungi Landmark" name="add_landmark"/> + <menu_item_call label="Aggiungi punto di riferimento" name="add_landmark"/> <menu_item_call label="Aggiungi cartella" name="add_folder"/> <menu_item_call label="Taglia" name="cut"/> <menu_item_call label="Copia" name="copy_folder"/> <menu_item_call label="Incolla" name="paste"/> - <menu_item_call label="Rinomina" name="rename"/> - <menu_item_call label="Cancella" name="delete"/> - <menu_item_call label="Apri" name="expand"/> - <menu_item_call label="Chiudi" name="collapse"/> + <menu_item_call label="Modifica nome" name="rename"/> + <menu_item_call label="Elimina" name="delete"/> + <menu_item_call label="Espandi" name="expand"/> + <menu_item_call label="Comprimi" name="collapse"/> <menu_item_call label="Apri tutte le cartelle" name="expand_all"/> <menu_item_call label="Chiudi tutte le cartelle" name="collapse_all"/> - <menu_item_check label="Ordina per data" name="sort_by_date"/> + <menu_item_check label="Ordina in base alla data" name="sort_by_date"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_places_gear_landmark.xml b/indra/newview/skins/default/xui/it/menu_places_gear_landmark.xml index 2c5b8a848c1594c51ade7de8601ca31443b160e5..32d7abc2592ab195915f28aaa338d7d6231080d9 100644 --- a/indra/newview/skins/default/xui/it/menu_places_gear_landmark.xml +++ b/indra/newview/skins/default/xui/it/menu_places_gear_landmark.xml @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_ladmark_gear"> <menu_item_call label="Teleport" name="teleport"/> - <menu_item_call label="Maggiori Informazioni" name="more_info"/> - <menu_item_call label="Mostra sulla Mappa" name="show_on_map"/> - <menu_item_call label="Aggiungi Landmark" name="add_landmark"/> - <menu_item_call label="Aggiungi Cartella" name="add_folder"/> + <menu_item_call label="Maggiori informazioni" name="more_info"/> + <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> + <menu_item_call label="Aggiungi Punto di riferimento" name="add_landmark"/> + <menu_item_call label="Aggiungi cartella" name="add_folder"/> <menu_item_call label="Taglia" name="cut"/> - <menu_item_call label="Copia Landmark" name="copy_landmark"/> + <menu_item_call label="Copia punto di riferimento" name="copy_landmark"/> <menu_item_call label="Copia SLurl" name="copy_slurl"/> <menu_item_call label="Incolla" name="paste"/> - <menu_item_call label="Rinomina" name="rename"/> - <menu_item_call label="Cancella" name="delete"/> + <menu_item_call label="Modifica nome" name="rename"/> + <menu_item_call label="Elimina" name="delete"/> <menu_item_call label="Apri tutte le cartelle" name="expand_all"/> <menu_item_call label="Chiudi tutte le cartelle" name="collapse_all"/> - <menu_item_check label="Ordina per Data" name="sort_by_date"/> - <menu_item_call label="Crea Luogo Consigliato" name="create_pick"/> + <menu_item_check label="Ordina in base alla data" name="sort_by_date"/> + <menu_item_call label="Crea Luogo consigliato" name="create_pick"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_profile_overflow.xml b/indra/newview/skins/default/xui/it/menu_profile_overflow.xml index 76a04a127e8cd7469af98f706b11e687cf3ef662..56b695c597e2259178ca0d6b4f5b85717743d107 100644 --- a/indra/newview/skins/default/xui/it/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/it/menu_profile_overflow.xml @@ -1,5 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Mappa" name="show_on_map"/> <menu_item_call label="Paga" name="pay"/> <menu_item_call label="Condividi" name="share"/> + <menu_item_call label="Blocca" name="block"/> + <menu_item_call label="Sblocca" name="unblock"/> + <menu_item_call label="Espelli" name="kick"/> + <menu_item_call label="Congela" name="freeze"/> + <menu_item_call label="Scongela" name="unfreeze"/> + <menu_item_call label="CSR" name="csr"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/it/menu_teleport_history_gear.xml b/indra/newview/skins/default/xui/it/menu_teleport_history_gear.xml index 71acda5a9d019573ed4da98b1b1cd147b2078b2c..409a62c31b2a637191f499b371b0c4188603b216 100644 --- a/indra/newview/skins/default/xui/it/menu_teleport_history_gear.xml +++ b/indra/newview/skins/default/xui/it/menu_teleport_history_gear.xml @@ -2,5 +2,5 @@ <menu name="Teleport History Gear Context Menu"> <menu_item_call label="Apri tutte le cartelle" name="Expand all folders"/> <menu_item_call label="Chiudi tutte le cartelle" name="Collapse all folders"/> - <menu_item_call label="Cancella la storia dei Teleport" name="Clear Teleport History"/> + <menu_item_call label="Cancella la cronologia Teleport" name="Clear Teleport History"/> </menu> diff --git a/indra/newview/skins/default/xui/it/menu_teleport_history_item.xml b/indra/newview/skins/default/xui/it/menu_teleport_history_item.xml index c01230584be68b49e95364787528e24581766cc8..81053fbd65902140dd2148ef266a0d9e7db9f44d 100644 --- a/indra/newview/skins/default/xui/it/menu_teleport_history_item.xml +++ b/indra/newview/skins/default/xui/it/menu_teleport_history_item.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Teleport History Item Context Menu"> <menu_item_call label="Teleport" name="Teleport"/> - <menu_item_call label="Più informazioni" name="More Information"/> + <menu_item_call label="Maggiori informazioni" name="More Information"/> <menu_item_call label="Copia negli appunti" name="CopyToClipboard"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_text_editor.xml b/indra/newview/skins/default/xui/it/menu_text_editor.xml index baab233a2198a31f48dd9e4231d9c0602a290223..4636ce992932bec840a6e46c54b5ad4e6ac08a9f 100644 --- a/indra/newview/skins/default/xui/it/menu_text_editor.xml +++ b/indra/newview/skins/default/xui/it/menu_text_editor.xml @@ -3,6 +3,6 @@ <menu_item_call label="Taglia" name="Cut"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Cancella" name="Delete"/> - <menu_item_call label="Seleziona Tutto" name="Select All"/> + <menu_item_call label="Elimina" name="Delete"/> + <menu_item_call label="Seleziona tutto" name="Select All"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_agent.xml b/indra/newview/skins/default/xui/it/menu_url_agent.xml index 874f7a8df9bf9d1a5bc4ba98a2f1806b50910a88..37755d5749c8a98290c90ca928a43e0062ef4d63 100644 --- a/indra/newview/skins/default/xui/it/menu_url_agent.xml +++ b/indra/newview/skins/default/xui/it/menu_url_agent.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra profilo" name="show_agent"/> - <menu_item_call label="Copia nome negli appunti" name="url_copy_label"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Mostra profilo residente" name="show_agent"/> + <menu_item_call label="Copia nome negli Appunti" name="url_copy_label"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_group.xml b/indra/newview/skins/default/xui/it/menu_url_group.xml index ac9dab2b3c7b8dcaf939ea97607cc0e859acaa26..d9a792ebdfd1adb06ef63e03d447760a0564d0a3 100644 --- a/indra/newview/skins/default/xui/it/menu_url_group.xml +++ b/indra/newview/skins/default/xui/it/menu_url_group.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra info gruppo" name="show_group"/> - <menu_item_call label="Copia gruppo negli appunti" name="url_copy_label"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Mostra informazioni gruppo" name="show_group"/> + <menu_item_call label="Copia gruppo negli Appunti" name="url_copy_label"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_http.xml b/indra/newview/skins/default/xui/it/menu_url_http.xml index b8f965f2d6f2313716d94209fd3a61a1afeea830..e0153d9169a946afb59eadd03565d3733094b4b7 100644 --- a/indra/newview/skins/default/xui/it/menu_url_http.xml +++ b/indra/newview/skins/default/xui/it/menu_url_http.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Apri pagina web" name="url_open"/> + <menu_item_call label="Apri pagina Web" name="url_open"/> <menu_item_call label="Apri nel browser interno" name="url_open_internal"/> <menu_item_call label="Apri nel browser esterno" name="url_open_external"/> - <menu_item_call label="Copia URL negli appunti" name="url_copy"/> + <menu_item_call label="Copia URL negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_inventory.xml b/indra/newview/skins/default/xui/it/menu_url_inventory.xml index 0b410b4eff0915abc1dd2faa82dd15ecc5b0aea8..a45a6bbc107249b10619de98ecaba1969f1b5595 100644 --- a/indra/newview/skins/default/xui/it/menu_url_inventory.xml +++ b/indra/newview/skins/default/xui/it/menu_url_inventory.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra elemento dell'inventory" name="show_item"/> - <menu_item_call label="Copia nome negli appunti" name="url_copy_label"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Mostra oggetto dell'inventario" name="show_item"/> + <menu_item_call label="Copia nome negli Appunti" name="url_copy_label"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_map.xml b/indra/newview/skins/default/xui/it/menu_url_map.xml index 096efcd1b9fd8ba044d865c032a17465f8011f7d..cb7935b3ed3b833dfde366f4f7b5a247a80e055a 100644 --- a/indra/newview/skins/default/xui/it/menu_url_map.xml +++ b/indra/newview/skins/default/xui/it/menu_url_map.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> - <menu_item_call label="Teleportati nel luogo" name="teleport_to_location"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Teleport al luogo" name="teleport_to_location"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_objectim.xml b/indra/newview/skins/default/xui/it/menu_url_objectim.xml index 67a9f0b91424bb3f8425542525cb51e3067fe6d3..763e65f17c0bb9e0bae5c84f7b4cae7c0db08aac 100644 --- a/indra/newview/skins/default/xui/it/menu_url_objectim.xml +++ b/indra/newview/skins/default/xui/it/menu_url_objectim.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra info oggetto" name="show_object"/> + <menu_item_call label="Mostra informazioni oggetto" name="show_object"/> <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> - <menu_item_call label="Teleportati sul luogo dell'oggetto" name="teleport_to_object"/> - <menu_item_call label="Copia nome oggetto negli appunti" name="url_copy_label"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Teleport sul luogo dell'oggetto" name="teleport_to_object"/> + <menu_item_call label="Copia nome oggetto negli Appunti" name="url_copy_label"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_parcel.xml b/indra/newview/skins/default/xui/it/menu_url_parcel.xml index e40d05f423e80d4797a7292384cfeb1b34962bfb..a032c33585b3d9d9360c4f10eba039d745db74b8 100644 --- a/indra/newview/skins/default/xui/it/menu_url_parcel.xml +++ b/indra/newview/skins/default/xui/it/menu_url_parcel.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra info appezzamento" name="show_parcel"/> + <menu_item_call label="Mostra informazioni lotto" name="show_parcel"/> <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_slapp.xml b/indra/newview/skins/default/xui/it/menu_url_slapp.xml index 2e5ad64a59824fb09a23548006b5e605d8bfb2c8..b368aa9141019125afbd9e6a941948b4b85ccbbb 100644 --- a/indra/newview/skins/default/xui/it/menu_url_slapp.xml +++ b/indra/newview/skins/default/xui/it/menu_url_slapp.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Lancia questo comando" name="run_slapp"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Esegui questo comando" name="run_slapp"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_slurl.xml b/indra/newview/skins/default/xui/it/menu_url_slurl.xml index 1850252669a3d43e874fa14adcba0a7c3c382696..355c7dbed9dc244be52046a7c7d8297d3b264105 100644 --- a/indra/newview/skins/default/xui/it/menu_url_slurl.xml +++ b/indra/newview/skins/default/xui/it/menu_url_slurl.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Mostra info del luogo" name="show_place"/> + <menu_item_call label="Mostra informazioni del luogo" name="show_place"/> <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> - <menu_item_call label="Teleporta nel luogo" name="teleport_to_location"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Teleport al luogo" name="teleport_to_location"/> + <menu_item_call label="Copia SLurl negli Appunti" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/it/menu_url_teleport.xml b/indra/newview/skins/default/xui/it/menu_url_teleport.xml index 0a09090c261bd66c52036251d1654589911e5a70..c129e61f25b8d3f1493fc13da25666519ebea2f5 100644 --- a/indra/newview/skins/default/xui/it/menu_url_teleport.xml +++ b/indra/newview/skins/default/xui/it/menu_url_teleport.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Teleportati in questo posto" name="teleport"/> - <menu_item_call label="Mostra Sulla mappa" name="show_on_map"/> - <menu_item_call label="Copia SLurl negli appunti" name="url_copy"/> + <menu_item_call label="Teleport a questa destinazione" name="teleport"/> + <menu_item_call label="Mostra sulla mappa" name="show_on_map"/> + <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 f9605da22ad10b9d5ac927d91679e469285cff91..36b44abf4b09e2426639ae0edd5fc44d78e897e6 100644 --- a/indra/newview/skins/default/xui/it/menu_viewer.xml +++ b/indra/newview/skins/default/xui/it/menu_viewer.xml @@ -2,67 +2,68 @@ <menu_bar name="Main Menu"> <menu label="Io" name="Me"> <menu_item_call label="Preferenze" name="Preferences"/> - <menu_item_call label="Il mio Pannello di Controllo" name="Manage My Account"> + <menu_item_call label="Il mio Dashboard" name="Manage My Account"> <menu_item_call.on_click name="ManageMyAccount_url" parameter="WebLaunchJoinNow,http://secondlife.com/account/index.php?lang=it"/> </menu_item_call> <menu_item_call label="Compra L$" name="Buy and Sell L$"/> - <menu_item_call label="Il Mio Profilo" name="Profile"/> - <menu_item_call label="Il Mio Aspetto" name="Appearance"/> - <menu_item_check label="Il Mio Inventory" name="Inventory"/> - <menu_item_call label="Mostra Inventory su Barra Laterale" name="ShowSidetrayInventory"/> - <menu_item_call label="Le mie Gesture" name="Gestures"/> - <menu label="Il Mio Stato" name="Status"> - <menu_item_call label="Non Disponibile" name="Set Away"/> - <menu_item_call label="Non Disponibile" name="Set Busy"/> + <menu_item_call label="Il mio profilo" name="Profile"/> + <menu_item_call label="Il mio aspetto" name="Appearance"/> + <menu_item_check label="Il mio inventario" name="Inventory"/> + <menu_item_check label="Il mio inventario" name="ShowSidetrayInventory"/> + <menu_item_check label="Le mie gesture" name="Gestures"/> + <menu label="Il mio stato" name="Status"> + <menu_item_call label="Assente" name="Set Away"/> + <menu_item_call label="Non disponibile" name="Set Busy"/> </menu> - <menu_item_call label="Richiedi Status Amministratore" name="Request Admin Options"/> - <menu_item_call label="Lascia Status Amministratore" name="Leave Admin Options"/> + <menu_item_call label="Richiedi diritti Admin" name="Request Admin Options"/> + <menu_item_call label="Lascia stato Admin" name="Leave Admin Options"/> <menu_item_call label="Esci da [APP_NAME]" name="Quit"/> </menu> <menu label="Comunica" name="Communicate"> - <menu_item_call label="I Miei Amici" name="My Friends"/> - <menu_item_call label="I Miei Gruppi" name="My Groups"/> - <menu_item_check label="Chat Limitrofa" name="Nearby Chat"/> - <menu_item_call label="Persone Vicine" name="Active Speakers"/> - <menu_item_check label="MultiMedia Vicini" name="Nearby Media"/> + <menu_item_call label="I miei amici..." name="My Friends"/> + <menu_item_call label="I miei gruppi" name="My Groups"/> + <menu_item_check label="Chat nei dintorni" name="Nearby Chat"/> + <menu_item_call label="Persone vicine" name="Active Speakers"/> </menu> <menu label="Mondo" name="World"> - <menu_item_check label="Muovi" name="Movement Controls"/> - <menu_item_check label="Vista" name="Camera Controls"/> - <menu_item_call label="Info Terreno" name="About Land"/> - <menu_item_call label="Regione/Proprietà Immobiliari" name="Region/Estate"/> - <menu_item_call label="Compra Terreno" name="Buy Land"/> - <menu_item_call label="Il Mio Terreno" name="My Land"/> - <menu label="Mostra" name="Land"> - <menu_item_check label="Linee Non Accessibili" name="Ban Lines"/> - <menu_item_check label="Segnalatori" name="beacons"/> - <menu_item_check label="Linee di Confine" name="Property Lines"/> - <menu_item_check label="Proprietari della Terra" name="Land Owners"/> + <menu_item_check label="Mini mappa" name="Mini-Map"/> + <menu_item_check label="Mappa del mondo" name="World Map"/> + <menu_item_call label="Istantanea" name="Take Snapshot"/> + <menu_item_call label="Crea punto di riferimento per questo luogo" name="Create Landmark Here"/> + <menu label="Profilo del posto" name="Land"> + <menu_item_call label="Informazioni sui terreni" name="About Land"/> + <menu_item_call label="Regione/proprietà immobiliare" name="Region/Estate"/> </menu> - <menu label="Landmark" name="Landmarks"> - <menu_item_call label="Crea Landmark Qui" name="Create Landmark Here"/> - <menu_item_call label="Imposta Qui come Casa" name="Set Home to Here"/> + <menu_item_call label="Acquista questo terreno" name="Buy Land"/> + <menu_item_call label="Il mio terreno" name="My Land"/> + <menu label="Mostra" name="LandShow"> + <menu_item_check label="Comandi del movimento" name="Movement Controls"/> + <menu_item_check label="Comandi visualizzazione" name="Camera Controls"/> + <menu_item_check label="Linee di divieto" name="Ban Lines"/> + <menu_item_check label="Marcatori" name="beacons"/> + <menu_item_check label="Linee di confine" name="Property Lines"/> + <menu_item_check label="Proprietari di terreno" name="Land Owners"/> + <menu_item_check label="Coordinate" name="Coordinates"/> + <menu_item_check label="Proprietà del lotto" name="Parcel Properties"/> </menu> - <menu_item_call label="Teleport Casa" name="Teleport Home"/> - <menu_item_check label="Mini-Mappa" name="Mini-Map"/> - <menu_item_check label="Mappa del Mondo" name="World Map"/> - <menu_item_call label="Foto" name="Take Snapshot"/> + <menu_item_call label="Teleport a Casa" name="Teleport Home"/> + <menu_item_call label="Imposta come Casa mia" name="Set Home to Here"/> <menu label="Sole" name="Environment Settings"> <menu_item_call label="Alba" name="Sunrise"/> <menu_item_call label="Mezzogiorno" name="Noon"/> <menu_item_call label="Tramonto" name="Sunset"/> <menu_item_call label="Mezzanotte" name="Midnight"/> - <menu_item_call label="Usa l'ora della Proprietà " name="Revert to Region Default"/> + <menu_item_call label="Orario della proprietà " name="Revert to Region Default"/> <menu_item_call label="Editor dell'ambiente" name="Environment Editor"/> </menu> </menu> - <menu label="Build" name="BuildTools"> - <menu_item_check label="Build" name="Show Build Tools"/> - <menu label="Seleziona Strumento Build" name="Select Tool"> - <menu_item_call label="Strumento Focalizza" name="Focus"/> + <menu label="Costruisci" name="BuildTools"> + <menu_item_check label="Costruisci" name="Show Build Tools"/> + <menu label="Seleziona strumento di costruzione" name="Select Tool"> + <menu_item_call label="Strumento Ingrandisci" name="Focus"/> <menu_item_call label="Strumento Movimento" name="Move"/> <menu_item_call label="Strumento Modifica" name="Edit"/> - <menu_item_call label="Crea Strumento" name="Create"/> + <menu_item_call label="Crea strumento" name="Create"/> <menu_item_call label="Strumento Terreno" name="Land"/> </menu> <menu label="Modifica" name="Edit"> @@ -71,92 +72,86 @@ <menu_item_call label="Taglia" name="Cut"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Elimina" name="Delete"/> <menu_item_call label="Duplica" name="Duplicate"/> - <menu_item_call label="Seleziona Tutto" name="Select All"/> + <menu_item_call label="Seleziona tutto" name="Select All"/> <menu_item_call label="Deseleziona" name="Deselect"/> </menu> - <menu_item_call label="Unisci" name="Link"/> - <menu_item_call label="Separa" name="Unlink"/> - <menu_item_call label="Focalizza su Selezione" name="Focus on Selection"/> - <menu_item_call label="Avvicina alla Selezione" name="Zoom to Selection"/> + <menu_item_call label="Collegamento" name="Link"/> + <menu_item_call label="Scollega" name="Unlink"/> + <menu_item_check label="Modifica le parti collegate" name="Edit Linked Parts"/> + <menu_item_call label="Ingrandisci selezione" name="Focus on Selection"/> + <menu_item_call label="Zoom sulla selezione" name="Zoom to Selection"/> <menu label="Oggetto" name="Object"> - <menu_item_call label="Compra" name="Menu Object Take"/> - <menu_item_call label="Prendi Copia" name="Take Copy"/> - <menu_item_call label="Salva Nuovamente nell'Inventory" name="Save Object Back to My Inventory"/> - <menu_item_call label="Salva Nuovamente Nel Contenuto Oggetto" name="Save Object Back to Object Contents"/> + <menu_item_call label="Acquista" name="Menu Object Buy"/> + <menu_item_call label="Prendi" name="Menu Object Take"/> + <menu_item_call label="Prendi copia" name="Take Copy"/> + <menu_item_call label="Salva nell'inventario" name="Save Object Back to My Inventory"/> + <menu_item_call label="Salva nei contenuti oggetto" name="Save Object Back to Object Contents"/> </menu> <menu label="Script" name="Scripts"> - <menu_item_call label="Ricompila Script (Mono)" name="Mono"/> - <menu_item_call label="Ricompila gli Script(LSL)" name="LSL"/> - <menu_item_call label="Reimposta gli Script" name="Reset Scripts"/> - <menu_item_call label="Imposta gli Script in Esecuzione" name="Set Scripts to Running"/> - <menu_item_call label="Imposta gli Script Non In Esecuzione" name="Set Scripts to Not Running"/> + <menu_item_call label="Ricompila script (Mono)" name="Mono"/> + <menu_item_call label="Ricompila gli script (LSL)" name="LSL"/> + <menu_item_call label="Reimposta script" name="Reset Scripts"/> + <menu_item_call label="Imposta gli script come in esecuzione" name="Set Scripts to Running"/> + <menu_item_call label="Imposta script come non in esecuzione" name="Set Scripts to Not Running"/> </menu> <menu label="Opzioni" name="Options"> - <menu_item_check label="Modifica Parti Unite" name="Edit Linked Parts"/> - <menu_item_call label="Imposta Permessi di Upload predefiniti" name="perm prefs"/> - <menu_item_check label="Mostra Permessi Avanzati" name="DebugPermissions"/> - <menu label="Selezione" name="Selection"> - <menu_item_check label="Seleziona Solo i Miei Oggetti" name="Select Only My Objects"/> - <menu_item_check label="Seleziona Solo Oggetti Mobili" name="Select Only Movable Objects"/> - <menu_item_check label="Seleziona Se Racchiuso" name="Select By Surrounding"/> - </menu> - <menu label="Mostra" name="Show"> - <menu_item_check label="Mostra Selezione Nascosta" name="Show Hidden Selection"/> - <menu_item_check label="Mostra Raggio Luce per Selezione" name="Show Light Radius for Selection"/> - <menu_item_check label="Mostra Raggio Selezione" name="Show Selection Beam"/> - </menu> - <menu label="Griglia" name="Grid"> - <menu_item_check label="Allinea al Righello" name="Snap to Grid"/> - <menu_item_call label="Allinea Coordinate XY alla Griglia" name="Snap Object XY to Grid"/> - <menu_item_call label="Usa Selezione per la Griglia" name="Use Selection for Grid"/> - <menu_item_call label="Opzioni Griglia" name="Grid Options"/> - </menu> + <menu_item_call label="Definisci diritti di caricamento predefiniti" name="perm prefs"/> + <menu_item_check label="Mostra autorizzazioni avanzate" name="DebugPermissions"/> + <menu_item_check label="Seleziona solo i miei oggetti" name="Select Only My Objects"/> + <menu_item_check label="Seleziona solo gli oggetti spostabili" name="Select Only Movable Objects"/> + <menu_item_check label="Seleziona circostante" name="Select By Surrounding"/> + <menu_item_check label="Seleziona mostra nascosti" name="Show Hidden Selection"/> + <menu_item_check label="Seleziona mostra il raggio luminoso per la selezione" name="Show Light Radius for Selection"/> + <menu_item_check label="Mostra il raggio indicatore" name="Show Selection Beam"/> + <menu_item_check label="Posiziona nella griglia" name="Snap to Grid"/> + <menu_item_call label="Posiziona coordinate XY dell'oggetto sulla griglia" name="Snap Object XY to Grid"/> + <menu_item_call label="Usa la selezione per la griglia" name="Use Selection for Grid"/> + <menu_item_call label="Opzioni della griglia" name="Grid Options"/> </menu> - <menu label="Seleziona Parti Unite" name="Select Linked Parts"> - <menu_item_call label="Seleziona Prossima Parte" name="Select Next Part"/> - <menu_item_call label="Seleziona Parte Precedente" name="Select Previous Part"/> - <menu_item_call label="Includi Prossima Parte" name="Include Next Part"/> - <menu_item_call label="Includi Parte Precedente" name="Include Previous Part"/> + <menu label="Seleziona parti collegate" name="Select Linked Parts"> + <menu_item_call label="Seleziona parte successiva" name="Select Next Part"/> + <menu_item_call label="Seleziona parte precedente" name="Select Previous Part"/> + <menu_item_call label="Includi parte successiva" name="Include Next Part"/> + <menu_item_call label="Includi parte precedente" name="Include Previous Part"/> </menu> </menu> <menu label="Aiuto" name="Help"> <menu_item_call label="[SECOND_LIFE] Aiuto" name="Second Life Help"/> - <menu_item_call label="Tutorial" name="Tutorial"/> - <menu_item_call label="Denuncia Abuso" name="Report Abuse"/> - <menu_item_call label="Segnala Bug" name="Report Bug"/> + <menu_item_call label="Segnala abuso" name="Report Abuse"/> + <menu_item_call label="Segnala bug" name="Report Bug"/> </menu> - <menu label="Avanzato" name="Advanced"> - <menu_item_check label="Imposta non disponibile dopo 30 Minuti" name="Go Away/AFK When Idle"/> - <menu_item_call label="Ferma le Animazioni" name="Stop Animating My Avatar"/> - <menu_item_call label="Ridisegna le Texture" name="Rebake Texture"/> - <menu_item_call label="Riporta le Dimensioni dell'interfaccia ai Valori Predefiniti" name="Set UI Size to Default"/> - <menu_item_check label="Limita Distanza di Selezione" name="Limit Select Distance"/> - <menu_item_check label="Disabilita i Vincoli della Camera" name="Disable Camera Distance"/> + <menu label="Avanzate" name="Advanced"> + <menu_item_call label="Ferma animazione" name="Stop Animating My Avatar"/> + <menu_item_call label="Ridisegna le texture" name="Rebake Texture"/> + <menu_item_call label="Imposta dimensioni dell'interfaccia sui valori predefiniti" name="Set UI Size to Default"/> + <menu_item_call label="Imposta dimensioni della finestra..." name="Set Window Size..."/> + <menu_item_check label="Limita distanza di selezione" name="Limit Select Distance"/> + <menu_item_check label="Disabilita vincoli fotocamera" name="Disable Camera Distance"/> <menu_item_check label="Foto ad alta risoluzione" name="HighResSnapshot"/> - <menu_item_check label="Manda Foto su Disco Senza Avvisi" name="QuietSnapshotsToDisk"/> - <menu_item_check label="Comprimi le Foto su Disco" name="CompressSnapshotsToDisk"/> - <menu label="Strumenti di Performance" name="Performance Tools"> - <menu_item_call label="Misuratore Lag" name="Lag Meter"/> - <menu_item_check label="Barra Statistiche" name="Statistics Bar"/> - <menu_item_check label="Mostra Il Costo Visualizzazione Avatar (ARC)" name="Avatar Rendering Cost"/> + <menu_item_check label="Manda foto su disco senza avvisi" name="QuietSnapshotsToDisk"/> + <menu_item_check label="Comprimi le foto su disco" name="CompressSnapshotsToDisk"/> + <menu label="Strumenti di performance" name="Performance Tools"> + <menu_item_call label="Misuratore lag" name="Lag Meter"/> + <menu_item_check label="Barra statistiche" name="Statistics Bar"/> + <menu_item_check label="Mostra costo di rendering dell'avatar" name="Avatar Rendering Cost"/> </menu> - <menu label="Evidenziazione e Visibilità " name="Highlighting and Visibility"> - <menu_item_check label="Effetto Lampeggiante Segnalatore" name="Cheesy Beacon"/> - <menu_item_check label="Nascondi Particelle" name="Hide Particles"/> - <menu_item_check label="Nascondi Selezionati" name="Hide Selected"/> - <menu_item_check label="Evidenzia Trasparente" name="Highlight Transparent"/> - <menu_item_check label="Mostra Attachment HUD" name="Show HUD Attachments"/> - <menu_item_check label="Mostra Mirino in Soggettiva" name="ShowCrosshairs"/> - <menu_item_check label="Mostra Tooltip sul Terreno" name="Land Tips"/> + <menu label="Evidenziazione e visibilità " name="Highlighting and Visibility"> + <menu_item_check label="Effetto marcatore lampeggiante" name="Cheesy Beacon"/> + <menu_item_check label="Nascondi particelle" name="Hide Particles"/> + <menu_item_check label="Nascondi selezionati" name="Hide Selected"/> + <menu_item_check label="Evidenzia trasparenza" name="Highlight Transparent"/> + <menu_item_check label="Mostra elementi HUD" name="Show HUD Attachments"/> + <menu_item_check label="Mostra mirino visuale soggettiva" name="ShowCrosshairs"/> + <menu_item_check label="Mostra tooltip terreno" name="Land Tips"/> </menu> - <menu label="Modalità di Rendering" name="Rendering Types"> + <menu label="Modalità di rendering" name="Rendering Types"> <menu_item_check label="Semplice" name="Simple"/> - <menu_item_check label="Alfa (Trasparenza)" name="Alpha"/> + <menu_item_check label="Alpha (Trasparenza)" name="Alpha"/> <menu_item_check label="Albero" name="Tree"/> <menu_item_check label="Avatar" name="Character"/> - <menu_item_check label="Superfici" name="SurfacePath"/> + <menu_item_check label="Superficie" name="SurfacePath"/> <menu_item_check label="Cielo" name="Sky"/> <menu_item_check label="Acqua" name="Water"/> <menu_item_check label="Suolo" name="Ground"/> @@ -166,161 +161,162 @@ <menu_item_check label="Particelle" name="Particles"/> <menu_item_check label="Urti" name="Bump"/> </menu> - <menu label="Caratteristiche di Rendering" name="Rendering Features"> - <menu_item_check label="Interfaccia Utente" name="UI"/> + <menu label="Caratteristiche di rendering" name="Rendering Features"> + <menu_item_check label="Interfaccia utente" name="UI"/> <menu_item_check label="Selezionati" name="Selected"/> <menu_item_check label="Evidenziato" name="Highlighted"/> - <menu_item_check label="Texture Dinamiche" name="Dynamic Textures"/> - <menu_item_check label="Ombre dei Piedi" name="Foot Shadows"/> + <menu_item_check label="Texture dinamiche" name="Dynamic Textures"/> + <menu_item_check label="Ombre dei piedi" name="Foot Shadows"/> <menu_item_check label="Nebbia" name="Fog"/> - <menu_item_check label="Oggetti Flessibili" name="Flexible Objects"/> + <menu_item_check label="Oggetti flessibili" name="Flexible Objects"/> </menu> - <menu_item_check label="Esegui Thread Multipli" name="Run Multiple Threads"/> - <menu_item_call label="Pulisci la Cache di Gruppo" name="ClearGroupCache"/> - <menu_item_check label="Fluidità Mouse" name="Mouse Smoothing"/> - <menu_item_check label="Mostra IM nella Chat Limitrofa" name="IMInChat"/> + <menu_item_check label="Esegui thread multipli" name="Run Multiple Threads"/> + <menu_item_call label="Pulisci cache di gruppo" name="ClearGroupCache"/> + <menu_item_check label="Fluidità mouse" name="Mouse Smoothing"/> <menu label="Scorciatoie" name="Shortcuts"> - <menu_item_check label="Ricerca" name="Search"/> - <menu_item_call label="Rilascia Tasti" name="Release Keys"/> - <menu_item_call label="Imposta dimensioni Interfacca a Valori Predefiniti" name="Set UI Size to Default"/> - <menu_item_check label="Corri Sempre" name="Always Run"/> + <menu_item_call label="Immagine ([COST]L$)..." name="Upload Image"/> + <menu_item_check label="Cerca" name="Search"/> + <menu_item_call label="Rilascia tasti" name="Release Keys"/> + <menu_item_call label="Imposta dimensioni dell'interfaccia sui valori predefiniti" name="Set UI Size to Default"/> + <menu_item_check label="Corri sempre" name="Always Run"/> <menu_item_check label="Vola" name="Fly"/> - <menu_item_call label="Chiudi Finestra" name="Close Window"/> - <menu_item_call label="Chiudi Tutte le Finestre" name="Close All Windows"/> - <menu_item_call label="Foto su Disco" name="Snapshot to Disk"/> + <menu_item_call label="Chiudi finestra" name="Close Window"/> + <menu_item_call label="Chiudi tutte le finestre" name="Close All Windows"/> + <menu_item_call label="Foto su disco" name="Snapshot to Disk"/> <menu_item_call label="Soggettiva" name="Mouselook"/> <menu_item_check label="Joystick Flycam" name="Joystick Flycam"/> - <menu_item_call label="Reimposta Vista" name="Reset View"/> - <menu_item_call label="Guarda l'Ultimo che ha parlato" name="Look at Last Chatter"/> - <menu label="Seleziona Strumento Build" name="Select Tool"> - <menu_item_call label="Strumento Focalizza" name="Focus"/> + <menu_item_call label="Reimposta vista" name="Reset View"/> + <menu_item_call label="Guarda l'ultima conversazione" name="Look at Last Chatter"/> + <menu label="Seleziona strumento di costruzione" name="Select Tool"> + <menu_item_call label="Strumento Ingrandisci" name="Focus"/> <menu_item_call label="Strumento Movimento" name="Move"/> <menu_item_call label="Strumento Modifica" name="Edit"/> - <menu_item_call label="Crea Strumento" name="Create"/> + <menu_item_call label="Crea strumento" name="Create"/> <menu_item_call label="Strumento Terreno" name="Land"/> </menu> - <menu_item_call label="Avvicina" name="Zoom In"/> - <menu_item_call label="Zoom Predefinito" name="Zoom Default"/> - <menu_item_call label="Allontana" name="Zoom Out"/> - <menu_item_call label="Alterna Schermo Intero" name="Toggle Fullscreen"/> + <menu_item_call label="Zoom avanti" name="Zoom In"/> + <menu_item_call label="Zoom predefinito" name="Zoom Default"/> + <menu_item_call label="Zoom indietro" name="Zoom Out"/> + <menu_item_call label="Alterna schermo intero" name="Toggle Fullscreen"/> </menu> - <menu_item_call label="Mostra Impostazioni di Debug" name="Debug Settings"/> - <menu_item_check label="Mostra Menu Sviluppo" name="Debug Mode"/> + <menu_item_call label="Mostra impostazioni di debug" name="Debug Settings"/> + <menu_item_check label="Mostra menu sviluppo" name="Debug Mode"/> </menu> <menu label="Sviluppo" name="Develop"> <menu label="Console" name="Consoles"> - <menu_item_check label="Console Texture" name="Texture Console"/> + <menu_item_check label="Console texture" name="Texture Console"/> <menu_item_check label="Console di Debug" name="Debug Console"/> - <menu_item_call label="Console Notifiche" name="Notifications"/> - <menu_item_check label="Console Dimensioni Texture" name="Texture Size"/> - <menu_item_check label="Console Categoria Texture" name="Texture Category"/> - <menu_item_check label="Timer Veloci" name="Fast Timers"/> + <menu_item_call label="Console notifiche" name="Notifications"/> + <menu_item_check label="Console dimensioni texture" name="Texture Size"/> + <menu_item_check label="Console categoria texture" name="Texture Category"/> + <menu_item_check label="Timer veloci" name="Fast Timers"/> <menu_item_check label="Memoria" name="Memory"/> - <menu_item_call label="Info Regione Sulla Console di Debug" name="Region Info to Debug Console"/> - <menu_item_check label="Camera" name="Camera"/> + <menu_item_call label="Informazioni regione sulla console di debug" name="Region Info to Debug Console"/> + <menu_item_check label="Fotocamera" name="Camera"/> <menu_item_check label="Vento" name="Wind"/> + <menu_item_check label="Badge" name="Badge"/> </menu> - <menu label="Mostra Info" name="Display Info"> - <menu_item_check label="Mostra Tempo" name="Show Time"/> - <menu_item_check label="Mostra Info Rendering" name="Show Render Info"/> - <menu_item_check label="Mostra Colore sotto il Cursore" name="Show Color Under Cursor"/> - <menu_item_check label="Mostra Aggiornamenti agli Oggetti" name="Show Updates"/> + <menu label="Mostra informazioni" name="Display Info"> + <menu_item_check label="Mostra orario" name="Show Time"/> + <menu_item_check label="Mostra informazioni di rendering" name="Show Render Info"/> + <menu_item_check label="Mostra colore sotto il cursore" name="Show Color Under Cursor"/> + <menu_item_check label="Mostra aggiornamenti agli oggetti" name="Show Updates"/> </menu> - <menu label="Forza Errori" name="Force Errors"> - <menu_item_call label="Forza Breakpoint" name="Force Breakpoint"/> + <menu label="Forza un errore" name="Force Errors"> + <menu_item_call label="Forza punto di rottura" name="Force Breakpoint"/> <menu_item_call label="Forza LLError e Crash" name="Force LLError And Crash"/> - <menu_item_call label="Forza Accesso Invalido alla Memoria" name="Force Bad Memory Access"/> - <menu_item_call label="Forza Ciclo Infinito" name="Force Infinite Loop"/> - <menu_item_call label="Forza il Crash del Driver" name="Force Driver Carsh"/> - <menu_item_call label="Forza Eccezione Software" name="Force Software Exception"/> - <menu_item_call label="Forza Disconnessione Viewer" name="Force Disconnect Viewer"/> - <menu_item_call label="Simula un Memory Leak" name="Memory Leaking Simulation"/> + <menu_item_call label="Forza accesso non valido alla memoria" name="Force Bad Memory Access"/> + <menu_item_call label="Forza ciclo infinito" name="Force Infinite Loop"/> + <menu_item_call label="Forza il crash del driver" name="Force Driver Carsh"/> + <menu_item_call label="Forza eccezione software" name="Force Software Exception"/> + <menu_item_call label="Forza scollegamento viewer" name="Force Disconnect Viewer"/> + <menu_item_call label="Simula fuga di memoria" name="Memory Leaking Simulation"/> </menu> - <menu label="Test di Rendering" name="Render Tests"> - <menu_item_check label="Spostamento Camera" name="Camera Offset"/> - <menu_item_check label="Framerate Casuale" name="Randomize Framerate"/> - <menu_item_check label="Test Frame" name="Frame Test"/> + <menu label="Prove di rendering" name="Render Tests"> + <menu_item_check label="Spostamento fotocamera" name="Camera Offset"/> + <menu_item_check label="Veloc. di visualizzazione casuale" name="Randomize Framerate"/> + <menu_item_check label="Test frame" name="Frame Test"/> </menu> <menu label="Rendering" name="Rendering"> <menu_item_check label="Assi" name="Axes"/> <menu_item_check label="Wireframe" name="Wireframe"/> - <menu_item_check label="Illuminazione Globale" name="Global Illumination"/> - <menu_item_check label="Texture delle Animation" name="Animation Textures"/> - <menu_item_check label="Disabilita Textures" name="Disable Textures"/> - <menu_item_check label="Rendering Luci degli Attachment" name="Render Attached Lights"/> - <menu_item_check label="Visualizza Particelle dagli Attachment" name="Render Attached Particles"/> - <menu_item_check label="Gli Oggetti Brillano quando sono sotto il Cursore" name="Hover Glow Objects"/> + <menu_item_check label="Illuminazione globale" name="Global Illumination"/> + <menu_item_check label="Texture delle animazioni" name="Animation Textures"/> + <menu_item_check label="Disabilita texture" name="Disable Textures"/> + <menu_item_check label="Rendering delle luci unite" name="Render Attached Lights"/> + <menu_item_check label="Rendering particelle unite" name="Render Attached Particles"/> + <menu_item_check label="Gli oggetti brillano quando sono sotto il cursore" name="Hover Glow Objects"/> </menu> <menu label="Rete" name="Network"> - <menu_item_check label="Metti in Pausa Avatar" name="AgentPause"/> - <menu_item_call label="Perdi un Pacchetto" name="Drop a Packet"/> + <menu_item_check label="Metti in pausa" name="AgentPause"/> + <menu_item_call label="Lascia un pacchetto" name="Drop a Packet"/> </menu> - <menu_item_call label="Urti, Spinte & Contatti" name="Bumps, Pushes &amp; Hits"/> + <menu_item_call label="Urti, spinte e contatti" name="Bumps, Pushes &amp; Hits"/> <menu label="Mondo" name="World"> - <menu_item_check label="Sostituisci al Sole della Regione" name="Sim Sun Override"/> - <menu_item_check label="Effetto Lampeggiante Indicatore" name="Cheesy Beacon"/> - <menu_item_check label="Fissa il Clima" name="Fixed Weather"/> - <menu_item_call label="Stampa la Cache degli Oggetti in Regione" name="Dump Region Object Cache"/> + <menu_item_check label="Esclusione al sole della regione" name="Sim Sun Override"/> + <menu_item_check label="Effetto marcatore lampeggiante" name="Cheesy Beacon"/> + <menu_item_check label="Clima fisso" name="Fixed Weather"/> + <menu_item_call label="Dump della cache oggetti regione" name="Dump Region Object Cache"/> </menu> - <menu label="Interfaccia Utente" name="UI"> - <menu_item_call label="Test Browser Web" name="Web Browser Test"/> - <menu_item_call label="Stampa Info per Oggetto Selezionato" name="Print Selected Object Info"/> - <menu_item_call label="Statistiche Memoria" name="Memory Stats"/> - <menu_item_check label="Doppio Click Pilota Automatico" name="Double-ClickAuto-Pilot"/> - <menu_item_check label="Debug Click" name="Debug Clicks"/> - <menu_item_check label="Debug Eventi del Mouse" name="Debug Mouse Events"/> + <menu label="Interfaccia utente" name="UI"> + <menu_item_call label="Test browser Web" name="Web Browser Test"/> + <menu_item_call label="Stampa informazioni oggetto selezionato" name="Print Selected Object Info"/> + <menu_item_call label="Statistiche memoria" name="Memory Stats"/> + <menu_item_check label="Doppio clic pilota automatico" name="Double-ClickAuto-Pilot"/> + <menu_item_check label="Debug clic" name="Debug Clicks"/> + <menu_item_check label="Debug eventi mouse" name="Debug Mouse Events"/> </menu> <menu label="XUI" name="XUI"> - <menu_item_call label="Ricarica Impostazioni Colori" name="Reload Color Settings"/> + <menu_item_call label="Ricarica impostazioni colori" name="Reload Color Settings"/> <menu_item_call label="Test Mostra Font" name="Show Font Test"/> <menu_item_call label="Carica da XML" name="Load from XML"/> <menu_item_call label="Salva in XML" name="Save to XML"/> - <menu_item_check label="Mostra Nomi XUI" name="Show XUI Names"/> - <menu_item_call label="Manda IM di Test" name="Send Test IMs"/> + <menu_item_check label="Mostra nomi XUI" name="Show XUI Names"/> + <menu_item_call label="Manda IM di prova" name="Send Test IMs"/> </menu> <menu label="Avatar" name="Character"> <menu label="Grab Baked Texture" name="Grab Baked Texture"> <menu_item_call label="Iride" name="Iris"/> <menu_item_call label="Testa" name="Head"/> - <menu_item_call label="Parte Superiore Corpo" name="Upper Body"/> - <menu_item_call label="Parte Inferiore del Corpo" name="Lower Body"/> + <menu_item_call label="Parte superiore del corpo" name="Upper Body"/> + <menu_item_call label="Parte inferiore del corpo" name="Lower Body"/> <menu_item_call label="Gonna" name="Skirt"/> </menu> - <menu label="Test Personaggio" name="Character Tests"> - <menu_item_call label="Alterna la Geometria dei Personaggi" name="Toggle Character Geometry"/> - <menu_item_check label="Consenti Selezione Avatar" name="Allow Select Avatar"/> + <menu label="Test personaggio" name="Character Tests"> + <menu_item_call label="Alterna la geometria dei personaggi" name="Toggle Character Geometry"/> + <menu_item_check label="Consenti selezione avatar" name="Allow Select Avatar"/> </menu> - <menu_item_call label="Forza i Parametri ai Valori Predefiniti" name="Force Params to Default"/> - <menu_item_check label="Info delle Animation" name="Animation Info"/> + <menu_item_call label="Forza i parametri sui valori predefiniti" name="Force Params to Default"/> + <menu_item_check label="Informazioni sull'animazione" name="Animation Info"/> <menu_item_check label="Animazioni lente" name="Slow Motion Animations"/> - <menu_item_check label="Disabilita Livello di Dettaglio" name="Disable LOD"/> - <menu_item_check label="Mostra Schemi Collisione" name="Show Collision Skeleton"/> - <menu_item_check label="Mostra Agent Destinazione" name="Display Agent Target"/> - <menu_item_call label="Debug Texture dell'Avatar" name="Debug Avatar Textures"/> + <menu_item_check label="Disabilita livello di dettaglio" name="Disable LOD"/> + <menu_item_check label="Mostra schemi collisione" name="Show Collision Skeleton"/> + <menu_item_check label="Mostra bersaglio" name="Display Agent Target"/> + <menu_item_call label="Debug texture dell'avatar" name="Debug Avatar Textures"/> </menu> <menu_item_check label="Texture HTTP" name="HTTP Textures"/> - <menu_item_check label="Finestra Console al Prossimo Lancio" name="Console Window"/> - <menu_item_check label="Mostra Menu Admin" name="View Admin Options"/> - <menu_item_call label="Richiedi Status Amministrator" name="Request Admin Options"/> - <menu_item_call label="Lascia lo Stato di Admin" name="Leave Admin Options"/> + <menu_item_check label="Finestra Console al prossimo lancio" name="Console Window"/> + <menu_item_check label="Mostra menu Admin" name="View Admin Options"/> + <menu_item_call label="Richiedi diritti Admin" name="Request Admin Options"/> + <menu_item_call label="Lascia stato Admin" name="Leave Admin Options"/> </menu> - <menu label="Amministratore" name="Admin"> + <menu label="Admin" name="Admin"> <menu label="Object"> - <menu_item_call label="Prendi Copia" name="Take Copy"/> - <menu_item_call label="Rendimi Proprietario" name="Force Owner To Me"/> - <menu_item_call label="Forza Proprietario Facoltativo?" name="Force Owner Permissive"/> - <menu_item_call label="Cancella" name="Delete"/> + <menu_item_call label="Prendi copia" name="Take Copy"/> + <menu_item_call label="Rendimi proprietario" name="Force Owner To Me"/> + <menu_item_call label="Forza permesso proprietario" name="Force Owner Permissive"/> + <menu_item_call label="Elimina" name="Delete"/> <menu_item_call label="Blocca" name="Lock"/> </menu> - <menu label="Appezzamento" name="Parcel"> - <menu_item_call label="Rendimi Proprietario" name="Owner To Me"/> - <menu_item_call label="Imposta al Contenuto Linden" name="Set to Linden Content"/> - <menu_item_call label="Prendi Terreno Pubblico" name="Claim Public Land"/> + <menu label="Lotto" name="Parcel"> + <menu_item_call label="Rendimi proprietario" name="Owner To Me"/> + <menu_item_call label="Imposta sul contenuto Linden" name="Set to Linden Content"/> + <menu_item_call label="Rivendica terreno pubblico" name="Claim Public Land"/> </menu> <menu label="Regione" name="Region"> - <menu_item_call label="Stampa i Dati Temporanei degli Asset" name="Dump Temp Asset Data"/> - <menu_item_call label="Salva Stato Regione" name="Save Region State"/> + <menu_item_call label="Dump di dati temporanei degli asset" name="Dump Temp Asset Data"/> + <menu_item_call label="Salva stato regione" name="Save Region State"/> </menu> - <menu_item_call label="Strumenti SuperUser" name="God Tools"/> + <menu_item_call label="Strumenti Admin" name="God Tools"/> </menu> </menu_bar> 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 5db3eddca8f1c92af4c9b741d610a4b456ae78d0..3bc30b507a4d0b7354bb47875d97133ef32f5401 100644 --- a/indra/newview/skins/default/xui/it/mime_types_linux.xml +++ b/indra/newview/skins/default/xui/it/mime_types_linux.xml @@ -2,24 +2,24 @@ <mimetypes name="default"> <widgetset name="web"> <label name="web_label"> - Contenuto del Web + Contenuti Web </label> <tooltip name="web_tooltip"> - Questo luogo ha un contenuto Web + Questo luogo presenta contenuti Web </tooltip> <playtip name="web_playtip"> - Mostra il contenuto Web + Mostra contenuti Web </playtip> </widgetset> <widgetset name="movie"> <label name="movie_label"> - Video + Filmato </label> <tooltip name="movie_tooltip"> - Qui c'è un video da riprodurre + C'è un filmato da vedere qui </tooltip> <playtip name="movie_playtip"> - Riproduci video + Riproduci il filmato </playtip> </widgetset> <widgetset name="image"> @@ -27,10 +27,10 @@ Immagine </label> <tooltip name="image_tooltip"> - C'è un immagine in questo luogo + C'è un'immagine in questo luogo </tooltip> <playtip name="image_playtip"> - Guarda l'immagine di questo luogo + Vedi l'immagine di questo luogo </playtip> </widgetset> <widgetset name="audio"> @@ -38,25 +38,25 @@ Audio </label> <tooltip name="audio_tooltip"> - In questo luogo c'è l'audio + C'è un audio in questo luogo </tooltip> <playtip name="audio_playtip"> - Riproduci l'audio in questo luogo + Riproduci l'audio di questo luogo </playtip> </widgetset> <scheme name="rtsp"> <label name="rtsp_label"> - Real Time Streaming + Streaming in tempo reale </label> </scheme> <mimetype name="blank"> <label name="blank_label"> - - Vuoto - + - Nessuno - </label> </mimetype> <mimetype name="none/none"> <label name="none/none_label"> - - Vuoto - + - Nessuno - </label> </mimetype> <mimetype name="audio/*"> @@ -76,7 +76,7 @@ </mimetype> <mimetype name="video/vnd.secondlife.qt.legacy"> <label name="vnd.secondlife.qt.legacy_label"> - Video (QuickTime) + Filmato (QuickTime) </label> </mimetype> <mimetype name="application/javascript"> @@ -116,7 +116,7 @@ </mimetype> <mimetype name="application/x-director"> <label name="application/x-director_label"> - Direttore Macromedia + Macromedia Director </label> </mimetype> <mimetype name="audio/mid"> @@ -186,32 +186,32 @@ </mimetype> <mimetype name="video/mpeg"> <label name="video/mpeg_label"> - Video (MPEG) + Filmato (MPEG) </label> </mimetype> <mimetype name="video/mp4"> <label name="video/mp4_label"> - Video (MP4) + Filmato (MP4) </label> </mimetype> <mimetype name="video/quicktime"> <label name="video/quicktime_label"> - Video (QuickTime) + Filmato (QuickTime) </label> </mimetype> <mimetype name="video/x-ms-asf"> <label name="video/x-ms-asf_label"> - Video (Windows Media ASF) + Filmato (Windows Media ASF) </label> </mimetype> <mimetype name="video/x-ms-wmv"> <label name="video/x-ms-wmv_label"> - Video (Windows Media WMV) + Filmato (Windows Media WMV) </label> </mimetype> <mimetype name="video/x-msvideo"> <label name="video/x-msvideo_label"> - Video (AVI) + Filmato (AVI) </label> </mimetype> </mimetypes> 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 f91c9ce5bd838f4feb9f049cf18c027284e77248..3bc30b507a4d0b7354bb47875d97133ef32f5401 100644 --- a/indra/newview/skins/default/xui/it/mime_types_mac.xml +++ b/indra/newview/skins/default/xui/it/mime_types_mac.xml @@ -2,13 +2,13 @@ <mimetypes name="default"> <widgetset name="web"> <label name="web_label"> - Argomento nel Web + Contenuti Web </label> <tooltip name="web_tooltip"> - Questo luogo ha un argomento nel Web + Questo luogo presenta contenuti Web </tooltip> <playtip name="web_playtip"> - Mostra l'argomento del Web + Mostra contenuti Web </playtip> </widgetset> <widgetset name="movie"> @@ -30,7 +30,7 @@ C'è un'immagine in questo luogo </tooltip> <playtip name="image_playtip"> - Vedere l'immagine di questo luogo + Vedi l'immagine di questo luogo </playtip> </widgetset> <widgetset name="audio"> @@ -46,7 +46,7 @@ </widgetset> <scheme name="rtsp"> <label name="rtsp_label"> - Real Time Streaming + Streaming in tempo reale </label> </scheme> <mimetype name="blank"> @@ -86,17 +86,17 @@ </mimetype> <mimetype name="application/ogg"> <label name="application/ogg_label"> - Ogg Audio/Video + Audio/Video Ogg </label> </mimetype> <mimetype name="application/pdf"> <label name="application/pdf_label"> - PDF Document + Documento PDF </label> </mimetype> <mimetype name="application/postscript"> <label name="application/postscript_label"> - Postscript Document + Documento Postscript </label> </mimetype> <mimetype name="application/rtf"> diff --git a/indra/newview/skins/default/xui/it/notifications.xml b/indra/newview/skins/default/xui/it/notifications.xml index 2a370a2ed0ffab33397158c4b9139dd8d258d41f..6736c6a6f13dbfafce41d700f8c1070688291654 100644 --- a/indra/newview/skins/default/xui/it/notifications.xml +++ b/indra/newview/skins/default/xui/it/notifications.xml @@ -11,18 +11,29 @@ </global> <template name="okbutton"> <form> - <button name="OK" text="$yestext"/> + <button name="OK_okbutton" text="$yestext"/> + </form> + </template> + <template name="okignore"> + <form> + <button name="OK_okignore" text="$yestext"/> </form> </template> - <template name="okignore"/> <template name="okcancelbuttons"> <form> - <button name="Cancel" text="$notext"/> + <button name="OK_okcancelbuttons" text="$yestext"/> + <button name="Cancel_okcancelbuttons" text="$notext"/> + </form> + </template> + <template name="okcancelignore"> + <form> + <button name="OK_okcancelignore" text="$yestext"/> + <button name="Cancel_okcancelignore" text="$notext"/> </form> </template> - <template name="okcancelignore"/> <template name="okhelpbuttons"> <form> + <button name="OK_okhelpbuttons" text="$yestext"/> <button name="Help" text="$helptext"/> </form> </template> @@ -30,12 +41,13 @@ <form> <button name="Yes" text="$yestext"/> <button name="No" text="$notext"/> + <button name="Cancel_yesnocancelbuttons" text="$canceltext"/> </form> </template> - <notification functor="GenericAcknowledge" label="Messaggio di Notifica Sconosciuto" name="MissingAlert"> - La versione di [APP_NAME] non riesce a visualizzare la notifica che ha ricevuto. Verifica di avere l'ultima versione del Viewer installata. + <notification functor="GenericAcknowledge" label="Messaggio di notifica sconosciuto" name="MissingAlert"> + La versione di [APP_NAME] non riesce a visualizzare la notifica appena ricevuta. Verifica di avere l'ultima versione del Viewer installata. -Dettaglio Errore: La notifica di nome '[_NAME]' non è stata trovata in notifications.xml. +Dettagli errore: La notifica denominata '[_NAME]' non è stata trovata in notifications.xml. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="FloaterNotFound"> @@ -56,11 +68,11 @@ Dettaglio Errore: La notifica di nome '[_NAME]' non è stata trovata i <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> </notification> <notification name="BadInstallation"> - Errore mentre si aggiornava [APP_NAME]. [http://get.secondlife.com Scarica l'ultima versione] del Viewer. + Il programma [APP_NAME] ha riscontrato un'errore durante il tentativo di aggiornamento. [http://get.secondlife.com Scarica l'ultima versione] del Viewer. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LoginFailedNoNetwork"> - Non è possibile connettersi a [SECOND_LIFE_GRID]. + Non è possibile collegarsi alla [SECOND_LIFE_GRID]. '[DIAGNOSTIC]' Accertati che la tua connessione Internet stia funzionando correttamente. <usetemplate name="okbutton" yestext="OK"/> @@ -93,14 +105,18 @@ Scegli solo un oggetto e riprova. Salva tutte le modifiche alle parti del corpo/abiti? <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non Salvare" yestext="Salva Tutto"/> </notification> + <notification name="FriendsAndGroupsOnly"> + Chi non è tuo amico non saprà che hai scelto di ignorare le loro chiamate e IM. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="GrantModifyRights"> - Dare i diritti di modifica ad un altro residente gli consente di cambiare, cancellare o prendere QUALUNQUE oggetto che hai in [SECOND_LIFE]. Fai MOLTA attenzione quando concedi questo permesso. -Vuoi davvero dare i diritti di modifica a [FIRST_NAME] [LAST_NAME]? + Quando concedi i diritti di modifica ad un altro residente, gli permetti di modificare, eliminare o prendere QUALSIASI oggetto che possiedi in Second Life. Pertanto ti consigliamo di essere ben sicuro quando concedi questo diritto. +Vuoi concedere i diritti di modifica a [FIRST_NAME] [LAST_NAME]? <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> </notification> <notification name="GrantModifyRightsMultiple"> - Dare i diritti di modifica ad un altro residente gli consente di cambiare QUALUNQUE oggetto che hai in [SECOND_LIFE]. Fai MOLTA attenzione quando concedi questo permesso. -Vuoi davvero dare i diritti di modifica ai residenti selezionati? + Quando concedi i diritti di modifica ad un altro residente, gli permetti di modificare QUALSIASI oggetto che possiedi in Second Life. Pertanto ti consigliamo di essere ben sicuro quando concedi questo diritto. +Vuoi concedere i diritti di modifica ai residenti selezionati? <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> </notification> <notification name="RevokeModifyRights"> @@ -130,7 +146,7 @@ Vuoi davvero dare i diritti di modifica ai residenti selezionati? Non si possono rimuovere membri da quel ruolo. I membri devono dimettersi volontariamente dal ruolo. Confermi l'operazione? - <usetemplate ignoretext="Conferma prima di aggiungere un nuovo Proprietario del Gruppo" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Conferma prima di aggiungere un nuovo proprietario del gruppo" name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="AssignDangerousActionWarning"> Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. @@ -150,23 +166,30 @@ Aggiungi questo potere a '[ROLE_NAME]'? Aggiungi questo potere a '[ROLE_NAME]'? <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> </notification> - <notification name="ClickUnimplemented"> - Mi dispiace, non è ancora stato implementato. + <notification name="AttachmentDrop"> + Stai per abbandonare il tuo accessorio. + Vuoi continuare? + <usetemplate ignoretext="Conferma prima di distaccare gli accessori" name="okcancelignore" notext="No" yestext="Sì"/> </notification> <notification name="JoinGroupCanAfford"> Iscriversi a questo gruppo costa [COST]L$. Vuoi proseguire? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Iscriviti"/> </notification> + <notification name="JoinGroupNoCost"> + Aderisci al gruppo [NAME]. +Continuare? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Iscriviti"/> + </notification> <notification name="JoinGroupCannotAfford"> Iscriversi a questo gruppo costa [COST]L$. Non hai abbastanza L$ per iscriverti a questo gruppo. </notification> <notification name="CreateGroupCost"> - La Creazione di questo gruppo costerà L$100. -I Gruppi devono avere più di un membro, o saranno cancellati definitivamente. -Per favore invita altri membri entro le prossime 48 ore. - <usetemplate canceltext="Annulla" name="okcancelbuttons" notext="Cancella" yestext="Crea un gruppo per L$100"/> + La creazione di questo gruppo costerà L$ 100. +I gruppi devono avere più di un partecipante, o saranno eliminati definitivamente. +Invita altri partecipanti entro le prossime 48 ore. + <usetemplate canceltext="Annulla" name="okcancelbuttons" notext="Annulla" yestext="Crea un gruppo per L$ 100"/> </notification> <notification name="LandBuyPass"> Pagando [COST]L$ puoi entrare in questa terra ('[PARCEL_NAME]') per [TIME] ore. Compri un pass? @@ -182,10 +205,10 @@ Il tuo prezzo di vendità è [SALE_PRICE]L$ ed è autorizzato alla vendita a [NA <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmLandSaleToAnyoneChange"> - ATTENZIONE: Cliccando 'vendi a tutti' rende questo terreno disponibile all'intera comunità [SECOND_LIFE], perfino a quelli che non sono in questa regione. + ATTENZIONE: Quando selezioni 'vendi a tutti', rendi questo terreno disponibile all'intera comunità di [SECOND_LIFE], anche alle persone che non si trovano in questa regione. -Stai mettendo in vendita il terrendo selezionato di [LAND_SIZE] m². -Il prezzo di vendità è [SALE_PRICE]L$ e verrà autorizzato alla vendita a [NAME]. +Il terrendo selezionato di [LAND_SIZE] m² sta per essere messo in vendita. +Il prezzo di vendità sarà [SALE_PRICE]L$ e [NAME] viene autorizzato alla vendita. <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="ReturnObjectsDeededToGroup"> @@ -246,10 +269,10 @@ L'intera regione ha l'abilitazione danni. Gli script devono essere autorizzati all'esecuzione affinchè le armi funzionino. </notification> <notification name="MultipleFacesSelected"> - Multiple facce multimediale sono attualmente selezionate. -Se prosegui con questa azione, esempi separati del media saranno impostati su facce multimediali dell'oggetto. ???!!! -Per impostare il media su una sola faccia multimediale, scegli Seleziona Faccia e clicca la faccia desiderata dell'oggetto e poi clicca Aggiungi. - <usetemplate ignoretext="Il Media sarà impostato su facce multimediali multiple" name="okcancelignore" notext="Cancella" yestext="OK"/> + Sono state selezionate più facce. +Se prosegui con questa azione, sulle diverse facce dell'oggetto verranno definite sessioni multimediali distinte. +Per collocare il media su una sola faccia, scegli Seleziona faccia, clicca su una faccia e clicca su Aggiungi. + <usetemplate ignoretext="Il canale multimediale sarà impostato su più facce selezionate" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="MustBeInParcel"> Devi essere dentro il terreno per impostare il suo Punto di Atterraggio. @@ -287,8 +310,8 @@ La cartella equipaggiamento non contiene abbigliamento, parti del corpo o attach Non puoi indossare abiti e parti del corpo che sono nel cestino </notification> <notification name="MaxAttachmentsOnOutfit"> - L'oggetto non può essere attaccato. -Superato il limite di oggetti attaccati [MAX_ATTACHMENTS]. Per favore prima stacca un altro oggetto. + L'oggetto non può essere collegato. +Superato il limite di oggetti collegati [MAX_ATTACHMENTS]. Per favore prima stacca un altro oggetto. </notification> <notification name="CannotWearInfoNotComplete"> Non puoi indossare quell'elemento perchè non è ancora stato caricato. Riprova fra un minuto. @@ -304,11 +327,11 @@ Hai bisogno di un account per entrare in [SECOND_LIFE]. Ne vuoi creare uno adess <usetemplate name="okcancelbuttons" notext="Riprova" yestext="Crea un nuovo account"/> </notification> <notification name="AddClassified"> - L'inserzione apparirà nella sezione 'Annunci' della Ricerca e su [http://secondlife.com/community/classifieds secondlife.com] per una settimana. -Compila la tua inserzione, e quindi clicca 'Pubblica...' per aggiungerla all'elenco. -Ti sarà chiesto un prezzo da pagare quando clicchi Pubblica. -Pagando di più il tuo annuncio apparirà più in alto nella lista, e apparirà anche più in alto quando la gente cerca per Parole Chiavi. - <usetemplate ignoretext="Come Creare una nuova Inserzione" name="okcancelignore" notext="Annulla" yestext="OK"/> + L'inserzione comparirà nella sezione 'Annunci' della Ricerca e su [http://secondlife.com/community/classifieds secondlife.com] per una settimana. +Compila la tua inserzione, quindi clicca 'Pubblica...' per aggiungerla all'elenco degli annunci. +Quando clicchi su Pubblica, ti verrà chiesto di indicare quale prezzo vuoi pagare. +Pagando di più, il tuo annuncio comparirà più in alto nella lista delle inserzioni, nonché nei risultati delle ricerche in base a parole chiave. + <usetemplate ignoretext="Come creare una nuova inserzione" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="DeleteClassified"> Cancella annuncio '[NAME]'? @@ -316,14 +339,18 @@ Non ci sono rimborsi per la tariffa pagata. <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="DeleteMedia"> - Hai selezionato la cancellazione del media associato a questa faccia multimediale. -Sei sicuro di voler continuare? - <usetemplate ignoretext="Confemra la cancellazione del multimedia dall'oggetto" name="okcancelignore" notext="No" yestext="Si"/> + Hai selezionato la cancellazione del media associato a questa faccia. +Vuoi continuare? + <usetemplate ignoretext="Conferma prima di eliminare elemnti multimediali dall'oggetto" name="okcancelignore" notext="No" yestext="Sì"/> </notification> <notification name="ClassifiedSave"> Salva le modifiche all'annuncio [NAME]? <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non salvare" yestext="Salva"/> </notification> + <notification name="ClassifiedInsufficientFunds"> + Denaro insufficiente per creare un'inserzione. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="DeleteAvatarPick"> Cancella il favorito [PICK]? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> @@ -341,26 +368,18 @@ Sei sicuro di voler continuare? <notification name="SelectHistoryItemToView"> Scegli un item storico da vedere. </notification> - <notification name="ResetShowNextTimeDialogs"> - Vuoi riabilitare tutti le finestre di popup, che precedentemente hai indicato che 'Non vuoi vedere più'? - <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> - </notification> - <notification name="SkipShowNextTimeDialogs"> - Vuoi disabilitare tutti i popup che possono essere ignorati? - <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> - </notification> <notification name="CacheWillClear"> - La Cache verrà cancellata dopo la ripartenza di [APP_NAME]. + La cache verrà cancellata dopo il riavvio di [APP_NAME]. </notification> <notification name="CacheWillBeMoved"> - La Cache verrà mossa dopo la ripartenza di [APP_NAME]. -Nota: Questo cancellerà anche la cache. + La cache verrà spostata dopo il riavvio di [APP_NAME]. +Nota: questa operazione cancellerà la cache. </notification> <notification name="ChangeConnectionPort"> - Le importazioni di Porte avranno effetto dopo la ripartenza di [APP_NAME]. + Le impostazioni della porta avranno effetto dopo il riavvio di [APP_NAME]. </notification> <notification name="ChangeSkin"> - La nuova skin apparirà dopo la ripartenza di [APP_NAME]. + La nuova pelle comparirà dopo il riavvio di [APP_NAME]. </notification> <notification name="GoToAuctionPage"> Vai alla pagina web [SECOND_LIFE] per vedere i dettagli dell'asta oppure fai un'offerta? @@ -409,8 +428,8 @@ L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. C'è stato un problema salvando lo script compilato a causa del seguente motivo: [REASON]. Riprova a salvare lo script più tardi. </notification> <notification name="StartRegionEmpty"> - Oops, la tua Regione di Inizio non è stata impostata. -Per favore scrivi il nome della Regione nello spazio Regione di Inizio oppure scegli la mia ultima Ubicazione o Casa Mia come ultima ubicazione. + La tua Regione di inizio non è stata definita. +Per scegliere il luogo dove vuoi trovarti all'accesso, digita il nome della regione nel campo del luogo di partenza oppure scegli La mia ultima Ubicazione o Casa mia. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CouldNotStartStopScript"> @@ -424,28 +443,27 @@ L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. Non è stato possibile scrivere il file [[FILE]] </notification> <notification name="UnsupportedHardware"> - Attenzione: Il tuo sistema non soddisfa i requisiti minimi per il funzionamento [APP_NAME]. Se continui ad usare [APP_NAME], potresti osservare una lentezza eccessiva. Sfortunatamente non possiamo fornire supporto tecnico per configurazioni di sistema non supportate. + Ti informiamo che il tuo computer non dispone dei requisiti minimi di sistema per [APP_NAME]. Il funzionamento può pertanto risultare ridotto. Purtroppo la pagina [SUPPORT_SITE] non può fornire assistenza tecnica in caso di problemi dovuti a configurazioni di sistema non compatibili. -MINSPECS -Vuoi visitare [_URL] per maggiori informazioni? +Visitare [_URL] per ulteriori informazioni? <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=it </url> - <usetemplate ignoretext="L'hardware di questo computer non è supportato" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="L'hardware di questo computer non è compatibile" name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="UnknownGPU"> - Il tuo sistema contiene una scheda grafica ancora sconosciuta a [APP_NAME]. -Questo succede spesso con nuovo hardware che non è ancora stato verificato con [APP_NAME]. Probabilmente [APP_NAME] funzionerà correttamente, ma forse devi regolare le impostazioni grafiche a qualcosa di più appropriato. + Il tuo sistema utilizza una scheda grafica che [APP_NAME] non riconosce. +Questo succede spesso con un nuovo hardware che non è stato ancora testato con [APP_NAME]. Probabilmente tutto andrà bene, ma devi riconfigurare le tue impostazioni grafiche. (Io > Preferenze > Grafica). <form name="form"> - <ignore name="ignore" text="La mia scheda grafica non è stata identificata"/> + <ignore name="ignore" text="La tua scheda grafica non è stata riconosciuta"/> </form> </notification> <notification name="DisplaySettingsNoShaders"> - [APP_NAME] si è interrotta mentre stava inizializzando i driver grafici. -La Qualità Grafica verrà impostata a Basso per evitare alcuni errori comuni di driver. Questo disabiliterà alcune caratteristiche grafiche. -Si raccomanda di aggiornare i driver della scheda grafica. -La Qualità Grafica può essere aumentata in Preferenze > Grafica. + L'esecuzione di [APP_NAME] si è interrotta durante l'inizializzazione dei driver grafici. +La qualità grafica verrà impostata a livello basso per evitare alcuni errori comuni di driver. Alcune funzionalità grafiche saranno disattivate. +Si consiglia di aggiornare i driver della scheda grafica. +La qualità grafica può essere aumentata in Preferenze > Grafica. </notification> <notification name="RegionNoTerraforming"> La regione [REGION] non consente di terraformare. @@ -600,7 +618,7 @@ Attese [VALIDS] Impossibile creare il file in uscita: [FILE] </notification> <notification name="DoNotSupportBulkAnimationUpload"> - [APP_NAME] non supporta ancora l'upload in blocco di file di animazione. + [APP_NAME] non supporta ancora il caricamento in blocco di file di animazione. </notification> <notification name="CannotUploadReason"> Impossibile importare il file [FILE] a causa del seguente motivo: [REASON] @@ -609,6 +627,10 @@ Riprova più tardi. <notification name="LandmarkCreated"> Hai aggiunto "[LANDMARK_NAME]" alla tua [FOLDER_NAME] cartella. </notification> + <notification name="LandmarkAlreadyExists"> + Hai già il punto di riferimento di questo luogo. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="CannotCreateLandmarkNotOwner"> Non puoi creare qui un landmark perchè il proprietario di questo terreno non lo consente. </notification> @@ -632,7 +654,7 @@ Seleziona oggetti con degli script. Seleziona oggetti con script su cui hai i permessi di modifica. </notification> <notification name="CannotOpenScriptObjectNoMod"> - Impossibile aprire la script dell'oggetto senza i permessi modify. + Impossibile aprire la script dell'oggetto senza i diritti di modifica. </notification> <notification name="CannotSetRunningSelectObjectsNoScripts"> Impossibile mettere 'in esecuzione' gli script. @@ -657,16 +679,16 @@ Ho cercato: [FINALQUERY] Le parole che hai usato per la ricerca sono troppo corte e non è stato possibile iniziare la ricerca. </notification> <notification name="CouldNotTeleportReason"> - Impossibile eseguire il teleport. + Teleport non riuscito. [REASON] </notification> <notification name="invalid_tport"> - E' stato incontrato un problema eseguendo la tua richiesta di teleport. Potresti avere bisogno di riloggarti per ritentare il teleport. -Se continui a ricevere questo errore, controlla [SUPPORT_SITE]. + C'è stato un problema nell'elaborare la tua richiesta di teleport. Potresti dover effettuare nuovamente l'accesso prima di poter usare il teleport. +Se si continua a visualizzare questo messaggio, consulta la pagina [SUPPORT_SITE]. </notification> <notification name="invalid_region_handoff"> - Ci sono stati problemi eseguendo il passaggio di regione. Potresti avere bisogno di riloggarti per ritentare il passaggio di regione. -Se continui a ricevere questo errore, controlla [SUPPORT_SITE]. + Si è verificato un problema nel tentativo di attraversare regioni. È possibile che per potere attraversare le regioni, tu debba effettuare nuovamente l'accesso. +Se si continua a visualizzare questo messaggio, consulta la pagina [SUPPORT_SITE]. </notification> <notification name="blocked_tport"> Spiacenti, il teletrasporto è bloccato al momento. Prova di nuovo tra pochi istanti. Se ancora non potrai teletrasportarti, per favore scollegati e ricollegati per risolvere il problema. @@ -706,8 +728,8 @@ Nessun terreno selezionato. Impossibile forzare la proprietà del terreno perchè la selezione si estende su diverse regioni. Seleziona una area più piccola e riprova. </notification> <notification name="ForceOwnerAuctionWarning"> - Questo terreno è venduta all'asta. Forzare la proprietà cancellerà l'asta e potrebbe disturbare residenti che abbiano già fatto offerte. -Vuoi forzare la proprietà ? + Questo lotto è all'asta. La designazione di un proprietario determinerà l'annullamento automatico dell'asta e probabilmente può scontentare qualche residente se l'asta è già iniziata. +Vuoi designare un proprietario? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="CannotContentifyNothingSelected"> @@ -735,7 +757,7 @@ Nessun terreno selezionato. Non riesco a trovare la regione dove è situato il terreno. </notification> <notification name="CannotCloseFloaterBuyLand"> - Non puoi chiudere la finestra di Acquisto Terreno finchè [APP_NAME] non finisce di stimare il prezzo di questa transazione. + Non puoi chiudere la finestra Acquista terreno finché [APP_NAME] non finisce di stimare il prezzo di questa transazione. </notification> <notification name="CannotDeedLandNothingSelected"> Impossibile cedere il terreno: @@ -746,8 +768,8 @@ Nessun terreno selezionato. Nessun gruppo selezionato. </notification> <notification name="CannotDeedLandNoRegion"> - Non è possibile donare il terreno: -Non riesco a trovare la regione in cui si trova. + Non è possibile effettuare la cessione del terreno: +Impossibile trovare la regione in cui si trova il terreno. </notification> <notification name="CannotDeedLandMultipleSelected"> Impossibile cedere il terreno: @@ -755,13 +777,6 @@ Hai selezionato più di un terreno. Prova a selezionare un solo terreno. </notification> - <notification name="ParcelCanPlayMedia"> - Questo posto può mostrare contenuto multimediale in streaming. Questo richiede una connessione Internet veloce. - -Mostra contenuto multimediale quando disponibile? -(Puoi cambiare questa opzione anche successivamente su Preferenze > Privacy.) - <usetemplate name="okcancelbuttons" notext="Disabilita" yestext="Abilita MultiMedia"/> - </notification> <notification name="CannotDeedLandWaitingForServer"> Impossibile cedere il terreno: Sto aspettando il server per segnalare la proprietà . @@ -791,7 +806,7 @@ I terreni di tua proprietà vengono visualizzati in verde. </notification> <notification name="CannotReleaseLandRegionNotFound"> Non è possibile abbandonare il terreno: -Non riesco a trovare la regione in cui si trova. +Impossibile trovare la regione in cui si trova il terreno. </notification> <notification name="CannotReleaseLandNoTransfer"> Impossibile abbandonare il terreno: @@ -829,11 +844,11 @@ Dividi il terreno? </notification> <notification name="CannotDivideLandNoRegion"> Non è possibile suddividere il terreno: -Non riesco a trovare la regione in cui si trova. +Impossibile trovare la regione in cui si trova il terreno. </notification> <notification name="CannotJoinLandNoRegion"> Non è possibile unire il terreno: -Non riesco a trovare la regione in cui si trova. +Impossibile trovare la regione in cui si trova il terreno. </notification> <notification name="CannotJoinLandNothingSelected"> Impossibile unire il terreno: @@ -880,12 +895,11 @@ Unisci il terreno? </notification> <notification name="CannotSaveToAssetStore"> Non è possibile salvare [NAME] nel database centrale degli asset. -Questo normalmente è un problema temporaneo. Riadatta e salva i vestiti e riprova fra qualche minuto. +In genere si tratta di un problema temporaneo. Attendi alcuni minuti per modificare e salvare nuovamente gli elementi indossabili. </notification> <notification name="YouHaveBeenLoggedOut"> - Sei stato sconnesso da [SECOND_LIFE]: + Accidenti. Sei stato scollegato da [SECOND_LIFE] [MESSAGE] -Puoi ancora vedere gli IM e la chat cliccando 'Vedi IM & Chat'. Altrimenti clicca 'Esci' per uscire immediatamente da[APP_NAME]. <usetemplate name="okcancelbuttons" notext="Esci" yestext="Vedi IM & Chat"/> </notification> <notification name="OnlyOfficerCanBuyLand"> @@ -1043,37 +1057,39 @@ Cedi questo terreno di [AREA] m² al gruppo '[GROUP_NAME]'? </notification> <notification name="ErrorMessage"> [ERROR_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="AvatarMovedDesired"> - L'ubicazione desiderata non è attualmente disponibile. Sei stato trasportato in una regione vicina. + L'ubicazione prescelta non è attualmente disponibile. +Sei stato trasferito in una regione vicina. </notification> <notification name="AvatarMovedLast"> - La tua ultima ubicazione non è al momento disponibile. -Sei stato trasferito in una regione vicina . + La tua ultima posizione non è al momento disponibile. +Sei stato trasferito in una regione vicina. </notification> <notification name="AvatarMovedHome"> L'ubicazione di casa tua non è al momento disponibile. -Sei stato trasferito in un'ubicazione vicina. -Potresti impostare una nuova ubicazione. +Sei stato trasferito in una regione vicina. +Ti consigliamo di impostare una nuova posizione iniziale. </notification> <notification name="ClothingLoading"> - Sto ancora scaricando i tuoi abiti. -Puoi comunque usare [SECOND_LIFE] normalmente e gli altri ti vedranno correttamente. + Gli abiti sono in corso di scaricamento. +Puoi comunque usare [SECOND_LIFE] normalmente e gli altri residenti ti vedranno correttamente. <form name="form"> - <ignore name="ignore" text="Lo scarico degli abiti sta impiegando parecchio tempo"/> + <ignore name="ignore" text="Lo scaricamento sta richiedendo parecchio tempo"/> </form> </notification> <notification name="FirstRun"> - L'installazione di [APP_NAME] è completa. + L'installazione di [APP_NAME] è terminata. -Se questa è la prima volta che usi [SECOND_LIFE], devi creare un account prima che tu possa fare il log in. -Vuoi ritornare su [http://join.secondlife.com secondlife.com] per creare un nuovo account? +Se questa è la prima volta che usi [SECOND_LIFE], devi creare un account prima che tu possa effettuare l'accesso. +Vuoi tornare a [http://join.secondlife.com secondlife.com] per creare un nuovo account? <usetemplate name="okcancelbuttons" notext="Continua" yestext="Nuovo Account..."/> </notification> <notification name="LoginPacketNeverReceived"> - Ci sono problemi di connessione. Può darsi che siano nella tua connessione Internet oppure in [SECOND_LIFE_GRID]. + Ci sono problemi di connessione. È possibile che ci siano problemi con la tua connessione Internet oppure sulla [SECOND_LIFE_GRID]. -Puoi controllare la tua connessione Internet e riprovare fra qualche minuto, oppure cliccare Aiuto per vedere il [SUPPORT_SITE], oppure cliccare Teleport per tentare di teleportarti a casa. +Controlla la tua connessione Internet e riprova fra qualche minuto, oppure clicca su Aiuto per visualizzare la pagina [SUPPORT_SITE], oppure clicca su Teleport per tentare il teleport a casa tua. <url name="url"> http://it.secondlife.com/support/ </url> @@ -1095,10 +1111,10 @@ Scegli un avatar maschile o femminile. Puoi sempre cambiare idea più tardi. [NAME] [PRICE]L$ Non hai abbastanza L$ per farlo. </notification> <notification name="GrantedModifyRights"> - [NAME] ti ha dato il permesso di editare i suoi oggetti. + [NAME] ti ha dato il permesso di modificare i suoi oggetti. </notification> <notification name="RevokedModifyRights"> - Ti è stato revocato il permesso di modificare gli oggetti di [NAME] + Non sei più autorizzato a modificare gli oggetti di [NAME] </notification> <notification name="FlushMapVisibilityCaches"> Questo reinizializzerà la cache della mappa di questa regione. @@ -1177,107 +1193,107 @@ Imposta l'oggetto per la vendita e riprova. [DOWNLOAD_PATH]. </notification> <notification name="DownloadWindowsMandatory"> - E' disponibile una nuova versione di [APP_NAME]. + È disponibile una nuova versione di [APP_NAME]. [MESSAGE] -Devi scaricarla per usare [APP_NAME]. +Devi scaricare questo aggiornamento per utilizzare [APP_NAME]. <usetemplate name="okcancelbuttons" notext="Esci" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DownloadWindows"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è obbligatorio, ma è consigliabile installarlo per migliorare le prestazioni e la stabilità . +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DownloadWindowsReleaseForDownload"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è obbligatorio, ma è consigliabile installarlo per migliorare le prestazioni e la stabilità . +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DownloadLinuxMandatory"> - Una nuova versione di [APP_NAME] è disponibile. + È disponibile una nuova versione di [APP_NAME]. [MESSAGE] -Devi scaricare questo aggiornamento per utilizzarlo [APP_NAME]. - <usetemplate name="okcancelbuttons" notext="Esci" yestext="Download"/> +Devi scaricare questo aggiornamento per utilizzare [APP_NAME]. + <usetemplate name="okcancelbuttons" notext="Esci" yestext="Scarica"/> </notification> <notification name="DownloadLinux"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è necessario, ti consigliamo di installarlo per migliorare il rendimento e la stabilità . - <usetemplate name="okcancelbuttons" notext="Continua" yestext="Download"/> +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica"/> </notification> <notification name="DownloadLinuxReleaseForDownload"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è obbligatorio, ma è consigliata l'installazione per migliorare le prestazioni e l'affidabilità . - <usetemplate name="okcancelbuttons" notext="Continua" yestext="Download"/> +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica"/> </notification> <notification name="DownloadMacMandatory"> - E' disponibile una nuova versione di [APP_NAME]. + È disponibile una nuova versione di [APP_NAME]. [MESSAGE] -Devi scaricarla per usare [APP_NAME]. +Devi scaricare questo aggiornamento per utilizzare [APP_NAME]. -Scarico nella cartella Applicazioni? +Scaricare nella cartella Applicazioni? <usetemplate name="okcancelbuttons" notext="Esci" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DownloadMac"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è obbligatorio, ma è consigliabile installarlo per migliorare le prestazioni e la stabilità . +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . -Scarico nella cartella Applicazioni? +Scaricare nella cartella Applicazioni? <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DownloadMacReleaseForDownload"> - E' disponibile una versione aggiornata di [APP_NAME]. + È disponibile una versione aggiornata di [APP_NAME]. [MESSAGE] -Questo aggiornamento non è obbligatorio, ma è consigliabile installarlo per migliorare le prestazioni e la stabilità . +Questo aggiornamento non è necessario, ma ti consigliamo di installarlo per migliorare il rendimento e la stabilità . -Scarico nella cartella Applicazioni? +Scaricare nella cartella Applicazioni? <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> </notification> <notification name="DeedObjectToGroup"> La cessione di questo oggetto farà in modo che il gruppo: * Riceva i L$ pagati all'oggetto - <usetemplate ignoretext="Conferma la donazione di un oggetto al gruppo" name="okcancelignore" notext="Annulla" yestext="Cedi"/> + <usetemplate ignoretext="Conferma la cessione di un oggetto al gruppo" name="okcancelignore" notext="Annulla" yestext="Cedi"/> </notification> <notification name="WebLaunchExternalTarget"> - Vuoi aprire il browser per vedere questo contenuto? - <usetemplate ignoretext="Lancia il browser per vedere la pagina web" name="okcancelignore" notext="Annulla" yestext="OK"/> + Vuoi aprire il browser per vedere questi contenuti? + <usetemplate ignoretext="Lancia il browser per consultare una pagina web" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchJoinNow"> Vuoi andare su [http://secondlife.com/account/ Dashboard] per gestire il tuo account? - <usetemplate ignoretext="Lancia il browser pe gestire il mio account" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Lancia il browser per gestire il mio account" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchSecurityIssues"> Visita la Wiki di [SECOND_LIFE] per i dettagli su come segnalare un problema di sicurezza. - <usetemplate ignoretext="Lancia il browser per imparare a segnalare un Problema di Sicurezza" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Lancia il browser per imparare a segnalare un problema di sicurezza" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchQAWiki"> Visita il controllo di qualità Wiki [SECOND_LIFE]. - <usetemplate ignoretext="Lancia il browser per vedere il QA Wiki" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Lancia il browser per vedere la pagina Wiki sul controllo di qualità " name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchPublicIssue"> Visita il registro pubblico dei problemi di [SECOND_LIFE], dove puoi segnalare bug ed altri problemi. - <usetemplate ignoretext="Lancia il browser per vedere il Registro dei Problemi Pubblici" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + <usetemplate ignoretext="Lancia il browser per vedere il registro pubblico di monitoraggio dei problemi" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="WebLaunchSupportWiki"> Vai al blog ufficiale Linden, per le ultime notizie ed informazioni. <usetemplate ignoretext="Lancia il browser per vedere il blog" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchLSLGuide"> - Vuoi aprire la Guida per lo Scripting per avere aiuto con lo scripting? - <usetemplate ignoretext="Lancia il browser per vedere la Guida per lo Scripting" name="okcancelignore" notext="Annulla" yestext="OK"/> + Vuoi aprire la Guida per lo scripting per avere aiuto con lo scripting? + <usetemplate ignoretext="Lancia il browser per vedere la Guida per lo scripting" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchLSLWiki"> - Vuoi visitare il Portale LSL per avere aiuto con lo Scripting? + Vuoi visitare il Portale LSL per avere aiuto con lo scripting? <usetemplate ignoretext="Lancia il browser per vedere il Portale LSL" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="ReturnToOwner"> Confermi di voler restituire gli oggetti selezionati ai loro proprietari? Gli oggetti trasferibili ceduti al gruppo, verranno restituiti ai proprietari precedenti. *ATTENZIONE* Gli oggetti ceduti non trasferibili verranno cancellati! - <usetemplate ignoretext="Conferma la restituzione degli oggetti ai loro proprietari" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Conferma prima di restituire gli oggetti ai relativi proprietari" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="GroupLeaveConfirmMember"> Sei attualmente un membro del gruppo [GROUP]. @@ -1285,18 +1301,18 @@ Vuoi lasciare il gruppo? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmKick"> - Vuoi VERAMENTE espellere tutti gli utenti dalla griglia? - <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli tutti gli utenti"/> + Vuoi veramente espellere tutti i residenti dalla griglia? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli tutti i residenti"/> </notification> <notification name="MuteLinden"> - Mi dispiace, non puoi bloccare un Linden. + Spiacenti, non puoi bloccare un Linden. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotStartAuctionAlreadyForSale"> Non è possibile mettere in vendita all'asta un terreno che è già impostato per la vendita. Disabilita la vendita del terreno, se sei certo di voler avviare una vendita all'asta. </notification> - <notification label="E' fallito Il Blocco dell'Oggetto" name="MuteByNameFailed"> - Hai già bloccato questo nome. + <notification label="Il blocco dell'oggetto in base al nome non è riuscito," name="MuteByNameFailed"> + hai già bloccato questo nome. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="RemoveItemWarn"> @@ -1313,18 +1329,21 @@ Vuoi cancellare quell'elemento? <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="BusyModeSet"> - E' stata impostata la modalità Non Disponibile. -La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Disponibile. Tutte le offerte di teleport verranno declinate. Tutte le offerte di Inventory andranno nel Cestino. - <usetemplate ignoretext="Cambio il mio stato in Non Disponibile" name="okignore" yestext="OK"/> + È stata impostata la modalità Non disponibile. +La chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non disponibile. Tutte le offerte di teleport verranno rifiutate. Tutte le offerte di Inventario andranno nel Cestino. + <usetemplate ignoretext="Cambio il mio stato sulla modalità Non disponibile" name="okignore" yestext="OK"/> </notification> <notification name="JoinedTooManyGroupsMember"> - Hai raggiunto il limite massimo di gruppi. Devi lasciare un gruppo prima di poterti unire a questo, oppure puoi declinare questa offerta. -[NAME] ti ha invitato ad unirti al gruppo come membro. -[INVITE] + Hai raggiunto il numero massimo di gruppi. Per favore abbandona almeno un gruppo prima di aderire a questo, oppure declina l'offerta. +[NAME] ti invita ad aderire ad un gruppo. <usetemplate name="okcancelbuttons" notext="Declino" yestext="Unisciti"/> </notification> + <notification name="JoinedTooManyGroups"> + Hai raggiunto il numero massimo di gruppi. Per favore abbandona almeno un gruppo prima di aderire o crearne uno nuovo. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="KickUser"> - Espelli questo utente con quale messaggio? + Espelli questo residente con quale messaggio? <form name="form"> <input name="message"> Un amministratore ti ha disconnesso. @@ -1344,7 +1363,7 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di </form> </notification> <notification name="FreezeUser"> - Immobilizza questo utente con quale messaggio? + Congela questo residente con quale messaggio? <form name="form"> <input name="message"> Sei stato immobilizzato. Non puoi muoverti o usare la chat. Un amministratore ti contatterà con un messaggio (IM). @@ -1354,7 +1373,7 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di </form> </notification> <notification name="UnFreezeUser"> - Smobilizza questo utente con quale messaggio? + Scongela questo residente con quale messaggio? <form name="form"> <input name="message"> Non sei più immobilizzato. @@ -1374,7 +1393,7 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di </form> </notification> <notification name="OfferTeleportFromGod"> - Vuoi trasportare divinamente l'utente nel posto dove sei? + Chiedere, in qualità di Admin, al residente di raggiungerti? <form name="form"> <input name="message"> Raggiungimi in [REGION] @@ -1384,16 +1403,16 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di </form> </notification> <notification name="TeleportFromLandmark"> - Confermi di volerti teleportare? - <usetemplate ignoretext="Conferma il teleport verso un Landmark" name="okcancelignore" notext="Annulla" yestext="Teleportati"/> + Sei sicuro di volere il teleport a <nolink>[LOCATION]</nolink>? + <usetemplate ignoretext="Conferma il teleport verso un punto di riferimento" name="okcancelignore" notext="Annulla" yestext="Teleportati"/> </notification> <notification name="TeleportToPick"> Teleport a [PICK]? - <usetemplate ignoretext="Conferma il teleport verso l'ubicazione nei Posti Consigliati" name="okcancelignore" notext="Annulla" yestext="Teleport"/> + <usetemplate ignoretext="Conferma che voglio il teleport verso l'ubicazione nei Luoghi preferiti" name="okcancelignore" notext="Annulla" yestext="Teleport"/> </notification> <notification name="TeleportToClassified"> Teleport a [CLASSIFIED]? - <usetemplate ignoretext="Confermo il teleport verso questa ubicazione negli Annunci" name="okcancelignore" notext="Cancella" yestext="Teleport"/> + <usetemplate ignoretext="Conferma il teleport verso questa posizione negli annunci" name="okcancelignore" notext="Annulla" yestext="Teleport"/> </notification> <notification label="Manda un messaggio a tutti nella tua proprietà " name="MessageEstate"> Scrivi un annuncio breve che verrà mandato a tutti quelli che sono in questo momento nella tua proprietà . @@ -1404,11 +1423,11 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di </form> </notification> <notification label="Cambia la tipologia della proprietà Linden" name="ChangeLindenEstate"> - Stai per cambiare la tipologia della proprietà Linden (mainland, griglia minorenni, orientamento, ecc.). + Stai per apportare modifiche ad una proprietà che appartiene a Linden (continente, teen grid, orientamento e così via). -Questo è ESTREMAMENTE PERICOLOSO perchè può cambiare radicalmente l'esperienza degli utenti. Sulla mainland cambierà migliaia di regioni e produrrà seri problemi ai vari server. +Questa è un'operazione da effettuare con molta cautela, in quanto può incidere profondamente sulla vita dei residenti in Second Life. Sul continente, l'azione modificherà migliaia di regioni e creerà un grosso carico sul server. -Confermi? +Vuoi procedere? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification label="Cambia la tipologia Linden di accesso alla proprietà " name="ChangeLindenAccess"> @@ -1471,19 +1490,19 @@ Vuoi andare alla Knowledge Base per ulteriori informazioni sulle categorie di ac <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/it </url> - <usetemplate ignoretext="Non posso entrare in questa Regione, a causa delle restrizioni sulla Categoria di Accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> + <usetemplate ignoretext="Non posso entrare in questa regione a causa delle restrizioni della categoria di accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> </notification> <notification name="RegionEntryAccessBlocked_Notify"> Non sei ammesso in questa regione a causa della tua categoria d'accesso. </notification> <notification name="RegionEntryAccessBlocked_Change"> - Non ti è consentito entrare in quella Regione a causa della tua Categoria di Accesso impostata nelle Preferenze. + Non ti è consentito entrare in quella regione a causa della tua categoria di accesso impostata nelle preferenze. -Puoi cliccare su 'Cambia Preferenze' per alzare la tua preferenza di Categoria di Accesso e quindi riuscire ad entrare. Sarai in grado di ricercare e di accedere da adesso in poi contenuto [REGIONMATURITY]. Se più tardi volessi cambiare di nuovo le tue impostazioni, vai su Me > Preferenze > Generali. +Puoi cliccare su Cambia preferenze per modificare la categoria di accesso e quindi riuscire ad entrare. Da adesso potrai accedere ai contenuti [REGIONMATURITY] ed effettuare ricerche in questa categoria. Se in seguito tu volessi cambiare di nuovo le tue impostazioni, apri la finestra di dialogo da Io > Preferenze > Generale. <form name="form"> - <button name="OK" text="Cambia Preferenza"/> + <button name="OK" text="Cambia preferenza"/> <button default="true" name="Cancel" text="Chiudi"/> - <ignore name="ignore" text="Le mie preferenze attivate nel Rating (Classificazione) prevengono il mio ingresso in una Regione"/> + <ignore name="ignore" text="La categoria di accesso impostata mi impedisce di entrare in una regione"/> </form> </notification> <notification name="LandClaimAccessBlocked"> @@ -1499,16 +1518,16 @@ Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di acc <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/it </url> - <usetemplate ignoretext="Non posso richiedere questo Terreno, a causa delle restrizioni sulla Categoria di Accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> + <usetemplate ignoretext="Non posso richiedere questo terreno a causa delle restrizioni della categoria di accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> </notification> <notification name="LandClaimAccessBlocked_Notify"> Non puoi prendere possesso di questa terra a causa della tua categoria di accesso. </notification> <notification name="LandClaimAccessBlocked_Change"> - Non puoi richiedere questo Terreno a causa delle tue preferenze di Categoria di Accesso. + Non puoi richiedere questo terreno a causa della tua categoria di accesso. -Puoi cliccare su 'Cambia Preferenze' per alzare la tua preferenza di Categoria di Accesso e quindi riuscire ad entrare. Sarai in grado di ricercare e di accedere da adesso in poi contenuto [REGIONMATURITY]. Se più tardi volessi cambiare di nuovo le tue impostazioni, vai su Me > Preferenze > Generali. - <usetemplate ignoretext="Le mie preferenze di Categoria di Accesso mi impediscono di chiedere questo Terreno" name="okcancelignore" notext="Chiudi" yestext="Cambia le preferenze"/> +Puoi cliccare su Cambia preferenze per modificare la categoria di accesso e quindi riuscire ad entrare. Da adesso potrai accedere ai contenuti [REGIONMATURITY] ed effettuare ricerche in questa categoria. Se in seguito tu volessi cambiare di nuovo le tue impostazioni, apri la finestra di dialogo da Io > Preferenze > Generale. + <usetemplate ignoretext="Le mie preferenze di categoria di accesso mi impediscono di richiedere terreno" name="okcancelignore" notext="Chiudi" yestext="Cambia le preferenze"/> </notification> <notification name="LandBuyAccessBlocked"> Non puoi acquistare questo terreno a causa della tua categoria di accesso. Questo può essere dovuto ad una mancanza di informazioni valide che confermino la tua età . @@ -1523,16 +1542,16 @@ Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di acc <url name="url"> http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview/it </url> - <usetemplate ignoretext="Non posso comprare questo Terreno , a causa delle restrizioni della Categoria di Accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> + <usetemplate ignoretext="Non posso acquistare questo terreno a causa delle restrizioni della categoria di accesso" name="okcancelignore" notext="Chiudi" yestext="Vai alla Knowledge Base"/> </notification> <notification name="LandBuyAccessBlocked_Notify"> Non puoi acquistare questa land a causa della tua categoria di accesso. </notification> <notification name="LandBuyAccessBlocked_Change"> - Non puoi comprare questo Terreno a causa delle tue preferenze di Categoria di Accesso. + Non puoi acquistare questo terreno a causa della tua categoria di accesso. -Puoi cliccare su 'Cambia Preferenze' per alzare la tua preferenza di Categoria di Accesso e quindi riuscire ad entrare. Sarai in grado di ricercare e di accedere da adesso in poi contenuto [REGIONMATURITY]. Se più tardi volessi cambiare di nuovo le tue impostazioni, vai su Me > Preferenze > Generali. - <usetemplate ignoretext="Le mie Preferenze di Accesso mi impediscono l'acquisto di questo Terreno" name="okcancelignore" notext="Chiudi" yestext="Cambia le preferenze"/> +Puoi cliccare su Cambia preferenze per modificare la categoria di accesso e quindi riuscire ad entrare. Da adesso potrai accedere ai contenuti [REGIONMATURITY] ed effettuare ricerche in questa categoria. Se in seguito tu volessi cambiare di nuovo le tue impostazioni, apri la finestra di dialogo da Io > Preferenze > Generale. + <usetemplate ignoretext="Le mie Preferenze di accesso mi impediscono di acquistare terreno" name="okcancelignore" notext="Chiudi" yestext="Cambia le preferenze"/> </notification> <notification name="TooManyPrimsSelected"> Hai selezionato troppi prim. Seleziona non più di [MAX_PRIM_COUNT] prim e riprova @@ -1587,11 +1606,13 @@ Pubblica questo annuncio adesso per [AMOUNT]L$? </form> </notification> <notification label="Cambiato il contenuto Mature" name="RegionMaturityChange"> - La classificazione del contenuto Mature di questa regione è stata aggiornata. -Può essere necessario un po' di tempo prima che questo cambiamento sia visibile sulle mappe. + La classificazione di questa regione è stata aggiornata. +Un periodo di tempo è necessario prima che la modifica venga integrata nella mappa. + +Per accedere a regioni per adulti, i residenti devono avere un Account verificato, mediante verifica dell'età oppure mediante verifica della modalità di pagamento. </notification> <notification label="Versione voice non compatibile" name="VoiceVersionMismatch"> - Questa versione di [APP_NAME] non è compatibile con le capacità di Chat Voice in questa regione. Per poter far funzionare correttamente la Chat Voice devi aggiornare [APP_NAME]. + Questa versione di [APP_NAME] non è compatibile con la funzionalità di chat vocale in questa regione. Affinché la chat vocale funzioni correttamente, dovrai aggiornare [APP_NAME]. </notification> <notification label="Impossibile comprare oggetti" name="BuyObjectOneOwner"> Impossibile comprare oggetti da proprietari diversi nello stesso momento. @@ -1680,36 +1701,36 @@ Hai aggiornato l'ubicazione di questo preferito ma gli altri dettagli conse Questi elementi verranno trasferiti nel tuo inventario, ma non copiati. Trasferisci gli elementi nell'inventario? - <usetemplate ignoretext="Avvertimi quando rimuovo gli elementi 'no-copy' da un oggetto" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Avvertimi quando tento di rimuovore elementi per i quali non è consentita la copia da un oggetto" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="MoveInventoryFromScriptedObject"> Hai selezionato elementi dell'inventario non copiabili. Questi elementi verranno trasferiti nel tuo inventario, non verranno copiati. Dato che questo oggetto è scriptato, il trasferimento di questi elementi nel tuo inventario potrebbe causare un malfunzionamento degli script. Trasferisci gli elementi nell'inventario? - <usetemplate ignoretext="Avvertimi se la rimozione di elementi 'no-copy' possono danneggiare un oggetto scriptato" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Avvertimi se tento di rimuovore di elementi per i quali non è consentita la copia e che potrebbero danneggiare un oggetto scriptato" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="ClickActionNotPayable"> - Attenzione: E' stata impostata l'azione 'Paga Oggetto', ma funzionerà soltanto se inserisci uno script con un evento money(). + Attenzione: l'azione Paga oggetto è stata impostata, ma funzionerà soltanto se inserisci uno script con un evento money(). <form name="form"> - <ignore name="ignore" text="Ho impostato l'azione 'Paga Oggetto' costruendo un oggetto senza uno script money()"/> + <ignore name="ignore" text="Ho impostato l'azione Paga oggetto costruendo un oggetto senza uno script money()"/> </form> </notification> <notification name="OpenObjectCannotCopy"> Non ci sono elementi in questo oggetto che tu possa copiare. </notification> <notification name="WebLaunchAccountHistory"> - Vai su [http://secondlife.com/account/ Dashboard] per vedere la storia delle tue Transazioni? - <usetemplate ignoretext="Lancia il browser per vedere la storia del mio account" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + Vai al [http://secondlife.com/account/ Dashboard] per vedere la cronologia del tuo account? + <usetemplate ignoretext="Lancia il browser per vedere la cronologia del mio account" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="ConfirmQuit"> Confermi di voler uscire? - <usetemplate ignoretext="Conferma Uscita" name="okcancelignore" notext="Non Uscire" yestext="Esci"/> + <usetemplate ignoretext="Conferma prima di uscire" name="okcancelignore" notext="Non uscire" yestext="Esci"/> </notification> <notification name="HelpReportAbuseEmailLL"> - Usa questo strumento per segnalare violazioni del [http://secondlife.com/corporate/tos.php Terms of Service] e [http://secondlife.com/corporate/cs.php Community Standards]. + Usa questo strumento per segnalare violazioni a [http://secondlife.com/corporate/tos.php Terms of Service] e [http://secondlife.com/corporate/cs.php Community Standards]. -Tutti gli abusi segnalati verranno investigati e risolti. Puoi verificare lo stato delle segnalazione leggendo [http://secondlife.com/support/incidentreport.php Incident Report]. +Ogni abuso segnalato verrà esaminato e risolto. </notification> <notification name="HelpReportAbuseSelectCategory"> Scegli una categoria per questa segnalazione di abuso. @@ -1733,15 +1754,15 @@ Devi essere il più specifico possibile, includendo i nomi e i dettagli dell&apo Inserendo una descrizione accurata ci aiuti a gestire ed elaborare le segnalazioni di abuso. </notification> <notification name="HelpReportAbuseContainsCopyright"> - Gentile Residente, + Gentile residente, -Sembra che tu stia segnalando una violazione di proprietà intellettuale. Cerca di essere sicuro che la tua segnalazione stia riportando correttamente: +Ci risulta che tu stia segnalando una violazione di proprietà intellettuale. Per segnalare correttamente la violazione: -(1) Il processo di Abuso. Puoi inviare una segnalazione di abuso se ritieni che un residente stia sfruttando il sistema di permessi di [SECOND_LIFE], per esempio usando CopyBot o simili strumenti di copia, per rubare i diritti della proprietà intellettuale. L'Ufficio Abusi investigherà e deciderà adeguate azioni disciplinari per comportamenti che violano i [http://secondlife.com/corporate/tos.php Termini di Servizio] di [SECOND_LIFE] oppure i [http://secondlife.com/corporate/cs.php Standard di Comunità ]. Si tenga però presente che l'ufficio Abusi non gestisce e non risponde alle richieste di rimozione di contentuo da [SECOND_LIFE]. +(1) Definizione di abuso. Puoi inviare una segnalazione di abuso se ritieni che un residente stia sfruttando il sistema di permessi di [SECOND_LIFE], per esempio usando CopyBot o simili strumenti di copia, per rubare i diritti di proprietà intellettuale. L'Ufficio abusi investigherà e deciderà adeguate azioni disciplinari per comportamenti che violano i [http://secondlife.com/corporate/tos.php Termini del servizio] di [SECOND_LIFE] oppure gli [http://secondlife.com/corporate/cs.php Standard della comunità ]. Tieni comunque presente che l'Ufficio abusi non gestisce e non risponde alle richieste di rimozione di contenuti da [SECOND_LIFE]. -(2) Il processo di rimozione DMCA o processo di rimozione dei contenuti. Per richiedere la rimozione di contenuto da [SECOND_LIFE], DEVI compilare una denuncia valid di furto come definito nella nostra [http://secondlife.com/corporate/dmca.php Policy DMCA]. +(2) DMCA o rimozione di contenuti. Per richiedere la rimozione di contenuti da [SECOND_LIFE], devi compilare una denuncia valida di violazione come definito nelle nostra [http://secondlife.com/corporate/dmca.php Regole DMCA] (leggi sul copyright). -Se desideri egualmente continuare con il processo di Abuso, chiudi questa finestra e completa la compilazione della segnalazione. Puoi specificare la categoria specifica 'CopyBot o Sfruttamento Permessi'. +Per continuare con il procedimento di abuso, chiudi questa finestra e completa la compilazione della segnalazione. È possibile che dovrai specificare la categoria CopyBot o Sfruttamento dei diritti. Grazie, @@ -1755,7 +1776,7 @@ Linden Lab C'è già un oggetto indossato in questo punto del corpo. Vuoi sostituirlo con l'oggetto selezionato? <form name="form"> - <ignore name="ignore" save_option="true" text="Sostituisci un preesistente attachment con l'elemento selezionato"/> + <ignore name="ignore" save_option="true" text="Sostituisci un pezzo collegato con l'elemento selezionato"/> <button ignore="Replace Automatically" name="Yes" text="OK"/> <button ignore="Never Replace" name="No" text="Annulla"/> </form> @@ -1765,21 +1786,21 @@ Vuoi sostituirlo con l'oggetto selezionato? Desideri abbandonare la modalità 'Occupato' prima di completare questa transazione? <form name="form"> - <ignore name="ignore" save_option="true" text="Sto per pagare una persona o un oggetto mentro sono Non Disponibile"/> + <ignore name="ignore" save_option="true" text="Sto per pagare una persona o un oggetto mentro sono in modalià Non disponibile"/> <button ignore="Always leave Busy Mode" name="Yes" text="OK"/> <button ignore="Never leave Busy Mode" name="No" text="Abbandona"/> </form> </notification> <notification name="ConfirmDeleteProtectedCategory"> - La cartella '[FOLDERNAME]' è una cartella di sistema. La cancellazione delle cartelle di sistema può creare instabilità . Sei sicuro di volerla cancellare? - <usetemplate ignoretext="Conferma prima di cancellare una cartella di sistema" name="okcancelignore" notext="Cancella" yestext="OK"/> + La cartella '[FOLDERNAME]' è una cartella di sistema. L'eliminazione di cartelle di sistema può creare instabilità . Sei sicuro di volerla eliminare? + <usetemplate ignoretext="Chiedi conferma prima di eliminare una cartella di sistema" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmEmptyTrash"> - Vuoi veramente cancellare permanentemente il contenuto del tuo Cestino? - <usetemplate ignoretext="Conferma lo svuotamento del contenuto del Cestino" name="okcancelignore" notext="Annulla" yestext="OK"/> + Vuoi veramente eliminare in modo permanente il contenuto del tuo Cestino? + <usetemplate ignoretext="Conferma prima di svuotare la cartella del Cestino inventario" name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmClearBrowserCache"> - Vuoi veramente cancellare la storia dei viaggi, web e delle ricerche fatte? + Vuoi veramente eliminare la cronologia viaggi, web e ricerche fatte? <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmClearCookies"> @@ -1791,14 +1812,14 @@ Desideri abbandonare la modalità 'Occupato' prima di completare quest <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> </notification> <notification name="ConfirmEmptyLostAndFound"> - Vuoi veramente cancellare permanentemente il contenuto dei tuoi Persi e Ritrovati? - <usetemplate ignoretext="Conferma lo svuotamento della cartella Persi e Ritrovati" name="okcancelignore" notext="No" yestext="Si"/> + Vuoi veramente eliminare in modo definitivo il contenuto dei tuoi Oggetti smarriti? + <usetemplate ignoretext="Conferma prima di svuotare della cartella Oggetti smarriti" name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="CopySLURL"> Lo SLurl seguente è stato copiato negli Appunti: [SLURL] -Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubicazione, o provala incollandola nella barra indirizzo di un browser web. +Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubicazione, o provala incollandola nella barra degli indirizzi di un browser web. <form name="form"> <ignore name="ignore" text="Lo SLurl è stato copiato negli Appunti"/> </form> @@ -1866,18 +1887,18 @@ Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubica <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="Cannot_Purchase_an_Attachment"> - Non puoi comprare un oggetto mentre è indossato. + Non puoi comprare un oggetto mentre è unito. </notification> <notification label="Informazioni sulle richieste per il permesso di addebito" name="DebitPermissionDetails"> Accettare questa richiesta da allo script il permesso continuativo di prendere Linden dollar (L$) dal tuo account. Per revocare questo permesso, il proprietario dell'oggetto deve cancellare l'oggetto oppure reimpostare gli script nell'oggetto. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="AutoWearNewClothing"> - Vuoi indossare automaticamente gli oggetti che stai per creare? - <usetemplate ignoretext="Indossa gli abiti che creo mentre modifico il Mio Aspetto" name="okcancelignore" notext="No" yestext="Si"/> + Vuoi indossare automaticamente gli indumenti che stai per creare? + <usetemplate ignoretext="Indossare gli abiti che creo mentre modifico il mio aspetto" name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="NotAgeVerified"> - Devi avere l'Età Verificata per visitare quest'area. Vuoi andare sul sito [SECOND_LIFE] per verificare la tua età ? + Per entrare in questa zona, devi avere eseguito la verifica dell'età . Vuoi andare sul sito di [SECOND_LIFE] per verificare la tua età ? [_URL] <url name="url" option="0"> @@ -1886,13 +1907,13 @@ Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubica <usetemplate ignoretext="Non ho verificato la mia età " name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="Cannot enter parcel: no payment info on file"> - Devi avere le Informazioni di Pagamento registrate per poter visitare quest'area. Vuoi andare sul sito di [SECOND_LIFE] ed impostarle? + Per poter visitare questa zona devi avere devi aver fornito informazioni di pagamento a Linden Lab. Vuoi andare sul sito di [SECOND_LIFE] ed impostarle? [_URL] <url name="url" option="0"> https://secondlife.com/account/index.php?lang=it </url> - <usetemplate ignoretext="Manca la registrazione delle Informazioni di Pagamento" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Manca la registrazione delle informazioni di pagamento" name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="MissingString"> La stringa [STRING_NAME] non è presente in strings.xml @@ -1922,7 +1943,7 @@ Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubica [FIRST] [LAST] è Offline </notification> <notification name="AddSelfFriend"> - Anche se sei molto piacevole, non puoi aggiungerti come amicizia. + Anche se sei molto simpatico, non puoi aggiungere te stesso all'elenco degli amici. </notification> <notification name="UploadingAuctionSnapshot"> Sto importando le fotografie per l'uso inworld e per il web... @@ -1941,11 +1962,10 @@ Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubica Terrain.raw caricato </notification> <notification name="GestureMissing"> - Manca la Gesture [NAME] dal database. + Manca la gesture [NAME] dal database. </notification> <notification name="UnableToLoadGesture"> Impossibile caricare la gesture [NAME]. -Riprova. </notification> <notification name="LandmarkMissing"> Landmark non trovato nel database. @@ -1954,14 +1974,14 @@ Riprova. Impossibile caricare il Landmark di riferimento. Riprova. </notification> <notification name="CapsKeyOn"> - Hai il Blocco delle Maiuscole attivato. -Questo potrebbe influenzare la tua password. + Hai il blocco delle maiuscole attivato. +Questo potrebbe incidere sulla tua password. </notification> <notification name="NotecardMissing"> Notecard non trovata nel database. </notification> <notification name="NotecardNoPermissions"> - Non hai il permesso di vedere questa notecard. + Non hai il permesso di vedere questo biglietto. </notification> <notification name="RezItemNoPermissions"> Permessi insufficienti per creare un oggetto. @@ -1999,7 +2019,7 @@ Riprova. Riprova. </notification> <notification name="CannotBuyObjectsFromDifferentOwners"> - Puoi comprare oggetti solo da un proprietario per volta. + Puoi acquistare oggetti soltanto da un proprietario per volta. Seleziona solo un oggetto. </notification> <notification name="ObjectNotForSale"> @@ -2012,10 +2032,10 @@ Seleziona solo un oggetto. Esci dalla modalità divina, livello [LEVEL] </notification> <notification name="CopyFailed"> - Non hai i permessi per copiare. + Non hai l'autorizzazione a copiare. </notification> <notification name="InventoryAccepted"> - [NAME] ha ricevuto la tua offerta di Inventory. + [NAME] ha ricevuto la tua offerta di inventario. </notification> <notification name="InventoryDeclined"> [NAME] non ha accettato la tua offerta dall'inventario. @@ -2030,14 +2050,14 @@ Seleziona solo un oggetto. Il tuo biglietto da visita non è stato accettato. </notification> <notification name="TeleportToLandmark"> - Puoi teleportarti alle ubicazioni come '[NAME]' aprendo il pannello Luoghi sul lato destro dello schermo, e quindi selezionare la linguetta Landmarks. -Clicca su un landmark per selezionarlo e quindi clicca 'Teleport' sul fondo del pannello. -(Puoi anche fare doppio-click sul landmark oppure cliccarlo con il tasto destro e scegliere 'Teleport'.) + Puoi teleportarti alle ubicazioni come '[NAME]' aprendo il pannello Luoghi sul lato destro dello schermo, quindi selezionare la scheda Punti di riferimento. +Clicca su un punto di riferimento per selezionarlo, quindi clicca su Teleport sul lato inferiore del pannello. +(Puoi anche fare doppio clic sul punto di riferimento oppure cliccare su di esso con il tasto destro del mouse e scegliere Teleport.) </notification> <notification name="TeleportToPerson"> - Puoi contattare residenti come '[NAME]' aprendo il pannello Persone sul lato destro dello schermo. -Seleziona il residente dalla lista, e clica 'IM' in fondo al pannello. -(Puoi anche fare doppio click sul loro nome nella lista, oppure cliccare con il tasto destro e scegliere 'IM'). + Puoi contattare il residente '[NAME]' aprendo il pannello Persone nel lato destro del tuo schermo. +Seleziona il residente dall'elenco, clicca su 'IM' in basso nel pannello. +(Puoi anche fare doppio clic sul nome nell'elenco oppure fare clic con il pulsante destro del mouse e selezionare 'IM'). </notification> <notification name="CantSelectLandFromMultipleRegions"> Non è possibile selezionare il terreno attraverso i confini del server. @@ -2087,19 +2107,19 @@ Prova a selezionare una parte di terreno più piccola. [NAMES] </notification> <notification name="NoQuickTime"> - Il Software QuickTime di Apple non sembra installato sul tuo computer. -Se vuoi vedere contenuto multimediale sugli appezzamenti che lo supportano devi andare su [http://www.apple.com/quicktime QuickTime site] e installare il Player QuickTime. + Il software QuickTime di Apple sembra non essere installato sul tuo computer. +Se vuoi vedere contenuto multimediale in streaming sui lotti che lo supportano, vai alla pagina [http://www.apple.com/quicktime QuickTime] e installa il Player QuickTime. </notification> <notification name="NoPlugin"> - Nessun Media Plugin è stato trovato per gestire "[MIME_TYPE]" il tipo mime. Il Media di questo tipo non è disponibile. + Non è stato trovato alcun plugin multimediale per gestire il tipo mime [MIME_TYPE]. Il media di questo tipo non è disponibile. </notification> <notification name="MediaPluginFailed"> - Questo Media Plugin non funziona: + Questo plugin multimediale non funziona: [PLUGIN] -Per favore re-installa il plugin o contatta il venditore se continui ad avere questi problemi. +Reinstalla il plugin o contatta il venditore se continui ad avere questi problemi. <form name="form"> - <ignore name="ignore" text="Mancato funzionamento del Media Plugin"/> + <ignore name="ignore" text="Mancato funzionamento del plugin multimediale"/> </form> </notification> <notification name="OwnedObjectsReturned"> @@ -2109,7 +2129,7 @@ Per favore re-installa il plugin o contatta il venditore se continui ad avere qu Gli oggetti selezionati sul terreno che è di proprietà di [FIRST] [LAST] sono stati restituiti nel suo inventario. </notification> <notification name="OtherObjectsReturned2"> - Gli oggetti selezionati sul terreno di proprietà del residente '[NAME]' sono stati restituiti al loro proprietario. + Sono stati restituiti al proprietario gli oggetti selezionati sul lotto nella terra di proprietà del residente '[NAME]'. </notification> <notification name="GroupObjectsReturned"> Gli oggetti selezionati sul terreno e condivisi con il gruppo [GROUPNAME] sono stati restituiti nell'inventario dei propietari. @@ -2121,24 +2141,24 @@ Gli oggetti non trasferibili che erano stati ceduti al gruppo sono stati cancell </notification> <notification name="ServerObjectMessage"> Messaggio da [NAME]: -[MSG] +<nolink>[MSG]</nolink> </notification> <notification name="NotSafe"> - Questo terreno è abilitato ai Danni da combattimento. -Qui potresti ricevere ferite. Se dovessi morire verrai teleportato a casa tua. + Su questo terreno sono abilitati i danni. +Qui potresti essere ferito. Se dovessi morire verrai teleportato a casa tua. </notification> <notification name="NoFly"> - Quest'are ha il volo disabilitato. + In questa zona è proibito il volo. Qui non puoi volare. </notification> <notification name="PushRestricted"> - Quest'area non consente le spinte. Non puoi spingere gli altri a meno che tu non sia il proprietario del terreno. + Questa zona non consente le spinte. Non puoi spingere gli altri a meno che tu non sia il proprietario del terreno. </notification> <notification name="NoVoice"> - Quest'area ha la chat voice disabilitata. Non puoi sentire nessuno parlare. + Questa zona ha la chat vocale disattivata. Non puoi sentire nessuno parlare. </notification> <notification name="NoBuild"> - Quest'area ha il building disabilitato. Qui non puoi costruire o rezzare oggetti. + In questa zona è proibita la costruzione. Qui non puoi costruire né rezzare oggetti. </notification> <notification name="ScriptsStopped"> Un amministratore ha temporaneamente disabilitato gli script in questa regione. @@ -2149,10 +2169,10 @@ Qui non puoi volare. <notification name="NoOutsideScripts"> Questo terreno non consente script esterni. -Qui funzinano solo gli script del proprietario del terreno. +Qui funzionano soltanto gli script del proprietario del terreno. </notification> <notification name="ClaimPublicLand"> - Puoi solo chiedere terreni pubblici nella regione in cui sei posizionato. + Puoi solo richiedere terreni pubblici nella regione in cui sei posizionato. </notification> <notification name="RegionTPAccessBlocked"> Non puoi entrare in quella regione a causa della tua categoria di accesso. Può essere necessario validare l'età e/o installare l'ultima versione del programma. @@ -2230,7 +2250,7 @@ Riprova tra qualche istante. Non è stato trovato nessun territorio valido. </notification> <notification name="ObjectGiveItem"> - L'oggetto [OBJECTFROMNAME] posseduto da [NAME_SLURL] ti ha dato [OBJECTTYPE]: + Un oggetto denominato [OBJECTFROMNAME] di proprietà di [NAME_SLURL] ti ha dato questo [OBJECTTYPE]: [ITEM_SLURL] <form name="form"> <button name="Keep" text="Prendi"/> @@ -2239,7 +2259,7 @@ Riprova tra qualche istante. </form> </notification> <notification name="ObjectGiveItemUnknownUser"> - Un oggetto di nome [OBJECTFROMNAME] posseduto da un residente sconosciuto ti ha dato [OBJECTTYPE]: + Un oggetto chiamato [OBJECTFROMNAME] di proprietà di (residente sconosciuto) ti ha dato questo [OBJECTTYPE]: [ITEM_SLURL] <form name="form"> <button name="Keep" text="Prendi"/> @@ -2248,12 +2268,12 @@ Riprova tra qualche istante. </form> </notification> <notification name="UserGiveItem"> - [NAME_SLURL] ti ha dato [OBJECTTYPE]: + [NAME_SLURL] ti ha dato questo [OBJECTTYPE]: [ITEM_SLURL] <form name="form"> - <button name="Keep" text="Prendi"/> <button name="Show" text="Mostra"/> <button name="Discard" text="Rifiuta"/> + <button name="Mute" text="Blocca"/> </form> </notification> <notification name="GodMessage"> @@ -2278,6 +2298,9 @@ Riprova tra qualche istante. <button name="Cancel" text="Cancella"/> </form> </notification> + <notification name="TeleportOfferSent"> + Offerta di Teleport inviata a [TO_NAME] + </notification> <notification name="GotoURL"> [MESSAGE] [URL] @@ -2315,22 +2338,27 @@ Riprova tra qualche istante. <notification name="FriendshipDeclined"> [NAME] ha rifiutato la tua offerta di amicizia. </notification> + <notification name="FriendshipAcceptedByMe"> + Offerta di amicizia accettata. + </notification> + <notification name="FriendshipDeclinedByMe"> + Offerta di amicizia rifiutata. + </notification> <notification name="OfferCallingCard"> - [FIRST] [LAST] ti ha offerto il suo biglietto da visita. -Questo aggiungerà un segnalibro nel tuo inventario. -in modo da poter rapidamente inviargli un IM al residente. + [FIRST] [LAST] ti offre il suo biglietto da visita. +Questo sarà aggiunto nel tuo inventario come segnalibro per consentirti di inviare rapidamente messaggi IM a questo residente. <form name="form"> <button name="Accept" text="Accetta"/> <button name="Decline" text="Rifiuta"/> </form> </notification> <notification name="RegionRestartMinutes"> - Questa regione farà il restart fra [MINUTES] minuti. -Se rimani qui verrai disconnesso. + Questa regione verrà riavviata fra [MINUTES] minuti. +Se rimani qui verrai scollegato da Second Life. </notification> <notification name="RegionRestartSeconds"> - Questa regione farà il restart fra [SECONDS] secondi. -Se rimani qui verrai disconnesso. + Questa regione verrà riavviata fra [SECONDS] secondi. +Se rimani qui verrai scollegato da Second Life. </notification> <notification name="LoadWebPage"> Caricare pagina web [URL]? @@ -2367,9 +2395,9 @@ Va bene? Un oggetto di nome '[OBJECTNAME]', posseduto da '[NAME]' vorrebbe: [QUESTIONS] -Se non ti fidi di questo oggetto e del suo creatore dovresti declinare la richiesta. +Se non ti fidi di questo oggetto e del suo ideatore, dovresti rifiutare la richiesta. -Consenti questa richiesta? +Concedi questa richiesta? <form name="form"> <button name="Grant" text="Accetta"/> <button name="Deny" text="Nega"/> @@ -2390,87 +2418,30 @@ Consenti questa richiesta? <button name="Ignore" text="Ignora"/> </form> </notification> - <notification name="ScriptToast"> - [FIRST] [LAST]'s '[TITLE]' richiede il contributo dell'utente. - <form name="form"> - <button name="Open" text="Apri il Dialog"/> - <button name="Ignore" text="Ignora"/> - <button name="Block" text="Blocca"/> - </form> - </notification> - <notification name="FirstBalanceIncrease"> - Hai appena ricevuto [AMOUNT]L$. -Il tuo saldo in L$ è mostrato in alto a destra. - </notification> - <notification name="FirstBalanceDecrease"> - Hai appena pagato [AMOUNT]L$. -Il tuo saldo in L$ è mostrato in alto a destra. - </notification> <notification name="BuyLindenDollarSuccess"> - Grazie per il pagamento! + Grazie per aver inviato il pagamento. -Il tuo saldo in L$ sarà aggiornato al termine dell'elaborazione. Se l'elaborazione dovesse impiegare più di 20 minuti, la transazione verrà annullata. In quel caso l'ammontare dell'acquisto verrà rimborsato nel tuo saldo in US$. +Il tuo saldo in L$ sarà aggiornato al termine dell'elaborazione. Se l'elaborazione dovesse impiegare più di 20 minuti, la transazione verrà annullata. In quel caso l'ammontare dell'acquisto verrà accreditato sul tuo saldo in US$. -Lo stato del tuo pagamento potrà essere controllato nella pagina della Storia delle tue Transazioni su [http://secondlife.com/account/ Pannello di Controllo] - </notification> - <notification name="FirstSit"> - Sei seduto. -Usa le frecce (oppure AWSD) per guardarti intorno. -Clicca il bottone 'Alzati' per alzarti. - </notification> - <notification name="FirstMap"> - Clicca e trascina la mappa per guardare attorno. -Fai doppio click per teleportarti. -Usa i controlli sulla destra per trovare cose e visualizzare sfondi differenti. - </notification> - <notification name="FirstBuild"> - Hai aperto gli Strumenti di Build. Ogni oggetto attorno a te è stato costruito con questi strumenti. - </notification> - <notification name="FirstTeleport"> - Puoi teleportarti solo in certe aree di questa regione. La freccia indica la tua destinazione. Clicca sulla freccia per farla sparire. +Potrai controllare lo stato del pagamento nella pagina della cronologia delle transazioni nel tuo [http://secondlife.com/account/ Dashboard] </notification> <notification name="FirstOverrideKeys"> I tuoi movimenti della tastiera vengono ora gestiti da un oggetto. Prova i tasti freccia o AWSD per vedere quello che fanno. Alcuni oggetti (come pistole) richiedono di andare in mouselook per il loro utilizzo. Premi 'M' per farlo. - </notification> - <notification name="FirstAppearance"> - Stai modificando il tuo aspetto. -Usa le frecce per guardarti attorno. -Quando hai finito premi 'Salva Tutto'. - </notification> - <notification name="FirstInventory"> - Questo è il tuo Inventory, che contiene gli elementi che possiedi. - -* Per indossare qualcosa, trascinala su di te. -* Per rezzare qualcosa inworld, trascinala sul suolo. -* Per leggere una notecard, fai doppio click. </notification> <notification name="FirstSandbox"> - Questa è una Sandbox, serve per aiutare i Residenti ad imparare a costruire. - -Gli oggetti che costruisci qui saranno cancellati dopo che te ne sei andato, perciò non dimenticare di cliccare sulle tue creazioni col tasto destro e scegliere 'Prendi' per trasferirle nel tuo Inventory. - </notification> - <notification name="FirstFlexible"> - Questo oggetto è flessibile. Gli oggetti Flexy devono essere fantasma e non fisici. - </notification> - <notification name="FirstDebugMenus"> - Hai abilitato il menu Avanzato. + Questa è una Sandbox, serve ai residenti per imparare a costruire. -Per abilitarlo/disabilitarlo, - Windows: Ctrl+Alt+D - Mac: ⌥⌘D - </notification> - <notification name="FirstSculptedPrim"> - Stai modificando un prim Sculpted. Gli oggetti Sculpted hanno bisogno di una texture speciale per definire la loro forma. +Gli oggetti che costruisci qui verranno eliminati dopo che te ne sei andato, perciò non dimenticare di cliccare sulle tue creazioni col tasto destro del mouse e scegliere Prendi per trasferirle nel tuo Inventario. </notification> <notification name="MaxListSelectMessage"> È possibile selezionare solo fino a [MAX_SELECT] oggetti da questa lista. </notification> <notification name="VoiceInviteP2P"> - [NAME] ti sta invitando ad una chiamata in Chat Voice. -Clicca Accetta per unirti alla chiamata oppure Declina per declinare l'invito. Clicca Blocca per bloccare questo chiamante. + [NAME] ti sta invitando ad una chiamata in chat vocale. +Clicca su Accetta per unirti alla chiamata oppure su Declina to declinare l'invito. Clicca su Blocca per bloccare questo chiamante. <form name="form"> <button name="Accept" text="Accetta"/> <button name="Decline" text="Rifiuta"/> @@ -2478,17 +2449,17 @@ Clicca Accetta per unirti alla chiamata oppure Declina per declinare l'invi </form> </notification> <notification name="AutoUnmuteByIM"> - Hai appena inviato un IM a [FIRST] [LAST], che è stato automaticamente sbloccato. + [FIRST] [LAST] ha ricevuto un IM ed è stato automaticamente sbloccato. </notification> <notification name="AutoUnmuteByMoney"> - Hai appena inviato del denaro a [FIRST] [LAST], che è stato automaticamente sbloccato. + [FIRST] [LAST] ha ricevuto del denaro e pertanto è stato automaticamente sbloccato. </notification> <notification name="AutoUnmuteByInventory"> - Hai appena offerto un elemento dell'Inventory a [FIRST] [LAST], che è stato automaticamente sbloccato. + A [FIRST] [LAST] è stato offerto un elemento dell'Inventario e pertanto è stato automaticamente sbloccato. </notification> <notification name="VoiceInviteGroup"> - [NAME] si è aggiunto alla chiamata in Chat Voice con il gruppo [GROUP]. -Clicca Accetta per unirti alla chiamata oppure Declina per declinare l'invito. Clicca Blocca per bloccare questo chiamante. + [NAME] si è aggiunto alla chiamata in chat vocale con il gruppo [GROUP]. +Clicca su Accetta per unirti alla chiamata oppure su Declina to declinare l'invito. Clicca su Blocca per bloccare questo chiamante. <form name="form"> <button name="Accept" text="Accetta"/> <button name="Decline" text="Rifiuta"/> @@ -2496,8 +2467,8 @@ Clicca Accetta per unirti alla chiamata oppure Declina per declinare l'in </form> </notification> <notification name="VoiceInviteAdHoc"> - [NAME] si è aggiunto alla chiamata in Chat Voice con una conferenza. -Clicca Accetta per unirti alla chiamata oppure Declina to declinare l'invito. Clicca Blocca per bloccare questo chiamante. + [NAME] si è aggiunto alla chiamata in chat vocale con una conferenza. +Clicca su Accetta per unirti alla chiamata oppure su Declina to declinare l'invito. Clicca su Blocca per bloccare questo chiamante. <form name="form"> <button name="Accept" text="Accetta"/> <button name="Decline" text="Rifiuta"/> @@ -2506,7 +2477,7 @@ Clicca Accetta per unirti alla chiamata oppure Declina to declinare l'invit </notification> <notification name="InviteAdHoc"> [NAME] ti sta invitando ad una conferenza in chat. -Clicca Accetta per unirti alla chat oppure Declina per declinare l'invito. Clicca Blocca per bloccare questo chiamante. +Clicca su Accetta per unirti alla chat oppure su Declina per declinare l'invito. Clicca su Blocca per bloccare questo chiamante. <form name="form"> <button name="Accept" text="Accetta"/> <button name="Decline" text="Rifiuta"/> @@ -2520,25 +2491,25 @@ Clicca Accetta per unirti alla chat oppure Declina per declinare l'invito. Siamo spiacenti. Questa area ha raggiunto la capacità massima per le chiamate voice. Si prega di provare ad usare il voice in un'altra area. </notification> <notification name="VoiceChannelDisconnected"> - Sei stato disconnesso da [VOICE_CHANNEL_NAME]. Verrai ora riconnesso alla Chat Voice Locale. + Sei stato scollegato da [VOICE_CHANNEL_NAME]. Verrai ora ricollegato alla chat vocale nei dintorni. </notification> <notification name="VoiceChannelDisconnectedP2P"> - [VOICE_CHANNEL_NAME] ha terminato la chiamata. Verrai ora riconnesso alla Chat Voice Locale. + [VOICE_CHANNEL_NAME] ha chiuso la chiamata. Verrai ora ricollegato alla chat vocale nei dintorni. </notification> <notification name="P2PCallDeclined"> - [VOICE_CHANNEL_NAME] ha declinato la tua chiamata. Verrai ora riconnesso alla Chat Voice Locale. + [VOICE_CHANNEL_NAME] ha declinato la tua chiamata. Verrai ora ricollegato alla chat vocale nei dintorni. </notification> <notification name="P2PCallNoAnswer"> - [VOICE_CHANNEL_NAME] non è disponibile per la tua chiamata. Verrai ora riconnesso alla Chat Voice Locale. + [VOICE_CHANNEL_NAME] non è disponibile per la tua chiamata. Verrai ora ricollegato alla chat vocale nei dintorni. </notification> <notification name="VoiceChannelJoinFailed"> - Connessione a [VOICE_CHANNEL_NAME] fallita, riprova più tardi. Verrai ora riconnesso alla Chat Voice Locale. + Collegamento a [VOICE_CHANNEL_NAME] non riuscito, riprova più tardi. Verrai ora ricollegato alla chat vocale nei dintorni. </notification> <notification name="VoiceLoginRetry"> Stiamo creando una canale voice per te. Questo può richiedere fino a un minuto. </notification> <notification name="Cannot enter parcel: not a group member"> - Soltanto i membri di uno specifico gruppo possono visitare quest'area. + Soltanto i membri di un determinato gruppo possono visitare questa zona. </notification> <notification name="Cannot enter parcel: banned"> Non puoi entrare nel terreno, sei stato bloccato. @@ -2553,17 +2524,17 @@ Clicca Accetta per unirti alla chat oppure Declina per declinare l'invito. Si è verificato un errore durante il tentativo di collegarti a una voice chat con [VOICE_CHANNEL_NAME]. Riprova più tardi. </notification> <notification name="ServerVersionChanged"> - Sei appena entrato in una regione che usa una versione differente del server, questo potrebbe influenzare le prestazioni. [[URL] Guarda le Release Notes.] + Sei appena entrato in una regione che usa una versione differente del server: ciò potrebbe incidere sule prestazioni. [[URL] Visualizza le note sulla versione.] </notification> <notification name="UnsupportedCommandSLURL"> - Lo SLurl che hai cliccato non è attivo. + Lo SLurl su cui hai cliccato non è valido. </notification> <notification name="BlockedSLURL"> - Uno SLurl è stato ricevuto da un browser sconosciuto e per la tua sicurezza è stato bloccato. + Uno SLurl è stato ricevuto da un browser sconosciuto o non sicuro e, per sicurezza, è stato bloccato. </notification> <notification name="ThrottledSLURL"> - Multipli SLurls sono stati ricevuti da un browser sconosciuto in un breve periodo. -Per la tua sicurezza verranno bloccati per alcuni secondi. + Sono stati ricevuti più SLurl da un browser sconosciuto o non sicuro in un breve periodo di tempo. +Per sicurezza, verranno bloccati per alcuni secondi. </notification> <notification name="IMToast"> [MESSAGE] @@ -2571,19 +2542,23 @@ Per la tua sicurezza verranno bloccati per alcuni secondi. <button name="respondbutton" text="Rispondi"/> </form> </notification> + <notification name="ConfirmCloseAll"> + Sicuro di voler chiudere tutti gli IM? + <usetemplate ignoretext="Conferma prima della chiusura di tutti gli IM" name="okcancelignore" notext="Annulla" yestext="OK"/> + </notification> <notification name="AttachmentSaved"> - L'Allegato (Attachment) è stato salvato. + L'elemento da collegare è stato salvato. </notification> <notification name="UnableToFindHelpTopic"> - Impossibilitato a trovare il tema aiuto per questo elemento (nozione)???!!!!. + Impossibile trovare l'argomento nell'aiuto per questo elemento. </notification> <notification name="ObjectMediaFailure"> - Errore del Server: aggiornamento del Media o mancato funzionamento. + Errore del server: mancato aggiornamento o ottenimento del media. '[ERROR]' <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="TextChatIsMutedByModerator"> - Il tuo testo nella chat è stato interrotto dal moderatore. + La tua chat di testo è stata interrotta dal moderatore. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="VoiceIsMutedByModerator"> @@ -2592,19 +2567,19 @@ Per la tua sicurezza verranno bloccati per alcuni secondi. </notification> <notification name="ConfirmClearTeleportHistory"> Sei sicuro di volere cancellare la cronologia dei tuoi teleport? - <usetemplate name="okcancelbuttons" notext="Cancella" yestext="OK"/> + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="BottomTrayButtonCanNotBeShown"> - Il bottone selezionato non può essere mostrato in questo momento. -Il bottone verrà mostrato quando ci sarà abbastanza spazio. + Il pulsante selezionato non può essere visualizzato in questo momento. +Il pulsante verrà visualizzato quando lo spazio sarà sufficiente. </notification> <global name="UnsupportedCPU"> - La velocità della tua CPU non soddisfa i requisiti minimi. </global> <global name="UnsupportedGLRequirements"> - Non sembra che tu abbia i requisiti hardware adeguati per [APP_NAME]. [APP_NAME] richiede una scheda grafica OpenGL con supporto multitexture. Se tu ce l'hai, dovresti accertarti di avere i driver, i service pack e le patch più recenti della scheda grafica e del tuo sistema operativo. + Non sembra che tu abbia i requisiti hardware adeguati per [APP_NAME]. [APP_NAME] richiede una scheda grafica OpenGL con supporto multitexture. Se ne hai una in dotazione, accertati di avere i driver, i service pack e i patch più recenti per la scheda grafica e per il sistema operativo. -Se continui ad avere problemi, visita [SUPPORT_SITE]. +Se continui ad avere problemi, visita la pagina [SUPPORT_SITE]. </global> <global name="UnsupportedCPUAmount"> 796 @@ -2619,7 +2594,7 @@ Se continui ad avere problemi, visita [SUPPORT_SITE]. - La memoria del tuo sistema non soddisfa i requisiti minimi. </global> <global name="You can only set your 'Home Location' on your land or at a mainland Infohub."> - Se possiedi una parte di terra, puoi creare qui la tua ubicazione di casa. -Altrimenti, puoi guardare sulla Mappa e trovare luoghi segnalati come "Infohub". + Se sei proprietario di un appezzamento di terreno, puoi definirlo come la tua posizione iniziale. +In alternativa, puoi guardare sulla mappa e trovare luoghi segnalati come "Infohub". </global> </notifications> diff --git a/indra/newview/skins/default/xui/it/panel_adhoc_control_panel.xml b/indra/newview/skins/default/xui/it/panel_adhoc_control_panel.xml index 4a7c9b11c7404b31a124a996ce6c02071ffd3de5..be001d09f8ec4a8af00f2138a250d42df889c696 100644 --- a/indra/newview/skins/default/xui/it/panel_adhoc_control_panel.xml +++ b/indra/newview/skins/default/xui/it/panel_adhoc_control_panel.xml @@ -1,8 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_im_control_panel"> - <panel name="panel_call_buttons"> - <button label="Chiama" name="call_btn"/> - <button label="Abbandona Chiamata" name="end_call_btn"/> - <button label="Voice Controls" name="voice_ctrls_btn"/> - </panel> + <layout_stack name="vertical_stack"> + <layout_panel name="call_btn_panel"> + <button label="Chiama" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="Abbandona chiamata" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="Regolazione voce" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_avatar_list_item.xml b/indra/newview/skins/default/xui/it/panel_avatar_list_item.xml index 40f805774e76a9e2db56b744594404c231179329..4c7f298590039324549916870cfa51c92418ce56 100644 --- a/indra/newview/skins/default/xui/it/panel_avatar_list_item.xml +++ b/indra/newview/skins/default/xui/it/panel_avatar_list_item.xml @@ -1,25 +1,26 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="avatar_list_item"> <string name="FormatSeconds"> - [COUNT]s + [COUNT] s </string> <string name="FormatMinutes"> - [COUNT]m + [COUNT] m </string> <string name="FormatHours"> - [COUNT]h + [COUNT] h </string> <string name="FormatDays"> - [COUNT]d + [COUNT] g </string> <string name="FormatWeeks"> - [COUNT]w + [COUNT] sett </string> <string name="FormatMonths"> - [COUNT]mon + [COUNT] mes </string> <string name="FormatYears"> - [COUNT]y + [COUNT] a </string> <text name="avatar_name" value="Sconosciuto"/> + <button name="profile_btn" tool_tip="Vedi profilo"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_block_list_sidetray.xml b/indra/newview/skins/default/xui/it/panel_block_list_sidetray.xml index cf833924aec524b0588b79855768f386106501e9..610f561a65a616773e7c463c910d7689e8ad5f02 100644 --- a/indra/newview/skins/default/xui/it/panel_block_list_sidetray.xml +++ b/indra/newview/skins/default/xui/it/panel_block_list_sidetray.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="block_list_panel"> <text name="title_text"> - Lista bloccata + Blocca lista </text> - <scroll_list name="blocked" tool_tip="Lista dei residenti bloccati"/> - <button label="Blocca il Residente..." label_selected="Blocca Residente..." name="Block resident..." tool_tip="Scegli un residente da bloccare"/> + <scroll_list name="blocked" tool_tip="Lista degli attuali residenti bloccati"/> + <button label="Blocca il residente..." label_selected="Blocca il residente..." name="Block resident..." tool_tip="Scegli un residente da bloccare"/> <button label="Blocca l'oggetto per nome..." label_selected="Blocca l'oggetto per nome..." name="Block object by name..."/> - <button label="Sblocca" label_selected="Sblocca" name="Unblock" tool_tip="Rimuovi dalla lista il residente o l'oggetto bloccato"/> + <button label="Sblocca" label_selected="Sblocca" name="Unblock" tool_tip="Rimuovi un residente o un oggetto dalla lista bloccati"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_bottomtray.xml b/indra/newview/skins/default/xui/it/panel_bottomtray.xml index f2aab63dce91ac0ba5e162865c3c5de2d9c7295f..c0218fad5e21d2e74643e080a17bccbef6990265 100644 --- a/indra/newview/skins/default/xui/it/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/it/panel_bottomtray.xml @@ -1,23 +1,38 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="bottom_tray"> <string name="SpeakBtnToolTip"> - Microfono on/off + Accende o spegne il microfono </string> <string name="VoiceControlBtnToolTip"> - Mostra/nascondi il pannello voice control + Mostra o nasconde il pannello di regolazione voce </string> <layout_stack name="toolbar_stack"> + <layout_panel name="speak_panel"> + <talk_button name="talk"> + <speak_button label="Parla" label_selected="Parla" name="speak_btn"/> + </talk_button> + </layout_panel> <layout_panel name="gesture_panel"> - <gesture_combo_box label="Gesture" name="Gesture" tool_tip="Mostra/nascondi gestures"/> + <gesture_combo_list label="Gesture" name="Gesture" tool_tip="Mostra o nasconde le gesture"/> </layout_panel> <layout_panel name="movement_panel"> - <button label="Sposta" name="movement_btn" tool_tip="Mostra/nascondi i controlli del movimento"/> + <button label="Sposta" name="movement_btn" tool_tip="Mostra o nasconde i comandi del movimento"/> </layout_panel> <layout_panel name="cam_panel"> - <button label="Visualizza" name="camera_btn" tool_tip="Mostra/nascondi i controlli della camera"/> + <button label="Visuale" name="camera_btn" tool_tip="Mostra o nasconde le regolazioni della visuale"/> </layout_panel> <layout_panel name="snapshot_panel"> <button label="" name="snapshots" tool_tip="Scatta una foto"/> </layout_panel> + <layout_panel name="im_well_panel"> + <chiclet_im_well name="im_well"> + <button name="Unread IM messages" tool_tip="Conversazioni"/> + </chiclet_im_well> + </layout_panel> + <layout_panel name="notification_well_panel"> + <chiclet_notification name="notification_well"> + <button name="Unread" tool_tip="Notifiche"/> + </chiclet_notification> + </layout_panel> </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_bottomtray_lite.xml b/indra/newview/skins/default/xui/it/panel_bottomtray_lite.xml new file mode 100644 index 0000000000000000000000000000000000000000..ff576c7dd2a47343efdff8746d735f85c4dd63e8 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_bottomtray_lite.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="bottom_tray_lite"> + <layout_stack name="toolbar_stack_lite"> + <layout_panel name="gesture_panel"> + <gesture_combo_list label="Gesture" name="Gesture" tool_tip="Mostra/nasconde gesture"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_classified_info.xml b/indra/newview/skins/default/xui/it/panel_classified_info.xml index 2ba127d34a5c160c6800c612e4afcacac5890721..3d363d9c7532f6901757d180031931e06a05f0aa 100644 --- a/indra/newview/skins/default/xui/it/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/it/panel_classified_info.xml @@ -1,17 +1,48 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_classified_info"> - <text name="title" value="Info sugli Annunci"/> + <panel.string name="l$_price"> + L$ [PRICE] + </panel.string> + <panel.string name="click_through_text_fmt"> + [TELEPORT] teleport, [MAP] mappa, [PROFILE] profilo + </panel.string> + <panel.string name="date_fmt"> + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + </panel.string> + <panel.string name="auto_renew_on"> + Abilitato + </panel.string> + <panel.string name="auto_renew_off"> + Disattivato + </panel.string> + <text name="title" value="Informazioni inserzione"/> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <text name="classified_name" value="[nome]"/> - <text name="classified_location" value="[caricando...]"/> - <text name="content_type" value="[tipo di contenuto]"/> - <text name="category" value="[categoria]"/> - <check_box label="Auto rinnovo settimanale" name="auto_renew"/> - <text name="price_for_listing" tool_tip="Prezzo di listino."> - L$[PREZZO] - </text> - <text name="classified_desc" value="[descrizione]"/> + <text_editor name="classified_name" value="[name]"/> + <text name="classified_location_label" value="Luogo:"/> + <text_editor name="classified_location" value="[loading...]"/> + <text name="content_type_label" value="Tipo di contenuto:"/> + <text_editor name="content_type" value="[content type]"/> + <text name="category_label" value="Categoria:"/> + <text_editor name="category" value="[category]"/> + <text name="creation_date_label" value="Data di creazione:"/> + <text_editor name="creation_date" tool_tip="Data di creazione" value="[date]"/> + <text name="price_for_listing_label" value="Prezzo per inserzione:"/> + <text_editor name="price_for_listing" tool_tip="Prezzo per inserzione:" value="[price]"/> + <layout_stack name="descr_stack"> + <layout_panel name="clickthrough_layout_panel"> + <text name="click_through_label" value="Clic:"/> + <text_editor name="click_through_text" tool_tip="Dati di click through" value="[clicks]"/> + </layout_panel> + <layout_panel name="price_layout_panel"> + <text name="auto_renew_label" value="Rinnovo automatico:"/> + <text name="auto_renew" value="Abilitato"/> + </layout_panel> + <layout_panel name="descr_layout_panel"> + <text name="classified_desc_label" value="Descrizione:"/> + <text_editor name="classified_desc" value="[descrizione]"/> + </layout_panel> + </layout_stack> </panel> </scroll_container> <panel name="buttons"> diff --git a/indra/newview/skins/default/xui/it/panel_edit_alpha.xml b/indra/newview/skins/default/xui/it/panel_edit_alpha.xml index 652bef04303c798c97c9c9a3173ff66fec04aee9..286ee626cfa3a6b9887cc406303e0178222d21d6 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_alpha.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_alpha.xml @@ -2,7 +2,7 @@ <panel name="edit_alpha_panel"> <panel name="avatar_alpha_color_panel"> <texture_picker label="Alpha inferiore" name="Lower Alpha" tool_tip="Clicca per scegliere una fotografia"/> - <texture_picker label="Alpha superiore" name="Upper Alpha" tool_tip="Click to choose a picture"/> + <texture_picker label="Alpha superiore" name="Upper Alpha" tool_tip="Clicca per scegliere una fotografia"/> <texture_picker label="Alpha della testa" name="Head Alpha" tool_tip="Clicca per scegliere una fotografia"/> <texture_picker label="Alpha dell'occhio" name="Eye Alpha" tool_tip="Clicca per scegliere una fotografia"/> <texture_picker label="Alpha dei capelli" name="Hair Alpha" tool_tip="Clicca per scegliere una fotografia"/> diff --git a/indra/newview/skins/default/xui/it/panel_edit_classified.xml b/indra/newview/skins/default/xui/it/panel_edit_classified.xml index 81ef121dd811d28088b224c25a278ebb91a5c2af..bbe8ebbc322685b1e4768555cd22c948ea0a7a94 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_classified.xml @@ -1,14 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Modifica gli Annunci" name="panel_edit_classified"> +<panel label="Modifica inserzione" name="panel_edit_classified"> <panel.string name="location_notice"> - (sarà aggiornato dopo il salvataggio) + (si aggiornerà dopo il salvataggio) </panel.string> + <string name="publish_label"> + Pubblica + </string> + <string name="save_label"> + Salva + </string> <text name="title"> - Modifica gli Annunci + Modifica inserzione </text> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <icon label="" name="edit_icon" tool_tip="Clicca per selezionare un'immagine"/> + <panel name="snapshot_panel"> + <icon label="" name="edit_icon" tool_tip="Clicca per selezionare un'immagine"/> + </panel> <text name="Name:"> Titolo: </text> @@ -19,15 +27,22 @@ Luogo: </text> <text name="classified_location"> - caricando... + caricamento... </text> - <button label="Imposta sul luogo attuale" name="set_to_curr_location_btn"/> - <spinner label="L$" name="price_for_listing" tool_tip="Fissare il Prezzo." value="50"/> - <check_box label="Auto-rinnovo settimanale" name="auto_renew"/> + <button label="Imposta come luogo attuale" name="set_to_curr_location_btn"/> + <text name="category_label" value="Categoria:"/> + <text name="content_type_label" value="Tipo di contenuto:"/> + <icons_combo_box label="Contenuto generale" name="content_type"> + <icons_combo_box.item label="Contenuto moderato" name="mature_ci" value="Moderato"/> + <icons_combo_box.item label="Contenuto generale" name="pg_ci" value="Generale"/> + </icons_combo_box> + <text name="price_for_listing_label" value="Prezzo per inserzione:"/> + <spinner label="L$" name="price_for_listing" tool_tip="Prezzo per inserzione:" value="50"/> + <check_box label="Rinnovo automatico ogni settimana" name="auto_renew"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Salva" name="save_changes_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="[LABEL]" name="save_changes_btn"/> + <button label="Annulla" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_hair.xml b/indra/newview/skins/default/xui/it/panel_edit_hair.xml index 137a5cabeb6bf248aa0eff1d6ea43a6ab6d82a01..534ff457ff1e72a3b9f5d6a7b59c320e951c10ac 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_hair.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_hair.xml @@ -7,6 +7,6 @@ <accordion_tab name="hair_color_tab" title="Colore"/> <accordion_tab name="hair_style_tab" title="Stile"/> <accordion_tab name="hair_eyebrows_tab" title="Sopracciglia"/> - <accordion_tab name="hair_facial_tab" title="Facciale"/> + <accordion_tab name="hair_facial_tab" title="Del viso"/> </accordion> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_pick.xml b/indra/newview/skins/default/xui/it/panel_edit_pick.xml index 7f2e82e4ffcc1b7f4d6b3ffdcdacd83a06cef473..d2d97cfc718c72cfd54f3cd38cdb3825c0f5c891 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_pick.xml @@ -1,7 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Modifica scelta ????" name="panel_edit_pick"> +<panel label="Modifica scelta" name="panel_edit_pick"> + <panel.string name="location_notice"> + (si aggiornerà dopo il salvataggio) + </panel.string> <text name="title"> - Modifica scelta ???? + Modifica scelta </text> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> @@ -16,13 +19,13 @@ Luogo: </text> <text name="pick_location"> - caricando... + caricamento... </text> <button label="Imposta come luogo attuale" name="set_to_curr_location_btn"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Salva [WHAT]" name="save_changes_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="Salva luogo preferito" name="save_changes_btn"/> + <button label="Annulla" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_profile.xml b/indra/newview/skins/default/xui/it/panel_edit_profile.xml index b9779c77b569237ec2e93584bfe7cbbdf03d3206..3ecf4bcaf22324d099230df18ea637106fa5f33f 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_profile.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Modifica del profilo" name="edit_profile_panel"> +<panel label="Modifica profilo" name="edit_profile_panel"> <string name="CaptionTextAcctInfo"> [ACCTTYPE] [PAYMENTINFO] [AGEVERIFICATION] </string> <string name="RegisterDateFormat"> - [REG_DATE] ([ETA']) + [REG_DATE] ([AGE]) </string> <string name="AcctTypeResident" value="Residente"/> <string name="AcctTypeTrial" value="Prova"/> @@ -26,23 +26,26 @@ <icon label="" name="2nd_life_edit_icon" tool_tip="Clicca per selezionare un'immagine"/> </panel> <panel name="first_life_image_panel"> - <text name="real_world_photo_title_text" value="Mondo Reale:"/> + <text name="real_world_photo_title_text" value="Mondo reale:"/> </panel> <icon label="" name="real_world_edit_icon" tool_tip="Clicca per selezionare un'immagine"/> <text name="title_homepage_text"> - Homepage: + Home page: </text> <check_box label="Mostrami nei risultati della ricerca" name="show_in_search_checkbox"/> - <text name="title_acc_status_text" value="Mio Account:"/> - <text name="my_account_link" value="[[URL] Vai al mio pannello personale]"/> - <text name="acc_status_text" value="Residente. No payment info on file."/> - <text name="title_partner_text" value="Mio Partner:"/> - <text name="partner_edit_link" value="[[URL] Modifica]"/> + <text name="title_acc_status_text" value="Il mio account:"/> + <text_editor name="acc_status_text" value="Residente. Nessuna informazione di pagamento disponibile."/> + <text name="my_account_link" value="[[URL] Go to My Dashboard]"/> + <text name="title_partner_text" value="Il mio partner:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(recupero)" name="partner_text"/> + </panel> + <text name="partner_edit_link" value="[[URL] Edit]"/> </panel> </panel> </scroll_container> <panel name="profile_me_buttons_panel"> - <button label="Salva le modifiche" name="save_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="Salva modifiche" name="save_btn"/> + <button label="Annulla" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_shape.xml b/indra/newview/skins/default/xui/it/panel_edit_shape.xml index f22b393ecd8df48d3666939a092425a697e44b02..cc0676b43c49f8e03976abb84755497658e5f636 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_shape.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_shape.xml @@ -5,8 +5,8 @@ Sesso: </text> <radio_group name="sex_radio"> - <radio_item label="Femminile" name="radio"/> - <radio_item label="Maschile" name="radio2"/> + <radio_item label="Femmina" name="radio"/> + <radio_item label="Maschio" name="radio2"/> </radio_group> </panel> <accordion name="wearable_accordion"> @@ -17,7 +17,7 @@ <accordion_tab name="shape_nose_tab" title="Naso"/> <accordion_tab name="shape_mouth_tab" title="Bocca"/> <accordion_tab name="shape_chin_tab" title="Mento"/> - <accordion_tab name="shape_torso_tab" title="Busto"/> + <accordion_tab name="shape_torso_tab" title="Torace"/> <accordion_tab name="shape_legs_tab" title="Gambe"/> </accordion> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_shirt.xml b/indra/newview/skins/default/xui/it/panel_edit_shirt.xml index 5d902ae40b339a90d5c2a165307ad2da86e3b046..631d609d608f614d02d3f417ac484f78a8d6c07d 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_shirt.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_shirt.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_shirt_panel"> <panel name="avatar_shirt_color_panel"> - <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere una foto"/> + <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere una fotografia"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> </panel> <accordion name="wearable_accordion"> diff --git a/indra/newview/skins/default/xui/it/panel_edit_skin.xml b/indra/newview/skins/default/xui/it/panel_edit_skin.xml index 2fa76d4afc1e53cc26a1100d279ed93850632c65..9e05599470ad699722e5515086b217dd00778dcf 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_skin.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_skin.xml @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_skin_panel"> <panel name="avatar_skin_color_panel"> - <texture_picker label="Tatuaggi Testa" name="Head Tattoos" tool_tip="Clicca per scegliere un'immagine"/> - <texture_picker label="Tatuaggi superiori" name="Upper Tattoos" tool_tip="Clicca per scegliere un'immagine"/> - <texture_picker label="Tatuaggi inferiori" name="Lower Tattoos" tool_tip="Clicca per scegliere un'immagine"/> + <texture_picker label="Tatuaggi testa" name="Head Tattoos" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tatuaggi superiori" name="Upper Tattoos" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tatuaggi inferiori" name="Lower Tattoos" tool_tip="Clicca per scegliere una fotografia"/> </panel> <accordion name="wearable_accordion"> <accordion_tab name="skin_color_tab" title="Colore della pelle"/> - <accordion_tab name="skin_face_tab" title="Dettagli del Viso"/> - <accordion_tab name="skin_makeup_tab" title="Trucco"/> - <accordion_tab name="skin_body_tab" title="Dettagli del Corpo"/> + <accordion_tab name="skin_face_tab" title="Dettagli del viso"/> + <accordion_tab name="skin_makeup_tab" title="Makeup"/> + <accordion_tab name="skin_body_tab" title="Dettagli del corpo"/> </accordion> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_socks.xml b/indra/newview/skins/default/xui/it/panel_edit_socks.xml index 1d1eb4bd3a778b2c2f1c8e094c871916472d3c56..d2af3ebd5a2d337863935feaa159028c4a614352 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_socks.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_socks.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_socks_panel"> <panel name="avatar_socks_color_panel"> - <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere una foto"/> + <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere una fotografia"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per aprire il selettore dei colori"/> </panel> <accordion name="wearable_accordion"> - <accordion_tab name="socks_main_tab" title="Calze"/> + <accordion_tab name="socks_main_tab" title="Calzini"/> </accordion> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_tattoo.xml b/indra/newview/skins/default/xui/it/panel_edit_tattoo.xml index 5435a28ff9195cdba8625ea0596535cba9d8b5a4..d8cfa15b256cac1fded50ca7ce2e89ceaef6e074 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_tattoo.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_tattoo.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_tattoo_panel"> <panel name="avatar_tattoo_color_panel"> - <texture_picker label="Tatuaggio sulla testa" name="Head Tattoo" tool_tip="Clicca per scegliere una foto"/> - <texture_picker label="Tatuaggio superiore" name="Upper Tattoo" tool_tip="Clicca per scegliere una foto"/> - <texture_picker label="Tatuaggio inferiore" name="Lower Tattoo" tool_tip="Clicca per scegliere una foto"/> + <texture_picker label="Tatuaggio della testa" name="Head Tattoo" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tatuaggio superiore" name="Upper Tattoo" tool_tip="Clicca per scegliere una fotografia"/> + <texture_picker label="Tattuaggio inferiore" name="Lower Tattoo" tool_tip="Clicca per scegliere una fotografia"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_edit_wearable.xml b/indra/newview/skins/default/xui/it/panel_edit_wearable.xml index baf585dad06bc001d31ed2b88ad2d49bd266700f..2583cf4e0ea60c7c1112199c5151b8bae10e3432 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_wearable.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_wearable.xml @@ -1,55 +1,55 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Indossabile" name="panel_edit_wearable"> <string name="edit_shape_title"> - Modifica la Shape + Modifica della figura corporea </string> <string name="edit_skin_title"> - Modifica la Skin + Modifica della pelle </string> <string name="edit_hair_title"> - Modifica capelli + Modifica dei capelli </string> <string name="edit_eyes_title"> - Modifica occhi + Modifica degli occhi </string> <string name="edit_shirt_title"> - Modifica camicia + Modifica della camicia </string> <string name="edit_pants_title"> - Modifica pantaloni + Modifica dei pantaloni </string> <string name="edit_shoes_title"> - Modifica scarpe + Modifica delle scarpe </string> <string name="edit_socks_title"> - Modifica calze + Modifica delle calze </string> <string name="edit_jacket_title"> - Modifica Giacca + Modifica della giacca </string> <string name="edit_skirt_title"> - Modifica gonna + Modifica della gonna </string> <string name="edit_gloves_title"> - Modifica guanti + Modifica dei guanti </string> <string name="edit_undershirt_title"> - Modifica maglietta intima + Modifica della maglietta intima </string> <string name="edit_underpants_title"> - Modifica slip + Modifica dello slip </string> <string name="edit_alpha_title"> - Modifica Alpha Mask + Modifica di Alpha Mask </string> <string name="edit_tattoo_title"> - Modifica tatuaggio + Modifica del tatuaggio </string> <string name="shape_desc_text"> - Shape: + Figura corporea: </string> <string name="skin_desc_text"> - Skin: + Pelle: </string> <string name="hair_desc_text"> Capelli: @@ -90,9 +90,9 @@ <string name="tattoo_desc_text"> Tatuaggio: </string> - <text name="edit_wearable_title" value="Modifica Shape"/> + <text name="edit_wearable_title" value="Modifica della figura corporea"/> <panel label="Camicia" name="wearable_type_panel"> - <text name="description_text" value="Shape:"/> + <text name="description_text" value="Figura corporea:"/> </panel> <panel name="button_panel"> <button label="Salva con nome" name="save_as_button"/> diff --git a/indra/newview/skins/default/xui/it/panel_friends.xml b/indra/newview/skins/default/xui/it/panel_friends.xml index a3a985f5aa65afa5fbd1617507ff5c97158fb70e..cfe162a67bfd5fe1fd29a3356b65c6a4dd3d2b66 100644 --- a/indra/newview/skins/default/xui/it/panel_friends.xml +++ b/indra/newview/skins/default/xui/it/panel_friends.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="friends"> <string name="Multiple"> - Amici multipli + Più amici </string> <scroll_list name="friend_list" tool_tip="Tieni premuto shift o control mentre clicchi per selezionare più di un amico"> <column name="icon_online_status" tool_tip="Stato Online"/> @@ -16,5 +16,5 @@ <button label="Teleport" name="offer_teleport_btn" tool_tip="Offri a questo amico un teleport per dove sei tu ora"/> <button label="Paga" name="pay_btn" tool_tip="Dai Linden dollar (L$) a questo amico"/> <button label="Rimuovi" name="remove_btn" tool_tip="Rimuovi questa persona dalla tua lista amici"/> - <button label="Aggiungi" name="add_btn" tool_tip="Offri amicizia ad un residente"/> + <button label="Aggiungi" name="add_btn" tool_tip="Offri amicizia a un residente"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_control_panel.xml b/indra/newview/skins/default/xui/it/panel_group_control_panel.xml index c2bceaeef609c4df9d921cffd4166548db8b89ab..2d17e4a0cdf06370053843dcdf68687a7af8fcac 100644 --- a/indra/newview/skins/default/xui/it/panel_group_control_panel.xml +++ b/indra/newview/skins/default/xui/it/panel_group_control_panel.xml @@ -1,9 +1,17 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_im_control_panel"> - <button label="Profilo del Gruppo" name="group_info_btn"/> - <panel name="panel_call_buttons"> - <button label="Chiama Gruppo" name="call_btn"/> - <button label="Chiudi Chiamata" name="end_call_btn"/> - <button label="Apri Controlli Voice" name="voice_ctrls_btn"/> - </panel> + <layout_stack name="vertical_stack"> + <layout_panel name="group_info_btn_panel"> + <button label="Profilo del gruppo" name="group_info_btn"/> + </layout_panel> + <layout_panel name="call_btn_panel"> + <button label="Chiama il gruppo" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="Abbandona chiamata" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="Apri la regolazione voce" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_general.xml b/indra/newview/skins/default/xui/it/panel_group_general.xml index 0ca1ce20642d9d1618743eb8675bf30b6ca84b69..e21f9d2049078f56f72c33eebf3fe636ee25cae7 100644 --- a/indra/newview/skins/default/xui/it/panel_group_general.xml +++ b/indra/newview/skins/default/xui/it/panel_group_general.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Generale" name="general_tab"> <panel.string name="help_text"> - La tabella generale contiene informazioni generali su questo gruppo, lista dei membri, preferenze generali del gruppo e opzioni dei membri. + La scheda generale contiene informazioni generali su questo gruppo, lista dei soci, preferenze del gruppo e opzioni dei soci. -Muovi il tuo mouse sopra le opzioni per maggior aiuto. +Muovi il tuo mouse sopra le opzioni per maggiore aiuto. </panel.string> <panel.string name="group_info_unchanged"> Le informazioni generali sul gruppo sono cambiate @@ -11,27 +11,45 @@ Muovi il tuo mouse sopra le opzioni per maggior aiuto. <panel.string name="incomplete_member_data_str"> Rilevando i dati dei membri </panel.string> + <panel name="group_info_top"> + <texture_picker label="" name="insignia" tool_tip="Clicca per scegliere una fotografia"/> + <text name="prepend_founded_by"> + Fondatore: + </text> + <name_box initial_value="(recupero)" name="founder_name"/> + <text name="join_cost_text"> + Gratis + </text> + <button label="ADERISCI ADESSO!" name="btn_join"/> + </panel> <text_editor name="charter"> Statuto del gruppo </text_editor> <name_list name="visible_members"> - <name_list.columns label="Membro" name="name"/> + <name_list.columns label="Socio" name="name"/> <name_list.columns label="Titolo" name="title"/> + <name_list.columns label="Stato" name="status"/> </name_list> + <text name="my_group_settngs_label"> + Io + </text> <text name="active_title_label"> - Mio Titolo + Il mio titolo: </text> - <combo_box name="active_title" tool_tip="Imposta il titolo nella tag del tuo avatar quando questo gruppo è attivo."/> - <check_box label="Ricevi notice dal gruppo" name="receive_notices" tool_tip="Imposta se vuoi ricevere Notice da questo. De-seleziona questa casella se il gruppo ti manda spam."/> - <check_box label="Mostra nel mio Profilo" name="list_groups_in_profile" tool_tip="Imposta se vuoi mostrare questo gruppo nel tuo profilo"/> + <combo_box name="active_title" tool_tip="Imposta il titolo che compare con il nome del tuo avatar quando questo gruppo è attivo."/> + <check_box label="Ricevi avvisi dal gruppo" name="receive_notices" tool_tip="Imposta se vuoi ricevere avvisi da questo gruppo. Deseleziona questa casella se il gruppo ti manda messaggi indesiderati."/> + <check_box label="Mostra nel mio profilo" name="list_groups_in_profile" tool_tip="Imposta se vuoi mostrare questo gruppo nel tuo profilo"/> <panel name="preferences_container"> - <check_box label="Iscrizione libera" name="open_enrollement" tool_tip="Imposta se questo gruppo permette ai nuovi membri di aderire senza essere invitati."/> - <check_box label="Tassa d'iscrizione" name="check_enrollment_fee" tool_tip="Imposta se richiedere una tassa d'iscrizione per aderire al gruppo"/> - <spinner label="L$" left_delta="136" name="spin_enrollment_fee" tool_tip="I nuovi membri devono pagare questa tassa d'iscrizione quando tassa d'iscrizione è selezionata." width="60"/> + <text name="group_settngs_label"> + Gruppo + </text> + <check_box label="Chiunque può aderire" name="open_enrollement" tool_tip="Imposta se questo gruppo permette ai nuovi membri di aderire senza essere invitati."/> + <check_box label="Quota di adesione" name="check_enrollment_fee" tool_tip="Imposta se richiedere una tassa d'iscrizione per aderire al gruppo"/> + <spinner label="L$" left_delta="136" name="spin_enrollment_fee" tool_tip="I nuovi soci devono pagare questa tassa d'iscrizione quando è selezionata." width="60"/> <combo_box name="group_mature_check" tool_tip="Imposta se le informazioni sul tuo gruppo sono da considerarsi Mature."> <combo_box.item label="Contenuto PG" name="pg"/> <combo_box.item label="Contenuto Mature" name="mature"/> </combo_box> - <check_box initial_value="true" label="Mostra nella ricerca" name="show_in_group_list" tool_tip="Permetti alle persone di vedere questo gruppo nei risultati del Cerca"/> + <check_box initial_value="true" label="Mostra nella ricerca" name="show_in_group_list" tool_tip="Permetti alle persone di vedere questo gruppo nei risultati della ricerca"/> </panel> </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 26255943ed6acb0775eb4ae98745197e6c91f1c4..da797b309fbfa8bc94d65b97df0c01c8975beb8b 100644 --- a/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml +++ b/indra/newview/skins/default/xui/it/panel_group_info_sidetray.xml @@ -1,36 +1,35 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Informazioni sul gruppo" name="GroupInfo"> +<panel label="Profilo del gruppo" name="GroupInfo"> <panel.string name="default_needs_apply_text"> - Ci sono variazioni non salvate nella tabella attuale + Ci sono modifiche non salvate </panel.string> <panel.string name="want_apply_text"> - Vuoi salvare queste variazioni? + Vuoi salvare le modifiche? </panel.string> <panel.string name="group_join_btn"> - Aderisci (L$[AMOUNT]) + Aderisci ([AMOUNT] L$) </panel.string> <panel.string name="group_join_free"> Gratis </panel.string> - <text name="group_name" value="(Caricando...)"/> - <line_editor label="Scrivi qui il nuovo nome del tuo gruppo" name="group_name_editor"/> - <texture_picker label="" name="insignia" tool_tip="Clicca per scegliere uan fotografia"/> - <text name="prepend_founded_by"> - Fondatore: - </text> - <name_box initial_value="(recuperando)" name="founder_name"/> - <text name="join_cost_text"> - Gratis - </text> - <button label="ADERISCI ORA!" name="btn_join"/> - <accordion name="groups_accordion"> - <accordion_tab name="group_general_tab" title="Generale"/> - <accordion_tab name="group_roles_tab" title="Ruoli"/> - <accordion_tab name="group_notices_tab" title="Notice"/> - <accordion_tab name="group_land_tab" title="Terra/Beni ?????"/> - </accordion> - <panel name="button_row"> - <button label="Crea" label_selected="Nuovo gruppo" name="btn_create"/> - <button label="Salva" label_selected="Salva" name="btn_apply"/> + <panel name="group_info_top"> + <text name="group_name" value="(Caricamento in corso...)"/> + <line_editor label="Scrivi qui il nome del gruppo" name="group_name_editor"/> </panel> + <layout_stack name="layout"> + <layout_panel name="group_accordions"> + <accordion name="groups_accordion"> + <accordion_tab name="group_general_tab" title="Generale"/> + <accordion_tab name="group_roles_tab" title="Ruoli"/> + <accordion_tab name="group_notices_tab" title="Avvisi"/> + <accordion_tab name="group_land_tab" title="Terra/Beni"/> + </accordion> + </layout_panel> + <layout_panel name="button_row"> + <button label="Chat" name="btn_chat"/> + <button label="Chiamata al gruppo" name="btn_call" tool_tip="Chiama questo gruppo"/> + <button label="Salva" label_selected="Salva" name="btn_apply"/> + <button label="Crea un gruppo" name="btn_create" tool_tip="Crea un nuovo gruppo"/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_invite.xml b/indra/newview/skins/default/xui/it/panel_group_invite.xml index 643d6b05fd569020e18528900908ef8c3360e980..7874f588a5b64ac80918d66b5d2e114bdc09b2e3 100644 --- a/indra/newview/skins/default/xui/it/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/it/panel_group_invite.xml @@ -7,23 +7,21 @@ (Attendi...) </panel.string> <panel.string name="already_in_group"> - Alcuni avatars sono già nel gruppo e non erano stati invitati. + Alcuni dei residenti selezionati sono già nel gruppo, pertanto l'invito non verrà loro spedito. </panel.string> <text name="help_text"> - Puoi selezionare più di un residente -da invitare nel tuo gruppo. Clicca su -'Scelta residenti' per iniziare. + Puoi selezionare più residenti da invitare nel tuo gruppo. Per iniziare, clicca su Apri il selettore di residenti. </text> <button label="Scelta residenti" name="add_button" tool_tip=""/> - <name_list name="invitee_list" tool_tip="Tieni premuto il tasto Ctrl e clicca il nome dei residenti per una multi-selezione"/> - <button label="Rimuovi i selezionati dall'elenco" name="remove_button" tool_tip="Rimuovi i residenti selezionati dalla lista invito"/> + <name_list name="invitee_list" tool_tip="Tieni premuto Ctrl e fai clic sui nomi dei residenti per una selezionare più nomi"/> + <button label="Rimuovi i selezionati dall'elenco" name="remove_button" tool_tip="Rimuove i residenti selezionati dalla lista degli inviti"/> <text name="role_text"> Scegli che ruolo assegnare loro: </text> - <combo_box name="role_name" tool_tip="Choose from the list of Roles you are allowed to assign members to"/> + <combo_box name="role_name" tool_tip="Scegli dall'elenco dei ruoli ai quali ti è consentito assegnare i membri"/> <button label="Manda gli inviti" name="ok_button"/> <button label="Annulla" name="cancel_button"/> <string name="GroupInvitation"> - Invito del Gruppo + Invito di gruppo </string> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_land_money.xml b/indra/newview/skins/default/xui/it/panel_group_land_money.xml index a532e7a5757f03a9fe2d1ccfc3da6d0435446ec4..1e3ef5e6574c1091110e6d65d8558a0bd6f087ea 100644 --- a/indra/newview/skins/default/xui/it/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/it/panel_group_land_money.xml @@ -1,83 +1,81 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terra & L$" name="land_money_tab"> - <string name="help_text"> - Appare un avviso fino a quando la Terra Totale in Uso è meno o = alla Contribuzione Totale. - </string> - <button label="?" name="help_button"/> - <string name="cant_view_group_land_text"> - Non hai i permessi per vedere la terra posseduta dal gruppo - </string> - <string name="cant_view_group_accounting_text"> - Non hai i permessi per vedere le informazioni sulla contabilità del gruppo. - </string> - <string name="loading_txt"> + <panel.string name="help_text"> + Viene visualizzata un'avvertenza fino a quando il terreno totale in uso è inferiore o uguale al contributo totale. + </panel.string> + <panel.string name="cant_view_group_land_text"> + Non sei autorizzato a vedere quali terreni appartengono al gruppo. + </panel.string> + <panel.string name="cant_view_group_accounting_text"> + Non sei autorizzato a visionare le informazioni finanziarie del gruppo. + </panel.string> + <panel.string name="loading_txt"> Attendi... - </string> - <text name="group_land_heading" width="250"> - Terra posseduta dal gruppo - </text> - <scroll_list name="group_parcel_list"> - <column label="Parcel" name="name"/> - <column label="Regione" name="location"/> - <column label="Tipo" name="type"/> - <column label="Area" name="area"/> - </scroll_list> - <button label="Mappa" label_selected="Mappa" left="282" name="map_button" width="130"/> - <text name="total_contributed_land_label"> - Contribuzione Totale: - </text> - <text name="total_contributed_land_value"> - [AREA] m² - </text> - <text name="total_land_in_use_label"> - Terra totale in uso: - </text> - <text name="total_land_in_use_value"> - [AREA] m² - </text> - <text name="land_available_label"> - Terreno disponibile: - </text> - <text name="land_available_value"> - [AREA] m² - </text> - <text name="your_contribution_label"> - La tua contribuzione: - </text> - <string name="land_contrib_error"> - Incapace di impostare la tua contribuzione di terreno - </string> - <text name="your_contribution_units"> - m² - </text> - <text name="your_contribution_max_value"> - ([IMPORTO] max) - </text> - <text name="group_over_limit_text"> - Sono necessari maggiori crediti di terreno per mantenere la terra in uso - </text> - <text name="group_money_heading"> - L$ del gruppo - </text> + </panel.string> + <panel.string name="land_contrib_error"> + Impossibile definire il tuo contributo di terreno + </panel.string> + <panel name="layout_panel_landmoney"> + <scroll_list name="group_parcel_list"> + <scroll_list.columns label="Lotto" name="name"/> + <scroll_list.columns label="Regione" name="location"/> + <scroll_list.columns label="Tipo" name="type"/> + <scroll_list.columns label="Superficie" name="area"/> + </scroll_list> + <text name="total_contributed_land_label"> + Contributo totale: + </text> + <text name="total_contributed_land_value"> + [AREA] m² + </text> + <button label="Mappa" label_selected="Mappa" name="map_button"/> + <text name="total_land_in_use_label"> + Terreno totale in uso: + </text> + <text name="total_land_in_use_value"> + [AREA] m² + </text> + <text name="land_available_label"> + Terreno disponibile: + </text> + <text name="land_available_value"> + [AREA] m² + </text> + <text name="your_contribution_label"> + Il tuo contributo: + </text> + <text name="your_contribution_units"> + m² + </text> + <text name="your_contribution_max_value"> + ([AMOUNT] max) + </text> + <text name="group_over_limit_text"> + Sono necessari più crediti del terreno per mantenere la terra in uso + </text> + <text name="group_money_heading"> + L$ gruppo + </text> + </panel> <tab_container name="group_money_tab_container"> <panel label="PIANIFICAZIONE" name="group_money_planning_tab"> <text_editor name="group_money_planning_text"> - Caricando... + Caricamento in corso... </text_editor> </panel> <panel label="DETTAGLI" name="group_money_details_tab"> <text_editor name="group_money_details_text"> - Caricando... + Caricamento in corso... </text_editor> <button label="< Precedente" label_selected="< Precedente" name="earlier_details_button" tool_tip="Indietro" width="90"/> - <button label="Successivo >" label_selected="Successivo >" left_delta="260" name="later_details_button" tool_tip="Prossimo" width="90"/> + <button label="Successivo >" label_selected="Successivo >" left_delta="260" name="later_details_button" tool_tip="Avanti" width="90"/> </panel> <panel label="VENDITE" name="group_money_sales_tab"> <text_editor name="group_money_sales_text"> - Caricando... + Caricamento in corso... </text_editor> <button label="< Precedente" label_selected="< Precedente" name="earlier_sales_button" tool_tip="Indietro" width="90"/> - <button label="Successivo >" label_selected="Successivo >" left_delta="260" name="later_sales_button" tool_tip="Prossimo" width="90"/> + <button label="Successivo >" label_selected="Successivo >" left_delta="260" name="later_sales_button" tool_tip="Avanti" width="90"/> </panel> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_list_item.xml b/indra/newview/skins/default/xui/it/panel_group_list_item.xml index 3e5419d1bbe4730039db06b079160f3ebbba5dc4..7cdc4c7ff64deac10b5ca29a04e35b385e6d7719 100644 --- a/indra/newview/skins/default/xui/it/panel_group_list_item.xml +++ b/indra/newview/skins/default/xui/it/panel_group_list_item.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="group_list_item"> <text name="group_name" value="Sconosciuto"/> + <button name="profile_btn" tool_tip="Vedi profilo"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_notices.xml b/indra/newview/skins/default/xui/it/panel_group_notices.xml index dbeb9d56ffcc48305d4d6d13c816201157bae8bb..9dac282de9ea90f3018e6d40d312d9be671d39f5 100644 --- a/indra/newview/skins/default/xui/it/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/it/panel_group_notices.xml @@ -5,10 +5,10 @@ Puoi disattivare la ricezione delle notice nella finestra principale. </panel.string> <panel.string name="no_notices_text"> - Non ci sono vecchie Notice + Non ci sono avvisi precedenti </panel.string> <text name="lbl2"> - Le Notice sono conservate per 14 giorni. + Gli avvisi sono conservati per 14 giorni. Massimo 200 per gruppo al giorno </text> <scroll_list name="notice_list"> @@ -17,10 +17,10 @@ Massimo 200 per gruppo al giorno <scroll_list.columns label="Data" name="date"/> </scroll_list> <text name="notice_list_none_found"> - Nessuna trovata + Nessuno trovato </text> - <button label="Crea una nuova notice" label_selected="Crea una nuova notice" name="create_new_notice" tool_tip="Crea una nuova notice"/> - <button label="Aggiorna" label_selected="Aggiorna l'elenco" name="refresh_notices" tool_tip="Aggiorna la lista delle notice"/> + <button label="Crea un nuovo avviso" label_selected="Crea una nuova notice" name="create_new_notice" tool_tip="Crea un nuovo avviso"/> + <button label="Aggiorna" label_selected="Aggiorna l'elenco" name="refresh_notices" tool_tip="Aggiorna la lista degli avvisi"/> <panel label="Crea una nuova notice" name="panel_create_new_notice"> <text name="lbl"> Crea una notice @@ -40,16 +40,16 @@ Massimo 200 per gruppo al giorno <text name="string"> Trascina e rilascia qui l'oggetto da allegare: </text> - <button label="Rimuovi" label_selected="Rimuovi allegato" name="remove_attachment"/> - <button label="Spedisci" label_selected="Spedisci" name="send_notice"/> - <group_drop_target name="drop_target" tool_tip="Trascina un oggetto dall'inventario nello spazio ALLEGA per spedirlo con la notice. Devi avere i permessi copy e transfer relativi all'oggetto da allegare."/> + <button label="Rimuovi" label_selected="Rimuovi allegato" name="remove_attachment" tool_tip="Rimuovi allegato dal tuo avviso"/> + <button label="Invia" label_selected="Invia" name="send_notice"/> + <group_drop_target name="drop_target" tool_tip="Trascina un oggetto dall'inventario Ãn questa casella per spedirlo con questo avviso. Devi avere i diritti per la copia e il trasferimento per poter allegare l'oggetto."/> </panel> <panel label="Vedi le notice precedenti" name="panel_view_past_notice"> <text name="lbl"> Notice archiviate </text> <text name="lbl2"> - Per spedire una nuova notice, clicca il bottone + + Per spedire un nuovo avviso, clicca sul pulsante + </text> <text name="lbl3"> Oggetto: @@ -57,6 +57,6 @@ Massimo 200 per gruppo al giorno <text name="lbl4"> Messaggio: </text> - <button label="Apri allegato" label_selected="Apri l'allegato" name="open_attachment"/> + <button label="Apri l'allegato" label_selected="Apri l'allegato" name="open_attachment"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_notify.xml b/indra/newview/skins/default/xui/it/panel_group_notify.xml index de6b139793e1259b73e69fc8ebf23ed7ea7001b3..91a41353a533b8b3671e2966ab59c54eb384a61a 100644 --- a/indra/newview/skins/default/xui/it/panel_group_notify.xml +++ b/indra/newview/skins/default/xui/it/panel_group_notify.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="instant_message" name="panel_group_notify"> <panel label="header" name="header"> - <text name="title" value="Nome di chi spedisce / Nome del Gruppo"/> + <text name="title" value="Nome del mittente / Nome del gruppo"/> </panel> - <text name="attachment" value="Attachment"/> - <button label="Ok" name="btn_ok"/> + <text name="attachment" value="Allegato"/> + <button label="OK" name="btn_ok"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_group_roles.xml b/indra/newview/skins/default/xui/it/panel_group_roles.xml index bc98fdacaf9cdc27ccf411f6463300cca8b1a32c..ef6f85390a95e22ee2629e220785fba581b4d127 100644 --- a/indra/newview/skins/default/xui/it/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/it/panel_group_roles.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Membri & Ruoli" name="roles_tab"> <panel.string name="default_needs_apply_text"> - Ci sono modifiche non salvate nella scheda attuale + Ci sono modifiche non salvate </panel.string> <panel.string name="want_apply_text"> - Vuoi salvare queste modifiche? + Vuoi salvare le modifiche? </panel.string> <tab_container height="164" name="roles_tab_container"> <panel height="148" label="MEMBRI" name="members_sub_tab" tool_tip="Membri"> @@ -15,24 +15,25 @@ cliccando sui loro nomi. </panel.string> <filter_editor label="Filtra Membri" name="filter_input"/> <name_list bottom_delta="-105" height="104" name="member_list"> - <name_list.columns label="Nome del Membro" name="name"/> + <name_list.columns label="Socio" name="name"/> <name_list.columns label="Donazioni" name="donated"/> - <name_list.columns label="Status" name="online"/> + <name_list.columns label="Stato" name="online"/> </name_list> <button label="Invita" name="member_invite" width="165"/> <button label="Espelli" name="member_eject"/> </panel> <panel height="148" label="RUOLI" name="roles_sub_tab"> <panel.string name="help_text"> - I ruoli hanno un titolo con un elenco di abilità permesse che i membri possono eseguire. - I membri possono avere uno o più ruoli. Un gruppo può avere fino a 10 ruoli, inclusi il ruolo base o "Membro" e - il ruolo del Capogruppo. + I ruoli hanno un titolo con un elenco di abilità permesse +che i membri possono eseguire. I membri possono avere +uno o più ruoli. Un gruppo può avere fino a 10 ruoli, +fra cui il ruolo base o "Tutti" e il ruolo del Proprietario, ovvero il capogruppo. </panel.string> <panel.string name="cant_delete_role"> - I Ruoli 'Everyone' e 'Owners' sono speciali e non possono essere cancellati. + I ruoli 'Tutti' e 'Proprietari' sono speciali e non possono essere eliminati. </panel.string> <panel.string name="power_folder_icon"> - Cartella Inventario chiusa + Inv_FolderClosed </panel.string> <filter_editor label="Filtra i ruoli" name="filter_input"/> <scroll_list bottom_delta="-104" height="104" name="role_list"> @@ -43,7 +44,7 @@ cliccando sui loro nomi. <button label="Crea nuovo ruolo" name="role_create"/> <button label="Elimina ruolo" name="role_delete"/> </panel> - <panel height="148" label="ABILITA'" name="actions_sub_tab" tool_tip="Puoi vedere la descrizione dell'abilità e quali Ruoli o Membri possono eseguirla."> + <panel height="148" label="ABILITÀ" name="actions_sub_tab" tool_tip="Puoi vedere la descrizione dell'abilità e quali ruoli o membri possono eseguirla."> <panel.string name="help_text"> Le abilità permettono ai membri nei ruoli di fare cose specifiche in questo gruppo. C'è una vasta gamma di abilità . @@ -54,22 +55,22 @@ in questo gruppo. C'è una vasta gamma di abilità . </tab_container> <panel name="members_footer"> <text name="static"> - Membri assegnati + Ruoli assegnati </text> <text name="static2"> Abilità permesse </text> - <scroll_list name="member_allowed_actions" tool_tip="Per i dettagli di ogni abilità consentita vedi il pannello abilità ."/> + <scroll_list name="member_allowed_actions" tool_tip="Per i dettagli di ogni abilità consentita vedi la scheda abilità ."/> </panel> <panel name="roles_footer"> <text name="static"> - Nome del Ruolo + Nome del ruolo </text> <line_editor name="role_name"> Addetti </line_editor> <text name="static3"> - Titolo del Ruolo + Titolo del ruolo </text> <line_editor name="role_title"> (attendi) @@ -83,11 +84,11 @@ in questo gruppo. C'è una vasta gamma di abilità . <text name="static4"> Ruoli assegnati </text> - <check_box label="Mostrare i membri" name="role_visible_in_list" tool_tip="Imposta nella tabella Generale per i membri con questo ruolo di poter essere visti dalle persone esterne a questo gruppo."/> + <check_box label="Visualizza membri" name="role_visible_in_list" tool_tip="Imposta nella scheda Generale se i membri con questo ruolo possono essere visti dai residenti esterni a questo gruppo."/> <text name="static5" tool_tip="Una lista delle abilità che il ruolo ora selezionato può eseguire."> Abilità permesse </text> - <scroll_list name="role_allowed_actions" tool_tip="Per i dettagli di ogni abilità consentita vedi il pannello abilità ."/> + <scroll_list name="role_allowed_actions" tool_tip="Per i dettagli di ogni abilità consentita vedi la scheda abilità ."/> </panel> <panel name="actions_footer"> <text name="static"> diff --git a/indra/newview/skins/default/xui/it/panel_im_control_panel.xml b/indra/newview/skins/default/xui/it/panel_im_control_panel.xml index f6c3fa9288a7bff35c3389eabf24b4c8c0d57add..97ec0e11ebf31e58c9889c2efb16da5665ab064c 100644 --- a/indra/newview/skins/default/xui/it/panel_im_control_panel.xml +++ b/indra/newview/skins/default/xui/it/panel_im_control_panel.xml @@ -1,13 +1,29 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_im_control_panel"> - <text name="avatar_name" value="Sconosciuto"/> - <button label="Profilo" name="view_profile_btn"/> - <button label="Aggiungi Amico" name="add_friend_btn"/> - <button label="Teleport" name="teleport_btn"/> - <button label="Condividi" name="share_btn"/> - <panel name="panel_call_buttons"> - <button label="Chiama" name="call_btn"/> - <button label="Abbandona chiamata" name="end_call_btn"/> - <button label="Controllo Voice" name="voice_ctrls_btn"/> - </panel> + <layout_stack name="button_stack"> + <layout_panel name="view_profile_btn_panel"> + <button label="Profilo" name="view_profile_btn"/> + </layout_panel> + <layout_panel name="add_friend_btn_panel"> + <button label="Aggiungi amico" name="add_friend_btn"/> + </layout_panel> + <layout_panel name="teleport_btn_panel"> + <button label="Teleport" name="teleport_btn" tool_tip="Offri teleport a questa persona"/> + </layout_panel> + <layout_panel name="share_btn_panel"> + <button label="Condividi" name="share_btn"/> + </layout_panel> + <layout_panel name="pay_btn_panel"> + <button label="Paga" name="pay_btn"/> + </layout_panel> + <layout_panel name="call_btn_panel"> + <button label="Chiama" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="Abbandona chiamata" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="Regolazione voce" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_landmark_info.xml b/indra/newview/skins/default/xui/it/panel_landmark_info.xml index 5908a873ccc23121a863e34e1469769b5ec36c02..4af59605c1db96c0e80cdb1c23745355d68804ba 100644 --- a/indra/newview/skins/default/xui/it/panel_landmark_info.xml +++ b/indra/newview/skins/default/xui/it/panel_landmark_info.xml @@ -1,36 +1,37 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="landmark_info"> - <string name="title_create_landmark" value="Crea Landmark"/> - <string name="title_edit_landmark" value="Modifica Landmark"/> - <string name="title_landmark" value="Landmark"/> - <string name="not_available" value="(N\A)"/> + <string name="title_create_landmark" value="Crea punto di riferimento"/> + <string name="title_edit_landmark" value="Modifica punto di riferimento"/> + <string name="title_landmark" value="Punto di riferimento"/> + <string name="not_available" value="(non pert.)"/> <string name="unknown" value="(sconosciuto)"/> <string name="public" value="(pubblico)"/> <string name="server_update_text"> - Info sul luogo non disponibili senza l'aggiornamento del server. + Informazioni sul luogo non disponibili senza l'aggiornamento del server. </string> <string name="server_error_text"> - Info su questo luogo non disponibili ora, prova più tardi. + Informazioni su questo luogo non disponibili al momento, riprova più tardi. </string> <string name="server_forbidden_text"> - Info su questo luogo non disponibili a causa delle restrizioni di accesso. Controlla i tuoi permessi con il proprietario del terreno . + Informazioni su questo luogo non disponibili a causa delle limitazioni di accesso. Controlla i tuoi permessi con il proprietario del terreno. </string> <string name="acquired_date"> [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] </string> - <text name="title" value="Colloca Profilo"/> + <button name="back_btn" tool_tip="Indietro"/> + <text name="title" value="Profilo del posto"/> <scroll_container name="place_scroll"> <panel name="scrolling_panel"> <text name="maturity_value" value="sconosciuto"/> <panel name="landmark_info_panel"> <text name="owner_label" value="Proprietario:"/> - <text name="creator_label" value="Creatore:"/> + <text name="creator_label" value="Ideatore:"/> <text name="created_label" value="Creato:"/> </panel> <panel name="landmark_edit_panel"> <text name="title_label" value="Titolo:"/> - <text name="notes_label" value="Mie note:"/> - <text name="folder_label" value="Landmark del luogo:"/> + <text name="notes_label" value="Le mie note:"/> + <text name="folder_label" value="Ubicazione punto di riferimento:"/> </panel> </panel> </scroll_container> diff --git a/indra/newview/skins/default/xui/it/panel_landmarks.xml b/indra/newview/skins/default/xui/it/panel_landmarks.xml index 0efeaac97dbf8c15a4f49e417804fc59a4523690..74cd9e6fb11a2ffce2bbe990878c43789986092f 100644 --- a/indra/newview/skins/default/xui/it/panel_landmarks.xml +++ b/indra/newview/skins/default/xui/it/panel_landmarks.xml @@ -2,13 +2,13 @@ <panel name="Landmarks"> <accordion name="landmarks_accordion"> <accordion_tab name="tab_favorites" title="Barra dei Preferiti"/> - <accordion_tab name="tab_landmarks" title="Landmarks"/> - <accordion_tab name="tab_inventory" title="Mio Inventario"/> + <accordion_tab name="tab_landmarks" title="I miei punti di riferimento"/> + <accordion_tab name="tab_inventory" title="Il mio inventario"/> <accordion_tab name="tab_library" title="Libreria"/> </accordion> <panel name="bottom_panel"> <button name="options_gear_btn" tool_tip="Mostra opzioni addizionali"/> - <button name="add_btn" tool_tip="Aggiungi nuovo landmark"/> - <dnd_button name="trash_btn" tool_tip="Rimuovi landmark selezionato"/> + <button name="add_btn" tool_tip="Aggiungi un nuovo punto di riferimento"/> + <dnd_button name="trash_btn" tool_tip="Rimuovi il punto di riferimento selezionato"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_login.xml b/indra/newview/skins/default/xui/it/panel_login.xml index 7706a044faa9810a372b0bd73808d06237bf1945..bbf93ceb8744e0d4f6a1368d3cceea407aaca3bc 100644 --- a/indra/newview/skins/default/xui/it/panel_login.xml +++ b/indra/newview/skins/default/xui/it/panel_login.xml @@ -13,21 +13,21 @@ </text> <line_editor label="Nome" name="first_name_edit" tool_tip="[SECOND_LIFE] First Name"/> <line_editor label="Cognome" name="last_name_edit" tool_tip="[SECOND_LIFE] Last Name"/> - <check_box label="Ricordare" name="remember_check"/> + <check_box label="Ricorda password" name="remember_check"/> <text name="start_location_text"> - Iniziare presso: + Inizia da: </text> <combo_box name="start_location_combo"> <combo_box.item label="Casa mia" name="MyHome"/> </combo_box> - <button label="Log In" name="connect_btn"/> + <button label="Accedi" name="connect_btn"/> </layout_panel> <layout_panel name="links"> <text name="create_new_account_text"> - Aderire + Iscriviti </text> <text name="login_help"> - Aiuto quando log in? + Ti serve aiuto con la fase di accesso? </text> </layout_panel> </layout_stack> diff --git a/indra/newview/skins/default/xui/it/panel_main_inventory.xml b/indra/newview/skins/default/xui/it/panel_main_inventory.xml index edaab6e60ca8da9aa7b6a71fa2bc1978b7ac7ed3..878daf1e6b3319d3524b59e5ee05e17fc2953689 100644 --- a/indra/newview/skins/default/xui/it/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/it/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Cose" name="main inventory panel"> - <panel.string name="Title"> - Cose + <panel.string name="ItemcountFetching"> + Recupero di [ITEM_COUNT] oggetti... [FILTER] </panel.string> - <filter_editor label="Filtro" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Tutti gli elementi" name="All Items"/> - <inventory_panel label="Elementi recenti" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Mostra ulteriori opzioni"/> - <button name="add_btn" tool_tip="Aggiungi nuovo elemento"/> - <dnd_button name="trash_btn" tool_tip="Rimuovi l'elemento selezionato"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] oggetti [FILTER] + </panel.string> + <text name="ItemcountText"> + Oggetti: + </text> <menu_bar name="Inventory Menu"> <menu label="File" name="File"> <menu_item_call label="Apri" name="Open"/> @@ -22,43 +18,53 @@ <menu_item_call label="Animazione ([COST]L$)..." name="Upload Animation"/> <menu_item_call label="In blocco ([COST]L$ per file)..." name="Bulk Upload"/> </menu> - <menu_item_call label="Nuova Finestra" name="New Window"/> - <menu_item_call label="Mostra Filtri" name="Show Filters"/> - <menu_item_call label="Cancella Filtri" name="Reset Current"/> - <menu_item_call label="Chiudi tutte le Cartelle" name="Close All Folders"/> - <menu_item_call label="Svuota Cestino" name="Empty Trash"/> - <menu_item_call label="Svuota Oggetti Smarriti" name="Empty Lost And Found"/> + <menu_item_call label="Nuova finestra" name="New Window"/> + <menu_item_call label="Mostra filtri" name="Show Filters"/> + <menu_item_call label="Ripristina filtri" name="Reset Current"/> + <menu_item_call label="Chiudi tutte le cartelle" name="Close All Folders"/> + <menu_item_call label="Svuota cestino" name="Empty Trash"/> + <menu_item_call label="Svuota oggetti smarriti" name="Empty Lost And Found"/> </menu> <menu label="Crea" name="Create"> - <menu_item_call label="Nuova Cartella" name="New Folder"/> - <menu_item_call label="Nuovo Script" name="New Script"/> - <menu_item_call label="Nuova Notecard" name="New Note"/> - <menu_item_call label="Nuova Gesture" name="New Gesture"/> - <menu label="Nuovi Abiti" name="New Clothes"> - <menu_item_call label="Nuova Camicia" name="New Shirt"/> - <menu_item_call label="Nuovi Pantaloni" name="New Pants"/> - <menu_item_call label="Nuove Scarpe" name="New Shoes"/> - <menu_item_call label="Nuove Calze" name="New Socks"/> - <menu_item_call label="Nuova Giacca" name="New Jacket"/> - <menu_item_call label="Nuova Gonna" name="New Skirt"/> - <menu_item_call label="Nuovi Guanti" name="New Gloves"/> - <menu_item_call label="Nuova Maglietta Intima" name="New Undershirt"/> - <menu_item_call label="Nuovi Slip" name="New Underpants"/> - <menu_item_call label="Nuovo Alfa (Trasparenza)" name="New Alpha"/> - <menu_item_call label="Nuovo Tatuaggio" name="New Tattoo"/> + <menu_item_call label="Nuova cartella" name="New Folder"/> + <menu_item_call label="Nuovo script" name="New Script"/> + <menu_item_call label="Nuovo biglietto" name="New Note"/> + <menu_item_call label="Nuova gesture" name="New Gesture"/> + <menu label="Maglietta intima" name="New Clothes"> + <menu_item_call label="Nuova camicia" name="New Shirt"/> + <menu_item_call label="Nuovi pantaloni" name="New Pants"/> + <menu_item_call label="Nuove scarpe" name="New Shoes"/> + <menu_item_call label="Nuove calze" name="New Socks"/> + <menu_item_call label="Nuova giacca" name="New Jacket"/> + <menu_item_call label="Nuova gonna" name="New Skirt"/> + <menu_item_call label="Nuovi guanti" name="New Gloves"/> + <menu_item_call label="Nuova maglietta intima" name="New Undershirt"/> + <menu_item_call label="Nuovi slip" name="New Underpants"/> + <menu_item_call label="Nuovo Alfa (trasparenza)" name="New Alpha"/> + <menu_item_call label="Nuovo tatuaggio" name="New Tattoo"/> </menu> - <menu label="Nuove Parti del Corpo" name="New Body Parts"> - <menu_item_call label="Nuova Shape" name="New Shape"/> - <menu_item_call label="Nuova Pelle" name="New Skin"/> - <menu_item_call label="Nuovi Capelli" name="New Hair"/> - <menu_item_call label="Nuovi Occhi" name="New Eyes"/> + <menu label="Nuove parti del corpo" name="New Body Parts"> + <menu_item_call label="Nuova figura corporea" name="New Shape"/> + <menu_item_call label="Nuova pelle" name="New Skin"/> + <menu_item_call label="Nuovi capelli" name="New Hair"/> + <menu_item_call label="Nuovi occhi" name="New Eyes"/> </menu> </menu> <menu label="Ordina" name="Sort"> - <menu_item_check label="Per Nome" name="By Name"/> - <menu_item_check label="Per Data" name="By Date"/> - <menu_item_check label="Cartelle sempre per Nome" name="Folders Always By Name"/> + <menu_item_check label="In base al nome" name="By Name"/> + <menu_item_check label="In base alla data" name="By Date"/> + <menu_item_check label="Cartelle sempre in base al nome" name="Folders Always By Name"/> <menu_item_check label="Cartelle di sistema all'inizio" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filtro" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="Tutti gli elementi" name="All Items"/> + <inventory_panel label="Elementi recenti" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Mostra opzioni addizionali"/> + <button name="add_btn" tool_tip="Aggiungi nuovo elemento"/> + <dnd_button name="trash_btn" tool_tip="Rimuovi l'articolo selezionato"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_me.xml b/indra/newview/skins/default/xui/it/panel_me.xml index 03678ecad50a064087c68648f1db8e85b3d7ed3f..66601aa1653aedf32b1ff990ac9f60db51cbbf66 100644 --- a/indra/newview/skins/default/xui/it/panel_me.xml +++ b/indra/newview/skins/default/xui/it/panel_me.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Mio Profilo" name="panel_me"> +<panel label="Il mio profilo" name="panel_me"> <tab_container name="tabs"> - <panel label="PROFILO" name="panel_profile"/> - <panel label="PREFERITI" name="panel_picks"/> + <panel label="IL MIO PROFILO" name="panel_profile"/> + <panel label="I MIEI PREFERITI" name="panel_picks"/> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_media_settings_general.xml b/indra/newview/skins/default/xui/it/panel_media_settings_general.xml index cb629e5cfb4d733e6437915e9033afe0907396dc..5ed7b2367988519f75b2d8b5d44f2b517768589b 100644 --- a/indra/newview/skins/default/xui/it/panel_media_settings_general.xml +++ b/indra/newview/skins/default/xui/it/panel_media_settings_general.xml @@ -4,27 +4,27 @@ Home Page: </text> <text name="home_fails_whitelist_label"> - (Questa pagina non passa la lista bianca specifica) + (Questa pagina non supera la revisione o lista bianca specifica) </text> - <line_editor name="home_url" tool_tip="La home page per questa fonte media"/> + <line_editor name="home_url" tool_tip="La home page per questa fonte multimediale"/> <text name="preview_label"> Anteprima </text> <text name="current_url_label"> Pagina attuale: </text> - <text name="current_url" tool_tip="La pagina attuale per questa fonte media" value=""/> - <button label="Resetta" name="current_url_reset_btn"/> - <check_box initial_value="false" label="Auto Loop" name="auto_loop"/> - <check_box initial_value="false" label="Primo Click Interagisce" name="first_click_interact"/> - <check_box initial_value="false" label="Auto Zoom" name="auto_zoom"/> - <check_box initial_value="false" label="Auto Play Media" name="auto_play"/> + <text name="current_url" tool_tip="La pagina attuale per questa fonte multimediale" value=""/> + <button label="Reimposta" name="current_url_reset_btn"/> + <check_box initial_value="false" label="Ripetizione automatica" name="auto_loop"/> + <check_box initial_value="false" label="Interazione col primo clic" name="first_click_interact"/> + <check_box initial_value="false" label="Zoom automatico" name="auto_zoom"/> + <check_box initial_value="false" label="Riproduzione multimediale automatica" name="auto_play"/> <text name="media_setting_note"> - Nota: I Residenti possono annullare questa impostazione + Nota: I residenti possono annullare questa impostazione </text> - <check_box initial_value="false" label="Auto Scale Media on Face of Object" name="auto_scale"/> + <check_box initial_value="false" label="Messa in scala automatica dell'elemento multimediale sulla faccia dell'oggetto" name="auto_scale"/> <text name="size_label"> - Misura: + Dimensioni: </text> <text name="X_label"> X diff --git a/indra/newview/skins/default/xui/it/panel_media_settings_permissions.xml b/indra/newview/skins/default/xui/it/panel_media_settings_permissions.xml index 551d86864d90d3759b0ba7617d8ce8b2bcd914cc..53dac1299fbae52aa99421778ddf7ebd2643cc3e 100644 --- a/indra/newview/skins/default/xui/it/panel_media_settings_permissions.xml +++ b/indra/newview/skins/default/xui/it/panel_media_settings_permissions.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Personalizza" name="Media settings for controls"> <text name="controls_label"> - Controlli: + Regolazioni: </text> <combo_box name="controls"> <combo_item name="Standard"> @@ -11,10 +11,10 @@ Mini </combo_item> </combo_box> - <check_box initial_value="false" label="Permetti Navigazione & Interattività " name="perms_owner_interact"/> + <check_box initial_value="false" label="Permetti navigazione e interattività " name="perms_owner_interact"/> <check_box initial_value="false" label="Mostra la barra di controllo" name="perms_owner_control"/> - <check_box initial_value="false" label="Permetti Navigazione & Interattività " name="perms_group_interact"/> + <check_box initial_value="false" label="Permetti navigazione e interattività " name="perms_group_interact"/> <check_box initial_value="false" label="Mostra la barra di controllo" name="perms_group_control"/> - <check_box initial_value="false" label="Permetti Navigazione & Interattività " name="perms_anyone_interact"/> + <check_box initial_value="false" label="Permetti navigazione e interattività " name="perms_anyone_interact"/> <check_box initial_value="false" label="Mostra la barra di controllo" name="perms_anyone_control"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_media_settings_security.xml b/indra/newview/skins/default/xui/it/panel_media_settings_security.xml index 0df0331198c9892151ba76c84a6a2853960be5c2..785cd048a1e51c359d2753436b9ba49af2b878a2 100644 --- a/indra/newview/skins/default/xui/it/panel_media_settings_security.xml +++ b/indra/newview/skins/default/xui/it/panel_media_settings_security.xml @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Sicurezza" name="Media Settings Security"> - <check_box initial_value="false" label="Accesso permesso solo a URLs specificati (by prefix)" name="whitelist_enable"/> + <check_box initial_value="false" label="Permetti l'accesso solo ai modelli di URL specificati" name="whitelist_enable"/> <text name="home_url_fails_some_items_in_whitelist"> - Annota che le home page mancate sono segnate: + Le mancate aperture di home page sono segnalate: </text> <button label="Aggiungi" name="whitelist_add"/> - <button label="Cancella" name="whitelist_del"/> + <button label="Elimina" name="whitelist_del"/> <text name="home_url_fails_whitelist"> - Attenzione: la home page specificata nella Tabella General non ha passato questa lista bianca. E' stata disattivata fino a quando non sarà aggiunta un entrata valid. + Avvertenza: la home page specificata nella scheda Generale non ha superato la lista bianca. Viene disabilitata fino a che non venga inserita una voce valida. </text> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_my_profile.xml b/indra/newview/skins/default/xui/it/panel_my_profile.xml index 60faf4e7c59cbe1e4b88dfb0bbd2fe43a243d0ed..08c050228f39d0cfe16bedbd8b69d3b6d415a967 100644 --- a/indra/newview/skins/default/xui/it/panel_my_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_my_profile.xml @@ -1,37 +1,35 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Profilo" name="panel_profile"> <string name="no_partner_text" value="Nessuno"/> + <string name="no_group_text" value="Nessuno"/> <string name="RegisterDateFormat"> [REG_DATE] ([AGE]) </string> - <scroll_container name="profile_scroll"> - <panel name="scroll_content_panel"> - <panel name="second_life_image_panel"> - <icon label="" name="2nd_life_edit_icon" tool_tip="Clicca il pulsante inferiore Modifica Profilo per cambiare immagine"/> - </panel> - <panel name="first_life_image_panel"> - <icon label="" name="real_world_edit_icon" tool_tip="Clicca il pulsante inferiore Modifica Profilo per cambiare immagine"/> - <text name="title_rw_descr_text" value="Mondo Reale:"/> - </panel> - <text name="me_homepage_text"> - Homepage: - </text> - <text name="title_member_text" value="Membro dal:"/> - <text name="title_acc_status_text" value="Stato dell'account:"/> - <text name="acc_status_text" value="Residente. Nessuna info di pagamento."/> - <text name="title_partner_text" value="Partner:"/> - <text name="title_groups_text" value="Gruppi:"/> - </panel> - </scroll_container> - <panel name="profile_buttons_panel"> - <button label="Aggiungi amico" name="add_friend"/> - <button label="IM" name="im"/> - <button label="Chiama" name="call"/> - <button label="Mappa" name="show_on_map_btn"/> - <button label="Teleport" name="teleport"/> - </panel> - <panel name="profile_me_buttons_panel"> - <button label="Modifica Profilo" name="edit_profile_btn" tool_tip="Modifica le tue informazioni personali"/> - <button label="Modifica aspetto" name="edit_appearance_btn" tool_tip="Crea/modifica la tua apparenza: aspetto fisico, vestiti, etc."/> - </panel> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <panel name="second_life_image_panel"> + <icon label="" name="2nd_life_edit_icon" tool_tip="Clicca sul pulsante Modifica profilo per cambiare l'immagine"/> + <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> + </panel> + <panel name="first_life_image_panel"> + <icon label="" name="real_world_edit_icon" tool_tip="Clicca sul pulsante Modifica profilo per cambiare l'immagine"/> + <text name="title_rw_descr_text" value="Mondo reale:"/> + </panel> + <text name="title_member_text" value="Residente dal:"/> + <text name="title_acc_status_text" value="Stato account:"/> + <text name="title_partner_text" value="Partner:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(recupero)" name="partner_text"/> + </panel> + <text name="title_groups_text" value="Gruppi:"/> + </panel> + </scroll_container> + </layout_panel> + <layout_panel name="profile_me_buttons_panel"> + <button label="Modifica profilo" name="edit_profile_btn" tool_tip="Modifica le tue informazioni personali"/> + <button label="Modifica aspetto fisico" name="edit_appearance_btn" tool_tip="Crea/modifica il tuo aspetto: parti del corpo, abiti ecc."/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_navigation_bar.xml b/indra/newview/skins/default/xui/it/panel_navigation_bar.xml index 2e057c298366ad7c381414f54ea71c04e09a2c07..8e7216775914cf62fd663aceca2ad6bcafcbf884 100644 --- a/indra/newview/skins/default/xui/it/panel_navigation_bar.xml +++ b/indra/newview/skins/default/xui/it/panel_navigation_bar.xml @@ -1,15 +1,18 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="navigation_bar"> <panel name="navigation_panel"> - <button name="back_btn" tool_tip="Ritorna al luogo precedente"/> - <button name="forward_btn" tool_tip="Vai ad un luogo"/> - <button name="home_btn" tool_tip="Teleport a casa mia"/> - <location_input label="Luogo" name="location_combo"/> + <pull_button name="back_btn" tool_tip="Torna al luogo precedente"/> + <pull_button name="forward_btn" tool_tip="Procedi un luogo in avanti"/> + <button name="home_btn" tool_tip="Teleport a casa"/> + <location_input label="Posizione" name="location_combo"/> <search_combo_box label="Cerca" name="search_combo_box" tool_tip="Cerca"> <combo_editor label="Cerca [SECOND_LIFE]" name="search_combo_editor"/> </search_combo_box> </panel> - <favorites_bar name="favorite"> - <chevron_button name=">>" tool_tip="Mostra più dei miei Preferiti"/> + <favorites_bar name="favorite" tool_tip="Trascina qui i punti di riferimento per un accesso rapido ai tuoi posti preferiti in Second Life."> + <label name="favorites_bar_label" tool_tip="Trascina qui i punti di riferimento per un accesso rapido ai tuoi posti preferiti in Second Life."> + Barra dei Preferiti + </label> + <chevron_button name=">>" tool_tip="Mostra altri Preferiti"/> </favorites_bar> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_nearby_chat_bar.xml b/indra/newview/skins/default/xui/it/panel_nearby_chat_bar.xml index f7a58581d47d0e09e0ee5632137e68b44be9d3ed..6317d3192ea76f9b4af66e829c0cbf3f2c514124 100644 --- a/indra/newview/skins/default/xui/it/panel_nearby_chat_bar.xml +++ b/indra/newview/skins/default/xui/it/panel_nearby_chat_bar.xml @@ -1,5 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="chat_bar"> - <line_editor label="Clicca qui per la chat." name="chat_box" tool_tip="Premi Invio per dire, Ctrl+Invio per gridare"/> - <button name="show_nearby_chat" tool_tip="Mostra/Nasconde la chat log nei dintorni"/> + <string name="min_width"> + 192 + </string> + <string name="max_width"> + 320 + </string> + <line_editor label="Clicca qui per la chat." name="chat_box" tool_tip="Premi Invio per parlare, Ctrl+Invio per gridare"/> + <button name="show_nearby_chat" tool_tip="Mostra/Nasconde il registro della chat nei dintorni"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_nearby_media.xml b/indra/newview/skins/default/xui/it/panel_nearby_media.xml new file mode 100644 index 0000000000000000000000000000000000000000..5343ecae137a00fffc169fcca79965dba45192d3 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_nearby_media.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="nearby_media"> + <string name="empty_item_text"> + <vuoto> + </string> + <string name="parcel_media_name"> + Streaming media del lotto + </string> + <string name="parcel_audio_name"> + Streaming audio del lotto + </string> + <string name="playing_suffix"> + (riproduzione) + </string> + <panel name="minimized_controls"> + <button label="Interrompi tutto" name="all_nearby_media_disable_btn" tool_tip="Spegni tutti i media nei dintorni"/> + <button label="Accendi tutto" name="all_nearby_media_enable_btn" tool_tip="Accendi tutti i media nei dintorni"/> + <button name="open_prefs_btn" tool_tip="Accedi alle preferenze del media"/> + <button label="Più >>" label_selected="Meno <<" name="more_less_btn" tool_tip="Opzioni avanzate"/> + </panel> + <panel name="nearby_media_panel"> + <text name="nearby_media"> + Multimedia vicini + </text> + <text name="show"> + Mostra: + </text> + <combo_box name="show_combo"> + <combo_box.item label="Tutto" name="All"/> + <combo_box.item label="In questo lotto" name="WithinParcel"/> + <combo_box.item label="Fuori da questo lotto" name="OutsideParcel"/> + <combo_box.item label="su altri avatar" name="OnOthers"/> + </combo_box> + <scroll_list name="media_list"> + <scroll_list.columns label="Dintorni" name="media_proximity"/> + <scroll_list.columns label="Visibile" name="media_visibility"/> + <scroll_list.columns label="Classe" name="media_class"/> + <scroll_list.columns label="Nome" name="media_name"/> + <scroll_list.columns label="Debug" name="media_debug"/> + </scroll_list> + <panel name="media_controls_panel"> + <layout_stack name="media_controls"> + <layout_panel name="stop"> + <button name="stop_btn" tool_tip="Interrompi supporto selezionato"/> + </layout_panel> + <layout_panel name="play"> + <button name="play_btn" tool_tip="Riproduci media selezionato"/> + </layout_panel> + <layout_panel name="pause"> + <button name="pause_btn" tool_tip="Pausa media selezionato"/> + </layout_panel> + <layout_panel name="volume_slider_ctrl"> + <slider_bar initial_value="0.5" name="volume_slider" tool_tip="Volume audio per il media selezionato"/> + </layout_panel> + <layout_panel name="mute"> + <button name="mute_btn" tool_tip="Disattiva audio del media selezionato"/> + </layout_panel> + <layout_panel name="zoom"> + <button name="zoom_btn" tool_tip="Zoom nel media selezionato"/> + </layout_panel> + <layout_panel name="unzoom"> + <button name="unzoom_btn" tool_tip="Zoom indietro dal media selezionato"/> + </layout_panel> + </layout_stack> + </panel> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_notes.xml b/indra/newview/skins/default/xui/it/panel_notes.xml index ff843c16845c36ecd84a5cc17609005a0dea42cd..9ce6b47a325deba1d9a84a1f880eeb9b938a8c70 100644 --- a/indra/newview/skins/default/xui/it/panel_notes.xml +++ b/indra/newview/skins/default/xui/it/panel_notes.xml @@ -1,20 +1,20 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Note & Privacy" name="panel_notes"> +<panel label="Note e Privacy" name="panel_notes"> <layout_stack name="layout"> <panel name="notes_stack"> <scroll_container name="profile_scroll"> <panel name="profile_scroll_panel"> <text name="status_message" value="Le mie note private:"/> - <text name="status_message2" value="Permetti a questa persona di:"/> - <check_box label="Vedermi On-line" name="status_check"/> - <check_box label="Vedermi sull mappa" name="map_check"/> - <check_box label="Modificare, cancellare o prendere i miei oggetti" name="objects_check"/> + <text name="status_message2" value="Consenti a questa persona di:"/> + <check_box label="Vedere se sono online" name="status_check"/> + <check_box label="Vedermi sulla mappa" name="map_check"/> + <check_box label="Modificare, eliminare o prendere i miei oggetti" name="objects_check"/> </panel> </scroll_container> </panel> <panel name="notes_buttons_panel"> - <button label="Aggiungi" name="add_friend" tool_tip="Offrire amicizia ad un residente"/> - <button label="IM" name="im" tool_tip="Apri una sessione di messaggio istantaneo"/> + <button label="Aggiungi amico" name="add_friend" tool_tip="Offri amicizia a questo residente"/> + <button label="IM" name="im" tool_tip="Apri una sessione messaggio istantaneo"/> <button label="Chiama" name="call" tool_tip="Chiama questo residente"/> <button label="Mappa" name="show_on_map_btn" tool_tip="Mostra il residente sulla mappa"/> <button label="Teleport" name="teleport" tool_tip="Offri teleport"/> diff --git a/indra/newview/skins/default/xui/it/panel_online_status.xml b/indra/newview/skins/default/xui/it/panel_online_status.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdc489f375ec6eabd344b633f4fb6eb00c3ccef3 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_online_status.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="friend_online_status" name="friend_online_status"/> diff --git a/indra/newview/skins/default/xui/it/panel_online_status_toast.xml b/indra/newview/skins/default/xui/it/panel_online_status_toast.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdc489f375ec6eabd344b633f4fb6eb00c3ccef3 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_online_status_toast.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="friend_online_status" name="friend_online_status"/> diff --git a/indra/newview/skins/default/xui/it/panel_outfits_inventory.xml b/indra/newview/skins/default/xui/it/panel_outfits_inventory.xml index 9332a3ef3610671610e283004578073831fc2942..58055d91c76b043bdd5067a3cbe9b59c4a52fd81 100644 --- a/indra/newview/skins/default/xui/it/panel_outfits_inventory.xml +++ b/indra/newview/skins/default/xui/it/panel_outfits_inventory.xml @@ -1,7 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="Outfits"> - <accordion name="outfits_accordion"> - <accordion_tab name="tab_cof" title="Vestiario attuale"/> - <accordion_tab name="tab_outfits" title="Mio Vestiario"/> - </accordion> +<panel label="Cose" name="Outfits"> + <tab_container name="appearance_tabs"> + <inventory_panel label="I MIEI ABITI" name="outfitslist_tab"/> + <inventory_panel label="INDOSSA" name="cof_tab"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Mostra opzioni addizionali"/> + <dnd_button name="trash_btn" tool_tip="Rimuovi l'articolo selezionato"/> + <button label="Salva vestiario" name="make_outfit_btn" tool_tip="Salva questo aspetto fisico come un vestito"/> + <button label="Indossa" name="wear_btn" tool_tip="Indossa il vestiario selezionato"/> + <button label="M" name="look_edit_btn"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_outfits_inventory_gear_default.xml b/indra/newview/skins/default/xui/it/panel_outfits_inventory_gear_default.xml index c6be94231297d5383b4e9360bbe46fafd1ae3709..9e1a45b129d451c20f1762539699a0a02c547912 100644 --- a/indra/newview/skins/default/xui/it/panel_outfits_inventory_gear_default.xml +++ b/indra/newview/skins/default/xui/it/panel_outfits_inventory_gear_default.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_gear_default"> - <menu_item_call label="Sostituisci il Vestiario attuale" name="wear"/> - <menu_item_call label="Aggiungi al Vestiario attuale" name="add"/> - <menu_item_call label="Rimuovi dal Vestiario attuale" name="remove"/> - <menu_item_call label="Rinomina" name="rename"/> - <menu_item_call label="Rimuovi" name="remove_link"/> - <menu_item_call label="Cancella" name="delete"/> + <menu_item_call label="Sostituisci vestiario attuale" name="wear"/> + <menu_item_call label="Aggiungi al vestiario attuale" name="add"/> + <menu_item_call label="Rimuovi dal vestiario attuale" name="remove"/> + <menu_item_call label="Modifica nome" name="rename"/> + <menu_item_call label="Rimuovi link" name="remove_link"/> + <menu_item_call label="Elimina vestito" name="delete"/> </menu> diff --git a/indra/newview/skins/default/xui/it/panel_people.xml b/indra/newview/skins/default/xui/it/panel_people.xml index b20db0d565c724fa7d0fbec4330566fea01fce8b..acbc2cf32672cd7b3f3c71c247ed52e1884fb7ff 100644 --- a/indra/newview/skins/default/xui/it/panel_people.xml +++ b/indra/newview/skins/default/xui/it/panel_people.xml @@ -1,33 +1,38 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- Side tray panel --> -<panel label="Persona" name="people_panel"> +<panel label="Persone" name="people_panel"> <string name="no_people" value="Nessuna persona"/> <string name="no_one_near" value="Nessuno vicino"/> <string name="no_friends_online" value="Nessun amico online"/> <string name="no_friends" value="Nessun amico"/> - <string name="no_groups" value="Nessun gruppo"/> - <string name="people_filter_label" value="Filtro Persone"/> - <string name="groups_filter_label" value="Filtro Gruppi"/> + <string name="people_filter_label" value="Filtro persone"/> + <string name="groups_filter_label" value="Filtro gruppi"/> + <string name="no_filtered_groups_msg" value="[secondlife:///app/search/groups Try finding the group in search?]"/> + <string name="no_groups_msg" value="[secondlife:///app/search/groups Try searching for some groups to join.]"/> <filter_editor label="Filtro" name="filter_input"/> <tab_container name="tabs"> <panel label="NELLE VICINANZE" name="nearby_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="nearby_view_sort_btn" tool_tip="Opzioni"/> - <button name="add_friend_btn" tool_tip="Aggiungi il residente selezionato alla tua lista di amici"/> + <button name="add_friend_btn" tool_tip="Aggiungi il residente selezionato alla tua lista degli amici"/> </panel> </panel> - <panel label="AMICI" name="friends_panel"> + <panel label="I MIEI AMICI" name="friends_panel"> <accordion name="friends_accordion"> <accordion_tab name="tab_online" title="Online"/> - <accordion_tab name="tab_all" title="Tutti"/> + <accordion_tab name="tab_all" title="Tutto"/> </accordion> <panel label="bottom_panel" name="bottom_panel"> <button name="friends_viewsort_btn" tool_tip="Opzioni"/> - <button name="add_btn" tool_tip="Offri amicizia ad un residente"/> - <button name="del_btn" tool_tip="Rimuovi la persona selezionata dalla tua lista di amici"/> + <button name="add_btn" tool_tip="Offri amicizia a un residente"/> + <button name="del_btn" tool_tip="Rimuovi la persona selezionata dalla lista degli amici"/> </panel> + <text name="no_friends_msg"> + Per aggiungere amici, prova [secondlife:///app/search/people global search] oppure fai clic col pulsante destro del mouse su un residente per aggiungerlo come amico. +Se stai cercando qualcuno da frequentare, [secondlife:///app/worldmap try the Map]. + </text> </panel> - <panel label="GRUPPI" name="groups_panel"> + <panel label="I MIEI GRUPPI" name="groups_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="groups_viewsort_btn" tool_tip="Opzioni"/> <button name="plus_btn" tool_tip="Aderisci al gruppo/Crea nuovo gruppo"/> @@ -37,17 +42,18 @@ <panel label="RECENTE" name="recent_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="recent_viewsort_btn" tool_tip="Opzioni"/> - <button name="add_friend_btn" tool_tip="Aggiungi il residente selezionato alla tua lista di amici"/> + <button name="add_friend_btn" tool_tip="Aggiungi il residente selezionato alla tua lista degli amici"/> </panel> </panel> </tab_container> <panel name="button_bar"> - <button label="Profilo" name="view_profile_btn" tool_tip="Mostra foto, gruppi, e info di altri residenti"/> - <button label="IM" name="im_btn" tool_tip="Apri sessione instant message"/> + <button label="Profilo" name="view_profile_btn" tool_tip="Mostra immagine, gruppi e altre informazioni del residente"/> + <button label="IM" name="im_btn" tool_tip="Apri una sessione messaggio istantaneo"/> <button label="Chiama" name="call_btn" tool_tip="Chiama questo residente"/> <button label="Condividi" name="share_btn"/> <button label="Teleport" name="teleport_btn" tool_tip="Offri teleport"/> - <button label="Profilo del Gruppo" name="group_info_btn" tool_tip="Mostra info del gruppo"/> + <button label="Profilo del gruppo" name="group_info_btn" tool_tip="Mostra informazioni gruppo"/> <button label="Chat di gruppo" name="chat_btn" tool_tip="Apri sessione chat"/> + <button label="Chiamata al gruppo" name="group_call_btn" tool_tip="Chiama questo gruppo"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_pick_info.xml b/indra/newview/skins/default/xui/it/panel_pick_info.xml index 4771457825c59384053fd7352c9366df9078be11..7c059b443d9d736d114bf145a41a515fbe8172cb 100644 --- a/indra/newview/skins/default/xui/it/panel_pick_info.xml +++ b/indra/newview/skins/default/xui/it/panel_pick_info.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_pick_info"> - <text name="title" value="Scegli Info ????"/> + <text name="title" value="Scegli Info"/> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> <text name="pick_name" value="[nome]"/> - <text name="pick_location" value="[Caricando...]"/> + <text name="pick_location" value="[caricamento...]"/> <text name="pick_desc" value="[descrizione]"/> </panel> </scroll_container> diff --git a/indra/newview/skins/default/xui/it/panel_picks.xml b/indra/newview/skins/default/xui/it/panel_picks.xml index bcc433708d31994b6d5280212d447b9e11e13f6d..823e0fcd03e7e1d922c477586bf61372d5e0ad2f 100644 --- a/indra/newview/skins/default/xui/it/panel_picks.xml +++ b/indra/newview/skins/default/xui/it/panel_picks.xml @@ -1,20 +1,20 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Foto" name="panel_picks"> - <string name="no_picks" value="Nessuna Foto"/> - <string name="no_classifieds" value="Nessun Annuncio"/> +<panel label="Preferiti" name="panel_picks"> + <string name="no_picks" value="Nessun luogo preferito"/> + <string name="no_classifieds" value="Nessun annuncio"/> <text name="empty_picks_panel_text"> Nessuna foto/annuncio qui </text> <accordion name="accordion"> - <accordion_tab name="tab_picks" title="Foto"/> - <accordion_tab name="tab_classifieds" title="Annunci"/> + <accordion_tab name="tab_picks" title="Preferiti"/> + <accordion_tab name="tab_classifieds" title="Annunci pubblicitari"/> </accordion> <panel label="bottom_panel" name="edit_panel"> - <button name="new_btn" tool_tip="Crea una nuova foto o annuncio in questo luogo"/> + <button name="new_btn" tool_tip="Crea un nuovo luogo preferito o annuncio in questo luogo"/> </panel> <panel name="buttons_cucks"> - <button label="Info" name="info_btn" tool_tip="Mostra info sulla foto"/> - <button label="Teleport" name="teleport_btn" tool_tip="Teleport all'area corrispondente"/> - <button label="Mappa" name="show_on_map_btn" tool_tip="Mostra l'area corrispondente nella Mappa del Mondo"/> + <button label="Informazioni" name="info_btn" tool_tip="Mostra informazioni sul luogo preferito"/> + <button label="Teleport" name="teleport_btn" tool_tip="Teleport alla zona corrispondente"/> + <button label="Mappa" name="show_on_map_btn" tool_tip="Mostra la zona corrispondente nella mappa del Mondo"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_place_profile.xml b/indra/newview/skins/default/xui/it/panel_place_profile.xml index 03716ba4c548eee29b478673b6706834f0852082..9a38909d47cdd6aa3badf8f67706406a9c883f74 100644 --- a/indra/newview/skins/default/xui/it/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_place_profile.xml @@ -1,99 +1,107 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="place_profile"> - <string name="on" value="On"/> - <string name="off" value="Off"/> + <string name="on" value="Attivo"/> + <string name="off" value="Disattivato"/> <string name="anyone" value="Chiunque"/> <string name="available" value="disponibile"/> <string name="allocated" value="assegnato"/> - <string name="title_place" value="Profilo del luogo"/> - <string name="title_teleport_history" value="Cronologia dei Teleport"/> - <string name="not_available" value="(N\D)"/> + <string name="title_place" value="Profilo del posto"/> + <string name="title_teleport_history" value="Cronologia Teleport"/> + <string name="not_available" value="(non pert.)"/> <string name="unknown" value="(sconosciuto)"/> - <string name="public" value="(publico)"/> + <string name="public" value="(pubblico)"/> <string name="none_text" value="(nessuno)"/> - <string name="sale_pending_text" value="(Vendita in attesa di)"/> - <string name="group_owned_text" value="(Gruppo posseduto)"/> + <string name="sale_pending_text" value="(In corso di vendita)"/> + <string name="group_owned_text" value="(Di proprietà di un gruppo)"/> <string name="price_text" value="L$"/> <string name="area_text" value="m²"/> - <string name="all_residents_text" value="Tutti i Residenti"/> + <string name="all_residents_text" value="Tutti i residenti"/> <string name="group_text" value="Gruppo"/> <string name="can_resell"> - La terra acquistata in questa regione può essere rivenduta. + Il terreno acquistato in questa regione può essere rivenduto. </string> <string name="can_not_resell"> - La terra acquistata in questa regione non può essere rivenduta. + Il terreno acquistato in questa regione non può essere rivenduto. </string> <string name="can_change"> - La terra acquistata in questa regione può essere unita o suddivisa. + Il terreno acquistato in questa regione può essere unito o suddiviso. </string> <string name="can_not_change"> - La terra acquistata in questa regione non può essere unita o suddivisa. + Il terreno acquistato in questa regione non può essere unito o suddiviso. </string> <string name="server_update_text"> - Informazioni su questo luogo non disponibili senza l'aggiornamento del server. + Informazioni sul luogo non disponibili senza l'aggiornamento del server. </string> <string name="server_error_text"> - Informazioni su questo luogo non sono disponibili ora, per favore riprova più tardi. + Informazioni su questo luogo non disponibili al momento, riprova più tardi. </string> <string name="server_forbidden_text"> - Informazioni su questo luogo non sono disponibili a cause delle restrizioni sull'accesso. Per favore verifica i tuoi permessi con il proprietario del parcel. + Informazioni su questo luogo non disponibili a causa delle limitazioni di accesso. Controlla i tuoi permessi con il proprietario del terreno. </string> <string name="acquired_date"> [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] </string> + <button name="back_btn" tool_tip="Indietro"/> <text name="title" value="Profilo del luogo"/> <scroll_container name="place_scroll"> <panel name="scrolling_panel"> <text name="owner_label" value="Proprietario:"/> <text name="maturity_value" value="sconosciuto"/> <accordion name="advanced_info_accordion"> - <accordion_tab name="parcel_characteristics_tab" title="Parcel"> + <accordion_tab name="parcel_characteristics_tab" title="Lotto"> <panel name="parcel_characteristics_panel"> - <text name="rating_label" value="Valutazione:"/> + <text name="rating_label" value="Categoria:"/> <text name="rating_value" value="sconosciuto"/> - <text name="voice_label" value="Voice:"/> - <text name="voice_value" value="On"/> + <text name="voice_label" value="Voce:"/> + <text name="voice_value" value="Attivo"/> <text name="fly_label" value="Vola:"/> - <text name="fly_value" value="On"/> + <text name="fly_value" value="Attivo"/> <text name="push_label" value="Spingi:"/> - <text name="push_value" value="Off"/> + <text name="push_value" value="Disattivato"/> <text name="build_label" value="Costruisci:"/> - <text name="build_value" value="On"/> - <text name="scripts_label" value="Scripts:"/> - <text name="scripts_value" value="On"/> - <text name="damage_label" value="Danno:"/> - <text name="damage_value" value="Off"/> - <button label="Info sul terreno" name="about_land_btn"/> + <text name="build_value" value="Attivo"/> + <text name="scripts_label" value="Script:"/> + <text name="scripts_value" value="Attivo"/> + <text name="damage_label" value="Danni:"/> + <text name="damage_value" value="Disattivato"/> + <button label="Informazioni sui terreni" name="about_land_btn"/> </panel> </accordion_tab> <accordion_tab name="region_information_tab" title="Regione"> <panel name="region_information_panel"> <text name="region_name_label" value="Regione:"/> - <text name="region_type_label" value="Scrivi:"/> - <text name="region_rating_label" value="Valutazione:"/> + <text name="region_name" value="Mooseland"/> + <text name="region_type_label" value="Tipo:"/> + <text name="region_type" value="Moose"/> + <text name="region_rating_label" value="Categoria:"/> + <text name="region_rating" value="Adulti"/> <text name="region_owner_label" value="Proprietario:"/> + <text name="region_owner" value="moose Van Moose"/> <text name="region_group_label" value="Gruppo:"/> - <button label="Regione/Proprietà immobiliare" name="region_info_btn"/> + <text name="region_group"> + The Mighty Moose of mooseville soundvillemoose + </text> + <button label="Regione/proprietà immobiliare" name="region_info_btn"/> </panel> </accordion_tab> <accordion_tab name="estate_information_tab" title="Proprietà immobiliare"> <panel name="estate_information_panel"> <text name="estate_name_label" value="Proprietà immobiliare:"/> - <text name="estate_rating_label" value="Valutazione:"/> - <text name="estate_owner_label" value="Proprietà :"/> + <text name="estate_rating_label" value="Categoria:"/> + <text name="estate_owner_label" value="Proprietario:"/> <text name="covenant_label" value="Regolamento:"/> </panel> </accordion_tab> <accordion_tab name="sales_tab" title="In vendita"> <panel name="sales_panel"> <text name="sales_price_label" value="Prezzo:"/> - <text name="area_label" value="Area:"/> + <text name="area_label" value="Zona:"/> <text name="traffic_label" value="Traffico:"/> <text name="primitives_label" value="Primitive:"/> - <text name="parcel_scripts_label" value="Scripts:"/> - <text name="terraform_limits_label" value="Limiti per Terraform:"/> + <text name="parcel_scripts_label" value="Script:"/> + <text name="terraform_limits_label" value="Limiti terraform:"/> <text name="subdivide_label" value="Suddividi/Unisci abilità :"/> - <text name="resale_label" value="Rivendi abilità :"/> + <text name="resale_label" value="Abilità rivendita:"/> <text name="sale_to_label" value="In vendita a:"/> </panel> </accordion_tab> diff --git a/indra/newview/skins/default/xui/it/panel_places.xml b/indra/newview/skins/default/xui/it/panel_places.xml index 8e50a8b9d96f9a19fc099378dfa26cd0ca223832..bdb852ba62a353dd8e347509a9f5b8241714604c 100644 --- a/indra/newview/skins/default/xui/it/panel_places.xml +++ b/indra/newview/skins/default/xui/it/panel_places.xml @@ -1,14 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Luoghi" name="places panel"> - <string name="landmarks_tab_title" value="MIEI LANDMARKS"/> - <string name="teleport_history_tab_title" value="TELEPORT PRECEDENTI"/> - <filter_editor label="Filtro Luoghi" name="Filter"/> + <string name="landmarks_tab_title" value="I MIEI PUNTI DI RIFERIMENTO"/> + <string name="teleport_history_tab_title" value="CRONOLOGIA TELEPORT"/> + <filter_editor label="Filtra i miei luoghi" name="Filter"/> <panel name="button_panel"> - <button label="Teleport" name="teleport_btn"/> + <button label="Teleport" name="teleport_btn" tool_tip="Teleport alla zona selezionata"/> <button label="Mappa" name="map_btn"/> - <button label="Modifica" name="edit_btn"/> - <button label="Chiudi" name="close_btn"/> - <button label="Cancella" name="cancel_btn"/> + <button label="Modifica" name="edit_btn" tool_tip="Modifica le informazioni del punto di riferimento"/> + <button label="â–¼" name="overflow_btn" tool_tip="Mostra opzioni addizionali"/> <button label="Salva" name="save_btn"/> + <button label="Annulla" name="cancel_btn"/> + <button label="Chiudi" name="close_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/it/panel_preferences_advanced.xml index 13ffabbebf78a95b5f896bea06af7905f592c2ba..c24d3f656a9d0e8bfa799f3181c0fad689a211bc 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_advanced.xml @@ -1,48 +1,32 @@ <?xml version="1.0" encoding="utf-8"?> -<panel name="advanced"> - <panel.string name="resolution_format"> - [RES_X] x [RES_Y] - </panel.string> +<panel label="Avanzata" name="advanced"> <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> - <check_box label="Chat a Bolle" name="bubble_text_chat"/> - <color_swatch name="background" tool_tip="Scegli il colore delle vignette della Chat"/> - <slider label="Opacità " name="bubble_chat_opacity"/> - <text name="AspectRatioLabel1" tool_tip="larghezza/altezza"> - Rapporto di visualizzazione - </text> - <combo_box name="aspect_ratio" tool_tip="larghezza/altezza"> - <combo_box.item label="4:3 (Monitor Standard)" name="item1"/> - <combo_box.item label="5:4 (1280x1024 LCD)" name="item2"/> - <combo_box.item label="8:5 (Widescreen)" name="item3"/> - <combo_box.item label="16:9 (Widescreen)" name="item4"/> - </combo_box> - <check_box label="Rilevamento automatico" name="aspect_auto_detect"/> - <text name="heading1"> - Camera: - </text> - <slider label="Angolazione della visuale" name="camera_fov"/> + <panel.string name="middle_mouse"> + Pulsante centrale del mouse + </panel.string> + <slider label="Angolo di visuale" name="camera_fov"/> <slider label="Distanza" name="camera_offset_scale"/> <text name="heading2"> - Posizionamento Automatico per: - </text> - <check_box label="Costruire/Modificare" name="edit_camera_movement" tool_tip="Utilizza il posizionamento automatico della camera entrando e uscendo dalla modalità modifica"/> - <check_box label="Aspetto Fisico" name="appearance_camera_movement" tool_tip="Utilizza il posizionamento automatico della camera in modalità modifica"/> - <text name="heading3"> - Avatar: + Posizione automatica per: </text> + <check_box label="Costruire/Modificare" name="edit_camera_movement" tool_tip="Utilizza il posizionamento automatico della fotocamera entrando o uscendo dalla modalità modifica"/> + <check_box label="Aspetto fisico" name="appearance_camera_movement" tool_tip="Utilizza il posizionamento automatico della camera in modalità modifica"/> <check_box label="Mostra in modalità Mouselook" name="first_person_avatar_visible"/> - <check_box label="Cammino sempre con le frecce di movimento" name="arrow_keys_move_avatar_check"/> - <check_box label="Doppio Click-Tieni Premuto per correre" name="tap_tap_hold_to_run"/> - <check_box label="Consente il movimento delle labbra dell'Avatar quando parla" name="enable_lip_sync"/> - <check_box label="Mostra errori degli script" name="show_script_errors"/> + <check_box label="Le frecce di direzione mi fanno sempre spostare" name="arrow_keys_move_avatar_check"/> + <check_box label="Doppio click e tieni premuto per correre" name="tap_tap_hold_to_run"/> + <check_box label="Consente il movimento delle labbra dell'avatar quando parla" name="enable_lip_sync"/> + <check_box label="Chat a bolla" name="bubble_text_chat"/> + <slider label="Opacità " name="bubble_chat_opacity"/> + <color_swatch name="background" tool_tip="Scegli il colore delle vignette della chat"/> + <check_box label="Mostra errori dello script in:" name="show_script_errors"/> <radio_group name="show_location"> - <radio_item label="In chat" name="0"/> - <radio_item label="In una finestra" name="1"/> + <radio_item label="Chat nei dintorni" name="0"/> + <radio_item label="Finestra separata" name="1"/> </radio_group> - <check_box label="Modalità del microfono "interruttore ON/OFF" quando premo l'interruttore PARLA:" name="push_to_talk_toggle_check" tool_tip="In modalità "interruttore ON/OFF" premi il tasto per attivare o disattivare il microfono. Quando non usi questa modalità , il microfono è attivo solo se tieni premuto il tasto."/> - <line_editor label="Premi il pulsante per parlare" name="modifier_combo"/> - <button label="Imposta" name="set_voice_hotkey_button"/> - <button label="Pulsante centrale del Mouse" name="set_voice_middlemouse_button"/> + <check_box label="Attiva/disattiva la funzione parla quando premo:" name="push_to_talk_toggle_check" tool_tip="In modalità "interruttore ON/OFF" premi il tasto una volta per attivare o disattivare il microfono. Quando non usi questa modalità , il microfono è attivo solo se tieni premuto il tasto di comando."/> + <line_editor label="Pulsante di comando della funzione Premi per parlare" name="modifier_combo"/> + <button label="Imposta tasto" name="set_voice_hotkey_button"/> + <button label="Pulsante centrale del mouse" name="set_voice_middlemouse_button" tool_tip="Reimposta sul pulsante centrale del mouse"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml b/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml index 02da9de4a47e24733b13d7874b78ed09f1174b0b..fd1fd57761bec461c12035b7a77918410f852cea 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Pop-up" name="popups" title="Pop-up"> <text name="tell_me_label"> - Dimmi: + Avvisami: </text> <check_box label="Quando spendo o ottengo L$" name="notify_money_change_checkbox"/> - <check_box label="Quando i miei amici entrano o escono da SL" name="friends_online_notify_checkbox"/> + <check_box label="Quando i miei amici entrano o escono da Second Life" name="friends_online_notify_checkbox"/> <text name="show_label"> - Mostra sempre questi allarmi: + Mostra sempre: </text> <text name="dont_show_label"> - Non mostrare mai questi allarmi: + Non mostrare mai: </text> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_chat.xml b/indra/newview/skins/default/xui/it/panel_preferences_chat.xml index 9c064c27165954bc4b85c70372a49ab7d3072aac..28df9d2e431fd4bedd5f6bbeee68634b1a7f300e 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_chat.xml @@ -1,10 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Text Chat" name="chat"> + <text name="font_size"> + Dimensioni caratteri: + </text> <radio_group name="chat_font_size"> - <radio_item label="Piccolo" name="radio"/> - <radio_item label="Medio" name="radio2"/> - <radio_item label="Grande" name="radio3"/> + <radio_item label="Piccola" name="radio" value="0"/> + <radio_item label="Media" name="radio2" value="1"/> + <radio_item label="Grande" name="radio3" value="2"/> </radio_group> + <text name="font_colors"> + Colori caratteri: + </text> <color_swatch label="Tuo" name="user"/> <text name="text_box1"> Io @@ -38,9 +44,15 @@ URLs </text> <check_box initial_value="true" label="Simula la battitura tasti quando scrivi" name="play_typing_animation"/> - <check_box label="Spediscimi nella email gli IM quando sono OFF-LINE" name="send_im_to_email"/> - <radio_group name="chat_window" tool_tip="Mostra i tuoi Instant Messages in finestre separate, o in una finestra con diverse tabelle (Requires restart)"> - <radio_item label="Finestre multiple" name="radio"/> - <radio_item label="Una finestra" name="radio2"/> + <check_box label="Quando sono OFF-LINE, spediscimi gli IM in una e-mail" name="send_im_to_email"/> + <text name="show_ims_in_label"> + Mostra gli IM in: + </text> + <text name="requires_restart_label"> + (richiede il riavvio) + </text> + <radio_group name="chat_window" tool_tip="Mostra i tuoi messaggi istantanei in diverse finestre, o in una finestra con più schede (richiede il riavvio)"> + <radio_item label="Finestre separate" name="radio" value="0"/> + <radio_item label="Schede" name="radio2" value="1"/> </radio_group> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_general.xml b/indra/newview/skins/default/xui/it/panel_preferences_general.xml index 80b152752b33fe84954cf7d9e044fb2314ff3106..6bf857366bf95a5348008695479d1cc077d2d194 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_general.xml @@ -4,7 +4,7 @@ Lingua: </text> <combo_box name="language_combobox"> - <combo_box.item label="System default" name="System Default Language"/> + <combo_box.item label="Default di sistema" name="System Default Language"/> <combo_box.item label="English" name="English"/> <combo_box.item label="Dansk (Danese) - Beta" name="Danish"/> <combo_box.item label="Deutsch (Tedesco) - Beta" name="Deutsch(German)"/> @@ -17,7 +17,7 @@ <combo_box.item label="日本語 (Giapponese) - Beta" name="(Japanese)"/> </combo_box> <text name="language_textbox2"> - (Richiede restart) + (Richiede il riavvio) </text> <text name="maturity_desired_prompt"> Voglio accedere al contenuto di tipo: @@ -29,35 +29,38 @@ <combo_box.item label="PG" name="Desired_PG"/> </combo_box> <text name="start_location_textbox"> - Luogo d'inizio: + Luogo di partenza: </text> <combo_box name="start_location_combo"> <combo_box.item label="Ultimo posto visitato" name="MyLastLocation" tool_tip="Vai nell'ultimo posto visitato di default quando fai login."/> <combo_box.item label="Casa mia" name="MyHome" tool_tip="Vai a casa di default quando fai login"/> </combo_box> - <check_box initial_value="true" label="Mostra su login" name="show_location_checkbox"/> + <check_box initial_value="true" label="Mostra con il login" name="show_location_checkbox"/> <text name="name_tags_textbox"> - Nome sulle tags: + Nome: </text> <radio_group name="Name_Tag_Preference"> - <radio_item label="Off" name="radio"/> - <radio_item label="On" name="radio2"/> - <radio_item label="Mostra brevemente" name="radio3"/> + <radio_item label="Off" name="radio" value="0"/> + <radio_item label="On" name="radio2" value="1"/> + <radio_item label="Mostra brevemente" name="radio3" value="2"/> </radio_group> <check_box label="Mostra il mio nome" name="show_my_name_checkbox1"/> - <check_box initial_value="true" label="Nome piccolo sulle tags" name="small_avatar_names_checkbox"/> + <check_box initial_value="true" label="Nome in piccolo" name="small_avatar_names_checkbox"/> <check_box label="Mostra titoli del gruppo" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> - Miei effetti: + I miei effetti: </text> - <color_swatch label="" name="effect_color_swatch" tool_tip="Clicca per aprire la tavolozza dei colori"/> <text name="title_afk_text"> - Pausa di Away: - </text> - <spinner label="Assente dopo:" name="afk_timeout_spinner"/> - <text name="seconds_textbox"> - secondi + Pausa assenza: </text> + <color_swatch label="" name="effect_color_swatch" tool_tip="Clicca per aprire la tavolozza dei colori"/> + <combo_box label="Pausa assenza:" name="afk"> + <combo_box.item label="2 minuti" name="item0"/> + <combo_box.item label="5 minuti" name="item1"/> + <combo_box.item label="10 minuti" name="item2"/> + <combo_box.item label="30 minuti" name="item3"/> + <combo_box.item label="mai" name="item4"/> + </combo_box> <text name="text_box3"> Risposta in modalità occupato: </text> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml index 647df276337b8531c0c58eec110accf0799e3174..d02a794219b963ebb5642852558cbaa7fbeae29b 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Grafica" name="Display panel"> <text name="UI Size:"> - misura UI: + Dimensioni UI: </text> <text name="QualitySpeed"> Qualità e velocità : @@ -87,8 +87,8 @@ Dettagli illuminazione: </text> <radio_group name="LightingDetailRadio"> - <radio_item label="Solo il sole e la luna" name="SunMoon"/> - <radio_item label="Luci locali" name="LocalLights"/> + <radio_item label="Solo il sole e la luna" name="SunMoon" value="0"/> + <radio_item label="Luci locali" name="LocalLights" value="1"/> </radio_group> <text name="TerrainDetailText"> Dettagli terreno: @@ -99,7 +99,7 @@ </radio_group> </panel> <button label="Applica" label_selected="Applica" name="Apply"/> - <button label="Resetta" left="110" name="Defaults" width="190"/> - <button label="Avanzato" name="Advanced"/> + <button label="Reimposta" left="110" name="Defaults" width="190"/> + <button label="Avanzate" name="Advanced"/> <button label="Hardware" label_selected="Hardware" name="GraphicsHardwareButton"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_privacy.xml b/indra/newview/skins/default/xui/it/panel_preferences_privacy.xml index c84edbb47ebd56b6c8835723edef24690a482c76..1002195baf201a47f281963d228e10ae46614457 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_privacy.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_privacy.xml @@ -1,27 +1,27 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Comunicazione" name="im"> <panel.string name="log_in_to_change"> - log in per cambiare + accedi per cambiare </panel.string> - <button label="Pulisci la cronologia" name="clear_cache"/> + <button label="Pulisci la cronologia" name="clear_cache" tool_tip="Elimina immagine login, ultimo luogo, cronologia teleport, web e texture cache"/> <text name="cache_size_label_l"> - (Luoghi, immagini, web, cronologia del search) + (Luoghi, immagini, web, cronologia ricerche) </text> <check_box label="Solo amici e gruppi mi vedono online" name="online_visibility"/> <check_box label="Solo amici e gruppi possono chiamarmi o mandarmi IM" name="voice_call_friends_only_check"/> - <check_box label="Spegnere il microfono quando chiudi le chiamate" name="auto_disengage_mic_check"/> - <check_box label="Accetta cookies" name="cookies_enabled"/> - <check_box label="Permettere Media Autoplay" name="autoplay_enabled"/> + <check_box label="Spegnere il microfono alla chiusura delle chiamate" name="auto_disengage_mic_check"/> + <check_box label="Accetta cookie" name="cookies_enabled"/> + <check_box label="Consenti riproduzione multimediale automatica" name="autoplay_enabled"/> <text name="Logs:"> - Logs: + Registri: </text> - <check_box label="Salvare le ultime chat logs nel mio computer" name="log_nearby_chat"/> - <check_box label="Salvare gli IM logs nel mio computer" name="log_instant_messages"/> - <check_box label="Aggiungere orario" name="show_timestamps_check_im"/> + <check_box label="Salva i registri delle conversazioni sul mio computer" name="log_nearby_chat"/> + <check_box label="Salva i registri degli IM nel mio computer" name="log_instant_messages"/> + <check_box label="Riporta data e ora" name="show_timestamps_check_im"/> <line_editor left="288" name="log_path_string" right="-20"/> <text name="log_path_desc"> - Luoghi delle logs + Ubicazione dei registri </text> - <button label="Browse" label_selected="Browse" name="log_path_button" width="130"/> - <button label="Bloccare lista" name="block_list"/> + <button label="Sfoglia" label_selected="Sfoglia" name="log_path_button" width="130"/> + <button label="Lista dei bloccati" name="block_list"/> </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 17257a7cb8cea12a5fa8eee460d8cbf03d985e4f..cedf93beed5e0258ef42932e6b70157084c7b89a 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml @@ -1,46 +1,49 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Input & Camera" name="Input panel"> - <button bottom_delta="-40" label="Altri Dispositivi" name="joystick_setup_button" width="165"/> +<panel label="Impostazione" name="Input panel"> + <button bottom_delta="-40" label="Altri dispositivi" name="joystick_setup_button" width="165"/> <text name="Mouselook:"> - Mouselook: + Soggettiva: </text> <text name=" Mouse Sensitivity"> - Sensibilità del Mouse + Sensibilità mouse </text> <check_box label="Inverti" name="invert_mouse"/> <text name="Network:"> - Network: + Rete: </text> <text name="Maximum bandwidth"> - Banda Massima + Capacità massima di banda </text> <text name="text_box2"> kbps </text> - <check_box label="Custom port" name="connection_port_enabled"/> - <spinner label="Port number:" name="web_proxy_port"/> + <check_box label="Porta personalizzata" name="connection_port_enabled"/> + <spinner label="Numero porta:" name="connection_port"/> <text name="cache_size_label_l"> - Cache size + Dimensioni cache </text> <text name="text_box5"> MB </text> - <button label="Browse" label_selected="Browse" name="set_cache"/> - <button label="Resetta" label_selected="Imposta" name="reset_cache"/> <text name="Cache location"> - Cache location + Ubicazione della cache: </text> + <button label="Sfoglia" label_selected="Sfoglia" name="set_cache"/> + <button label="Reimposta" label_selected="Reimposta" name="reset_cache"/> <text name="Web:"> Web: </text> <radio_group name="use_external_browser"> - <radio_item label="Usa il built-in browser" name="internal" tool_tip="Usa il built-in web browser per aiuto, web links, etc. Questo browser apre come una nuova finestra all'interno [APP_NAME]."/> - <radio_item label="Usa il mio browser (IE, Firefox)" name="external" tool_tip="Usa il default system web browser per aiuto, web links, etc. Non raccomandato se utilizzi lo schermo pieno(full screen)."/> + <radio_item label="Usa il mio browser (IE, Firefox, Safari)" name="external" tool_tip="Utilizza il browser Web predefinito di sistema per l'aiuto, per i link Web e così via. Sconsigliato durante l'esecuzione a tutto schermo." value="1"/> + <radio_item label="Utilizza il browser Web integrato" name="internal" tool_tip="Utilizza il browser Web integrato per l'aiuto, per i link Web e così via. Questo browser si apre in una nuova finestra in [APP_NAME]." value=""/> </radio_group> - <check_box initial_value="false" label="Web proxy" name="web_proxy_enabled"/> - <line_editor name="web_proxy_editor" tool_tip="Nome o indirizzo IP del proxy che vorresti usare"/> - <button label="Browse" label_selected="Browse" name="set_proxy"/> + <check_box initial_value="vero" label="Abilita plugin" name="browser_plugins_enabled"/> + <check_box initial_value="vero" label="Accetta cookie" name="cookies_enabled"/> + <check_box initial_value="vero" label="Abilita Javascript" name="browser_javascript_enabled"/> + <check_box initial_value="false" label="Abilita proxy Web" name="web_proxy_enabled"/> <text name="Proxy location"> - Proxy location + Ubicazione proxy: </text> + <line_editor name="web_proxy_editor" tool_tip="Il nome o l'indirizzo IP del proxy che preferisci usare"/> + <spinner label="Numero porta:" name="web_proxy_port"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_sound.xml b/indra/newview/skins/default/xui/it/panel_preferences_sound.xml index c4d46291dd5b2d1a80b5aeef665e7e1396cd4800..2842b6a8aa06b88a623cd5528f1d2ecfc726d26b 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_sound.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_sound.xml @@ -1,20 +1,27 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Suoni" name="Preference Media panel"> - <slider label="Principale" name="System Volume"/> - <check_box initial_value="true" label="Spegni suono se minimizzato" name="mute_when_minimized"/> - <slider label="Ambiente" name="Wind Volume"/> + <slider label="Comando volume centrale" name="System Volume"/> + <check_box initial_value="true" label="Disattiva audio quando minimizzato" name="mute_when_minimized"/> <slider label="Pulsanti" name="UI Volume"/> - <slider label="MultiMedia" name="Media Volume"/> - <slider label="Effetto Suoni" name="SFX Volume"/> - <slider label="Musica" name="Music Volume"/> - <check_box label="Voce" name="enable_voice_check"/> - <slider label="Voice" name="Voice Volume"/> + <slider label="Ambiente" name="Wind Volume"/> + <slider label="Effetti sonori" name="SFX Volume"/> + <slider label="Musica in streaming" name="Music Volume"/> + <check_box label="Abilitato" name="music_enabled"/> + <slider label="Multimediale" name="Media Volume"/> + <check_box label="Abilitato" name="enable_media"/> + <slider label="Chat vocale" name="Voice Volume"/> + <check_box label="Abilitato" name="enable_voice_check"/> + <check_box label="Consenti riproduzione multimediale automatica" name="media_auto_play_btn" tool_tip="Seleziona qui per consentire la riproduzione multimediale automatica" value="vero"/> + <check_box label="Riproduci media in uso da altri avatar" name="media_show_on_others_btn" tool_tip="Deseleziona qui per nascondere i media in uso dagli altri avatar nei dintorni" value="vero"/> + <text name="voice_chat_settings"> + Impostazioni Chat vocale + </text> <text name="Listen from"> Ascolta da: </text> <radio_group name="ear_location"> - <radio_item label="Posizione della Camera" name="0"/> - <radio_item label="Posizione dell'Avatar" name="1"/> + <radio_item label="Posizione della fotocamera" name="0"/> + <radio_item label="Posizione dell'avatar" name="1"/> </radio_group> <button label="Dispositivi di Input/Output" name="device_settings_btn" width="165"/> <panel label="Impostazioni del dispositivo" name="device_settings_panel"> @@ -25,7 +32,7 @@ Input </text> <text name="My volume label"> - Mio volume: + Il mio volume: </text> <slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Cambia il volume utilizzando questa barra"/> <text name="wait_text"> diff --git a/indra/newview/skins/default/xui/it/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/it/panel_prim_media_controls.xml index dc7d59084e3cb0c7bc5794c7943ad5ae8adb0ff3..ef7aaf2e8cb924bd7da7def6ab16ca89bdd212dd 100644 --- a/indra/newview/skins/default/xui/it/panel_prim_media_controls.xml +++ b/indra/newview/skins/default/xui/it/panel_prim_media_controls.xml @@ -1,28 +1,79 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="MediaControls"> + <string name="min_width"> + 300 + </string> + <string name="min_height"> + 75 + </string> + <string name="zoom_medium_padding"> + 1.1 + </string> + <string name="top_world_view_avoid_zone"> + 50 + </string> + <layout_stack name="progress_indicator_area"> + <panel name="media_progress_indicator"> + <progress_bar name="media_progress_bar" tool_tip="L'elemento multimediale è in caricamento"/> + </panel> + </layout_stack> <layout_stack name="media_controls"> + <layout_panel name="back"> + <button name="back_btn" tool_tip="Naviga indietro"/> + </layout_panel> + <layout_panel name="fwd"> + <button name="fwd_btn" tool_tip="Naviga avanti"/> + </layout_panel> + <layout_panel name="home"> + <button name="home_btn" tool_tip="Home page"/> + </layout_panel> + <layout_panel name="media_stop"> + <button name="media_stop_btn" tool_tip="Interrompi supporto"/> + </layout_panel> + <layout_panel name="reload"> + <button name="reload_btn" tool_tip="Ricarica"/> + </layout_panel> + <layout_panel name="stop"> + <button name="stop_btn" tool_tip="Interrompi caricamento"/> + </layout_panel> + <layout_panel name="play"> + <button name="play_btn" tool_tip="Riproduci media"/> + </layout_panel> + <layout_panel name="pause"> + <button name="pause_btn" tool_tip="Pausa supporto"/> + </layout_panel> <layout_panel name="media_address"> - <line_editor name="media_address_url" tool_tip="Media URL"/> + <line_editor name="media_address_url" tool_tip="URL multimedia"/> <layout_stack name="media_address_url_icons"> <layout_panel> - <icon name="media_whitelist_flag" tool_tip="Lista Bianca attivata"/> + <icon name="media_whitelist_flag" tool_tip="Lista bianca attivata"/> </layout_panel> <layout_panel> - <icon name="media_secure_lock_flag" tool_tip="Secured Browsing"/> + <icon name="media_secure_lock_flag" tool_tip="Navigazione sicura"/> </layout_panel> </layout_stack> </layout_panel> <layout_panel name="media_play_position"> - <slider_bar initial_value="0.5" name="media_play_slider" tool_tip="Avanzamento riproduzione Movie"/> + <slider_bar initial_value="0.5" name="media_play_slider" tool_tip="Avanzamento riproduzione filmato"/> + </layout_panel> + <layout_panel name="skip_back"> + <button name="skip_back_btn" tool_tip="Passo indietro"/> + </layout_panel> + <layout_panel name="skip_forward"> + <button name="skip_forward_btn" tool_tip="Passo avanti"/> </layout_panel> <layout_panel name="media_volume"> - <button name="media_mute_button" tool_tip="Silenzia questo Media ????"/> - <slider name="volume_slider" tool_tip="Volume Media"/> + <button name="media_mute_button" tool_tip="Silenzia questo elemento multimediale"/> + <slider name="volume_slider" tool_tip="Volume multimedia"/> + </layout_panel> + <layout_panel name="zoom_frame"> + <button name="zoom_frame_btn" tool_tip="Zoom nel media"/> + </layout_panel> + <layout_panel name="close"> + <button name="close_btn" tool_tip="Zoom indietro"/> + </layout_panel> + <layout_panel name="new_window"> + <button name="new_window_btn" tool_tip="Apri URL nel browser"/> </layout_panel> - </layout_stack> - <layout_stack> - <panel name="media_progress_indicator"> - <progress_bar name="media_progress_bar" tool_tip="Media stà caricando"/> - </panel> </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_profile.xml b/indra/newview/skins/default/xui/it/panel_profile.xml index 837aa4ac65490d559c5430519d998e7b7c2b3347..9927ecbb884dad9d385f5e8d167cdaecfcdcbaa6 100644 --- a/indra/newview/skins/default/xui/it/panel_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_profile.xml @@ -12,37 +12,41 @@ </string> <string name="my_account_link_url" value="http://secondlife.com/my/account/index.php?lang=it-IT"/> <string name="no_partner_text" value="Nessuno"/> + <string name="no_group_text" value="Nessuno"/> <string name="RegisterDateFormat"> [REG_DATE] ([AGE]) </string> - <scroll_container name="profile_scroll"> - <panel name="scroll_content_panel"> - <panel name="second_life_image_panel"> - <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> - </panel> - <panel name="first_life_image_panel"> - <text name="title_rw_descr_text" value="Mondo Reale:"/> - </panel> - <text name="me_homepage_text"> - Homepage: - </text> - <text name="title_member_text" value="Membro dal:"/> - <text name="title_acc_status_text" value="Stato dell'Account:"/> - <text name="acc_status_text" value="Resident. No payment info on file."/> - <text name="title_partner_text" value="Partner:"/> - <text name="title_groups_text" value="Gruppi:"/> - </panel> - </scroll_container> - <panel name="profile_buttons_panel"> - <button label="Aggiungi Amico" name="add_friend" tool_tip="Offri amicizia ad un residente"/> - <button label="IM" name="im" tool_tip="Apri una sessione instant message"/> - <button label="Chiama" name="call" tool_tip="Chiama questo residente"/> - <button label="Mappa" name="show_on_map_btn" tool_tip="Mostra il residente sulla mappa"/> - <button label="Teleport" name="teleport" tool_tip="Offri teleport"/> - <button label="â–¼" name="overflow_btn" tool_tip="Paga o condividi l'inventario con il residente"/> - </panel> - <panel name="profile_me_buttons_panel"> - <button label="Modifica Profilo" name="edit_profile_btn"/> - <button label="Modifica Aspetto" name="edit_appearance_btn"/> - </panel> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <scroll_container name="profile_scroll"> + <panel name="profile_scroll_panel"> + <panel name="second_life_image_panel"> + <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> + </panel> + <panel name="first_life_image_panel"> + <text name="title_rw_descr_text" value="Mondo reale:"/> + </panel> + <text name="title_member_text" value="Residente dal:"/> + <text name="title_acc_status_text" value="Stato account:"/> + <text name="title_partner_text" value="Partner:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(recupero)" name="partner_text"/> + </panel> + <text name="title_groups_text" value="Gruppi:"/> + </panel> + </scroll_container> + </layout_panel> + <layout_panel name="profile_buttons_panel"> + <button label="Aggiungi amico" name="add_friend" tool_tip="Offri amicizia a questo residente"/> + <button label="IM" name="im" tool_tip="Apri una sessione messaggio istantaneo"/> + <button label="Chiama" name="call" tool_tip="Chiama questo residente"/> + <button label="Mappa" name="show_on_map_btn" tool_tip="Mostra il residente sulla mappa"/> + <button label="Teleport" name="teleport" tool_tip="Offri teleport"/> + <button label="â–¼" name="overflow_btn" tool_tip="Paga del denaro o condividi qualcosa dall'inventario con il residente"/> + </layout_panel> + <layout_panel name="profile_me_buttons_panel"> + <button label="Modifica profilo" name="edit_profile_btn" tool_tip="Modifica le tue informazioni personali"/> + <button label="Modifica aspetto fisico" name="edit_appearance_btn" tool_tip="Crea/modifica il tuo aspetto: parti del corpo, abiti ecc."/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_profile_view.xml b/indra/newview/skins/default/xui/it/panel_profile_view.xml index bf89a3e6f6bf2139a500147a5b4cb0f1f8c798fd..20c62d4ceb2b72e8075a6f36082a3c6df5a899d2 100644 --- a/indra/newview/skins/default/xui/it/panel_profile_view.xml +++ b/indra/newview/skins/default/xui/it/panel_profile_view.xml @@ -6,11 +6,11 @@ <string name="status_offline"> Offline </string> - <text_editor name="user_name" value="(Caricando...)"/> + <text_editor name="user_name" value="(Caricamento in corso...)"/> <text name="status" value="Online"/> <tab_container name="tabs"> <panel label="PROFILO" name="panel_profile"/> - <panel label="PREFERITI" name="panel_picks"/> - <panel label="NOTE & PRIVACY" name="panel_notes"/> + <panel label="LUOGHI CONSIGLIATI" name="panel_picks"/> + <panel label="NOTE E PRIVACY" name="panel_notes"/> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_region_covenant.xml b/indra/newview/skins/default/xui/it/panel_region_covenant.xml index f35b451ac1f8150d2f706806fda72129d8e0609e..0d3117ca7a15cdff121d8ca8548e51831bb2156a 100644 --- a/indra/newview/skins/default/xui/it/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/it/panel_region_covenant.xml @@ -31,7 +31,7 @@ della proprietà . </text> <text bottom_delta="-36" name="covenant_instructions"> - Trascina ed inserisci una notecard per cambiare i Covenant di questa proprietà immobiliare. + Trascina e incolla un biglietto per cambiare il Regolamento di questa proprietà . </text> <text name="region_section_lbl"> Regione diff --git a/indra/newview/skins/default/xui/it/panel_region_debug.xml b/indra/newview/skins/default/xui/it/panel_region_debug.xml index 9e81d42410ee0a0c4cbf5468fb00270a99a7e20d..45b3a016f4a0c48cbde032a098d22d1190e5bef0 100644 --- a/indra/newview/skins/default/xui/it/panel_region_debug.xml +++ b/indra/newview/skins/default/xui/it/panel_region_debug.xml @@ -26,9 +26,9 @@ <text name="options_text_lbl"> Opzioni: </text> - <check_box label="Con scripts" name="return_scripts" tool_tip="Ritorna solo gli oggetti che hanno scripts"/> - <check_box label="Sulla terra di qualcun'altro" name="return_other_land" tool_tip="Restituisci solo gli oggetti che sono in terreni appartenenti a qualcun altro"/> - <check_box label="In ogni regione di questa proprietà " name="return_estate_wide" tool_tip="Restituisci tutti gli oggetti nelle varie regioni che costituiscono l'insieme dei possedimenti terrieri"/> + <check_box label="Con script" name="return_scripts" tool_tip="Restituisci solo oggetti che hanno script"/> + <check_box label="Sul terreno di un altro residente" name="return_other_land" tool_tip="Restituisci solo gli oggetti che sono in terreni appartenenti a qualcun altro"/> + <check_box label="In tutte le regioni di questa proprietà " name="return_estate_wide" tool_tip="Restituisci tutti gli oggetti nelle varie regioni che costituiscono l'insieme dei possedimenti terrieri"/> <button label="Restituisci" name="return_btn"/> <button label="Visualizza l'elenco dei maggiori collidenti..." name="top_colliders_btn" tool_tip="Elenco degli oggetti che stanno potenzialmente subendo le maggiori collisioni" width="280"/> <button label="?" left="297" name="top_colliders_help"/> diff --git a/indra/newview/skins/default/xui/it/panel_region_estate.xml b/indra/newview/skins/default/xui/it/panel_region_estate.xml index b6dc60a9c2759e3acaf55d7913f95dd8ec872c55..8d3f096c4bbec0f6db83628a3fdcb56d35fbdfaf 100644 --- a/indra/newview/skins/default/xui/it/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/it/panel_region_estate.xml @@ -1,8 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Proprietà immobiliari" name="Estate"> <text name="estate_help_text"> - I cambiamenti alle impostazioni in questa finestra -avranno effetto su tutte le regioni della proprietà . + Le modifiche apportate in questa scheda saranno valide per tutte le regioni in questa proprietà . </text> <text name="estate_text" width="140"> Proprietà immobiliari: @@ -24,10 +23,10 @@ avranno effetto su tutte le regioni della proprietà . <check_box label="Permetti accesso pubblico" name="externally_visible_check"/> <button label="?" name="externally_visible_help"/> <text name="Only Allow"> - Accesso ristretto ai Residenti verificati con: + Limita l'accesso agli account verificati con: </text> - <check_box label="Informazioni di pagamento on File" name="limit_payment" tool_tip="Espelli residenti non identificati"/> - <check_box label="Verifica dell'età " name="limit_age_verified" tool_tip="Espelli i residenti che non hanno verificato l'età . Vedi [SUPPORT_SITE] per maggiori informazioni."/> + <check_box label="Informazioni di pagamento in archivio" name="limit_payment" tool_tip="Espelli i residenti non identificati"/> + <check_box label="Verifica età " name="limit_age_verified" tool_tip="Espelli i residenti che non hanno la loro età verificata. Vedi [SUPPORT_SITE] per maggiori informazioni."/> <check_box label="Permetti la chat voice" name="voice_chat_check"/> <button label="?" name="voice_chat_help"/> <check_box label="Permetti teleport diretto" name="allow_direct_teleport"/> @@ -40,7 +39,7 @@ avranno effetto su tutte le regioni della proprietà . </string> <button label="?" name="abuse_email_address_help"/> <button label="Applica" name="apply_btn"/> - <button font="SansSerifSmall" label="Espelli persona dalle proprietà ..." name="kick_user_from_estate_btn"/> + <button font="SansSerifSmall" label="Espelli residente dalla proprietà ..." name="kick_user_from_estate_btn"/> <button font="SansSerifSmall" label="Manda un messaggio di le proprietà ..." name="message_estate_btn"/> <text name="estate_manager_label"> Manager delle proprietà : diff --git a/indra/newview/skins/default/xui/it/panel_region_general.xml b/indra/newview/skins/default/xui/it/panel_region_general.xml index 8c31172ab50526eb5469d7069e5310a6d434015e..7d8b346c17d6030d75fc9ab55d21704c2c0c9c6f 100644 --- a/indra/newview/skins/default/xui/it/panel_region_general.xml +++ b/indra/newview/skins/default/xui/it/panel_region_general.xml @@ -3,51 +3,41 @@ <text name="region_text_lbl"> Regione: </text> - <text name="region_text" left="70"> + <text left="70" name="region_text"> sconosciuta </text> <text name="version_channel_text_lbl"> Versione: </text> - <text name="version_channel_text" left="70"> + <text left="70" name="version_channel_text"> sconosciuta </text> <text name="region_type_lbl"> Tipo: </text> - <text name="region_type" left="70"> + <text left="70" name="region_type"> sconosciuto </text> <check_box label="Proibisci la modifica del terreno" name="block_terraform_check"/> - <button label="?" name="terraform_help"/> <check_box label="Impedisci il volo" name="block_fly_check"/> - <button label="?" name="fly_help"/> <check_box label="Abilita i danni" name="allow_damage_check"/> - <button label="?" name="damage_help"/> <check_box label="Limita gli urti" name="restrict_pushobject"/> - <button label="?" name="restrict_pushobject_help"/> <check_box label="Abilita la rivendita del terreno" name="allow_land_resell_check"/> - <button label="?" name="land_resell_help" left="260"/> <check_box label="Abilita unione/suddivisione del terreno" name="allow_parcel_changes_check"/> - <button label="?" name="parcel_changes_help" left="260" /> <check_box label="Proibisci che il terreno appaia nelle ricerche" name="block_parcel_search_check" tool_tip="Permetti che le persone vedano questa regione e le sue suddivisioni nei risultati delle ricerche"/> - <button label="?" name="parcel_search_help" left="260"/> - <spinner label="Limite massimo di avatar" name="agent_limit_spin" label_width="135" width="190"/> - <button label="?" name="agent_limit_help"/> - <spinner label="Bonus di oggetti" name="object_bonus_spin" label_width="135" width="190"/> - <button label="?" name="object_bonus_help"/> + <spinner label="Limite massimo di avatar" label_width="135" name="agent_limit_spin" width="190"/> + <spinner label="Bonus di oggetti" label_width="135" name="object_bonus_spin" width="190"/> <text label="Maturità " name="access_text" width="120"> Categoria di accesso: </text> - <combo_box label="Mature" name="access_combo" left="126" width="74"> - <combo_box.item label="Adult" name="Adult"/> - <combo_box.item label="Mature" name="Mature"/> - <combo_box.item label="PG" name="PG"/> - </combo_box> - <button label="?" name="access_help"/> + <icons_combo_box label="Mature" left="126" name="access_combo" width="74"> + <icons_combo_box.item label="Adult" name="Adult" value="42"/> + <icons_combo_box.item label="Mature" name="Mature" value="21"/> + <icons_combo_box.item label="PG" name="PG" value="13"/> + </icons_combo_box> <button label="Applica" name="apply_btn"/> - <button label="Teletrasporta a casa un utente..." name="kick_btn"/> - <button label="Teletrasporta a casa tutti gli utenti..." name="kick_all_btn"/> + <button label="Teleport a casa un residente..." name="kick_btn"/> + <button label="Teleport a casa tutti i residenti..." name="kick_all_btn"/> <button label="Invia messaggio alla regione..." name="im_btn"/> <button label="Gestisci snodo di teleport..." name="manage_telehub_btn" width="210"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_region_general_layout.xml b/indra/newview/skins/default/xui/it/panel_region_general_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..232cd0c387d95af0f54fa803298fbf16d8cae7f2 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_region_general_layout.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Regione" name="General"> + <text name="region_text_lbl"> + Regione: + </text> + <text name="region_text"> + sconosciuto + </text> + <text name="version_channel_text_lbl"> + Versione: + </text> + <text name="version_channel_text"> + sconosciuto + </text> + <text name="region_type_lbl"> + Tipo: + </text> + <text name="region_type"> + sconosciuto + </text> + <check_box label="Impedisci Terraform" name="block_terraform_check"/> + <check_box label="Impedisci volo" name="block_fly_check"/> + <check_box label="Permetti danni" name="allow_damage_check"/> + <check_box label="Limita spinte" name="restrict_pushobject"/> + <check_box label="Permetti la rivendita dei terreni" name="allow_land_resell_check"/> + <check_box label="Permetti l'unione/divisione del terreno" name="allow_parcel_changes_check"/> + <check_box label="Impedisci la visualizzazione del terreno nelle ricerche" name="block_parcel_search_check" tool_tip="Permetti alla gente di vedere questa regione e i suoi lotti nei risultati dellla ricerca"/> + <spinner label="N. massimo di avatar" name="agent_limit_spin"/> + <spinner label="Bonus oggetto" name="object_bonus_spin"/> + <text label="Categoria di accesso" name="access_text"> + Categoria: + </text> + <combo_box label="Moderato" name="access_combo"> + <combo_box.item label="Adulto" name="Adult"/> + <combo_box.item label="Moderato" name="Mature"/> + <combo_box.item label="Generale" name="PG"/> + </combo_box> + <button label="Applica" name="apply_btn"/> + <button label="Teleport a casa un residente..." name="kick_btn"/> + <button label="Teleport a casa tutti i residenti..." name="kick_all_btn"/> + <button label="Invia messaggio alla regione..." name="im_btn"/> + <button label="Gestisci telehub..." name="manage_telehub_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_region_texture.xml b/indra/newview/skins/default/xui/it/panel_region_texture.xml index 23d6915a2fd9af40ea75cbdb3a5a117b821f8c59..1337ed18ca848f9685d245b8f7bd39a0c09fe21e 100644 --- a/indra/newview/skins/default/xui/it/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/it/panel_region_texture.xml @@ -25,16 +25,16 @@ Range di elevazione della texture </text> <text name="height_text_lbl6"> - Sud Ovest + Nordovest </text> <text name="height_text_lbl7"> - Nord Ovest + Nordest </text> <text name="height_text_lbl8"> - Sud Est + Sudovest </text> <text name="height_text_lbl9"> - Nord Est + Sudest </text> <spinner label="Bassa" name="height_start_spin_0"/> <spinner label="Bassa" name="height_start_spin_1"/> @@ -45,10 +45,10 @@ <spinner label="Alta" name="height_range_spin_2"/> <spinner label="Alta" name="height_range_spin_3"/> <text name="height_text_lbl10"> - Questi valori riproducono l'insieme della gamma delle textures superiori. + Questi valori indicano la gamma di miscele per le texture di cui sopra. </text> <text name="height_text_lbl11"> - Misurato in metri, il valore MINIMO è l'altezza MASSIMA della Texture n°1, e il valore MASSIMO è l'altezza MINIMA della Texture n°4. + Misurato in metri, il valore BASSO è la MASSIMA altezza della texture n. 1, e il valore ALTO è l'altezza MINIMA della texture n. 4. </text> <text name="height_text_lbl12"> Texture #1, e il valore più ALTO all'altezza MINIMA della Texture #4. diff --git a/indra/newview/skins/default/xui/it/panel_script_ed.xml b/indra/newview/skins/default/xui/it/panel_script_ed.xml index a98a88950c96b65d19bf8c887989b91cdfac296c..f550aee98e2b6321f96a3bb0be1c6ab88ab51525 100644 --- a/indra/newview/skins/default/xui/it/panel_script_ed.xml +++ b/indra/newview/skins/default/xui/it/panel_script_ed.xml @@ -1,43 +1,43 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="script panel"> <panel.string name="loading"> - Caricando... + Caricamento in corso... </panel.string> <panel.string name="can_not_view"> - Non puoi vedere o modificare questo script, perchè è impostato come "no copy". Necesiti tutti i permessi per vedere o modificare lo script dentro un oggetto.. + Per impostazione, questo script non può essere visualizzato né modificato. Per visualizzare o modificare uno script all'interno di un oggetto, devi avere i necessari diritti di modifica. </panel.string> <panel.string name="public_objects_can_not_run"> - Oggetti Pubblici non possono attivare scripts + Gli oggetti pubblici non possono eseguire gli script </panel.string> <panel.string name="script_running"> - Attivando + In esecuzione </panel.string> <panel.string name="Title"> Script: [NAME] </panel.string> <text_editor name="Script Editor"> - Caricando... + Caricamento in corso... </text_editor> <button label="Salva" label_selected="Salva" name="Save_btn"/> - <combo_box label="Inserire..." name="Insert..."/> + <combo_box label="Inserisci..." name="Insert..."/> <menu_bar name="script_menu"> <menu label="File" name="File"> <menu_item_call label="Salva" name="Save"/> - <menu_item_call label="Annulla tutti i cambiamenti" name="Revert All Changes"/> + <menu_item_call label="Annulla tutte le modifiche" name="Revert All Changes"/> </menu> <menu label="Modifica" name="Edit"> - <menu_item_call label="Slaccia" name="Undo"/> + <menu_item_call label="Annulla" name="Undo"/> <menu_item_call label="Rifai" name="Redo"/> <menu_item_call label="Taglia" name="Cut"/> <menu_item_call label="Copia" name="Copy"/> <menu_item_call label="Incolla" name="Paste"/> - <menu_item_call label="Seleziona Tutto" name="Select All"/> + <menu_item_call label="Seleziona tutto" name="Select All"/> <menu_item_call label="Deseleziona" name="Deselect"/> <menu_item_call label="Cerca / Sostituisci..." name="Search / Replace..."/> </menu> - <menu label="Aiuto" name="Help"> + <menu label="Guida" name="Help"> <menu_item_call label="Aiuto..." name="Help..."/> - <menu_item_call label="Aiuto nella tastiera..." name="Keyword Help..."/> + <menu_item_call label="Aiuto con parole chiave..." name="Keyword Help..."/> </menu> </menu_bar> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_script_limits_my_avatar.xml b/indra/newview/skins/default/xui/it/panel_script_limits_my_avatar.xml new file mode 100644 index 0000000000000000000000000000000000000000..98096a391abe6a742ab6dff638e70edc1d885ba7 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_script_limits_my_avatar.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="IL MIO AVATAR" name="script_limits_my_avatar_panel"> + <text name="script_memory"> + Uso degli script avatar + </text> + <text name="loading_text"> + Caricamento in corso... + </text> + <scroll_list name="scripts_list"> + <scroll_list.columns label="Dimensione (kb)" name="size"/> + <scroll_list.columns label="URL" name="urls"/> + <scroll_list.columns label="Nome dell'oggetto" name="name"/> + <scroll_list.columns label="Posizione" name="location"/> + </scroll_list> + <button label="Aggiorna lista" name="refresh_list_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_script_limits_region_memory.xml b/indra/newview/skins/default/xui/it/panel_script_limits_region_memory.xml new file mode 100644 index 0000000000000000000000000000000000000000..df7b0eae1c181e0168654de918f8550989d41ebc --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_script_limits_region_memory.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="MEMORIA DELLA REGIONE" name="script_limits_region_memory_panel"> + <text name="script_memory"> + Memoria dello script del lotto + </text> + <text name="loading_text"> + Caricamento in corso... + </text> + <scroll_list name="scripts_list"> + <scroll_list.columns label="Dimensione (kb)" name="size"/> + <scroll_list.columns label="URL" name="urls"/> + <scroll_list.columns label="Nome dell'oggetto" name="name"/> + <scroll_list.columns label="Proprietario dell'oggetto" name="owner"/> + <scroll_list.columns label="Lotto" name="parcel"/> + <scroll_list.columns label="Posizione" name="location"/> + </scroll_list> + <button label="Aggiorna lista" name="refresh_list_btn"/> + <button label="In evidenza" name="highlight_btn"/> + <button label="Restituisci" name="return_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_side_tray.xml b/indra/newview/skins/default/xui/it/panel_side_tray.xml index 06bc51f5db3b6d48ed92ec335edd0fdabef3e869..846dcb69f023a897e4c0cd3b02c21c6021351a72 100644 --- a/indra/newview/skins/default/xui/it/panel_side_tray.xml +++ b/indra/newview/skins/default/xui/it/panel_side_tray.xml @@ -2,25 +2,28 @@ <!-- Side tray cannot show background because it is always partially on screen to hold tab buttons. --> <side_tray name="sidebar"> - <sidetray_tab description="Casa." name="sidebar_home"> + <sidetray_tab description="Apri/chiudi la barra laterale." name="sidebar_openclose" tab_title="Apri/chiudi la barra laterale"/> + <sidetray_tab description="Casa." name="sidebar_home" tab_title="Home"> <panel label="casa" name="panel_home"/> </sidetray_tab> - <sidetray_tab description="Trova i tuoi amici, contatti e persone nelle vicinanze." name="sidebar_people"> + <sidetray_tab description="Modifica il tuo profilo pubblico e i preferiti." name="sidebar_me" tab_title="My Profile"> <panel_container name="panel_container"> - <panel label="Info di Gruppo" name="panel_group_info_sidetray"/> - <panel label="Residenti bloccati & Oggetti" name="panel_block_list_sidetray"/> + <panel label="Io" name="panel_me"/> </panel_container> </sidetray_tab> - <sidetray_tab description="Trova luoghi dove andare e luoghi già visitati." label="Luoghi" name="sidebar_places"> - <panel label="Luoghi" name="panel_places"/> + <sidetray_tab description="Trova amici, contatti e persone nelle vicinanze." name="sidebar_people" tab_title="People"> + <panel_container name="panel_container"> + <panel label="Profilo del gruppo" name="panel_group_info_sidetray"/> + <panel label="Residenti e oggetti bloccati" name="panel_block_list_sidetray"/> + </panel_container> </sidetray_tab> - <sidetray_tab description="Modifica il tuo profilo pubblico e le foto." name="sidebar_me"> - <panel label="Io" name="panel_me"/> + <sidetray_tab description="Trova luoghi dove andare e luoghi già visitati." label="Luoghi" name="sidebar_places" tab_title="Places"> + <panel label="Luoghi" name="panel_places"/> </sidetray_tab> - <sidetray_tab description="Cambia il tuo aspetto ed il tuo look attuale." name="sidebar_appearance"> - <panel label="Modifica Aspetto" name="sidepanel_appearance"/> + <sidetray_tab description="Sfoglia il tuo inventario." name="sidebar_inventory" tab_title="My Inventory"> + <panel label="Modifica inventario" name="sidepanel_inventory"/> </sidetray_tab> - <sidetray_tab description="Curiosa nel tuo inventario." name="sidebar_inventory"> - <panel label="Modifica Inventario" name="sidepanel_inventory"/> + <sidetray_tab description="Cambia il tuo aspetto ed il tuo look attuale." name="sidebar_appearance" tab_title="My Appearance"> + <panel label="Modifica aspetto fisico" name="sidepanel_appearance"/> </sidetray_tab> </side_tray> diff --git a/indra/newview/skins/default/xui/it/panel_side_tray_tab_caption.xml b/indra/newview/skins/default/xui/it/panel_side_tray_tab_caption.xml index 5e5f229ce45be9031c72a8e2afcf7ff81086dbd3..753e89f2fd24757703e46046efc0dba03579b356 100644 --- a/indra/newview/skins/default/xui/it/panel_side_tray_tab_caption.xml +++ b/indra/newview/skins/default/xui/it/panel_side_tray_tab_caption.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="sidetray_tab_panel"> - <text name="sidetray_tab_title" value="Vaschetta laterale"/> + <text name="sidetray_tab_title" value="Pannello laterale"/> <button name="show_help" tool_tip="Mostra Aiuto"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_stand_stop_flying.xml b/indra/newview/skins/default/xui/it/panel_stand_stop_flying.xml index 2fafc38ba17b4f2540b2a0904fe26a411df1d3f1..198ebf4b2a49ef8ae5ee501fcdec0d019deddc1a 100644 --- a/indra/newview/skins/default/xui/it/panel_stand_stop_flying.xml +++ b/indra/newview/skins/default/xui/it/panel_stand_stop_flying.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- Width and height of this panel should be synchronized with "panel_modes" in the floater_moveview.xml--> <panel name="panel_stand_stop_flying"> - <button label="Stare in piedi" name="stand_btn" tool_tip="Clicca qui per alzarti."/> + <button label="Stai in piedi" name="stand_btn" tool_tip="Clicca qui per alzarti."/> <button label="Ferma il volo" name="stop_fly_btn" tool_tip="Ferma il volo"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_status_bar.xml b/indra/newview/skins/default/xui/it/panel_status_bar.xml index 9acbb34c790cf5a173de6d9782b2e14fad69ac4d..584ac5e4b4e9730648b2079827ab0599f79ff097 100644 --- a/indra/newview/skins/default/xui/it/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/it/panel_status_bar.xml @@ -21,9 +21,11 @@ <panel.string name="buycurrencylabel"> L$ [AMT] </panel.string> - <button label="" label_selected="" name="buycurrency" tool_tip="Il mio saldo: Clicca per comprare più L$"/> - <text name="TimeText" tool_tip="Ora attuale (Pacific)"> - 12:00 AM + <button label="" label_selected="" name="buycurrency" tool_tip="Il mio saldo"/> + <button label="Acquista" name="buyL" tool_tip="Clicca per comprare più L$"/> + <text name="TimeText" tool_tip="Orario attuale (Pacifico)"> + 24:00, ora del Pacifico </text> - <button name="volume_btn" tool_tip="Controllo del volume globale"/> + <button name="media_toggle_btn" tool_tip="Attiva/ferma tutti i media (musica, video, pagine Web)"/> + <button name="volume_btn" tool_tip="Regolazione del volume globale"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_teleport_history.xml b/indra/newview/skins/default/xui/it/panel_teleport_history.xml index 3f02b1449a558ffbb94e87c03b7f97241b59f177..85f8f87e6867f9c2a2a470a7d4a1ef717634b21e 100644 --- a/indra/newview/skins/default/xui/it/panel_teleport_history.xml +++ b/indra/newview/skins/default/xui/it/panel_teleport_history.xml @@ -3,12 +3,16 @@ <accordion name="history_accordion"> <accordion_tab name="today" title="Oggi"/> <accordion_tab name="yesterday" title="Ieri"/> - <accordion_tab name="2_days_ago" title="2 giorni fà "/> - <accordion_tab name="3_days_ago" title="3 giorni fà "/> - <accordion_tab name="4_days_ago" title="4 giorni fà "/> - <accordion_tab name="5_days_ago" title="5 giorni fà "/> - <accordion_tab name="6_days_and_older" title="6 giorni fà o più vecchio"/> - <accordion_tab name="1_month_and_older" title="1 mese o più vecchio"/> - <accordion_tab name="6_months_and_older" title="6 mesi o più vecchio"/> + <accordion_tab name="2_days_ago" title="2 giorni fa"/> + 5 + <accordion_tab name="3_days_ago" title="3 giorni fa"/> + <accordion_tab name="4_days_ago" title="4 giorni fa"/> + <accordion_tab name="5_days_ago" title="5 giorni fa"/> + <accordion_tab name="6_days_and_older" title="6 giorni o precedente"/> + <accordion_tab name="1_month_and_older" title="1 mese o precedente"/> + <accordion_tab name="6_months_and_older" title="6 mesi o precedente"/> </accordion> + <panel name="bottom_panel"> + <button name="gear_btn" tool_tip="Mostra opzioni addizionali"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_teleport_history_item.xml b/indra/newview/skins/default/xui/it/panel_teleport_history_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..2ba4baacafc6fd27cbfc8c9a9d426f90b78ff884 --- /dev/null +++ b/indra/newview/skins/default/xui/it/panel_teleport_history_item.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="teleport_history_item"> + <button name="profile_btn" tool_tip="Mostra informazioni dell'oggetto"/> +</panel> diff --git a/indra/newview/skins/default/xui/it/panel_world_map.xml b/indra/newview/skins/default/xui/it/panel_world_map.xml index 1349b36e2c005b79819ce1e36306d14e37ad4c77..8d18e0ee0bd6f8e023983f53e0e4e663b376d649 100644 --- a/indra/newview/skins/default/xui/it/panel_world_map.xml +++ b/indra/newview/skins/default/xui/it/panel_world_map.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="world_map"> <panel.string name="Loading"> - Sto Caricando... + Caricamento in corso... </panel.string> <panel.string name="InvalidLocation"> Luogo non valido diff --git a/indra/newview/skins/default/xui/it/role_actions.xml b/indra/newview/skins/default/xui/it/role_actions.xml index eab8e6b4e3d41bf35840c55ca08b8195c200df08..95f1f662f9c1bdee70ed9ea446c2d5a354244e0a 100644 --- a/indra/newview/skins/default/xui/it/role_actions.xml +++ b/indra/newview/skins/default/xui/it/role_actions.xml @@ -1,72 +1,72 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <role_actions> - <action_set description="Queste abilità permettono di aggiungere e rimuovere Membri dal gruppo, e permettono ai nuovi membri di aderire al gruppo senza invito." name="Membership"> - <action description="Invitare persone in questo Gruppo" longdescription="Invita Persone in questo Gruppo usando il bottone 'Invita' nella sezione Ruoli > tabella Membri." name="member invite"/> - <action description="Espellere Membri da questo Gruppo" longdescription="Espelli Membri dal Gruppo usando il bottone 'Espelli' nella sezione Ruoli > tabella Membri. Un Proprietario può espellere chiunque eccetto un altro Proprietario. Se tu non sei un Proprietario, un Membro può essere espulso da un gruppo solo ed unicamente, se hanno il Ruolo Everyone, e nessun altro Ruolo. Per rimuovere Membri dai Ruoli, devi avere l'Abilità 'Rimuovi Membri dai Ruoli'." name="member eject"/> - <action description="Seleziona 'Iscrizione libera' e modifica da 'Tassa d'Iscrizione'" longdescription="Seleziona 'Iscrizione libera' per permettere ai nuovi Membri di aderire senza invito, e modifica da 'Tassa d'Iscrizione' nella sezione Generale." name="member options"/> + <action_set description="Queste abilità permettono di aggiungere e rimuovere membri dal gruppo e consentono ai nuovi membri di aderire al gruppo senza invito." name="Membership"> + <action description="Invita persone in questo gruppo" longdescription="Invita persone in questo gruppo usando il pulsante Invita nella sezione Ruoli > scheda membri." name="member invite"/> + <action description="Espelli membri da questo gruppo" longdescription="Espelli membri dal gruppo usando il pulsante Espelli nella sezione Ruoli > scheda membri. Un proprietario può espellere chiunque tranne un altro proprietario. Se non sei un proprietario, un membro può essere espulso da un gruppo soltanto qualora abbia soltanto il ruolo Tutti, e nessun altro ruolo. Per rimuovere membri dai ruoli, devi avere l'Abilità corrispondente." name="member eject"/> + <action description="Seleziona Iscrizione libera e modifica la Quota d'iscrizione" longdescription="Seleziona Iscrizione libera per permettere ai nuovi membri di aderire senza invito e modifica la quota d'iscrizione nella scheda Generale." name="member options"/> </action_set> - <action_set description="Queste Abilità permettono di aggiungere, rimuovere, cambiare i Ruoli del Gruppo, aggiungere e rimuovere Membri dai Ruoli, e assegnare Abilità ai Ruoli." name="Roles"> - <action description="Creare nuovi Ruoli" longdescription="Crea nuovi Ruoli nella sezione Ruoli > tabella Ruoli." name="role create"/> - <action description="Cancellare Ruoli" longdescription="Cancella Ruoli nella sezione Ruoli > tabella Ruoli." name="role delete"/> - <action description="Cambia i nomi del Ruolo, titoli, descrizioni, se i membri in quel Ruolo sono resi pubblici" longdescription="Cambia i nomi del Ruolo, titoli, descrizioni, se i membri in quel Ruolo sono resi pubblici. Viene fatto nella parte bassa della sezione Ruoli > tabella Ruoli dopo avere selezionato un Ruolo." name="role properties"/> - <action description="Incaricare Membri ad Assegnare Ruoli" longdescription="Assegna un Ruolo a Membri nella lista dei Ruoli assegnati (Roles section > Members tab). Un Membro con questa Abilità può aggiungere Membri ad un Ruolo già presente nell'elenco." name="role assign member limited"/> - <action description="Assegnare Membri a tutti i Ruoli" longdescription="Assegna Tutti i Ruoli a Membri nella lista dei Ruoli Assegnati (Roles section > Members tab). *ATTENZIONE* Ogni Membro con questo Ruolo e Abilità può assegnarsi -- e assegnare ad altri Membri non Proprietari-- Ruoli con poteri maggiori di quelli normalmente concessi, potenzialmente elevandosi ai poteri concessi al Proprietario. Siate sicuri di quello che fate prima di assegnare questa Abilità ." name="role assign member"/> - <action description="Rimuovere Membri dai Ruoli" longdescription="Rimuovi dai Ruoli i Membri nella lista dei Ruoli Assegnati (Roles section > Members tab). Il Proprietario non può essere rimosso." name="role remove member"/> - <action description="Assegnare e Rimuovere Abilità nei Ruoli" longdescription="Assegna e Rimuovi Abilità per ogni Ruolo nella lista dei Ruoli Assegnati (Roles section > Roles tab). *ATTENZIONE* Ogni Membro con questo Ruolo e Abilità può assegnarsi --ed assegnare ad altri Membri non Proprietà -- tutte le Abilità , che potenzialmente lo elevano ai poteri ai poteri concessi al Proprietario. Siate sicuri di quello che fate prima di assegnare questa Abilità ." name="role change actions"/> + <action_set description="Queste Abilità permettono di aggiungere, rimuovere, cambiare i ruoli del gruppo, aggiungere e rimuovere membri dai ruoli, nonché assegnare abilità ai ruoli." name="Roles"> + <action description="Creare nuovi ruoli" longdescription="Crea nuovi ruoli nella sezione Ruoli > scheda ruoli." name="role create"/> + <action description="Eliminare ruoli" longdescription="Elimina ruoli nella sezione Ruoli > scheda ruoli." name="role delete"/> + <action description="Cambia i nomi di ruoli, i titoli, le descrizioni e definisci se i membri in quel ruolo sono resi pubblici" longdescription="Cambia i nomi di ruoli, i titoli, le descrizioni e definisci se i membri in quel ruolo sono resi pubblici Viene fatto nella parte inferiore della sezione Ruoli > scheda Ruoli, dopo avere selezionato un ruolo." name="role properties"/> + <action description="Assegnare membri a ruoli del responsabile" longdescription="Assegna un ruolo a membri nella lista dei ruoli assegnati (sezione Ruoli > scheda membri). Un utente con questa Abilità può aggiungere membri ad un ruolo nel quale il responsabile è già presente." name="role assign member limited"/> + <action description="Assegnare membri a qualsiasi ruolo" longdescription="Assegna i membri a qualsiasi ruolo nell'elenco dei ruoli assegnati (sezione Ruoli > scheda membri). *ATTENZIONE* Ogni membro con questo Ruolo e Abilità può assegnarsi -- e assegnare ad altri membri non proprietari -- ruoli con poteri maggiori di quelli normalmente concessi, potenzialmente con poteri analoghi a quelli di proprietario. Sii sicuro della scelta prima di assegnare questa Abilità ." name="role assign member"/> + <action description="Rimuovere membri dai ruoli" longdescription="Rimuovi dai ruoli i membri nell'elenco dei ruoli assegnati (sezione Ruoli > scheda membri). Il proprietario non può essere rimosso." name="role remove member"/> + <action description="Assegnare e rimuovere abilità nei ruoli" longdescription="Assegna e Rimuovi Abilità per ogni ruolo nell'elenco dei ruoli assegnati (sezione Ruoli > scheda Ruoli). *ATTENZIONE* Ogni membro con questo ruolo e Abilità può assegnarsi -- ed assegnare ad altri membri non proprietari -- tutte le Abilità , che potenzialmente con poteri analoghi a quelli di proprietario. Sii sicuro della scelta prima di assegnare questa Abilità ." name="role change actions"/> </action_set> - <action_set description="Queste Abilità permettono di modificare l'identità di questo Gruppo, come il cambiamento della visibilità pubblica, lo statuto, e lo stemma." name="Group Identity"> - <action description="Cambiare lo Statuto, lo Stemma, e 'Mostra nel Cerca/Search'" longdescription="Cambia Statuto, Immagine, e 'Mostra nel Cerca'. Viene fatto nella sezione Generale." name="group change identity"/> + <action_set description="Queste abilità autorizzano a modificare l'identità di questo gruppo, come ad esempio la modifica della visibilità pubblica, lo statuto e il logo." name="Group Identity"> + <action description="Cambiare lo statuto, il logo, e 'Mostra nella ricerca'" longdescription="Cambia statuto, logo e 'Mostra nella ricerca'. Viene fatto nella sezione Generale." name="group change identity"/> </action_set> - <action_set description="Queste Abilità includono il potere di intestare, modificare, e vendere terreni di proprietà del Gruppo. Per aprire la finestra Info sul Terreno, click destro sulla terra e seleziona 'Info sul Terreno', o clicca l'icona 'i' sulla Barra di Navigazione." name="Parcel Management"> - <action description="Intestare terra e comprare terra per il gruppo" longdescription="Intesta terra e compra terra per il Gruppo. Viene fatto in Informazioni sul Terreno > tabella Generale." name="land deed"/> - <action description="Abbandonare la terra in favore di Governor Linden" longdescription="Abbandona la terra in favore di Governor Linden. *ATTENZIONE* Ogni Membro con questo Ruolo e Abilità può abbandonare la terra posseduta dal Gruppo in Informazioni sul Terreno > tabella Generale, restituendola alla proprietà Linden senza una vendita! Devi essere sicuro di quello che fai prima di assegnare questa Abilità ." name="land release"/> - <action description="Impostare le info per la vendita della terra" longdescription="Imposta le info per la vendita della terra. *ATTENZIONE* Ogni Membro con questo Ruolo e Abilità può vendere la terra posseduta dal Gruppo in Info sul Terreno > tabella Generale (al prezzo che vogliono)! Devi essere sicuro di quello che fai prima di assegnare questa Abilità ." name="land set sale info"/> - <action description="Suddividere e unire appezzamenti" longdescription="Suddividi e unisci parcel. Viene fatto con click destro sul terra, 'Modifica Terreno', trascinando poi il mouse sulla terra per creare una selezione. Per suddividere, seleziona quale parte vuoi dividere e clicca 'Suddividere'. Per unire, seleziona due o più two parcel confinanti e clicca 'Unisci'." name="land divide join"/> + <action_set description="Queste Abilità comprendono il potere di intestare, modificare e vendere terreni di proprietà del gruppo. Per aprire la finestra Informazioni sul terreno, fai clic con il pulsante destro del mouse sul terreno e seleziona Informazioni sul terreno, o clicca sull'icona 'i' nella Barra di Navigazione." name="Parcel Management"> + <action description="Cessione di terreno e acquisto di terreno per il gruppo" longdescription="Intesta terreno e acquista terreno per il gruppo. Ciò viene fatto in Informazioni sul terreno > scheda Generale." name="land deed"/> + <action description="Abbandonare il terreno in favore di Governor Linden" longdescription="Abbandona il terreno in favore di Governor Linden. *ATTENZIONE* Ogni membro con questo ruolo e abilità può abbandonare il terreno di proprietà del gruppo in Informazioni sul terreno > scheda Generale, restituendolo alla proprietà Linden senza effettuare una vendita. Sii sicuro della scelta prima di assegnare questa Abilità ." name="land release"/> + <action description="Informazioni su come impostare il terreno come in vendita" longdescription="Imposta le info per la vendita della terra. *ATTENZIONE* Ogni Membro con questo ruolo e abilità può vendere il terreno di proprietà del gruppo nella scheda Informazioni sul terreno > scheda Generale. Pertanto sii sicuro della scelta prima di assegnare questa Abilità ." name="land set sale info"/> + <action description="Suddividere e unire lotti" longdescription="Suddividi e unisci lotti. Viene fatto cliccando con il pulsante destro del mouse sul terreno, selezionando Modifica terreno e trascinando il mouse sul terreno per creare una selezione. Per suddividere, seleziona quale parte vuoi dividere e clicca su Suddividi. Per unire, seleziona due o più lotti confinanti e clicca su Unisci." name="land divide join"/> </action_set> - <action_set description="Queste Abilità permettono di cambiare il nome dell'appezzamento, le impostazioni pre-definite, la visibilità nella mappatura, il punto di arrivo & le coordinate del Teleport." name="Parcel Identity"> - <action description="Premi 'Mostra Luogo nel Cerca' e seleziona una categoria" longdescription="Premi 'Mostra Luogo nel Cerca' e seleziona una categoria di parcel in Info sul Terreno > tabella Opzioni." name="land find places"/> - <action description="Cambia il nome del parcel, descrizione, e impostazioni nel 'Mostra Luogo nel Cerca'" longdescription="Cambia il nome del parcel, descrizione, e impostazioni nel 'Mostra Luogo nel Cerca'. Viene fatto in Info sul Terreno > tabella Opzioni." name="land change identity"/> - <action description="Impostare il punto di arrivo e le coordinate del Teleport" longdescription="In un appezzamento posseduto da un Gruppo, i Membri con questo Ruolo e Abilità possono impostare un punto di arrivo per i Teleport entranti, e impostare anche le coordinate del Teleport per ulteriore precisione. Viene fatto in Informazioni sul Terreno > tabella Opzioni." name="land set landing point"/> + <action_set description="Queste abilità permettono di cambiare il nome del lotto, le impostazioni di pubblicazione, la visibilità negli elenchi e il punto di arrivo, nonché opzioni di indirizzamento del Teleport." name="Parcel Identity"> + <action description="Premi Mostra luogo nella ricerca e seleziona una categoria" longdescription="Premi Mostra luogo nella ricerca e seleziona una categoria di lotto in Informazioni sul terreno > scheda Opzioni." name="land find places"/> + <action description="Cambia il nome del lotto, la descrizione e le impostazioni di Mostra luogo nella ricerca" longdescription="Cambia il nome del lotto, la descrizione e le impostazioni di Mostra luogo nella ricerca. Ciò viene fatto in Informazioni sul terreno > scheda Opzioni." name="land change identity"/> + <action description="Impostare il punto di arrivo e l'indirizzamento del Teleport" longdescription="In un lotto di proprietà di un gruppo, i membri con questo ruolo e abilità possono impostare un punto di arrivo per i teleport entranti e impostare anche l'indirizzamento del teleport per ulteriore precisione. Viene fatto in Informazioni sul terreno > Opzioni." name="land set landing point"/> </action_set> - <action_set description="Queste Abilità permettono alcune permessi nell'appezzamento, quali 'Creare Oggetti', 'Editare il Terreno', trasmettere musica & tabella Media." name="Parcel Settings"> - <action description="Cambiare musica & tabella media" longdescription="Cambia le impostazioni per lo streaming della musica e dei video in Informazioni sul Terreno > tabella Media." name="land change media"/> - <action description="Cliccare 'Edita il Terreno'" longdescription="Clicca 'Edita il Terreno'. *ATTENZIONE* Informazioni sul Terreno > tabella Opzioni > Edita il Terreno permette a tutti di modificare la forma del terreno, collocare e spostare le piante Linden. Devi essere sicuro di quello che fai prima di assignera questa Abilità . Edita il terreno in Informazioni sul Terreno > tabella Opzioni." name="land edit"/> - <action description="Cliccare Informazioni sul Terreno > Impostazione Opzioni" longdescription="Premi 'Salvo (nessun danno)', 'Vola', e permetti agli altri Residenti di: 'modifica Terreno', 'Crea', 'Crea Landmarks', e 'Scripts attivi' nella terra posseduta da un Gruppo in Info sul Terreno > tabella Opzioni." name="land options"/> + <action_set description="Queste abilità hanno poteri relativi alle opzioni dei lotti, come la creazione di oggetti, la modifica del terreno e le impostazioni per la musica e gli elementi multimediali." name="Parcel Settings"> + <action description="Cambiare impostazioni musica e multimediali" longdescription="Cambia le impostazioni per lo streaming della musica e dei video in Informazioni sul terreno > Media." name="land change media"/> + <action description="Attiva 'Modifica terreno'" longdescription="Attiva 'Modifica terreno'. *ATTENZIONE* Informazioni sul terreno > Opzioni > Modifica terreno consente a chiunque di modificare la forma del tuo terreno e di collocare e spostare le piante Linden. Pertanto sii sicuro della scelta prima di assegnare questa Abilità . La funzione di modifica del terreno è attivata in Informazioni sul terreno > Opzioni." name="land edit"/> + <action description="Attivazione di parametri per Informazioni sul terreno > Opzioni" longdescription="Premi Sicuro (nessun danno), Vola e consenti agli altri residenti di: modificare il terreno, costruire, creare punti di riferimento ed eseguire script nel terreno appartenente ad un gruppo in Informazioni sul terreno > scheda Opzioni." name="land options"/> </action_set> - <action_set description="Queste Abilità permettono ai Membri di non avere restrizioni in un appezzamento posseduto da un Gruppo." name="Parcel Powers"> - <action description="Permettere sempre 'Edita il Terreno'" longdescription="I Membri con questo Ruolo e Abilità possono editare il terreno posseduto da un Gruppo, anche se non è selezionato in Informazioni sul Terreno > tabella Opzioni." name="land allow edit land"/> - <action description="Permettere Vola Sempre'" longdescription="I Membri con questo Ruolo e Abilità possono volare in un terreno posseduto da un Gruppo, anche se non è selezionato in Info sul Terreno > tabella Opzioni." name="land allow fly"/> - <action description="Permettere 'Crea Oggetti' sempre" longdescription="I Membri con questo Ruolo e Abilità possono creare oggetti in un appezzamento posseduto da un Gruppo, anche se non è selezionato in Informazioni sul Terreno > tabella Opzioni." name="land allow create"/> - <action description="Permettere 'Crea Landmark' sempre" longdescription="I Membri con questo Ruolo e Abilità possono creare Landmark in un appezzamento posseduto da un Gruppo , anche se non è evidenziato in Informazioni sul Terreno > tabella Opzioni." name="land allow landmark"/> - <action description="Permettere 'Teleportami a Casa' in un appezzamento di un Gruppo" longdescription="I Membri in un Ruolo con questa Abilità possono usare il menu Mondo > Landmarks > Imposta come Casa su un parcel intestato ad un Gruppo." name="land allow set home"/> + <action_set description="Queste abilità permettono ai membri di non avere restrizioni in un lotto appartenente ad un gruppo." name="Parcel Powers"> + <action description="Consenti sempre la modifica del terreno" longdescription="I membri con questo ruolo e abilità possono modificare il terreno appartenente ad un gruppo, anche se la funzionalità è disattivata in Informazioni sul terreno > Opzioni." name="land allow edit land"/> + <action description="Consenti sempre il volo" longdescription=" I membri con questo ruolo e abilità possono volare in un terreno appartenente ad un gruppo, anche se la funzionalità è disattivata in Informazioni sul terreno > Opzioni." name="land allow fly"/> + <action description="Consenti sempre la creazione di oggetti" longdescription="I membri con questo ruolo e abilità possono creare oggetti in un lotto appartenente ad un gruppo, anche se la funzionalità è disattivata in Informazioni sul terreno > Opzioni." name="land allow create"/> + <action description="Consenti sempre la creazione di punti di riferimento" longdescription="I membri con questo ruolo e abilità possono creare punti di riferimento in un lotto appartenente ad un gruppo, anche se la funzionalità è disattivata in Informazioni sul terreno > Opzioni." name="land allow landmark"/> + <action description="Consenti la funzione 'Imposta come Casa mia' in un lotto di gruppo" longdescription="I membri in un ruolo con questa Abilità possono usare il menu Mondo > Punti di riferimento > Imposta come Casa su un lotto ceduto a questo gruppo." name="land allow set home"/> </action_set> - <action_set description="Queste Abilità permettono di concedere o limitare l'accesso ad un appezzamento di un Gruppo, e includono Congela ed Espelli un Residente." name="Parcel Access"> - <action description="Gestire la lista degli Accessi Consentiti" longdescription="Gestisci la lista degli Accessi Consentiti in Informazioni sul Terreno > tabella Accesso." name="land manage allowed"/> - <action description="Gestire la lista degli Accessi Bloccati" longdescription="Gestisci la lista Espulsi dal parcel in Info sul Terreno > tabella Accesso." name="land manage banned"/> - <action description="Cambia le impostazioni del parcel in 'Vendi Pass a'" longdescription="Cambia le impostazioni 'Vendi Pass a' in Info sul Terreno > tabella Accesso." name="land manage passes"/> - <action description="Espellere e Congelare i Residenti in un appezzamento" longdescription="Membri in un Ruolo con questa Abilità possono occuparsi di un residente indesiderato in un parcel posseduto da un Gruppo, con click destro sul residente, selezionando 'Espelli' o 'Immobilizza'." name="land admin"/> + <action_set description="Queste Abilità consentono di concedere o limitare l'accesso ad un lotto di un gruppo da parte di residenti, con le azioni Congela ed Espelli." name="Parcel Access"> + <action description="Gestire la lista di accesso al lotto" longdescription="Gestisci la lista di accesso al lotto in Informazioni sul terreno > Accesso." name="land manage allowed"/> + <action description="Gestire la lista dei residenti espulsi dal lotto" longdescription="Gestisci la lista Espulsi dal lotto in Informazioni sul terreno > scheda Accesso." name="land manage banned"/> + <action description="Cambia le impostazioni del lotto in Vendi pass a" longdescription="Cambia le impostazioni Vendi pass a in Informazioni sul terreno > scheda Accesso." name="land manage passes"/> + <action description="Espellere e Congelare i Residenti in un lotto" longdescription="Membri in un ruolo con questa Abilità possono occuparsi di un residente indesiderato in un lotto posseduto da un gruppo, facendo clic sul residente con il pulsante destro del mouse e selezionando Espelli o Congela." name="land admin"/> </action_set> - <action_set description="Queste Abilità permettono ai Membri di restituire oggetti, collocare e spostare piante Linden. Questo è utile ai Membri per ripulire da oggetti indesiderati e creare paesaggi, ma deve essere utilizzato con cura, perchè non si può annullare la restituzione degli Oggetti." name="Parcel Content"> - <action description="Restituire oggetti posseduti da un Gruppo" longdescription="Restituisci gli oggetti posseduti da un Gruppo in un appezzamento di un Gruppo in Informazioni sul Terreno > tabella Oggetti." name="land return group owned"/> - <action description="Restituire oggetti concessi ad un Gruppo" longdescription="Restituisci oggetti concessi ad un Gruppo in un appezzamento di un Gruppo in Informazioni sul Terreno > tabella Oggetti." name="land return group set"/> - <action description="Restituire oggetti estranei al Gruppo" longdescription="Restituire oggetti estranei al Gruppo in un appezzamento di un Gruppo in Info sul Terreno > tabella Oggetti." name="land return non group"/> - <action description="Creare un paesaggio utilizzando le piante Linden" longdescription="Abilità di creare paesaggi di posizionare e spostare alberi, piante, erba. Questi oggetti sono presenti nella Libreria del tuo Inventario > Cartella Oggetti, o possono essere creati con il menu Crea." name="land gardening"/> + <action_set description="Queste abilità consentono ai membri di restituire oggetti, collocare e spostare piante Linden. Questo è utile ai membri per ripulire da oggetti indesiderati e creare paesaggi, ma deve essere utilizzato con cura, perchè la restituzione degli oggetti non può essere annullata." name="Parcel Content"> + <action description="Restituire oggetti di proprietà di un gruppo" longdescription="Restituisci gli oggetti di proprietà di un gruppo in un appezzamento di un gruppo in Informazioni sul terreno > Oggetti." name="land return group owned"/> + <action description="Restituire oggetti assegnati ad un gruppo" longdescription="Restituisci oggetti assegnati ad un gruppo in un lotto di un gruppo in Informazioni sul terreno > Oggetti." name="land return group set"/> + <action description="Restituire oggetti estranei al gruppo" longdescription="Restituire oggetti estranei al gruppo in un appezzamento di un gruppo in Informazioni sul terreno > Oggetti." name="land return non group"/> + <action description="Creare un paesaggio utilizzando le piante Linden" longdescription="Abilità di creare paesaggi e posizionare e spostare alberi, piante, erba Linden. Questi oggetti sono presenti nella Libreria del tuo Inventario > cartella Oggetti, o possono essere creati con il menu Crea." name="land gardening"/> </action_set> - <action_set description="Queste Abilità includono il potere di intestare, modificare, vendere oggetti posseduti dal gruppo. Viene fatto in Build Tools > tabella Generale. Click destro su un oggetto e Modifica per vedere le impostazioni." name="Object Management"> - <action description="Intestare oggetti ad un Gruppo" longdescription="Intesta oggetti ad un Gruppo in Build Tools > tabella Generale." name="object deed"/> - <action description="Modificare (sposta, copia, modifica) oggetti di un Gruppo" longdescription="Controlla (sposta, copia, modifica) gli oggetti posseduti da un Gruppo in Build Tools > tabella Generale." name="object manipulate"/> - <action description="Mettere in vendita oggetti di un Gruppo" longdescription="Metti in vendita oggetti posseduti da un Gruppo in Build Tools > tabelle Generale." name="object set sale"/> + <action_set description="Queste Abilità includono il potere di cedere, modificare e vendere oggetti posseduti dal gruppo. Viene fatto negli strumenti Costruisci > scheda Generale. Clic con il pulsante destro del mouse su un oggetto e Modifica per vedere le impostazioni." name="Object Management"> + <action description="Intestare oggetti ad un gruppo" longdescription="Intesta oggetti ad un gruppo in Strumenti per costruzione > scheda Generale." name="object deed"/> + <action description="Modificare (sposta, copia, modifica) oggetti di un gruppo" longdescription="Gestisci (sposta, copia, modifica) gli oggetti appartenenti ad un gruppo in Build Tools > tabella Generale." name="object manipulate"/> + <action description="Mettere in vendita oggetti di un gruppo" longdescription="Metti in vendita oggetti posseduti da un Gruppo in Strumenti per costruzione > scheda Generale." name="object set sale"/> </action_set> - <action_set description="Queste Abilità permettono di richiedere ai Membri di pagare le perdite del Gruppo e di ricevere i dividendi del Gruppo, e di limitare l'accesso all'account del Gruppo." name="Accounting"> - <action description="Pagare le perdite del Gruppo e ricevere i dividendi del Gruppo" longdescription="I Membri con questo Ruolo e Abilità pagheranno automaticamente le perdite del Gruppo e riceveranno i dividendi del Gruppo. Questo significa che riceveranno una porzione delle vendite di terre possedute dal gruppo (che sono risolte giornalmente), e contribuiranno anche su cose come le tasse di iscrizione dell'appezzament. " name="accounting accountable"/> + <action_set description="Queste abilità consentono di richiedere ai membri di pagare le passività del gruppo e di ricevere i dividendi del gruppo, nonché di limitare l'accesso alla cronologia finanziaria del gruppo." name="Accounting"> + <action description="Pagare le passività del gruppo e ricevere i dividendi del gruppo" longdescription="I membri con questo ruolo e abilità pagheranno automaticamente le passività del gruppo e riceveranno i dividendi del gruppo. Questo significa che riceveranno una porzione delle vendite di terreni appartenenti al gruppo (che sono distribuite giornalmente) e contribuiranno fondi a spese come le quote di inserzione del lotto. " name="accounting accountable"/> </action_set> - <action_set description="Queste Abilità permettono ai Membri di spedire, ricevere, e vedere le Notice del Gruppo." name="Notices"> - <action description="Spedire Notice" longdescription="Membri in un Ruolo con questa Abilità possono spedire Notice nel Gruppo > sezione Notice." name="notices send"/> - <action description="Ricevere Notice e vedere Notice precedenti" longdescription="Membri in un ruolo con questa Abilità possono ricevere Notice e vedere Notice vecchie nel Gruppo > sezione Notice." name="notices receive"/> + <action_set description="Queste abilità consentono ai membri di inviare, ricevere e vedere gli avvisi del gruppo." name="Notices"> + <action description="Invia avvisi" longdescription="Membri in un ruolo con questa Abilità possono inviare avvisi tramite la sezione Gruppo > Avvisi." name="notices send"/> + <action description="Ricevere avvisi e vedere avvisi precedenti" longdescription="Membri in un ruolo con questa Abilità possono ricevere avvisi e vedere avvisi precedenti nella sezione Gruppo > Avvisi." name="notices receive"/> </action_set> - <action_set description="Queste Abilità permettono di concedere o limitare l'accesso alle sessioni di chat e di voice chat nel gruppo." name="Chat"> - <action description="Aderire alla Chat di Gruppo" longdescription="I Membri con questo Ruolo e Abilità possono aderire alle sessioni di chat, sia scritte che in voice." name="join group chat"/> - <action description="Aderire alla Voice Chat di Gruppo" longdescription="I Membri con questo Ruolo e Abilità possono aderire alle sessioni di Voice Chat nel gruppo. NOTA: Per poter partecipare alla Chat di Gruppo è necessario accedere alla sessione di voice chat." name="join voice chat"/> - <action description="Moderare la Chat di Gruppo" longdescription="I Membri con questo Ruolo e Abilità possono controllare l'accesso e la partecipazione alle sessioni di chat scritta e di voice chat nel Gruppo." name="moderate group chat"/> + <action_set description="Queste Abilità permettono di concedere o limitare l'accesso alle sessioni di chat e di chat vocale nel gruppo." name="Chat"> + <action description="Partecipare alla Chat di gruppo" longdescription="I membri con questo ruolo e abilità possono partecipare alle sessioni di chat, sia scritte che vocale." name="join group chat"/> + <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"/> + <action description="Moderare la Chat di gruppo" longdescription="I membri con questo ruolo e abilità possono gestire l'accesso e la partecipazione alle sessioni di chat scritta e di chat vocale nel gruppo." name="moderate group chat"/> </action_set> </role_actions> diff --git a/indra/newview/skins/default/xui/it/sidepanel_appearance.xml b/indra/newview/skins/default/xui/it/sidepanel_appearance.xml index 8dd7bfec420589d33b3f00ad56fed5d14dd6267d..c2e99b55735f937f91414ac9c6b89dbff5a3b2ba 100644 --- a/indra/newview/skins/default/xui/it/sidepanel_appearance.xml +++ b/indra/newview/skins/default/xui/it/sidepanel_appearance.xml @@ -1,11 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Vestiario" name="appearance panel"> <string name="No Outfit" value="Nessun vestiario"/> - <filter_editor label="Filtri per il vestiario" name="Filter"/> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Mostra opzioni addizionali"/> - <button name="newlook_btn" tool_tip="Aggiungi nuovo vestiario"/> - <dnd_button name="trash_btn" tool_tip="Rimuovi l'articolo selezionato"/> - <button label="Indossa" name="wear_btn"/> + <panel name="panel_currentlook"> + <text name="currentlook_title"> + (non salvato) + </text> </panel> + <filter_editor label="Filtri per il vestiario" name="Filter"/> </panel> 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 23ca8b5ad8b6b1fb587f1782c08e892073419914..e1ad1452ffee7d668b0350b030c6295d2a7b48c4 100644 --- a/indra/newview/skins/default/xui/it/sidepanel_item_info.xml +++ b/indra/newview/skins/default/xui/it/sidepanel_item_info.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="item properties" title="Caratteristiche dell'articolo nell'Inventario"> +<panel name="item properties" title="Profilo dell'oggetto"> <panel.string name="unknown"> - (Sconosciuto) + (sconosciuto) </panel.string> <panel.string name="public"> (pubblico) @@ -10,12 +10,13 @@ Tu puoi: </panel.string> <panel.string name="owner_can"> - Il Proprietario può: + Il proprietario può: </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> - <text name="title" value="Caratteristiche dell'articolo"/> + <text name="title" value="Profilo dell'oggetto"/> + <text name="where" value="(Inventario)"/> <panel label=""> <text name="LabelItemNameTitle"> Nome: @@ -24,7 +25,7 @@ Descrizione: </text> <text name="LabelCreatorTitle"> - Creatore: + Ideatore: </text> <button label="Profilo..." name="BtnCreator"/> <text name="LabelOwnerTitle"> @@ -35,36 +36,38 @@ Acquisito: </text> <text name="LabelAcquiredDate"> - Wed May 24 12:50:46 2006 + mer 24 maggio 12:50:46 2006 </text> - <text name="OwnerLabel"> - Tu: - </text> - <check_box label="Modifica" name="CheckOwnerModify"/> - <check_box label="Copia" name="CheckOwnerCopy"/> - <check_box label="Rivendi" name="CheckOwnerTransfer"/> - <text name="AnyoneLabel"> - Chiunque: - </text> - <check_box label="Copia" name="CheckEveryoneCopy"/> - <text name="GroupLabel"> - Gruppo: - </text> - <check_box label="Condividi" name="CheckShareWithGroup"/> - <text name="NextOwnerLabel"> - Prossimo Proprietario: - </text> - <check_box label="Modifica" name="CheckNextOwnerModify"/> - <check_box label="Copia" name="CheckNextOwnerCopy"/> - <check_box label="Rivendi" name="CheckNextOwnerTransfer"/> + <panel name="perms_inv"> + <text name="perm_modify"> + Tu puoi: + </text> + <check_box label="Modifica" name="CheckOwnerModify"/> + <check_box label="Copia" name="CheckOwnerCopy"/> + <check_box label="Trasferisci" name="CheckOwnerTransfer"/> + <text name="AnyoneLabel"> + Chiunque: + </text> + <check_box label="Copia" name="CheckEveryoneCopy"/> + <text name="GroupLabel"> + Gruppo: + </text> + <check_box label="Condividi" name="CheckShareWithGroup" tool_tip="Consenti a tutti i membri del gruppo selezionato di condividere i tuoi diritti di modifica di questo oggetto. Per attivare le restrizioni per ruolo devi prima effettuare la cessione."/> + <text name="NextOwnerLabel"> + Proprietario successivo: + </text> + <check_box label="Modifica" name="CheckNextOwnerModify"/> + <check_box label="Copia" name="CheckNextOwnerCopy"/> + <check_box label="Trasferisci" name="CheckNextOwnerTransfer" tool_tip="Il prossimo proprietario può regalare o rivendere questo oggetto"/> + </panel> <check_box label="In vendita" name="CheckPurchase"/> <combo_box name="combobox sale copy"> <combo_box.item label="Copia" name="Copy"/> <combo_box.item label="Originale" name="Original"/> </combo_box> - <spinner label="Prezzo:" name="Edit Cost"/> - <text name="CurrencySymbol"> - L$ - </text> + <spinner label="Prezzo: L$" name="Edit Cost"/> + </panel> + <panel name="button_panel"> + <button label="Annulla" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/sidepanel_task_info.xml b/indra/newview/skins/default/xui/it/sidepanel_task_info.xml index 0eecdfb2a2d0c65671145ee383cdeff21c2e6605..67870d9b76569009523c0543b6fb994e0011380b 100644 --- a/indra/newview/skins/default/xui/it/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/it/sidepanel_task_info.xml @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="object properties" title="Caratteristiche dell'oggetto"> +<panel name="object properties" title="Profilo dell'oggetto"> <panel.string name="text deed continued"> - Intesta + Cessione </panel.string> <panel.string name="text deed"> - Intesta + Cessione </panel.string> <panel.string name="text modify info 1"> - Puoi modificare questo oggetto + Tu puoi modificare questo oggetto </panel.string> <panel.string name="text modify info 2"> - Puoi modificare questi oggetti + Tu puoi modificare questi oggetti </panel.string> <panel.string name="text modify info 3"> Non puoi modificare questo oggetto @@ -19,101 +19,111 @@ Non puoi modificare questi oggetti </panel.string> <panel.string name="text modify warning"> - Questo oggetto ha parti unite + Questo oggetto ha parti collegate </panel.string> <panel.string name="Cost Default"> Prezzo: L$ </panel.string> <panel.string name="Cost Total"> - Prezzo Totale: L$ + Prezzo totale: L$ </panel.string> <panel.string name="Cost Per Unit"> - Prezzo Per: L$ + Prezzo per: L$ </panel.string> <panel.string name="Cost Mixed"> - Prezzo assortito + Prezzo misto </panel.string> <panel.string name="Sale Mixed"> - Vendita assortita + Vendita mista </panel.string> - <panel name="properties_panel" label=""> + <text name="title" value="Profilo dell'oggetto"/> + <text name="where" value="(in Second Life)"/> + <panel label="" name="properties_panel"> <text name="Name:"> Nome: </text> <text name="Description:"> Descrizione: </text> - <text name="Creator:"> - Creatore: + <text name="CreatorNameLabel"> + Ideatore: + </text> + <text name="Creator Name"> + Erica Linden </text> <text name="Owner:"> Proprietario: </text> - <text name="Group:"> + <text name="Owner Name"> + Erica Linden + </text> + <text name="Group_label"> Gruppo: </text> - <button name="button set group" tool_tip="Scegli un gruppo per condividere i permessi di questo oggetto"/> - <name_box initial_value="Caricando..." name="Group Name Proxy"/> - <button label="Intesta" label_selected="Intesta" name="button deed" tool_tip="Intestando questo oggetto lo passa con i permessi del prossimo proprietario. Gli oggetti condivisi dal Gruppo possono essere intestati solo da un Officer del gruppo."/> - <check_box label="Condividi" name="checkbox share with group" tool_tip="Permetti a tutti i Membri del gruppo impostato di condividere la tua modifica ai permessi di questo oggetto. Tu devi Intestare per consentire le restrizioni al ruolo."/> + <button name="button set group" tool_tip="Scegli un gruppo con cui condividere i diritti relativi all'oggetto"/> + <name_box initial_value="Caricamento in corso..." name="Group Name Proxy"/> + <button label="Cessione" label_selected="Cessione" name="button deed" tool_tip="Con una cessione si trasferisce il bene con i diritti al proprietario successivo Gli oggetti in proprietà condivisa di gruppo possono essere ceduti soltanto da un funzionario del gruppo."/> <text name="label click action"> - Clicca per: + Fai clic per: </text> <combo_box name="clickaction"> - <combo_box.item label="Tocca (default)" name="Touch/grab(default)"/> - <combo_box.item label="Siedi sull'oggetto" name="Sitonobject"/> - <combo_box.item label="Compra l'oggetto" name="Buyobject"/> - <combo_box.item label="Paga l'ogggetto" name="Payobject"/> + <combo_box.item label="Tocca (predefinito)" name="Touch/grab(default)"/> + <combo_box.item label="Siediti sull'oggetto" name="Sitonobject"/> + <combo_box.item label="Acquista oggetto" name="Buyobject"/> + <combo_box.item label="Paga oggetto" name="Payobject"/> <combo_box.item label="Apri" name="Open"/> </combo_box> - <check_box label="In Vendita:" name="checkbox for sale"/> - <combo_box name="sale type"> - <combo_box.item label="Copia" name="Copy"/> - <combo_box.item label="Contenuti" name="Contents"/> - <combo_box.item label="Originale" name="Original"/> - </combo_box> - <spinner label="Prezzo: L$" name="Edit Cost"/> - <check_box label="Mostra nella ricerca" name="search_check" tool_tip="Mostra questo oggetto nei risultati della ricerca"/> <panel name="perms_inv"> <text name="perm_modify"> - Puoi modificare questo oggetto + Tu puoi modificare questo oggetto </text> <text name="Anyone can:"> Chiunque: </text> - <check_box label="Sposta" name="checkbox allow everyone move"/> <check_box label="Copia" name="checkbox allow everyone copy"/> - <text name="Next owner can:"> - Prossimo Proprietario: + <check_box label="Sposta" name="checkbox allow everyone move"/> + <text name="GroupLabel"> + Gruppo: + </text> + <check_box label="Condividi" name="checkbox share with group" tool_tip="Consenti a tutti i membri del gruppo selezionato di condividere i tuoi diritti di modifica di questo oggetto. Per attivare le restrizioni per ruolo devi prima effettuare la cessione."/> + <text name="NextOwnerLabel"> + Proprietario successivo: </text> <check_box label="Modifica" name="checkbox next owner can modify"/> <check_box label="Copia" name="checkbox next owner can copy"/> - <check_box label="Transfer" name="checkbox next owner can transfer" tool_tip="Prossimo proprietario può regalare o rivendere questo oggetto"/> - <text name="B:"> - B: - </text> - <text name="O:"> - O: - </text> - <text name="G:"> - G: - </text> - <text name="E:"> - E: - </text> - <text name="N:"> - N: - </text> - <text name="F:"> - F: - </text> + <check_box label="Trasferisci" name="checkbox next owner can transfer" tool_tip="Il prossimo proprietario può regalare o rivendere questo oggetto"/> </panel> + <check_box label="In vendita" name="checkbox for sale"/> + <combo_box name="sale type"> + <combo_box.item label="Copia" name="Copy"/> + <combo_box.item label="Contenuto" name="Contents"/> + <combo_box.item label="Originale" name="Original"/> + </combo_box> + <spinner label="Prezzo: L$" name="Edit Cost"/> + <check_box label="Mostra nella ricerca" name="search_check" tool_tip="Permetti alle persone di vedere questo oggetto nei risultati della ricerca"/> + <text name="B:"> + B: + </text> + <text name="O:"> + O: + </text> + <text name="G:"> + G: + </text> + <text name="E:"> + E: + </text> + <text name="N:"> + N: + </text> + <text name="F:"> + F: + </text> </panel> <panel name="button_panel"> <button label="Apri" name="open_btn"/> <button label="Paga" name="pay_btn"/> - <button label="Compra" name="buy_btn"/> - <button label="Cancella" name="cancel_btn"/> - <button label="Salva" name="save_btn"/> + <button label="Acquista" name="buy_btn"/> + <button label="Dettagli" name="details_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/strings.xml b/indra/newview/skins/default/xui/it/strings.xml index 910e6e0960f94bb9ce8a8e81934c0a1f67a619f6..93239983a86f1777764b6b8c3c6b0783ebb46801 100644 --- a/indra/newview/skins/default/xui/it/strings.xml +++ b/indra/newview/skins/default/xui/it/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. It is only for those strings which do not belong in a floater. - For example, the strings used in avatar chat bubbles, and strings + For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> <string name="SECOND_LIFE"> @@ -10,6 +10,9 @@ <string name="APP_NAME"> Second Life </string> + <string name="CAPITALIZED_APP_NAME"> + SECOND LIFE + </string> <string name="SUPPORT_SITE"> Portale di supporto di Second Life </string> @@ -17,13 +20,28 @@ Ricerca hardware... </string> <string name="StartupLoading"> - In Caricamento + Caricamento di [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Pulizia della cache... + </string> + <string name="StartupInitializingTextureCache"> + Inizializzazione della cache texture... + </string> + <string name="StartupInitializingVFS"> + Inizializzazione VFS... + </string> + <string name="ProgressRestoring"> + Ripristino in corso... + </string> + <string name="ProgressChangingResolution"> + Modifica della risoluzione... </string> <string name="LoginInProgress"> In connessione. [APP_NAME] può sembrare rallentata. Attendi. </string> <string name="LoginInProgressNoFrozen"> - Logging in... + Accesso in corso... </string> <string name="LoginAuthenticating"> In autenticazione @@ -79,8 +97,11 @@ <string name="LoginFailedNoNetwork"> Errore di rete: Non è stato possibile stabilire un collegamento, controlla la tua connessione. </string> + <string name="LoginFailed"> + Accesso non riuscito. + </string> <string name="Quit"> - Termina + Esci </string> <string name="create_account_url"> http://join.secondlife.com/index.php?lang=it-IT @@ -88,6 +109,24 @@ <string name="AgentLostConnection"> Questa regione sta avendo problemi. Verifica la tua connessione a Internet. </string> + <string name="SavingSettings"> + Salvataggio delle impostazioni... + </string> + <string name="LoggingOut"> + Uscita... + </string> + <string name="ShuttingDown"> + Chiusura... + </string> + <string name="YouHaveBeenDisconnected"> + Sei scollegato dalla regione in cui ti trovavi. + </string> + <string name="SentToInvalidRegion"> + Sei stato indirizzato in una regione non valida. + </string> + <string name="TestingDisconnect"> + Verifica scollegamento viewer + </string> <string name="TooltipPerson"> Persona </string> @@ -140,7 +179,25 @@ Clicca per avere maggiori informazioni sul luogo </string> <string name="TooltipAgentUrl"> - Clicca per vedere il profilo del residente + Clicca per vedere il profilo di questo residente + </string> + <string name="TooltipAgentMute"> + Clicca per disattivare l'audio di questo residente + </string> + <string name="TooltipAgentUnmute"> + Clicca per attivare l'audio del residente + </string> + <string name="TooltipAgentIM"> + Clicca per inviare un IM a questo residente + </string> + <string name="TooltipAgentPay"> + Clicca per pagare il residente + </string> + <string name="TooltipAgentOfferTeleport"> + Fai clic per inviare un'offerta di teleport al residente + </string> + <string name="TooltipAgentRequestFriend"> + Fai clic per inviare una richiesta di amicizia al residente </string> <string name="TooltipGroupUrl"> Clicca per vedere la descrizione del gruppo @@ -152,10 +209,10 @@ Clicca per vedere questa inserzione </string> <string name="TooltipParcelUrl"> - Clicca per vedere la descrizione della parcel + Clicca per vedere la descrizione del lotto </string> <string name="TooltipTeleportUrl"> - Clicca per teleportarti a questa destinazione + Clicca per effettuare il teleport a questa destinazione </string> <string name="TooltipObjectIMUrl"> Clicca per vedere la descrizione dell'oggetto @@ -166,15 +223,34 @@ <string name="TooltipSLAPP"> Clicca per avviare il comando secondlife:// </string> - <string name="CurrentURL" value=" URL attuale: [CurrentURL]"/> + <string name="CurrentURL" value="URL attuale: [CurrentURL]"/> + <string name="TooltipPrice" value="L$ [PRICE]-"/> <string name="SLurlLabelTeleport"> Teleportati a </string> <string name="SLurlLabelShowOnMap"> Mostra la mappa per </string> + <string name="SLappAgentMute"> + Disattiva audio + </string> + <string name="SLappAgentUnmute"> + Riattiva audio + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + Paga + </string> + <string name="SLappAgentOfferTeleport"> + Offri teleport a + </string> + <string name="SLappAgentRequestFriend"> + Richiesta di amicizia + </string> <string name="BUTTON_CLOSE_DARWIN"> - Chiudi (⌘W) + Chiudi (⌘W) </string> <string name="BUTTON_CLOSE_WIN"> Chiudi (Ctrl+W) @@ -191,14 +267,11 @@ <string name="BUTTON_DOCK"> Àncora </string> - <string name="BUTTON_UNDOCK"> - Disà ncora - </string> <string name="BUTTON_HELP"> - Mostra gli aiuti + Mostra Aiuto </string> <string name="Searching"> - In ricerca... + Ricerca in corso... </string> <string name="NoneFound"> Nessun risultato. @@ -218,9 +291,6 @@ <string name="AvatarNameWaiting"> (in attesa) </string> - <string name="AvatarNameHippos"> - (hippos) - </string> <string name="GroupNameNone"> (nessuno) </string> @@ -267,19 +337,19 @@ biglietto da visita </string> <string name="landmark"> - landmark + punto di riferimento </string> <string name="legacy script"> script (vecchia versione) </string> <string name="clothing"> - abito + vestiario </string> <string name="object"> oggetto </string> <string name="note card"> - notecard + biglietto </string> <string name="folder"> cartella @@ -309,7 +379,7 @@ immagine targa </string> <string name="trash"> - cestino + Cestino </string> <string name="jpeg image"> immagine jpeg @@ -329,6 +399,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link alla cartella + </string> <string name="AvatarAway"> Assente </string> @@ -546,7 +619,7 @@ Si </string> <string name="texture_loading"> - In Caricamento... + Caricamento in corso... </string> <string name="worldmap_offline"> Offline @@ -581,6 +654,9 @@ <string name="hang_up"> Disconnesso dalla Voice Chat in-world </string> + <string name="reconnect_nearby"> + Sarai riconnesso alla chat vocale nei dintorni + </string> <string name="ScriptQuestionCautionChatGranted"> A '[OBJECTNAME]', un oggetto di proprietà di '[OWNERNAME]', situato in [REGIONNAME] [REGIONPOS], è stato concesso il permesso di: [PERMISSIONS]. </string> @@ -684,25 +760,25 @@ Scegli la cartella </string> <string name="AvatarSetNotAway"> - Imposta non assente + Imposta come non assente </string> <string name="AvatarSetAway"> - Imposta assente + Imposta come assente </string> <string name="AvatarSetNotBusy"> - Imposta non occupato + Imposta come non occupato </string> <string name="AvatarSetBusy"> - Imposta occupato + Imposta come occupato </string> <string name="shape"> - Shape + Figura corporea </string> <string name="skin"> - Skin + Pelle </string> <string name="hair"> - Capelli + Capigliature </string> <string name="eyes"> Occhi @@ -717,7 +793,7 @@ Scarpe </string> <string name="socks"> - Calze + Calzini </string> <string name="jacket"> Giacca @@ -729,7 +805,7 @@ Maglietta intima </string> <string name="underpants"> - slip + Slip </string> <string name="skirt"> Gonna @@ -743,17 +819,20 @@ <string name="invalid"> non valido </string> + <string name="NewWearable"> + Nuovo [WEARABLE_ITEM] + </string> <string name="next"> - Seguente + Avanti </string> <string name="ok"> OK </string> <string name="GroupNotifyGroupNotice"> - Notice di gruppo + Avviso di gruppo </string> <string name="GroupNotifyGroupNotices"> - Notice di gruppo + Avvisi di gruppo </string> <string name="GroupNotifySentBy"> Inviato da @@ -762,7 +841,7 @@ Allegato: </string> <string name="GroupNotifyViewPastNotices"> - Visualizza i notice passati o scegli qui di non riceverne. + Visualizza gli avvisi precedenti o scegli qui di non riceverne. </string> <string name="GroupNotifyOpenAttachment"> Apri l'allegato @@ -771,13 +850,10 @@ Salva l'allegato </string> <string name="TeleportOffer"> - Offerta di Teletrasporto - </string> - <string name="StartUpNotification"> - [%d] una nuova notifica è arrivata mentre eri assente... + Offerta di Teleport </string> <string name="StartUpNotifications"> - [%d] nuove notifice sono arrivate mentre eri assente... + Nuove notifice sono arrivate mentre eri assente... </string> <string name="OverflowInfoChannelString"> Hai ancora [%d] notifiche @@ -813,46 +889,49 @@ Premi ESC per tornare in visulizzazione normale </string> <string name="InventoryNoMatchingItems"> - Nessun oggetto corrispondente trovato in inventario. + Nessun oggetto corrispondente trovato in inventario. Prova [secondlife:///app/search/groups "Cerca"]. + </string> + <string name="FavoritesNoMatchingItems"> + Trascina qui un punto di riferimento per aggiungerlo ai tuoi preferiti. </string> <string name="InventoryNoTexture"> - Non hai una copia -di questa texture in inventario. - </string> - <string name="no_transfer" value=" (no transfer)"/> - <string name="no_modify" value=" (no modify)"/> - <string name="no_copy" value=" (no copy)"/> - <string name="worn" value=" (indossato)"/> - <string name="link" value=" (link)"/> - <string name="broken_link" value=" (broken_link)"/> + Non hai una copia di questa texture nel tuo inventario + </string> + <string name="no_transfer" value="(nessun trasferimento)"/> + <string name="no_modify" value="(nessuna modifica)"/> + <string name="no_copy" value="(nessuna copia)"/> + <string name="worn" value="(indossato)"/> + <string name="link" value="(link)"/> + <string name="broken_link" value="(broken_link)""/> <string name="LoadingContents"> - Contenuto in caricamento... + Caricamento del contenuto... </string> <string name="NoContents"> Nessun contenuto </string> - <string name="WornOnAttachmentPoint" value=" (indossato su [ATTACHMENT_POINT])"/> - <string name="Chat" value=" Chat :"/> - <string name="Sound" value=" Suono :"/> - <string name="Wait" value=" --- Attendi :"/> - <string name="AnimFlagStop" value=" Ferma l'Animazione :"/> - <string name="AnimFlagStart" value=" Inizia l'Animazione :"/> - <string name="Wave" value=" Wave"/> - <string name="HelloAvatar" value=" Ciao, avatar!"/> - <string name="ViewAllGestures" value=" Visualizza tutte le gesture >>"/> - <string name="Animations" value=" Animazioni,"/> - <string name="Calling Cards" value=" Biglietti da visita,"/> - <string name="Clothing" value=" Vestiti,"/> - <string name="Gestures" value=" Gesture,"/> - <string name="Landmarks" value=" Landmark,"/> - <string name="Notecards" value=" Notecard,"/> - <string name="Objects" value=" Oggetti,"/> - <string name="Scripts" value=" Script,"/> - <string name="Sounds" value=" Suoni,"/> - <string name="Textures" value=" Texture,"/> - <string name="Snapshots" value=" Fotografie,"/> - <string name="No Filters" value="No "/> - <string name="Since Logoff" value=" - Dalla disconnessione"/> + <string name="WornOnAttachmentPoint" value="(indossato su [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (attivo)"/> + <string name="Chat" value="Chat :"/> + <string name="Sound" value="Suono :"/> + <string name="Wait" value="--- Attendi :"/> + <string name="AnimFlagStop" value="Ferma l'animazione :"/> + <string name="AnimFlagStart" value="Inizia l'animazione :"/> + <string name="Wave" value="Saluta con la mano"/> + <string name="HelloAvatar" value="Ciao, avatar!"/> + <string name="ViewAllGestures" value="Visualizza tutto >>"/> + <string name="Animations" value="Animazioni,"/> + <string name="Calling Cards" value="Biglietti da visita,"/> + <string name="Clothing" value="Vestiti,"/> + <string name="Gestures" value="Gesture,"/> + <string name="Landmarks" value="Punti di riferimento,"/> + <string name="Notecards" value="Biglietti,"/> + <string name="Objects" value="Oggetti,"/> + <string name="Scripts" value="Script,"/> + <string name="Sounds" value="Suoni,"/> + <string name="Textures" value="Texture,"/> + <string name="Snapshots" value="Fotografie,"/> + <string name="No Filters" value="No"/> + <string name="Since Logoff" value="- Dall'uscita"/> <string name="InvFolder My Inventory"> Il mio inventario </string> @@ -869,22 +948,22 @@ di questa texture in inventario. Suoni </string> <string name="InvFolder Calling Cards"> - Biglieti da visita + Biglietti da visita </string> <string name="InvFolder Landmarks"> - Landmark + Punti di riferimento </string> <string name="InvFolder Scripts"> Script </string> <string name="InvFolder Clothing"> - Vestiti + Vestiario </string> <string name="InvFolder Objects"> Oggetti </string> <string name="InvFolder Notecards"> - Notecard + Biglietti </string> <string name="InvFolder New Folder"> Nuova cartella @@ -920,22 +999,25 @@ di questa texture in inventario. Preferiti </string> <string name="InvFolder Current Outfit"> - Outfit attuale + Abbigliamento attuale </string> <string name="InvFolder My Outfits"> - I miei Outfit + Il mio vestiario + </string> + <string name="InvFolder Accessories"> + Accessori </string> <string name="InvFolder Friends"> Amici </string> <string name="InvFolder All"> - Tutti + Tutto </string> <string name="Buy"> - Compra + Acquista </string> <string name="BuyforL$"> - Compra per L$ + Acquista per L$ </string> <string name="Stone"> Pietra @@ -962,7 +1044,7 @@ di questa texture in inventario. Luce </string> <string name="KBShift"> - Shift + Maiusc </string> <string name="KBCtrl"> Ctrl @@ -1112,13 +1194,13 @@ di questa texture in inventario. [COUNT] giorni </string> <string name="GroupMembersA"> - [COUNT] membro + [COUNT] iscritto </string> <string name="GroupMembersB"> - [COUNT] membri + [COUNT] iscritti </string> <string name="GroupMembersC"> - [COUNT] membri + [COUNT] iscritti </string> <string name="AcctTypeResident"> Residente @@ -1127,10 +1209,10 @@ di questa texture in inventario. In prova </string> <string name="AcctTypeCharterMember"> - Membro onorario + Socio onorario </string> <string name="AcctTypeEmployee"> - Impiegato Linden Lab + Dipendente Linden Lab </string> <string name="PaymentInfoUsed"> Informazioni di pagamento usate @@ -1139,7 +1221,7 @@ di questa texture in inventario. Informazioni di pagamento registrate </string> <string name="NoPaymentInfoOnFile"> - Nessuna informazione di pagamento + Nessuna informazione di pagamento disponibile </string> <string name="AgeVerified"> Età verificata @@ -1154,7 +1236,7 @@ di questa texture in inventario. In alto a destra </string> <string name="Top"> - In alto + in alto </string> <string name="Top Left"> In alto a sinistra @@ -1196,22 +1278,22 @@ di questa texture in inventario. ricompila </string> <string name="ResetQueueTitle"> - Avanzamento reset + Azzera avanzamento </string> <string name="ResetQueueStart"> - reset + azzera </string> <string name="RunQueueTitle"> - Avanzamento attivazione + Attiva avanzamento </string> <string name="RunQueueStart"> - Attiva + attiva </string> <string name="NotRunQueueTitle"> - Avanzamento disattivazione + Disattiva avanzamento </string> <string name="NotRunQueueStart"> - Disattivazione + disattiva </string> <string name="CompileSuccessful"> Compilazione riuscita! @@ -1231,18 +1313,18 @@ di questa texture in inventario. <string name="GroupsNone"> nessuno </string> - <string name="Group" value=" (gruppo)"/> + <string name="Group" value="(gruppo)"/> <string name="Unknown"> (Sconosciuto) </string> <string name="SummaryForTheWeek" value="Riassunto della settimana, partendo dal"/> - <string name="NextStipendDay" value="Il prossimo giorno di stipendio è "/> - <string name="GroupIndividualShare" value=" Gruppo Dividendi individuali"/> + <string name="NextStipendDay" value="Il prossimo giorno di stipendio è"/> + <string name="GroupIndividualShare" value="Gruppo Dividendi individuali"/> <string name="Balance"> Saldo </string> <string name="Credits"> - Crediti + Ringraziamenti </string> <string name="Debits"> Debiti @@ -1257,7 +1339,7 @@ di questa texture in inventario. Proprietà principale </string> <string name="IMMainland"> - mainland + continente </string> <string name="IMTeen"> teen @@ -1266,20 +1348,173 @@ di questa texture in inventario. errore </string> <string name="RegionInfoAllEstatesOwnedBy"> - la proprietà posseduta da [OWNER] + tutte le proprietà immobiliari di [OWNER] </string> <string name="RegionInfoAllEstatesYouOwn"> - Le proprietà che possiedi + tutte le tue proprietà immobiliari </string> <string name="RegionInfoAllEstatesYouManage"> - Le proprietà di cui sei manager per conto di [OWNER] + tutte le proprietà immobiliari che gestisci per conto di [OWNER] </string> <string name="RegionInfoAllowedResidents"> - Residenti ammessi: ([ALLOWEDAGENTS], massimo [MAXACCESS]) + Residenti consentiti: ([ALLOWEDAGENTS], massimo [MAXACCESS]) </string> <string name="RegionInfoAllowedGroups"> Gruppi ammessi: ([ALLOWEDGROUPS], massimo [MAXACCESS]) </string> + <string name="ScriptLimitsParcelScriptMemory"> + Memoria dello script del lotto + </string> + <string name="ScriptLimitsParcelsOwned"> + Lotti in elenco: [PARCELS] + </string> + <string name="ScriptLimitsMemoryUsed"> + Memoria utilizzata: [COUNT] kb di [MAX] kb; [AVAILABLE] kb disponibili + </string> + <string name="ScriptLimitsMemoryUsedSimple"> + Memoria utilizzata: [COUNT] kb + </string> + <string name="ScriptLimitsParcelScriptURLs"> + URL degli script lotti + </string> + <string name="ScriptLimitsURLsUsed"> + URL utilizzati: [COUNT] di [MAX]; [AVAILABLE] disponibili + </string> + <string name="ScriptLimitsURLsUsedSimple"> + URL utilizzati: [COUNT] + </string> + <string name="ScriptLimitsRequestError"> + Errore nella richiesta di informazioni + </string> + <string name="ScriptLimitsRequestNoParcelSelected"> + Nessun lotto selezionato + </string> + <string name="ScriptLimitsRequestWrongRegion"> + Errore: le informazioni sullo script sono disponibili solo nella tua regione attuale + </string> + <string name="ScriptLimitsRequestWaiting"> + Recupero informazioni in corso... + </string> + <string name="ScriptLimitsRequestDontOwnParcel"> + Non hai il permesso di visionare questo lotto + </string> + <string name="SITTING_ON"> + Seduto su + </string> + <string name="ATTACH_CHEST"> + Petto + </string> + <string name="ATTACH_HEAD"> + Testa + </string> + <string name="ATTACH_LSHOULDER"> + Spalla sinistra + </string> + <string name="ATTACH_RSHOULDER"> + Spalla destra + </string> + <string name="ATTACH_LHAND"> + Mano sinistra + </string> + <string name="ATTACH_RHAND"> + Mano destra + </string> + <string name="ATTACH_LFOOT"> + Piede sinisto + </string> + <string name="ATTACH_RFOOT"> + Piede destro + </string> + <string name="ATTACH_BACK"> + Indietro + </string> + <string name="ATTACH_PELVIS"> + Pelvi + </string> + <string name="ATTACH_MOUTH"> + Bocca + </string> + <string name="ATTACH_CHIN"> + Mento + </string> + <string name="ATTACH_LEAR"> + Orecchio sinistro + </string> + <string name="ATTACH_REAR"> + Orecchio destro + </string> + <string name="ATTACH_LEYE"> + Occhio sinistro + </string> + <string name="ATTACH_REYE"> + Occhio destro + </string> + <string name="ATTACH_NOSE"> + Naso + </string> + <string name="ATTACH_RUARM"> + Braccio destro + </string> + <string name="ATTACH_RLARM"> + Avambraccio destro + </string> + <string name="ATTACH_LUARM"> + Braccio sinistro + </string> + <string name="ATTACH_LLARM"> + Avambraccio sinistro + </string> + <string name="ATTACH_RHIP"> + Anca destra + </string> + <string name="ATTACH_RULEG"> + Coscia destra + </string> + <string name="ATTACH_RLLEG"> + Coscia destra + </string> + <string name="ATTACH_LHIP"> + Anca sinista + </string> + <string name="ATTACH_LULEG"> + Coscia sinistra + </string> + <string name="ATTACH_LLLEG"> + Polpaccio sinistro + </string> + <string name="ATTACH_BELLY"> + Addome + </string> + <string name="ATTACH_RPEC"> + Petto destro + </string> + <string name="ATTACH_LPEC"> + Petto sinistro + </string> + <string name="ATTACH_HUD_CENTER_2"> + HUD in centro 2 + </string> + <string name="ATTACH_HUD_TOP_RIGHT"> + HUD alto a destra + </string> + <string name="ATTACH_HUD_TOP_CENTER"> + HUD alto in centro + </string> + <string name="ATTACH_HUD_TOP_LEFT"> + HUD alto a sinistra + </string> + <string name="ATTACH_HUD_CENTER_1"> + HUD in centro 1 + </string> + <string name="ATTACH_HUD_BOTTOM_LEFT"> + HUD basso a sinistra + </string> + <string name="ATTACH_HUD_BOTTOM"> + HUD basso + </string> + <string name="ATTACH_HUD_BOTTOM_RIGHT"> + HUD basso a destra + </string> <string name="CursorPos"> Riga [LINE], Colonna [COLUMN] </string> @@ -1287,13 +1522,19 @@ di questa texture in inventario. [COUNT] trovato/i </string> <string name="PanelContentsNewScript"> - Nuovo Script + Nuovo script + </string> + <string name="PanelContentsTooltip"> + Contenuto dell'oggetto + </string> + <string name="BusyModeResponseDefault"> + Il residente al quale hai inviato un messaggio è in modalità 'occupato', ovvero ha chiesto di non essere disturbato. Il tuo messaggio comparirà nel suo pannello IM, dove potrà essere letto in un secondo momento. </string> <string name="MuteByName"> - (per nome) + (in base al nome) </string> <string name="MuteAgent"> - (residente) + (Residente) </string> <string name="MuteObject"> (oggetto) @@ -1302,18 +1543,18 @@ di questa texture in inventario. (gruppo) </string> <string name="RegionNoCovenant"> - Non esiste nessun regolamento per questa proprietà . + Non esiste alcun regolamento per questa proprietà . </string> <string name="RegionNoCovenantOtherOwner"> - Non esiste nessun regolamento per questa proprietà . Il terreno di questa proprietà è messo in vendita dal proprietario, non dalla Linden Lab. Contatta il proprietario del terreno per i dettagli della vendita. + Non esiste alcun regolamento per questa proprietà . Il terreno di questa proprietà è messo in vendita dal proprietario, non dalla Linden Lab. Contatta il proprietario del terreno per i dettagli della vendita. </string> <string name="covenant_last_modified"> Ultima modifica: </string> - <string name="none_text" value=" (nessuno) "/> - <string name="never_text" value=" (mai) "/> + <string name="none_text" value="(nessuno)"/> + <string name="never_text" value="(mai)"/> <string name="GroupOwned"> - Posseduta da un gruppo + Di proprietà di un gruppo </string> <string name="Public"> Pubblica @@ -1324,26 +1565,35 @@ di questa texture in inventario. <string name="ClassifiedUpdateAfterPublish"> (si aggiornerà dopo la pubblicazione) </string> + <string name="NoPicksClassifiedsText"> + Non hai creato luoghi preferiti né inserzioni. Clicca il pulsante più qui sotto per creare un luogo preferito o un'inserzione. + </string> + <string name="NoAvatarPicksClassifiedsText"> + L'utente non ha luoghi preferiti né inserzioni + </string> + <string name="PicksClassifiedsLoadingText"> + Caricamento in corso... + </string> <string name="MultiPreviewTitle"> Anteprima </string> <string name="MultiPropertiesTitle"> - Proprietà + Beni immobiliari </string> <string name="InvOfferAnObjectNamed"> - Un oggetto chiamato + Un oggetto denominato </string> <string name="InvOfferOwnedByGroup"> - Posseduto dal gruppo + di proprietà del gruppo </string> <string name="InvOfferOwnedByUnknownGroup"> - Posseduto da un gruppo sconosciuto + di proprietà di un gruppo sconosciuto </string> <string name="InvOfferOwnedBy"> - Posseduto da + di proprietà di </string> <string name="InvOfferOwnedByUnknownUser"> - Posseduto da un'utente sconosciuto + di proprietà di un utente sconosciuto </string> <string name="InvOfferGaveYou"> Ti ha offerto @@ -1379,7 +1629,7 @@ di questa texture in inventario. Saldo </string> <string name="GroupMoneyCredits"> - Crediti + Ringraziamenti </string> <string name="GroupMoneyDebits"> Debiti @@ -1391,32 +1641,38 @@ di questa texture in inventario. Oggetti acquisiti </string> <string name="Cancel"> - Cancella + Annulla </string> <string name="UploadingCosts"> - Costi di caricamento [%s] + Il caricamento di [NAME] costa L$ [AMOUNT] + </string> + <string name="BuyingCosts"> + L'acquisto di [NAME] costa L$ [AMOUNT] </string> <string name="UnknownFileExtension"> Estensione del file sconosciuta [.%s] Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh </string> + <string name="MuteObject2"> + Blocca + </string> <string name="AddLandmarkNavBarMenu"> - Aggiungi landmark... + Aggiungi punto di riferimento... </string> <string name="EditLandmarkNavBarMenu"> - Modifica landmark... + Modifica punto di riferimento... </string> <string name="accel-mac-control"> - ⌃ + ⌃ </string> <string name="accel-mac-command"> - ⌘ + ⌘ </string> <string name="accel-mac-option"> - ⌥ + ⌥ </string> <string name="accel-mac-shift"> - ⇧ + ⇧ </string> <string name="accel-win-control"> Ctrl+ @@ -1428,22 +1684,22 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Shift+ </string> <string name="FileSaved"> - File Salvato + File salvato </string> <string name="Receiving"> In ricezione </string> <string name="AM"> - AM + antemeridiane </string> <string name="PM"> - PM + pomeridiane </string> <string name="PST"> - PST + Ora Pacifico </string> <string name="PDT"> - PDT + Ora legale Pacifico </string> <string name="Forward"> Avanti @@ -1455,7 +1711,7 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Destra </string> <string name="Back"> - Dietro + Indietro </string> <string name="North"> Nord @@ -1476,13 +1732,13 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Giù </string> <string name="Any Category"> - Tutte le categorie + Qualsiasi categoria </string> <string name="Shopping"> - Shopping + Acquisti </string> <string name="Land Rental"> - Affitto terreni + Affitto terreno </string> <string name="Property Rental"> Affitto proprietà @@ -1494,13 +1750,13 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Nuovi prodotti </string> <string name="Employment"> - Impiego + Lavoro </string> <string name="Wanted"> - Richiesti + Cercasi </string> <string name="Service"> - Servizi + Servizio </string> <string name="Personal"> Personale @@ -1539,7 +1795,7 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Residenziale </string> <string name="Stage"> - Stage + Fase </string> <string name="Other"> Altro @@ -1551,10 +1807,10 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Tu </string> <string name="Multiple Media"> - Media Multipli + Più supporti </string> <string name="Play Media"> - Media Play/Pausa + Riproduci/Pausa supporto </string> <string name="MBCmdLineError"> Un errore è stato riscontrato analizzando la linea di comando. @@ -1562,17 +1818,17 @@ Per informazioni: http://wiki.secondlife.com/wiki/Client_parameters Errore: </string> <string name="MBCmdLineUsg"> - uso linea di comando del programma [APP_NAME] : + Uso linea di comando del programma [APP_NAME] : </string> <string name="MBUnableToAccessFile"> Il programma [APP_NAME] non è in grado di accedere ad un file necessario. -Potrebbe darsi che tu abbia copie multiple attivate, o il tuo sistema reputa erroneamente che il file sia già aperto. +Potrebbe darsi che tu abbia copie multiple attivate o che il tuo sistema reputi erroneamente che il file sia già aperto. Se il problema persiste, riavvia il computer e riprova. -Se il problema persiste ancora, dovresti completamente disinstallare l'applicazione [APP_NAME] e reinstallarla. +Se il problema continua ancora, dovresti completamente disinstallare l'applicazione [APP_NAME] e reinstallarla. </string> <string name="MBFatalError"> - Errore fatale + Errore critico </string> <string name="MBRequiresAltiVec"> Il programma [APP_NAME] richiede un processore con AltiVec (G4 o superiore). @@ -1591,7 +1847,7 @@ Vuoi mandare un crash report? </string> <string name="MBNoDirectX"> Il programmma [APP_NAME] non riesce a trovare una DirectX 9.0b o superiore. -[APP_NAME] usa le DirectX per determinare hardware e/o i driver non aggiornati che possono causare problemi di stabilità , scarsa performance e interruzioni. Sebbene tu possa avviare il programma [APP_NAME] senza di esse, raccomandiamo caldamente di installare le DirectX 9.0b. +[APP_NAME] usa DirectX per rilevare hardware e/o i driver non aggiornati che possono causare problemi di stabilità , scarsa performance e interruzioni. Benché tu possa avviare il programma [APP_NAME] senza di esse, consigliamo caldamente l'esecuzione con DirectX 9.0b. Vuoi continuare? </string> @@ -1599,8 +1855,8 @@ Vuoi continuare? Attenzione </string> <string name="MBNoAutoUpdate"> - L'aggiornamento automatico non è stato ancora implementato per Linux. -Raccomandiamo di scaricare l'utima versione da www.secondlife.com. + L'aggiornamento automatico non è stato ancora realizzato per Linux. +Consigliamo di scaricare l'ultima versione direttamente da www.secondlife.com. </string> <string name="MBRegClassFailed"> RegisterClass non riuscito @@ -1609,8 +1865,8 @@ Raccomandiamo di scaricare l'utima versione da www.secondlife.com. Errore </string> <string name="MBFullScreenErr"> - Impossibile visualizzare a schermo intero a risoluzione [WIDTH] x [HEIGHT]. -Visualizzazione corrente ridotta a finestra. + Impossibile visualizzare a schermo intero con risoluzione [WIDTH] x [HEIGHT]. +Visualizzazione corrente in modalità finestra. </string> <string name="MBDestroyWinFailed"> Errore di arresto durante il tentativo di chiusura della finestra (DestroyWindow() non riuscito) @@ -1628,14 +1884,14 @@ Visualizzazione corrente ridotta a finestra. Impossibile ottenere una descrizione del formato pixel </string> <string name="MBTrueColorWindow"> - [APP_NAME] richiede True Color (32-bit) per funzionare. -Vai alle impostazioni dello schermo del tuo computer e imposta il colore in modalità 32-bit. + [APP_NAME] richiede True Color (32 bit) per funzionare. +Vai alle impostazioni dello schermo del tuo computer e imposta il colore in modalità 32 bit. </string> <string name="MBAlpha"> - [APP_NAME] non funziona poichè è impossibile trovare un canale alpha ad 8 Bit. Questo problema normalmente deriva dai driver della scheda video. + [APP_NAME] non funziona poichè è impossibile trovare un canale alpha a 8 bit. Questo problema normalmente deriva dai driver della scheda video. Assicurati di avere installato i driver della scheda video più recenti. -Assicurati anche che il monitor sia impostato a True Color (32-bit) nel pannello di controllo > Display > Settings. -Se il messaggio persiste, contatta contatta [SUPPORT_SITE]. +Assicurati anche che il monitor sia impostato a True Color (32 bit) nel Pannello di controllo > Schermo > Impostazioni. +Se il messaggio persiste, contatta [SUPPORT_SITE]. </string> <string name="MBPixelFmtSetErr"> Impossibile impostare il formato pixel @@ -1647,7 +1903,7 @@ Se il messaggio persiste, contatta contatta [SUPPORT_SITE]. Impossibile attivare il GL rendering </string> <string name="MBVideoDrvErr"> - [APP_NAME] Non riesce ad avviarsi perchè i driver della tua scheda video non sono stati installati correttamente, non sono aggiornati, o sono per un hardware non supportato. Assicurati di avere i driver della scheda video più recenti e anche se li hai installati, prova a reinstallarli di nuovo. + [APP_NAME] Non riesce ad avviarsi perchè i driver della tua scheda video non sono stati installati correttamente, non sono aggiornati, o sono per un hardware non supportato. Assicurati di avere i driver della scheda video più recenti e anche se li hai installati, prova a installarli di nuovo. Se il messaggio persiste, contatta [SUPPORT_SITE]. </string> @@ -1672,44 +1928,20 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Attached Earlobes"> Lobi attaccati </string> - <string name="Back Bangs"> - #Back Bangs - </string> - <string name="Back Bangs Down"> - #Back Bangs Down - </string> - <string name="Back Bangs Up"> - #Back Bangs Up - </string> <string name="Back Fringe"> Frangetta all'indietro </string> - <string name="Back Hair"> - #Back Hair - </string> - <string name="Back Hair Down"> - #Back Hair Down - </string> - <string name="Back Hair Up"> - #Back Hair Up - </string> <string name="Baggy"> - Con le borse + Larghi </string> <string name="Bangs"> Frange </string> - <string name="Bangs Down"> - #Bangs Down - </string> - <string name="Bangs Up"> - #Bangs Up - </string> <string name="Beady Eyes"> Occhi piccoli </string> <string name="Belly Size"> - punto vita + Punto vita </string> <string name="Big"> Grande @@ -1717,23 +1949,20 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Big Butt"> Sedere grande </string> - <string name="Big Eyeball"> - #Big Eyeball - </string> <string name="Big Hair Back"> - Gonfiore dei capelli: dietro + Capigliatura grande: Indietro </string> <string name="Big Hair Front"> - Gonfiore dei capelli: davanti + Capigliatura grande: anteriore </string> <string name="Big Hair Top"> - Gonfiore dei capelli: sopra + Capigliatura grande: in alto </string> <string name="Big Head"> - Grandezza testa + Grande testa </string> <string name="Big Pectorals"> - Grandezza pettorali + Grandi pettorali </string> <string name="Big Spikes"> Capelli con punte @@ -1766,13 +1995,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Lentiggini e nei </string> <string name="Body Thick"> - Corpo robusto + Corpo più robusto </string> <string name="Body Thickness"> Robustezza del corpo </string> <string name="Body Thin"> - Magrezza del corpo + Corpo più magro </string> <string name="Bow Legged"> Gambe arcuate @@ -1781,7 +2010,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Altezza del seno </string> <string name="Breast Cleavage"> - Avvicinamento dei seni + Décolleté </string> <string name="Breast Size"> Grandezza del seno @@ -1796,7 +2025,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Grandezza delle sopracciglia </string> <string name="Bug Eyes"> - Sporgenza degli occhi + Occhi sporgenti </string> <string name="Bugged Eyes"> Occhi sporgenti @@ -1817,19 +2046,19 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Grandezza del sedere </string> <string name="bustle skirt"> - Arricciatura posteriore + Crinolina </string> <string name="no bustle"> - Meno arricciatura + Nessuna crinolina </string> <string name="more bustle"> - Più arricciatura + Più crinolina </string> <string name="Chaplin"> Baffetti </string> <string name="Cheek Bones"> - Mascella + Zigomi </string> <string name="Chest Size"> Ampiezza del torace @@ -1838,7 +2067,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Angolo del mento </string> <string name="Chin Cleft"> - Fessura inf. del mento + Fossetta sul mento </string> <string name="Chin Curtains"> Barba sottomento @@ -1847,16 +2076,16 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Profondità mento </string> <string name="Chin Heavy"> - Appuntita verso l'alto + Mento forte </string> <string name="Chin In"> Mento in dentro </string> <string name="Chin Out"> - Mento in fuori + Mento sporgente </string> <string name="Chin-Neck"> - Grandezza mento-collo + Mento-collo </string> <string name="Clear"> Trasparente @@ -1871,46 +2100,40 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Chiusa </string> <string name="Closed Back"> - Spacco chiuso dietro + Chiuso dietro </string> <string name="Closed Front"> - Spacco chiuso davanti + Chiuso davanti </string> <string name="Closed Left"> - Spacco chiuso sx + Chiuso sinistra </string> <string name="Closed Right"> - Spacco chiuso dx + Chiuso destra </string> <string name="Coin Purse"> Meno pronunciati </string> <string name="Collar Back"> - Scollatura posteriore + Colletto posteriore </string> <string name="Collar Front"> - Scollatura anteriore + Colletto anteriore </string> <string name="Corner Down"> Angolo all'ingiù </string> - <string name="Corner Normal"> - Angolo Normale - </string> <string name="Corner Up"> Angolo all'insù </string> <string name="Creased"> - Alzato + Piega </string> <string name="Crooked Nose"> Naso storto </string> - <string name="Cropped Hair"> - Capelli raccolti - </string> <string name="Cuff Flare"> - Fondo pantalone + Svasato con risvolto </string> <string name="Dark"> Scuro @@ -1922,49 +2145,43 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Più scuro </string> <string name="Deep"> - Più pronunciato + Profondo </string> <string name="Default Heels"> Tacchi standard </string> - <string name="Default Toe"> - Punta del piede standard - </string> <string name="Dense"> - Meno rade - </string> - <string name="Dense hair"> - #Dense Hair + Folti </string> <string name="Double Chin"> Doppio mento </string> <string name="Downturned"> - Naso all'ingiù + All'ingiù </string> <string name="Duffle Bag"> Più pronunciati </string> <string name="Ear Angle"> - Orecchie a sventola + Angolo orecchie </string> <string name="Ear Size"> Grandezza orecchie </string> <string name="Ear Tips"> - Tipo di orecchio + Estremità orecchie </string> <string name="Egg Head"> Ovalizzazione testa </string> <string name="Eye Bags"> - Borse sotto agli occhi + Occhiaie </string> <string name="Eye Color"> Colore degli occhi </string> <string name="Eye Depth"> - Occhi incavati + Profondità degli occhi </string> <string name="Eye Lightness"> Luminosità degli occhi @@ -1973,7 +2190,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Apertura degli occhi </string> <string name="Eye Pop"> - Differenza apertura occhi + Prominenza degli occhi </string> <string name="Eye Size"> Grandezza occhi @@ -1981,9 +2198,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Eye Spacing"> Distanza occhi </string> - <string name="Eyeball Size"> - #Eyeball Size - </string> <string name="Eyebrow Arc"> Arco delle sopracciglia </string> @@ -2008,69 +2222,21 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Eyeliner Color"> Colore dell'eyeliner </string> - <string name="Eyes Back"> - #Eyes Back - </string> <string name="Eyes Bugged"> Occhi sporgenti </string> - <string name="Eyes Forward"> - #Eyes Forward - </string> - <string name="Eyes Long Head"> - #Eyes Long Head - </string> - <string name="Eyes Shear Left Up"> - Distorsione occhi in alto a sx - </string> - <string name="Eyes Shear Right Up"> - Distorsione occhi in alto a dx - </string> - <string name="Eyes Short Head"> - #Eyes Short Head - </string> - <string name="Eyes Spread"> - #Eyes Spread - </string> - <string name="Eyes Sunken"> - #Eyes Sunken - </string> - <string name="Eyes Together"> - #Eyes Together - </string> <string name="Face Shear"> - Distorsione del viso + Taglio del viso </string> <string name="Facial Definition"> - Lineamenti del viso + Definizione del viso </string> <string name="Far Set Eyes"> Occhi distanti </string> - <string name="Fat"> - #Fat - </string> - <string name="Fat Head"> - #Fat Head - </string> <string name="Fat Lips"> Labbra carnose </string> - <string name="Fat Lower"> - #Fat Lower - </string> - <string name="Fat Lower Lip"> - Labbro inferiore sporgente - </string> - <string name="Fat Torso"> - #Fat Torso - </string> - <string name="Fat Upper"> - #Fat Upper - </string> - <string name="Fat Upper Lip"> - Labbro superiore sporgente - </string> <string name="Female"> Femmina </string> @@ -2081,7 +2247,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Dita </string> <string name="Flared Cuffs"> - Fondo largo + Risvolti svasati </string> <string name="Flat"> Piatto @@ -2090,88 +2256,73 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Sedere piatto </string> <string name="Flat Head"> - Viso piatto + Testa piatta </string> <string name="Flat Toe"> Punta piatta </string> <string name="Foot Size"> - Grandezza piede + Misura piede </string> <string name="Forehead Angle"> Angolo della fronte </string> <string name="Forehead Heavy"> - Appuntita verso il basso + Fronte sporgente </string> <string name="Freckles"> Lentiggini </string> - <string name="Front Bangs Down"> - #Front Bangs Down - </string> - <string name="Front Bangs Up"> - #Front Bangs Up - </string> <string name="Front Fringe"> Frangetta </string> - <string name="Front Hair"> - #Front Hair - </string> - <string name="Front Hair Down"> - #Front Hair Down - </string> - <string name="Front Hair Up"> - #Front Hair Up - </string> <string name="Full Back"> - Scostati + Dietro gonfi </string> <string name="Full Eyeliner"> - Con eyeliner + Eyeliner marcato </string> <string name="Full Front"> - Anteriore pieno + Anteriore gonfio </string> <string name="Full Hair Sides"> - Riempimento lati + Lati capelli gonfi </string> <string name="Full Sides"> - Pieni + Lati gonfi </string> <string name="Glossy"> Lucido </string> <string name="Glove Fingers"> - Dita dei guanti + Dita con guanti </string> <string name="Glove Length"> Lunghezza guanti </string> <string name="Hair"> - Capelli + Capigliature </string> <string name="Hair Back"> - Capelli: dietro + Capelli: Indietro </string> <string name="Hair Front"> - Capelli: davanti + Capelli: anteriore </string> <string name="Hair Sides"> Capelli: lati </string> <string name="Hair Sweep"> - Traslazione + Direzione capigliatura </string> <string name="Hair Thickess"> - Spessore + Foltezza </string> <string name="Hair Thickness"> - Spessore barba + Foltezza </string> <string name="Hair Tilt"> - Rotazione capelli + Inclinazione </string> <string name="Hair Tilted Left"> Verso sinistra @@ -2180,16 +2331,16 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Verso destra </string> <string name="Hair Volume"> - Capelli: volume + Capelli: Volume </string> <string name="Hand Size"> Grandezza mani </string> <string name="Handlebars"> - Baffi lunghi + Baffi a manubrio </string> <string name="Head Length"> - Sporgenza del viso + Lunghezza testa </string> <string name="Head Shape"> Forma della testa @@ -2198,7 +2349,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Grandezza della testa </string> <string name="Head Stretch"> - Compressione lat testa + Allungamento testa </string> <string name="Heel Height"> Altezza tacchi @@ -2222,7 +2373,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Alta </string> <string name="High and Tight"> - Cavallo alto + Alto e stretto </string> <string name="Higher"> Più alto @@ -2267,7 +2418,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Forma del mento </string> <string name="Join"> - Avvicinati + Iscriviti </string> <string name="Jowls"> Guance @@ -2297,7 +2448,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Meno </string> <string name="Less Body Fat"> - Meno grasso + Meno grasso corporeo </string> <string name="Less Curtains"> Meno @@ -2339,16 +2490,16 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Meno </string> <string name="Lighter"> - Più chiaro + Più leggero </string> <string name="Lip Cleft"> - Distanza divis. labbro sup. + Distanza fossetta labbro </string> <string name="Lip Cleft Depth"> - Prof. spacco labbro sup. + Prof. fossetta labbro </string> <string name="Lip Fullness"> - Riempimento delle labbra + Volume labbra </string> <string name="Lip Pinkness"> Tonalità rosa labbra @@ -2375,7 +2526,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Lungo </string> <string name="Long Head"> - Viso sporgente + Testa lunga </string> <string name="Long Hips"> Bacino alto @@ -2387,7 +2538,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Collo lungo </string> <string name="Long Pigtails"> - Ciuffi laterali lunghi + Codini lunghi </string> <string name="Long Ponytail"> Codino lungo @@ -2398,17 +2549,14 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Long arms"> Braccia lunghe </string> - <string name="Longcuffs"> - Longcuffs - </string> <string name="Loose Pants"> - Non attillati + Pantaloni ampi </string> <string name="Loose Shirt"> - Non attillata + Camicia ampia </string> <string name="Loose Sleeves"> - Maniche lente + Maniche non attillate </string> <string name="Love Handles"> Maniglie dell'amore @@ -2426,7 +2574,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Bassa </string> <string name="Low and Loose"> - Cavallo basso + Basso e ampio </string> <string name="Lower"> Più basso @@ -2435,7 +2583,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Parte bassa del setto </string> <string name="Lower Cheeks"> - Guance + Guance inferiori </string> <string name="Male"> Maschio @@ -2444,13 +2592,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Riga nel mezzo </string> <string name="More"> - Di più + Altro </string> <string name="More Blush"> Più fard </string> <string name="More Body Fat"> - Più grasso + Più grasso corporeo </string> <string name="More Curtains"> Più @@ -2519,7 +2667,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Posizione della bocca </string> <string name="Mowhawk"> - Vuoti + Moicana </string> <string name="Muscular"> Muscolatura @@ -2563,9 +2711,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="No Eyeshadow"> Senza ombretto </string> - <string name="No Heels"> - No Heels - </string> <string name="No Lipgloss"> Senza lipgloss </string> @@ -2597,10 +2742,10 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Superiore normale </string> <string name="Nose Left"> - Storto a sinistra + Naso a sinistra </string> <string name="Nose Right"> - Storto a destra + Naso a destra </string> <string name="Nose Size"> Grandezza naso @@ -2623,20 +2768,17 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Nostril Width"> Larghezza narici </string> - <string name="Old"> - Vecchio - </string> <string name="Opaque"> Opaco </string> <string name="Open"> - Aperto + Apri </string> <string name="Open Back"> Retro aperto </string> <string name="Open Front"> - Aperto Frontale + Davanti aperto </string> <string name="Open Left"> Lato sin. aperto @@ -2672,7 +2814,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Genitali </string> <string name="Painted Nails"> - Unghie colorate + Unghie smaltate </string> <string name="Pale"> Pallido @@ -2687,7 +2829,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Lunghezza pantaloni </string> <string name="Pants Waist"> - Altezza slip + Taglia pantalone </string> <string name="Pants Wrinkles"> Pantaloni con le grinze @@ -2705,7 +2847,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Pigmento </string> <string name="Pigtails"> - Ciuffi + Codini </string> <string name="Pink"> Rosa @@ -2725,9 +2867,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Pointy Heels"> Tacchi a spillo </string> - <string name="Pointy Toe"> - Punta appuntita - </string> <string name="Ponytail"> Codino </string> @@ -2752,15 +2891,9 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Red Hair"> Presenza di rosso nei capelli </string> - <string name="Red Skin"> - Red Skin - </string> <string name="Regular"> Normale </string> - <string name="Regular Muscles"> - Muscolatura normale - </string> <string name="Right Part"> Riga a destra </string> @@ -2770,9 +2903,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Round"> Rotondo </string> - <string name="Round Forehead"> - Round Forehead - </string> <string name="Ruddiness"> Rossore </string> @@ -2785,53 +2915,35 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Saddle Bags"> Rotondità fianchi </string> - <string name="Saddlebags"> - Rotondità fianchi - </string> - <string name="Scrawny"> - Scrawny - </string> <string name="Scrawny Leg"> Gambe magre </string> <string name="Separate"> Separati </string> - <string name="Shading"> - Shading - </string> - <string name="Shadow hair"> - Shadow hair - </string> <string name="Shallow"> Meno pronunciato </string> <string name="Shear Back"> - Accostamento posteriore + Taglio posteriore </string> <string name="Shear Face"> - Distorsione viso + Taglio del viso </string> <string name="Shear Front"> - Riempimento davanti - </string> - <string name="Shear Left"> - A sinistra + Taglio anteriore </string> <string name="Shear Left Up"> Distorto a sinistra </string> - <string name="Shear Right"> - A destra - </string> <string name="Shear Right Up"> Distorto a destra </string> <string name="Sheared Back"> - Accostati + Taglio verso dietro </string> <string name="Sheared Front"> - Anteriormente vuoto + Taglio verso davanti </string> <string name="Shift Left"> A sinistra @@ -2867,10 +2979,10 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Collo corto </string> <string name="Short Pigtails"> - Ciuffi laterali corti + Codini corti </string> <string name="Short Ponytail"> - Codino Corto + Codino corto </string> <string name="Short Sideburns"> Basette corte @@ -2884,15 +2996,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Shoulders"> Spalle </string> - <string name="Side Bangs"> - Side Bangs - </string> - <string name="Side Bangs Down"> - Side Bangs Down - </string> - <string name="Side Bangs Up"> - Side Bangs Up - </string> <string name="Side Fringe"> Ciuffi laterali </string> @@ -2900,16 +3003,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Basette </string> <string name="Sides Hair"> - Capigliatura later. + Capigliatura di lato </string> <string name="Sides Hair Down"> - Giù + Capigliatura di lato sciolta </string> <string name="Sides Hair Up"> - Su - </string> - <string name="Skinny"> - Skinny + Capigliatura di lato raccolta </string> <string name="Skinny Neck"> Collo fino @@ -2930,19 +3030,19 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Morbidezza maniche </string> <string name="Slit Back"> - Spacco: posteriore + Spacco: Indietro </string> <string name="Slit Front"> Spacco: anteriore </string> <string name="Slit Left"> - Spacco: sinistro + Spacco: Sinistra </string> <string name="Slit Right"> - Spacco: destro + Spacco: Destra </string> <string name="Small"> - Piccolo + Piccola </string> <string name="Small Hands"> Mani piccole @@ -2959,9 +3059,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Socks Length"> Lunghezza calze </string> - <string name="Some"> - Some - </string> <string name="Soulpatch"> Pizzetto labbro inferiore </string> @@ -2980,9 +3077,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Squash Head"> Testa schiacciata </string> - <string name="Squash/Stretch Head"> - Testa Schiacciata/Allungata - </string> <string name="Stretch Head"> Testa allungata </string> @@ -3001,18 +3095,6 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Sweep Forward"> Avanti </string> - <string name="Swept Back"> - Swept Back - </string> - <string name="Swept Back Hair"> - Swept Back Hair - </string> - <string name="Swept Forward"> - Swept Forward - </string> - <string name="Swept Forward Hair"> - Swept Forward Hair - </string> <string name="Tall"> Alto </string> @@ -3031,44 +3113,35 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="Thick Toe"> Punta spessa </string> - <string name="Thickness"> - Thickness - </string> <string name="Thin"> - Ossute + Sottili </string> <string name="Thin Eyebrows"> - Sopracciglia fini + Sopracciglia sottili </string> <string name="Thin Lips"> - Labbra fini + Labbra sottili </string> <string name="Thin Nose"> - Naso fino + Naso sottile </string> <string name="Tight Chin"> - Mento magro + Mento stretto </string> <string name="Tight Cuffs"> Fondo stretto </string> <string name="Tight Pants"> - Attillati + Pantaloni attillati </string> <string name="Tight Shirt"> - Attilata + Camicia attillata </string> <string name="Tight Skirt"> - Attillata + Gonna attillata </string> <string name="Tight Sleeves"> - Attillate - </string> - <string name="Tilt Left"> - Tilt Left - </string> - <string name="Tilt Right"> - Tilt Right + Maniche strette </string> <string name="Toe Shape"> Forma della punta @@ -3089,7 +3162,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Distaccato </string> <string name="Uncreased"> - Abbassato + Senza piega </string> <string name="Underbite"> Denti inf. in fuori @@ -3104,13 +3177,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Parte alta degli zigomi </string> <string name="Upper Chin Cleft"> - Fessura sup. del mento + Fossetta sup. del mento </string> <string name="Upper Eyelid Fold"> Piega palpebra sup. </string> <string name="Upturned"> - Naso all'insù + All'insù </string> <string name="Very Red"> Molto rossi @@ -3125,13 +3198,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Capelli bianchi </string> <string name="Wide"> - Spalancati + Largo </string> <string name="Wide Back"> - Laterali post. larghi + Dietro largo </string> <string name="Wide Front"> - Laterali ant. larghi + Davanti largo </string> <string name="Wide Lips"> Labbra larghe @@ -3143,31 +3216,31 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Grinze </string> <string name="LocationCtrlAddLandmarkTooltip"> - Aggiungi ai miei landmark + Aggiungi ai miei punti di riferimento </string> <string name="LocationCtrlEditLandmarkTooltip"> - Modifica i miei landmark + Modifica i miei punti di riferimento </string> <string name="LocationCtrlInfoBtnTooltip"> - maggiori informazioni sulla posizione attuale + Maggiori informazioni sulla posizione attuale </string> <string name="LocationCtrlComboBtnTooltip"> - Lo storico delle mie posizioni + La cronologia delle mie posizioni </string> <string name="UpdaterWindowTitle"> Aggiornamento [APP_NAME] </string> <string name="UpdaterNowUpdating"> - [APP_NAME] In aggiornamento... + Aggiornamento di [APP_NAME]... </string> <string name="UpdaterNowInstalling"> - [APP_NAME] In installazione... + Installazione di [APP_NAME]... </string> <string name="UpdaterUpdatingDescriptive"> - Il Viewer del programma [APP_NAME] si sta aggiornando all'ultima versione. Potrebbe volerci del tempo, attendi. + Il Viewer del programma [APP_NAME] si sta aggiornando all'ultima versione. Potrebbe volerci del tempo, attendi. </string> <string name="UpdaterProgressBarTextWithEllipses"> - Aggiornamento in download... + Download dell'aggiornamento... </string> <string name="UpdaterProgressBarText"> Download dell'aggiornamento @@ -3176,13 +3249,13 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Download dell'aggiornamento non riuscito </string> <string name="UpdaterFailUpdateDescriptive"> - Il programma [APP_NAME] ha riscontrato un'errore nel tentativo di aggiornamento. Consigliamo di scaricare l'ultima versione direttamente da www.secondlife.com. + Il programma [APP_NAME] ha riscontrato un'errore durante il tentativo di aggiornamento. Consigliamo di scaricare l'ultima versione direttamente da www.secondlife.com. </string> <string name="UpdaterFailInstallTitle"> - Tentativo di installazione aggiornamento non riuscito + Installazione dell'aggiornamento non riuscita </string> <string name="UpdaterFailStartTitle"> - Errore nell'apertura del viewer + Errore nell'avvio del viewer </string> <string name="IM_logging_string"> -- Registrazione messaggi instantanei abilitata -- @@ -3194,7 +3267,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. (anonimo) </string> <string name="IM_moderated_chat_label"> - (Moderato: Voice spento di default) + (Moderato: Voci disattivate di default) </string> <string name="IM_unavailable_text_label"> La chat di testo non è disponibile per questa chiamata. @@ -3203,7 +3276,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. La chat di testo è stata disabilitata da un moderatore di gruppo. </string> <string name="IM_default_text_label"> - Clicca qua per inviare un messaggio instantaneo. + Clicca qui per inviare un messaggio instantaneo. </string> <string name="IM_to_label"> A @@ -3211,6 +3284,21 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="IM_moderator_label"> (Moderatore) </string> + <string name="started_call"> + Chiamata vocale iniziata + </string> + <string name="joined_call"> + Si è collegato alla chiamata in voce + </string> + <string name="ringing-im"> + Collegamento alla chiamata vocale... + </string> + <string name="connected-im"> + Collegato, clicca Chiudi chiamata per agganciare + </string> + <string name="hang_up-im"> + Chiusa la chiamata + </string> <string name="only_user_message"> Sei l'unico utente di questa sessione. </string> @@ -3220,6 +3308,12 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="invite_message"> Clicca il tasto [BUTTON NAME] per accettare/connetterti a questa voice chat. </string> + <string name="muted_message"> + Hai bloccato questo residente. Quando gli invii un messaggio, verrà automaticamente sbloccato. + </string> + <string name="generic"> + Errore nella richiesta, riprova più tardi. + </string> <string name="generic_request_error"> Errore durante la richiesta, riprova più tardi. </string> @@ -3238,19 +3332,153 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. <string name="not_a_mod_error"> Non sei un moderatore. </string> + <string name="muted"> + Il moderatore del gruppo ha disattivato la tua chat di testo. + </string> <string name="muted_error"> Un moderatore di gruppo ti ha disabilitato dalla chat di testo. </string> <string name="add_session_event"> Impossibile aggiungere utenti alla chat con [RECIPIENT]. </string> + <string name="message"> + Impossibile spedire il tuo messaggio nella sessione chat con [RECIPIENT]. + </string> <string name="message_session_event"> Impossibile inviare il messaggio nella chat con [RECIPIENT]. </string> + <string name="mute"> + Errore durante la moderazione. + </string> + <string name="removed"> + Sei stato rimosso dal gruppo. + </string> <string name="removed_from_group"> Sei stato espulso dal gruppo. </string> <string name="close_on_no_ability"> Non hai più le abilitazioni per rimanere nella sessione chat. </string> + <string name="unread_chat_single"> + [SOURCES] ha detto qualcosa di nuovo + </string> + <string name="unread_chat_multiple"> + [SOURCES] ha detto qualcosa di nuovo + </string> + <string name="paid_you_ldollars"> + [NAME] ti ha inviato un pagamento di L$[AMOUNT]. + </string> + <string name="you_paid_ldollars"> + Hai inviato un pagamento di L$[AMOUNT] a [NAME] [REASON]. + </string> + <string name="you_paid_ldollars_no_reason"> + Hai inviato un pagamento di L$[AMOUNT] a [NAME]. + </string> + <string name="you_paid_ldollars_no_name"> + Hai pagato L$ [AMOUNT] [REASON]. + </string> + <string name="for a parcel of land"> + per un lotto di terreno + </string> + <string name="for a land access pass"> + per un permesso di accesso al terreno + </string> + <string name="for deeding land"> + per la cessione di terreno + </string> + <string name="to create a group"> + per creare un gruppo + </string> + <string name="to join a group"> + per aderire a un gruppo + </string> + <string name="to upload"> + per caricare + </string> + <string name="giving"> + Contributo di L$ [AMOUNT] + </string> + <string name="uploading_costs"> + Il costo per il caricamento è di L$ [AMOUNT] + </string> + <string name="this_costs"> + Il costo è L$ [AMOUNT] + </string> + <string name="buying_selected_land"> + L'acquisto del terreno prescelto costa L$ [AMOUNT] + </string> + <string name="this_object_costs"> + Il costo dell'oggetto è L$ [AMOUNT] + </string> + <string name="group_role_everyone"> + Tutti + </string> + <string name="group_role_officers"> + Funzionari + </string> + <string name="group_role_owners"> + Proprietari + </string> + <string name="uploading_abuse_report"> + Caricamento in corso... + +Segnala abuso + </string> + <string name="New Shape"> + Nuova figura corporea + </string> + <string name="New Skin"> + Nuova pelle + </string> + <string name="New Hair"> + Nuovi capelli + </string> + <string name="New Eyes"> + Nuovi occhi + </string> + <string name="New Shirt"> + Nuova camicia + </string> + <string name="New Pants"> + Nuovi pantaloni + </string> + <string name="New Shoes"> + Nuove scarpe + </string> + <string name="New Socks"> + Nuove calze + </string> + <string name="New Jacket"> + Nuova giacca + </string> + <string name="New Gloves"> + Nuovi guanti + </string> + <string name="New Undershirt"> + Nuova maglietta intima + </string> + <string name="New Underpants"> + Nuovi slip + </string> + <string name="New Skirt"> + Nuova gonna + </string> + <string name="New Alpha"> + Nuovo Alpha (trasparenza) + </string> + <string name="New Tattoo"> + Nuovo tatuaggio + </string> + <string name="Invalid Wearable"> + Capo da indossare non valido + </string> + <string name="New Script"> + Nuovo script + </string> + <string name="New Folder"> + Nuova cartella + </string> + <string name="Contents"> + Contenuto + </string> </strings> diff --git a/indra/newview/skins/default/xui/it/teleport_strings.xml b/indra/newview/skins/default/xui/it/teleport_strings.xml index eff7516050b66cc5a5bf27878f03a950010287c6..c11d41f6b96c2d57989414168a83ff6d048a2e59 100644 --- a/indra/newview/skins/default/xui/it/teleport_strings.xml +++ b/indra/newview/skins/default/xui/it/teleport_strings.xml @@ -2,12 +2,12 @@ <teleport_messages> <message_set name="errors"> <message name="invalid_tport"> - C'è stato un problema nell'elaborare la tua richiesta di teleport. Potresti aver bisogno di ricollegarti prima di poter usare il teleport. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: -www.secondlife.com/support. + C'è stato un problema nell'elaborare la tua richiesta di teleport. Potresti dover effettuare nuovamente l'accesso prima di poter usare il teleport. +Se si continua a visualizzare questo messaggio, consulta la pagina [SUPPORT_SITE]. </message> <message name="invalid_region_handoff"> - C'è stato un problema nell'elaborare il cambio di regione. Potresti aver bisogno di ricollegarti prima di poterlo effetuare. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: -www.secondlife.com/support. + Si è verificato un problema nel tentativo di attraversare regioni. È possibile che per potere attraversare le regioni, tu debba effettuare nuovamente l'accesso. +Se si continua a visualizzare questo messaggio, consulta la pagina [SUPPORT_SITE]. </message> <message name="blocked_tport"> Spiacenti, il teletrasporto è bloccato al momento. Prova di nuovo tra pochi istanti. Se ancora non potrai teletrasportarti, per favore scollegati e ricollegati per risolvere il problema. @@ -59,6 +59,9 @@ www.secondlife.com/support. <message name="completing"> Teletrasporto completato </message> + <message name="completed_from"> + Teleport completato da [T_SLURL] + </message> <message name="resolving"> Elaborazione della destinazione in corso... </message> 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 ceda48109e70c45f23d177bfbcc75181d156bab9..c9c01bc2a4a52adf77917ba364abc2570d7c8f33 100644 --- a/indra/newview/skins/default/xui/ja/floater_about_land.xml +++ b/indra/newview/skins/default/xui/ja/floater_about_land.xml @@ -318,21 +318,21 @@ </text> <check_box label="地形を編集" name="edit land check" tool_tip="ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨ã€ä»–人ãŒã‚ãªãŸã®åœŸåœ°ã®åœ°å½¢ç·¨é›†ã‚’è¡Œã†ã“ã¨ãŒå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚ã“ã®ã‚ªãƒ—ションã®ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã¦ãŠãã“ã¨ã‚’ãŠã™ã™ã‚ã—ã¾ã™ã€‚外ã—ãŸçŠ¶æ…‹ã§ã‚ãªãŸã®åœŸåœ°ã®åœ°å½¢ç·¨é›†ãŒå¯èƒ½ã§ã™ã€‚"/> <check_box label="飛行" name="check fly" tool_tip="ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨ã“ã®åœŸåœ°ã§ã®é£›è¡ŒãŒå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨åœŸåœ°ã«å…¥ã‚‹éš›ã¨é€šã‚ŠéŽãŽã‚‹ã¨ãã®ã¿é£›è¡Œå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚"/> - <text left="138" name="allow_label2" width="144"> + <text name="allow_label2"> 制作: </text> - <check_box label="全員" left="280" name="edit objects check"/> - <check_box label="グループ" left="380" name="edit group objects check"/> - <text left="138" name="allow_label3" width="144"> + <check_box label="全員" name="edit objects check"/> + <check_box label="グループ" name="edit group objects check"/> + <text name="allow_label3"> オブジェクトã®é€²å…¥ï¼š </text> - <check_box label="全員" left="280" name="all object entry check"/> - <check_box label="グループ" left="380" name="group object entry check"/> - <text left="138" name="allow_label4" width="144"> + <check_box label="全員" name="all object entry check"/> + <check_box label="グループ" name="group object entry check"/> + <text name="allow_label4"> スクリプトã®å®Ÿè¡Œï¼š </text> - <check_box label="全員" left="280" name="check other scripts"/> - <check_box label="グループ" left="380" name="check group scripts"/> + <check_box label="全員" name="check other scripts"/> + <check_box label="グループ" name="check group scripts"/> <text name="land_options_label"> 土地オプション: </text> @@ -395,7 +395,7 @@ <text name="at URL:"> ホームページ: </text> - <button label="è¨å®š" label_selected="è¨å®š..." name="set_media_url"/> + <button label="è¨å®š" name="set_media_url"/> <check_box label="URL ã‚’éžè¡¨ç¤º" name="hide_media_url" tool_tip="ã“ã®ã‚ªãƒ—ションをオンã«ã™ã‚‹ã¨ã€è¨±å¯ãªã—ã§ã“ã®åŒºç”»æƒ…å ±ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã„るユーザーã«ã¯ãƒ¡ãƒ‡ã‚£ã‚¢ URL ãŒè¡¨ç¤ºã•ã‚Œã¾ã›ã‚“。 ã“れ㯠HTML タイプã«ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“ã®ã§ã”注æ„ãã ã•ã„。"/> <text name="Description:"> 説明: @@ -442,6 +442,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> diff --git a/indra/newview/skins/default/xui/ja/floater_buy_currency.xml b/indra/newview/skins/default/xui/ja/floater_buy_currency.xml index 32de533dc427c051567f6ccadff5dc63cc46eb09..22af6e0ea2695329b926f3d601c8a73c1740b912 100644 --- a/indra/newview/skins/default/xui/ja/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/ja/floater_buy_currency.xml @@ -37,7 +37,7 @@ 見ç©ã‚‚ã‚Šä¸... </text> <text name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text name="total_label"> 購入後ã®æ®‹é«˜ diff --git a/indra/newview/skins/default/xui/ja/floater_day_cycle_options.xml b/indra/newview/skins/default/xui/ja/floater_day_cycle_options.xml index 2a7985fe58a3a13358c4c23ab5936cd9b8450b42..7bda25e00fcdbf991b042cc05c86693e45e58d62 100644 --- a/indra/newview/skins/default/xui/ja/floater_day_cycle_options.xml +++ b/indra/newview/skins/default/xui/ja/floater_day_cycle_options.xml @@ -85,7 +85,7 @@ プレビュー: </text> <button label="å†ç”Ÿ" label_selected="å†ç”Ÿ" name="WLAnimSky" left_delta="70"/> - <button label="åœæ¢!" label_selected="åœæ¢" name="WLStopAnimSky" /> + <button label="åœæ¢" label_selected="åœæ¢" name="WLStopAnimSky" /> <button label="ä¸å‹•ç”£ã®æ™‚刻を使用" label_selected="ä¸å‹•ç”£ã®æ™‚刻ã«å¤‰æ›´" name="WLUseLindenTime" width="140"/> <button label="デイテストをä¿å˜" diff --git a/indra/newview/skins/default/xui/ja/floater_gesture.xml b/indra/newview/skins/default/xui/ja/floater_gesture.xml index a79854bcef4c18ad2aaee9315756a99ece54e23f..1ed5ad31db2a80b75aa013184242e07c8b193ceb 100644 --- a/indra/newview/skins/default/xui/ja/floater_gesture.xml +++ b/indra/newview/skins/default/xui/ja/floater_gesture.xml @@ -9,7 +9,7 @@ <floater.string name="copy_name"> [COPY_NAME] ã®ã‚³ãƒ”ー </floater.string> - <scroll_list bottom_delta="-385" height="360" name="gesture_list"> + <scroll_list name="gesture_list"> <scroll_list.columns label="åå‰" name="name"/> <scroll_list.columns label="ãƒãƒ£ãƒƒãƒˆ" name="trigger"/> <scroll_list.columns label="" name="key"/> diff --git a/indra/newview/skins/default/xui/ja/floater_sys_well.xml b/indra/newview/skins/default/xui/ja/floater_sys_well.xml index 6536eb253cf955a5bf5b81ff054cbc9747354b31..45e97bdf5dd73f12699536048fd3b1199b2fd5fe 100644 --- a/indra/newview/skins/default/xui/ja/floater_sys_well.xml +++ b/indra/newview/skins/default/xui/ja/floater_sys_well.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="notification_chiclet" title="通知"> +<floater name="sys_well_window" title="通知"> <string name="title_im_well_window"> 会話 </string> diff --git a/indra/newview/skins/default/xui/ja/floater_tos.xml b/indra/newview/skins/default/xui/ja/floater_tos.xml index 85ac102885f67de95cc6ab823ac736931f652e8b..337766987cd1481e90ebbaa1f550d203e8b66411 100644 --- a/indra/newview/skins/default/xui/ja/floater_tos.xml +++ b/indra/newview/skins/default/xui/ja/floater_tos.xml @@ -9,9 +9,9 @@ <text name="tos_title"> 利用è¦ç´„ </text> - <check_box label="利用è¦ç´„ã«åŒæ„ã—ã¾ã™" name="agree_chk"/> + <check_box label="利用è¦ç´„ã¨ãƒ—ライãƒã‚·ãƒ¼ãƒãƒªã‚·ãƒ¼ã«åŒæ„ã—ã¾ã™" name="agree_chk"/> <text name="tos_heading"> - 次ã®åˆ©ç”¨è¦ç´„をよããŠèªã¿ãã ã•ã„。 [SECOND_LIFE] ã¸ã®ãƒã‚°ã‚¤ãƒ³ã‚’続ã‘ã‚‹ã«ã¯ã€è¦ç´„ã«åŒæ„ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + 次ã®åˆ©ç”¨è¦ç´„ã¨ãƒ—ライãƒã‚·ãƒ¼ãƒãƒªã‚·ãƒ¼ã‚’よããŠèªã¿ãã ã•ã„。 [SECOND_LIFE] ã¸ã®ãƒã‚°ã‚¤ãƒ³ã‚’続ã‘ã‚‹ã«ã¯ã€è¦ç´„ã«åŒæ„ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/ja/menu_mini_map.xml b/indra/newview/skins/default/xui/ja/menu_mini_map.xml index ec49c3a98d6f1d3810c8a14437d0c6b83753e354..0a89c5e63af3a538e9595c3263dc7774064052f1 100644 --- a/indra/newview/skins/default/xui/ja/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/ja/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="ズーム(近)" name="Zoom Close"/> <menu_item_call label="ズーム(ä¸ï¼‰" name="Zoom Medium"/> <menu_item_call label="ズーム(é )" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/ja/menu_profile_overflow.xml b/indra/newview/skins/default/xui/ja/menu_profile_overflow.xml index d7107dc15310e06bf3901c8e63e5d678a1238f5e..9d3a5dda1c7436b29e67975587b3f969e113c5c5 100644 --- a/indra/newview/skins/default/xui/ja/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/ja/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="地図" name="show_on_map"/> <menu_item_call label="支払ã†" name="pay"/> <menu_item_call label="共有" name="share"/> <menu_item_call label="ブãƒãƒƒã‚¯" name="block"/> diff --git a/indra/newview/skins/default/xui/ja/panel_edit_pick.xml b/indra/newview/skins/default/xui/ja/panel_edit_pick.xml index 88c05fbae767977e11eccf7ce5ffd8388fd90ccf..e58fa979d786610c77b498d3ea2d44c95a7cde63 100644 --- a/indra/newview/skins/default/xui/ja/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/ja/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="ピック編集" name="panel_edit_pick"> + <panel.string name="location_notice"> + (掲載後更新) + </panel.string> <text name="title"> ピック編集 </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="[WHAT] ã‚’ä¿å˜" name="save_changes_btn"/> + <button label="ピックをä¿å˜" name="save_changes_btn"/> <button label="ã‚ャンセル" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/ja/panel_main_inventory.xml b/indra/newview/skins/default/xui/ja/panel_main_inventory.xml index 36c7b75f97c20fb0a25551b08d53a8e6041279b9..9981d13bbb37ec462d9b65aa099cb91006c8c8ee 100644 --- a/indra/newview/skins/default/xui/ja/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/ja/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="ã‚‚ã®" name="main inventory panel"> - <panel.string name="Title"> - ã‚‚ã® + <panel.string name="ItemcountFetching"> + [ITEM_COUNT] 個ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’å–å¾—ä¸ã§ã™... [FILTER] </panel.string> - <filter_editor label="æŒã¡ç‰©ã‚’フィルター" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="æŒã¡ç‰©" name="All Items"/> - <inventory_panel label="最新" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="ãã®ä»–ã®ã‚ªãƒ—ションを表示ã—ã¾ã™"/> - <button name="add_btn" tool_tip="æ–°ã—ã„ã‚¢ã‚¤ãƒ†ãƒ ã‚’è¿½åŠ ã—ã¾ã™"/> - <dnd_button name="trash_btn" tool_tip="é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ を削除ã—ã¾ã™"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] 個ã®ã‚¢ã‚¤ãƒ†ãƒ  [FILTER] + </panel.string> + <text name="ItemcountText"> + アイテム: + </text> <menu_bar name="Inventory Menu"> <menu label="ファイル" name="File"> <menu_item_call label="é–‹ã" name="Open"/> @@ -61,4 +57,14 @@ <menu_item_check label="システムフォルダを上ã«ä¸¦ã¹ã‚‹" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="æŒã¡ç‰©ã‚’フィルター" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="æŒã¡ç‰©" name="All Items"/> + <inventory_panel label="最新" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="ãã®ä»–ã®ã‚ªãƒ—ションを表示ã—ã¾ã™"/> + <button name="add_btn" tool_tip="æ–°ã—ã„ã‚¢ã‚¤ãƒ†ãƒ ã‚’è¿½åŠ ã—ã¾ã™"/> + <dnd_button name="trash_btn" tool_tip="é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ を削除ã—ã¾ã™"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/ja/panel_nearby_media.xml b/indra/newview/skins/default/xui/ja/panel_nearby_media.xml index a670975dda374db4738a8c942f28ac700e000c86..fb273de4203cdf6a3d21b3bcdbb1b5e4d2ab64f2 100644 --- a/indra/newview/skins/default/xui/ja/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/ja/panel_nearby_media.xml @@ -19,10 +19,17 @@ <button label="詳細 >>" label_selected="簡易 <<" name="more_less_btn" tool_tip="アドãƒãƒ³ã‚¹ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + è¿‘ãã®ãƒ¡ãƒ‡ã‚£ã‚¢ + </text> + <text name="show"> + 表示: + </text> <combo_box name="show_combo"> <combo_box.item label="ã™ã¹ã¦" name="All"/> <combo_box.item label="ã“ã®åŒºç”»å†…" name="WithinParcel"/> <combo_box.item label="ã“ã®åŒºç”»å¤–" name="OutsideParcel"/> + <combo_box.item label="ä»–ã®ã‚¢ãƒã‚¿ãƒ¼" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="近接" name="media_proximity"/> @@ -31,7 +38,7 @@ <scroll_list.columns label="åå‰" name="media_name"/> <scroll_list.columns label="デãƒãƒƒã‚°" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> <button name="stop_btn" tool_tip="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’åœæ¢"/> @@ -49,7 +56,7 @@ <button name="mute_btn" tool_tip="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã®éŸ³ã‚’ミュート"/> </layout_panel> <layout_panel name="zoom"> - <button name="zoom_btn" tool_tip="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã«è¿‘ã¥ã"/> + <button name="zoom_btn" tool_tip="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã«ã‚ºãƒ¼ãƒ "/> </layout_panel> <layout_panel name="unzoom"> <button name="unzoom_btn" tool_tip="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‹ã‚‰é ã–ã‹ã‚‹"/> diff --git a/indra/newview/skins/default/xui/ja/panel_place_profile.xml b/indra/newview/skins/default/xui/ja/panel_place_profile.xml index 433ed0ad934b23540d76c62ed1a5728b02a5270a..9de04f0d6acb7d36977fab782204e3904bfa8da3 100644 --- a/indra/newview/skins/default/xui/ja/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/ja/panel_place_profile.xml @@ -69,7 +69,7 @@ <accordion name="advanced_info_accordion"> <accordion_tab name="parcel_characteristics_tab" title="区画"> <panel name="parcel_characteristics_panel"> - <text name="rating_label" value="レーティング区分:"/> + <text name="rating_label" value="レーティング:"/> <text name="rating_value" value="ä¸æ˜Ž"/> <text name="voice_label" value="ボイス:"/> <text name="voice_value" value="オン"/> @@ -88,11 +88,11 @@ </accordion_tab> <accordion_tab name="region_information_tab" title="リージョン(地域) "> <panel name="region_information_panel"> - <text name="region_name_label" value="リージョン(地域):"/> + <text name="region_name_label" value="リージョン:"/> <text name="region_name" value="Mooseland"/> <text name="region_type_label" value="種類:"/> <text name="region_type" value="Moose"/> - <text name="region_rating_label" value="レーティング区分:"/> + <text name="region_rating_label" value="レーティング:"/> <text name="region_rating" value="Adult"/> <text name="region_owner_label" value="所有者:"/> <text name="region_owner" value="moose Van Moose"/> @@ -105,8 +105,8 @@ </accordion_tab> <accordion_tab name="estate_information_tab" title="エステート(ä¸å‹•ç”£ï¼‰"> <panel name="estate_information_panel"> - <text name="estate_name_label" value="エステート(ä¸å‹•ç”£ï¼‰ï¼š"/> - <text name="estate_rating_label" value="レーティング区分:"/> + <text name="estate_name_label" value="エステート:"/> + <text name="estate_rating_label" value="レーティング:"/> <text name="estate_owner_label" value="所有者:"/> <text name="covenant_label" value="約款:"/> </panel> diff --git a/indra/newview/skins/default/xui/ja/panel_places.xml b/indra/newview/skins/default/xui/ja/panel_places.xml index a7fbc7988486d3dc551a5f50a42d4a306b09ef33..acfa0bf4e8d2ac3466be682debe71446b1aa5c64 100644 --- a/indra/newview/skins/default/xui/ja/panel_places.xml +++ b/indra/newview/skins/default/xui/ja/panel_places.xml @@ -2,7 +2,7 @@ <panel label="å ´æ‰€" name="places panel"> <string name="landmarks_tab_title" value="マイ ランドマーク"/> <string name="teleport_history_tab_title" value="テレãƒãƒ¼ãƒˆã®å±¥æ´"/> - <filter_editor label="ç§ã®å ´æ‰€ã‚’フィルターã™ã‚‹" name="Filter"/> + <filter_editor label="å ´æ‰€ã‚’ãƒ•ã‚£ãƒ«ã‚¿ãƒ¼" name="Filter"/> <panel name="button_panel"> <button label="テレãƒãƒ¼ãƒˆ" name="teleport_btn" tool_tip="該当ã™ã‚‹ã‚¨ãƒªã‚¢ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¾ã™"/> <button label="地図" name="map_btn"/> diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/ja/panel_preferences_advanced.xml index 87cd772143c374a5bdc5706669067bdd80486f83..a8520a51ccc04ad42d808ded4883e611f9b2f487 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + マウスã®ä¸å¤® + </panel.string> <slider label="視界角" name="camera_fov"/> <slider label="è·é›¢" name="camera_offset_scale"/> <text name="heading2"> diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml b/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml index a521556c7965952417aef18aee7e8f51abc8ef6e..e5780697b19fa54f2246b5144d82a3f9be4c88c0 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml @@ -46,6 +46,12 @@ <check_box initial_value="true" label="ãƒãƒ£ãƒƒãƒˆä¸ã«ã‚¿ã‚¤ãƒ”ング動作ã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’å†ç”Ÿ" name="play_typing_animation"/> <check_box label="オフライン時ã«å—ã‘å–ã£ãŸ IM をメールã§å—ä¿¡" name="send_im_to_email"/> <check_box label="ãƒãƒ£ãƒƒãƒˆå±¥æ´ã«æ–‡å—ã ã‘表示ã™ã‚‹" name="plain_text_chat_history"/> + <text name="show_ims_in_label"> + IM ã®è¡¨ç¤ºæ–¹æ³•ï¼š + </text> + <text name="requires_restart_label"> + (å†èµ·å‹•å¾Œã«åæ˜ ï¼‰ + </text> <radio_group name="chat_window" tool_tip="インスタントメッセージを別フãƒãƒ¼ã‚¿ãƒ¼ã€ã¾ãŸã¯1ã¤ã®ãƒ•ãƒãƒ¼ã‚¿ãƒ¼ã«è¤‡æ•°ã‚¿ãƒ–ã§è¡¨ç¤ºã—ã¾ã™ï¼ˆè¦å†èµ·å‹•ï¼‰"> <radio_item label="別々ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦" name="radio" value="0"/> <radio_item label="タブ" name="radio2" value="1"/> diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_general.xml b/indra/newview/skins/default/xui/ja/panel_preferences_general.xml index 6df59ca189a7ecdbd3e7893ad686dfbe3f8fef90..4ccb70b321a1a4c52a36d68101e356d3590ce050 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_general.xml @@ -44,7 +44,7 @@ <radio_item label="オン" name="radio2" value="1"/> <radio_item label="一時的ã«è¡¨ç¤º" name="radio3" value="2"/> </radio_group> - <check_box label="ç§ã®åå‰ã‚’表示" name="show_my_name_checkbox1"/> + <check_box label="自分ã®åå‰ã‚’表示" name="show_my_name_checkbox1"/> <check_box initial_value="true" label="å°ã•ã„ã‚¢ãƒã‚¿ãƒ¼å" name="small_avatar_names_checkbox"/> <check_box label="グループタイトルを表示" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> @@ -53,12 +53,12 @@ <text name="title_afk_text"> 一時退å¸ã¾ã§ã®æ™‚間: </text> - <color_swatch label="" name="effect_color_swatch" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <color_swatch label="" name="effect_color_swatch" tool_tip="クリックã§ã‚«ãƒ©ãƒ¼ãƒ”ッカーを開ãã¾ã™"/> <combo_box label="一時退å¸ã¾ã§ã®æ™‚間:" name="afk"> - <combo_box.item label="2分" name="item0"/> - <combo_box.item label="5分" name="item1"/> - <combo_box.item label="10分" name="item2"/> - <combo_box.item label="30分" name="item3"/> + <combo_box.item label="2 分" name="item0"/> + <combo_box.item label="5 分" name="item1"/> + <combo_box.item label="10 分" name="item2"/> + <combo_box.item label="30 分" name="item3"/> <combo_box.item label="一時退å¸è¨å®šãªã—" name="item4"/> </combo_box> <text name="text_box3"> 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 ad8c8437bee3801705d0a4409bf01b01edb9178b..653d9fd3b344ceff6a16fccae70731e29b12af81 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_setup.xml @@ -34,9 +34,12 @@ Web: </text> <radio_group name="use_external_browser"> - <radio_item label="内蔵ブラウザを使用" name="internal" tool_tip="内蔵ブラウザã§ãƒ˜ãƒ«ãƒ—ã‚„ Web リンクãªã©ã‚’見ã¾ã™ã€‚[APP_NAME] 内ã«æ–°ã—ã„ウィンドウã§ã“ã®ãƒ–ラウザãŒé–‹ãã¾ã™ã€‚" value="0"/> <radio_item label="指定ã®ãƒ–ラウザ(IE ã‚„ Firefox)を使用" name="external" tool_tip="デフォルトã®ã‚·ã‚¹ãƒ†ãƒ Web ブラウザã§ãƒ˜ãƒ«ãƒ—ã‚„ Web リンク先ãªã©ã‚’見ã¾ã™ã€‚全画é¢ã§èµ·å‹•ä¸ã«ã¯ãŠã™ã™ã‚ã—ã¾ã›ã‚“。" value="1"/> + <radio_item label="内蔵ブラウザを使用" name="internal" tool_tip="内蔵ブラウザã§ãƒ˜ãƒ«ãƒ—ã‚„ Web リンクãªã©ã‚’見ã¾ã™ã€‚[APP_NAME] 内ã«æ–°ã—ã„ウィンドウã§ã“ã®ãƒ–ラウザãŒé–‹ãã¾ã™ã€‚" value=""/> </radio_group> + <check_box initial_value="true" label="プラグインを有効ã«ã™ã‚‹" name="browser_plugins_enabled"/> + <check_box initial_value="true" label="Cookie ã‚’å—ã‘入れる" name="cookies_enabled"/> + <check_box initial_value="true" label="Javascript を有効ã«ã™ã‚‹" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Web プãƒã‚シを有効ã«ã™ã‚‹" name="web_proxy_enabled"/> <text name="Proxy location"> プãƒã‚シ: diff --git a/indra/newview/skins/default/xui/ja/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/ja/panel_prim_media_controls.xml index 0e1e2851e397730a8dbb4b63ad14a0b557c4ea87..1fe6ad25edd98619bfe6356fe9a7781d3786c58a 100644 --- a/indra/newview/skins/default/xui/ja/panel_prim_media_controls.xml +++ b/indra/newview/skins/default/xui/ja/panel_prim_media_controls.xml @@ -67,7 +67,7 @@ <button name="close_btn" tool_tip="Zoom Back"/> </layout_panel> <layout_panel name="new_window"> - <button name="new_window_btn" tool_tip="URLをブラウザã§é–‹ã"/> + <button name="new_window_btn" tool_tip="URL をブラウザã§é–‹ã"/> </layout_panel> </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/ja/panel_region_estate.xml b/indra/newview/skins/default/xui/ja/panel_region_estate.xml index 3113a68505d72b6cfd20f239b7e666f562a0ff00..5b2ef3604531412eb1ebf26db56e256b7c2f49c3 100644 --- a/indra/newview/skins/default/xui/ja/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/ja/panel_region_estate.xml @@ -16,10 +16,10 @@ (ä¸æ˜Žï¼‰ </text> <text name="Only Allow"> - 次ã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ã‚¢ã‚¯ã‚»ã‚¹ç¦æ¢ï¼š + 次ã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ã¿ã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯ï¼š </text> <check_box label="æ”¯æ‰•æƒ…å ±ç™»éŒ²æ¸ˆ" name="limit_payment" tool_tip="未確èªã®ä½äººã®ç«‹å…¥ã‚’ç¦æ¢ã—ã¾ã™"/> - <check_box label="年齢確èª" name="limit_age_verified" tool_tip="年齢確èªã‚’済ã¾ã›ã¦ã„ãªã„ä½äººã®ç«‹å…¥ã‚’ç¦æ¢ã—ã¾ã™ã€‚ 詳ã—ã„æƒ…å ±ã¯ [SUPPORT_SITE] ã‚’ã”覧下ã•ã„。"/> + <check_box label="年齢確èªæ¸ˆ" name="limit_age_verified" tool_tip="年齢確èªã‚’済ã¾ã›ã¦ã„ãªã„ä½äººã®ç«‹å…¥ã‚’ç¦æ¢ã—ã¾ã™ã€‚ 詳ã—ã„æƒ…å ±ã¯ [SUPPORT_SITE] ã‚’ã”覧下ã•ã„。"/> <check_box label="ボイスãƒãƒ£ãƒƒãƒˆã‚’許å¯" name="voice_chat_check"/> <button label="?" name="voice_chat_help"/> <text name="abuse_email_text"> diff --git a/indra/newview/skins/default/xui/ja/sidepanel_appearance.xml b/indra/newview/skins/default/xui/ja/sidepanel_appearance.xml index 4fba4b1567360aab585eb8dd073f0c21fe8ac730..94be8ba73dcb230a7be4fded11aeac5197ae52ec 100644 --- a/indra/newview/skins/default/xui/ja/sidepanel_appearance.xml +++ b/indra/newview/skins/default/xui/ja/sidepanel_appearance.xml @@ -10,7 +10,7 @@ MyOutfit With a really Long Name like MOOSE </text> </panel> - <filter_editor label="アウトフィットã®ãƒ•ã‚£ãƒ«ã‚¿ãƒ¼" name="Filter"/> + <filter_editor label="アウトフィットをフィルター" name="Filter"/> <button label="装ç€" name="wear_btn"/> <button label="æ–°ã—ã„アウトフィット" name="newlook_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/ja/strings.xml b/indra/newview/skins/default/xui/ja/strings.xml index 688e4751dea6e2a343bb2311c68a46f31dbaf91d..b9df82adcd505f02261e68e0cdb6f544edb8dcf9 100644 --- a/indra/newview/skins/default/xui/ja/strings.xml +++ b/indra/newview/skins/default/xui/ja/strings.xml @@ -23,7 +23,22 @@ ãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ã®æ¤œå‡ºä¸ã§ã™... </string> <string name="StartupLoading"> - ãƒãƒ¼ãƒ‡ã‚£ãƒ³ã‚° + [APP_NAME] をインストールä¸ã§ã™... + </string> + <string name="StartupClearingCache"> + ã‚ャッシュをクリアä¸ã§ã™... + </string> + <string name="StartupInitializingTextureCache"> + テクスãƒãƒ£ã‚ャッシュをåˆæœŸåŒ–ä¸ã§ã™... + </string> + <string name="StartupInitializingVFS"> + VFS ã‚’åˆæœŸåŒ–ä¸ã§ã™... + </string> + <string name="ProgressRestoring"> + 復元ä¸ã§ã™... + </string> + <string name="ProgressChangingResolution"> + 解åƒåº¦ã‚’変更ä¸ã§ã™... </string> <string name="Fullbright"> 明るã•å…¨é–‹ï¼ˆãƒ¬ã‚¬ã‚·ãƒ¼ï¼‰ @@ -88,6 +103,9 @@ <string name="LoginFailedNoNetwork"> ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚¨ãƒ©ãƒ¼ï¼š 接続を確立ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ãŠä½¿ã„ã®ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯æŽ¥ç¶šã‚’ã”確èªãã ã•ã„。 </string> + <string name="LoginFailed"> + ãƒã‚°ã‚¤ãƒ³ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ + </string> <string name="Quit"> 終了 </string> @@ -97,6 +115,24 @@ <string name="AgentLostConnection"> ã“ã®ãƒªãƒ¼ã‚¸ãƒ§ãƒ³ã«ä¸éƒ½åˆãŒç™ºç”Ÿã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ ã”使用ã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šã‚’ã”確èªãã ã•ã„。 </string> + <string name="SavingSettings"> + è¨å®šã‚’ä¿å˜ä¸ã§ã™... + </string> + <string name="LoggingOut"> + ãƒã‚°ã‚¢ã‚¦ãƒˆä¸ã§ã™... + </string> + <string name="ShuttingDown"> + シャットダウンä¸ã§ã™... + </string> + <string name="YouHaveBeenDisconnected"> + ã‚ãªãŸãŒã„ãŸãƒªãƒ¼ã‚¸ãƒ§ãƒ³ã¸ã®æŽ¥ç¶šãŒåˆ‡ã‚Œã¾ã—ãŸã€‚ + </string> + <string name="SentToInvalidRegion"> + 無効ãªãƒªãƒ¼ã‚¸ãƒ§ãƒ³ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã•ã‚Œã¾ã—ãŸã€‚ + </string> + <string name="TestingDisconnect"> + ビューワã®æŽ¥ç¶šã‚’åˆ‡ã‚‹ãƒ†ã‚¹ãƒˆä¸ + </string> <string name="TooltipPerson"> 人 </string> @@ -151,6 +187,24 @@ <string name="TooltipAgentUrl"> クリックã—ã¦ã“ã®ä½äººã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã‚’見ã¾ã™ </string> + <string name="TooltipAgentMute"> + クリックã—ã¦ã“ã®ä½äººã«å¯¾ã—ã¦ç„¡è¦–è¨å®šã‚’ã—ã¾ã™ + </string> + <string name="TooltipAgentUnmute"> + クリックã—ã¦ã“ã®ä½äººã«å¯¾ã™ã‚‹ç„¡è¦–è¨å®šã‚’解除ã—ã¾ã™ + </string> + <string name="TooltipAgentIM"> + クリックã—ã¦ã“ã®ä½äººã« IM ã‚’é€ã‚Šã¾ã™ + </string> + <string name="TooltipAgentPay"> + クリックã—ã¦ã“ã®ä½äººã«æ”¯æ‰•ã„ã¾ã™ + </string> + <string name="TooltipAgentOfferTeleport"> + クリックã—ã¦ã“ã®ä½äººã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’é€ã‚Šã¾ã™ + </string> + <string name="TooltipAgentRequestFriend"> + クリックã—ã¦ã“ã®ä½äººã«ãƒ•ãƒ¬ãƒ³ãƒ‰ç™»éŒ²ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’é€ã‚Šã¾ã™ + </string> <string name="TooltipGroupUrl"> クリックã—ã¦ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã®èª¬æ˜Žæ–‡ã‚’見ã¾ã™ </string> @@ -176,12 +230,31 @@ クリックã—㦠secondlife:// コマンドを出ã—ã¾ã™ </string> <string name="CurrentURL" value=" ç¾åœ¨ã® URL: [CurrentURL]"/> + <string name="TooltipPrice" value="L$[PRICE]-"/> <string name="SLurlLabelTeleport"> テレãƒãƒ¼ãƒˆ </string> <string name="SLurlLabelShowOnMap"> 地図ã«è¡¨ç¤º </string> + <string name="SLappAgentMute"> + 無視 + </string> + <string name="SLappAgentUnmute"> + ミュート解除 + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + 支払ㆠ+ </string> + <string name="SLappAgentOfferTeleport"> + 次ã®å ´æ‰€ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã‚’é€ã‚Šã¾ã™ï¼š + </string> + <string name="SLappAgentRequestFriend"> + フレンド登録リクエスト + </string> <string name="BUTTON_CLOSE_DARWIN"> é–‰ã˜ã‚‹ (⌘W) </string> @@ -335,6 +408,9 @@ <string name="symbolic link"> リンク </string> + <string name="symbolic folder link"> + フォルダã®ãƒªãƒ³ã‚¯ + </string> <string name="AvatarEditingAppearance"> (容姿ã®ç·¨é›†ä¸ï¼‰ </string> @@ -828,7 +904,7 @@ ESC ã‚ーを押ã—ã¦ãƒ¯ãƒ¼ãƒ«ãƒ‰ãƒ“ューã«æˆ»ã‚Šã¾ã™ </string> <string name="InventoryNoMatchingItems"> - 一致ã™ã‚‹ã‚¢ã‚¤ãƒ†ãƒ ãŒæŒã¡ç‰©ã«ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ [secondlife:///app/search/groups 「検索ã€] ã‚’ãŠè©¦ã—ãã ã•ã„。 + 一致ã™ã‚‹ã‚¢ã‚¤ãƒ†ãƒ ãŒã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚[secondlife:///app/search/groups 「検索ã€]ã‚’ãŠè©¦ã—ãã ã•ã„。 </string> <string name="FavoritesNoMatchingItems"> ã“ã“ã«ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‚’ドラッグã—ã¦ã€ãŠæ°—ã«å…¥ã‚Šã«è¿½åŠ ã—ã¾ã™ã€‚ @@ -849,6 +925,7 @@ コンテンツãªã— </string> <string name="WornOnAttachmentPoint" value=" ([ATTACHMENT_POINT] ã«è£…ç€ä¸ï¼‰"/> + <string name="ActiveGesture" value="[GESLABEL] (アクティブ)"/> <string name="PermYes"> ã¯ã„ </string> @@ -948,6 +1025,9 @@ <string name="InvFolder My Outfits"> マイ アウトフィット </string> + <string name="InvFolder Accessories"> + アクセサリ + </string> <string name="InvFolder Friends"> フレンド </string> @@ -1301,7 +1381,7 @@ 許å¯ã•ã‚ŒãŸä½äººï¼š ([ALLOWEDAGENTS] 人ã€æœ€å¤§ [MAXACCESS] 人) </string> <string name="RegionInfoAllowedGroups"> - 許å¯ã•ã‚ŒãŸã‚°ãƒ«ãƒ¼ãƒ—: ([ALLOWEDGROUPS]ã€æœ€å¤§ [MAXACCESS] グループ) + 許å¯ã•ã‚ŒãŸã‚°ãƒ«ãƒ¼ãƒ—: ([ALLOWEDGROUPS]ã€æœ€å¤§ [MAXACCESS] ) </string> <string name="ScriptLimitsParcelScriptMemory"> 区画スクリプトメモリ @@ -1471,6 +1551,9 @@ <string name="PanelContentsNewScript"> æ–°è¦ã‚¹ã‚¯ãƒªãƒ—ト </string> + <string name="PanelContentsTooltip"> + オブジェクトã®ä¸èº« + </string> <string name="BusyModeResponseDefault"> メッセージをé€ã£ãŸä½äººã¯ã€èª°ã«ã‚‚邪é”ã‚’ã•ã‚ŒãŸããªã„ãŸã‚ç¾åœ¨ã€Œå–ã‚Šè¾¼ã¿ä¸ã€ãƒ¢ãƒ¼ãƒ‰ã§ã™ã€‚ ã‚ãªãŸã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã¯ã€ã‚ã¨ã§ç¢ºèªã§ãるよã†ã« IM パãƒãƒ«ã«è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ </string> @@ -1588,7 +1671,10 @@ ã‚ャンセル </string> <string name="UploadingCosts"> - %s ã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ä»£é‡‘: + [NAME] ã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ–™é‡‘㯠L$[AMOUNT] ã§ã™ + </string> + <string name="BuyingCosts"> + ã“れを L$[AMOUNT] ã§è³¼å…¥ã—ã¾ã™ </string> <string name="UnknownFileExtension"> ä¸æ˜Žã®æ‹¡å¼µå: %s @@ -3375,4 +3461,120 @@ www.secondlife.com ã‹ã‚‰æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’ダウンãƒãƒ¼ãƒ‰ã—ã¦ãã <string name="unread_chat_multiple"> [SOURCES] ã¯ä½•ã‹æ–°ã—ã„ã“ã¨ã‚’言ã„ã¾ã—ãŸã€‚ </string> + <string name="paid_you_ldollars"> + [NAME] 㯠L$[AMOUNT] 支払ã„ã¾ã—㟠+ </string> + <string name="you_paid_ldollars"> + [NAME] ã« L$ [AMOUNT] を支払ã„ã¾ã—ãŸï¼š[REASON] + </string> + <string name="you_paid_ldollars_no_reason"> + [NAME] ã« L$ [AMOUNT] を支払ã„ã¾ã—ãŸã€‚ + </string> + <string name="you_paid_ldollars_no_name"> + L$ [AMOUNT] を支払ã„ã¾ã—ãŸï¼š[REASON] + </string> + <string name="for a parcel of land"> + 土地区画ã®ãŸã‚ + </string> + <string name="for a land access pass"> + 土地ã®å…¥å ´è¨±å¯ã‚’å¾—ã‚‹ãŸã‚ + </string> + <string name="for deeding land"> + 土地をè²æ¸¡ã™ã‚‹ãŸã‚ + </string> + <string name="to create a group"> + グループを作æˆã™ã‚‹ãŸã‚ + </string> + <string name="to join a group"> + グループã«å‚åŠ ã™ã‚‹ãŸã‚ + </string> + <string name="to upload"> + アップãƒãƒ¼ãƒ‰ã™ã‚‹ãŸã‚ + </string> + <string name="giving"> + L$[AMOUNT] を渡ã—ã¾ã™ + </string> + <string name="uploading_costs"> + アップãƒãƒ¼ãƒ‰æ–™é‡‘㯠L$[AMOUNT] ã§ã™ + </string> + <string name="this_costs"> + 料金㯠L$[AMOUNT] ã§ã™ + </string> + <string name="buying_selected_land"> + é¸æŠžã—ãŸåœŸåœ°ã‚’ L$ [AMOUNT] ã§è³¼å…¥ã—ã¾ã™ + </string> + <string name="this_object_costs"> + ã“ã®ã‚ªãƒ–ジェクト㯠L$[AMOUNT] ã§ã™ + </string> + <string name="group_role_everyone"> + 全員 + </string> + <string name="group_role_officers"> + オフィサー + </string> + <string name="group_role_owners"> + オーナー + </string> + <string name="uploading_abuse_report"> + アップãƒãƒ¼ãƒ‰ä¸... + +å«ŒãŒã‚‰ã›ã®å ±å‘Š + </string> + <string name="New Shape"> + æ–°ã—ã„シェイプ + </string> + <string name="New Skin"> + æ–°ã—ã„スã‚ン + </string> + <string name="New Hair"> + æ–°ã—ã„髪 + </string> + <string name="New Eyes"> + æ–°ã—ã„ç›® + </string> + <string name="New Shirt"> + æ–°ã—ã„シャツ + </string> + <string name="New Pants"> + æ–°ã—ã„パンツ + </string> + <string name="New Shoes"> + æ–°ã—ã„é´ + </string> + <string name="New Socks"> + æ–°ã—ã„é´ä¸‹ + </string> + <string name="New Jacket"> + æ–°ã—ã„ジャケット + </string> + <string name="New Gloves"> + æ–°ã—ã„手袋 + </string> + <string name="New Undershirt"> + æ–°ã—ã„下ç€ï¼ˆä¸Šï¼‰ + </string> + <string name="New Underpants"> + æ–°ã—ã„下ç€ï¼ˆä¸‹ï¼‰ + </string> + <string name="New Skirt"> + æ–°ã—ã„スカート + </string> + <string name="New Alpha"> + æ–°ã—ã„アルファ + </string> + <string name="New Tattoo"> + æ–°ã—ã„タトゥ + </string> + <string name="Invalid Wearable"> + 無効ãªç€ç”¨ç‰© + </string> + <string name="New Script"> + æ–°è¦ã‚¹ã‚¯ãƒªãƒ—ト + </string> + <string name="New Folder"> + æ–°è¦ãƒ•ã‚©ãƒ«ãƒ€ + </string> + <string name="Contents"> + コンテンツ + </string> </strings> diff --git a/indra/newview/skins/default/xui/nl/floater_about_land.xml b/indra/newview/skins/default/xui/nl/floater_about_land.xml index 3a77de70d281f2db63762cd310c9cfa9c326f587..7b8f1b42aba23a7a64f7b31ba8788d442b1be307 100644 --- a/indra/newview/skins/default/xui/nl/floater_about_land.xml +++ b/indra/newview/skins/default/xui/nl/floater_about_land.xml @@ -26,14 +26,14 @@ <text name="OwnerText" left="102" width="242"> Leyla Linden </text> - <button label="Profiel..." label_selected="Profiel..." name="Profile..."/> + <button label="Profiel" name="Profile..."/> <text name="Group:"> Groep: </text> <text left="102" name="GroupText" width="242"/> - <button label="Instellen..." label_selected="Instellen..." name="Set..."/> + <button label="Instellen" name="Set..."/> <check_box label="Overdracht aan groep toestaan" name="check deed" tool_tip="Een groepofficier kan dit land aan de groep overdragen, zodat het ondersteund wordt door de landallocatie van de groep."/> - <button label="Overdragen..." label_selected="Overdragen..." name="Deed..." tool_tip="U mag alleen land overdragen indien u een officier bent in de geselecteerde groep."/> + <button label="Overdragen" name="Deed..." tool_tip="U mag alleen land overdragen indien u een officier bent in de geselecteerde groep."/> <check_box label="Eigenaar maakt bijdrage met overdracht" name="check contrib" tool_tip="Wanneer het land is overgedragen aan de groep, draagt de voormalig eigenaar voldoende landtoewijzing bij om het te ondersteunen."/> <text name="For Sale:"> Te koop: @@ -44,7 +44,7 @@ <text name="For Sale: Price L$[PRICE]."> Prijs: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> - <button label="Verkoop land..." label_selected="Verkoop land..." name="Sell Land..."/> + <button label="Verkoop land" name="Sell Land..."/> <text name="For sale to"> Te koop voor: [BUYER] </text> @@ -74,11 +74,11 @@ 0 </text> <button left="130" width="125" label="Koop land..." label_selected="Koop land..." name="Buy Land..."/> - <button label="Koop voor groep..." label_selected="Koop voor groep..." name="Buy For Group..."/> + <button label="Koop voor groep" name="Buy For Group..."/> <button left="130" width="125" label="Koop toegangspas..." label_selected="Koop toegangspas..." name="Buy Pass..." tool_tip="Een toegangspas geeft u tijdelijk toegang tot dit land."/> - <button label="Land Afstaan..." label_selected="Land Afstaan..." name="Abandon Land..."/> - <button label="Land terugvorderen..." label_selected="Land terugvorderen..." name="Reclaim Land..."/> - <button label="Lindenverkoop..." label_selected="Lindenverkoop..." name="Linden Sale..." tool_tip="Land moet in bezit zijn, de inhoud moet ingesteld zijn en niet al ter veiling zijn aangeboden."/> + <button label="Land Afstaan" name="Abandon Land..."/> + <button label="Land terugvorderen" name="Reclaim Land..."/> + <button label="Lindenverkoop" name="Linden Sale..." tool_tip="Land moet in bezit zijn, de inhoud moet ingesteld zijn en niet al ter veiling zijn aangeboden."/> <panel.string name="new users only"> Alleen nieuwe gebruikers </panel.string> @@ -224,7 +224,7 @@ of opgedeeld. [COUNT] </text> <button label="Toon" label_selected="Toon" name="ShowOwner" right="-135" width="60"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOwner..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <button label="Retourneren" name="ReturnOwner..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> <text name="Set to group:" left="14" width="180"> Groep toewijzen: </text> @@ -232,7 +232,7 @@ of opgedeeld. [COUNT] </text> <button label="Toon" label_selected="Toon" name="ShowGroup" right="-135" width="60"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnGroup..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <button label="Retourneren" name="ReturnGroup..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> <text name="Owned by others:" left="14" width="128"> Eigendom van anderen: </text> @@ -240,7 +240,7 @@ of opgedeeld. [COUNT] </text> <button label="Toon" label_selected="Toon" name="ShowOther" right="-135" width="60"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOther..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <button label="Retourneren" name="ReturnOther..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> <text name="Selected / sat upon:" left="14" width="193"> Geselecteerd/Er op gezeten </text> @@ -256,7 +256,7 @@ of opgedeeld. Objecteigenaren: </text> <button label="Ververs lijst" label_selected="Ververs lijst" name="Refresh List" bottom="-213"/> - <button label="Retourneer objecten..." label_selected="Retourneer objecten..." name="Return objects..." width="164" bottom="-213"/> + <button label="Retourneer objecten" name="Return objects..." width="164" bottom="-213"/> <name_list name="owner list" height="104"> <column label="Type" name="type"/> <column label="Naam" name="name"/> @@ -407,7 +407,7 @@ of opgedeeld. <text name="at URL:"> Media URL: </text> - <button label="Instellen..." label_selected="Instellen..." name="set_media_url" width="66"/> + <button label="Instellen" name="set_media_url"/> <text name="Description:"> Omschrijving: </text> diff --git a/indra/newview/skins/default/xui/nl/menu_mini_map.xml b/indra/newview/skins/default/xui/nl/menu_mini_map.xml index 0a6dfa346580851a0e4000157073d888c837a115..f7c09660ea3412d5ffaffeeedc7b820ecfa3b94c 100644 --- a/indra/newview/skins/default/xui/nl/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/nl/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom dichtbij" name="Zoom Close"/> <menu_item_call label="Zoom gemiddeld" name="Zoom Medium"/> <menu_item_call label="Zoom veraf" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/pl/floater_about.xml b/indra/newview/skins/default/xui/pl/floater_about.xml index 29a5aca90d7569fc5e0bb17aae15ff0dc5419fe0..b49247c4bfb2737d5e473bb79d2515b8dbfb9a5a 100644 --- a/indra/newview/skins/default/xui/pl/floater_about.xml +++ b/indra/newview/skins/default/xui/pl/floater_about.xml @@ -8,7 +8,7 @@ Buduj z [COMPILER] wersjÄ… [COMPILER_VERSION] </floater.string> <floater.string name="AboutPosition"> - Znajdujesz siÄ™ na pozycji [POSITION_0,number,1], [POSITION_1,number,1], [POSITION_2,number,1] w [REGION] zlokalizowanym w [HOSTNAME] ([HOSTIP]) + PoÅ‚ożenie [POSITION_0,number,1], [POSITION_1,number,1], [POSITION_2,number,1] w [REGION] zlokalizowanym w <nolink>[HOSTNAME]</nolink> ([HOSTIP]) [SERVER_VERSION] [[SERVER_RELEASE_NOTES_URL] [ReleaseNotes]] </floater.string> @@ -16,18 +16,18 @@ Procesor: [CPU] Pamięć: [MEMORY_MB] MB Wersja OS: [OS_VERSION] -Graphics Card Vendor: [GRAPHICS_CARD_VENDOR] -Karta Graficzna: [GRAPHICS_CARD] +Sprzedawca karty graficznej: [GRAPHICS_CARD_VENDOR] +Karta graficzna: [GRAPHICS_CARD] </floater.string> <floater.string name="AboutDriver"> - Windows Sterownik Karty Graficznej: [GRAPHICS_DRIVER_VERSION] + Windows Sterownik karty graficznej: [GRAPHICS_DRIVER_VERSION] </floater.string> <floater.string name="AboutLibs"> Wersja OpenGL: [OPENGL_VERSION] Wersja libcurl: [LIBCURL_VERSION] -Wersja Dekodera J2C: [J2C_VERSION] -Wersja Sterownika Audio: [AUDIO_DRIVER_VERSION] +Wersja dekodera J2C: [J2C_VERSION] +Wersja sterownika audio: [AUDIO_DRIVER_VERSION] Wersja Qt Webkit: [QT_WEBKIT_VERSION] Wersja Vivox: [VIVOX_VERSION] </floater.string> @@ -35,21 +35,19 @@ Wersja Vivox: [VIVOX_VERSION] (żadne) </floater.string> <floater.string name="AboutTraffic"> - Stracone Pakiety: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%) + Stracone pakiety: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%) </floater.string> <tab_container name="about_tab"> <panel label="Info" name="support_panel"> - <button label="Kopiuj do Schowka" name="copy_btn"/> + <button label="Kopiuj do schowka" name="copy_btn"/> </panel> <panel label="PodziÄ™kowania" name="credits_panel"> <text_editor name="credits_editor"> - Second Life zostaÅ‚o stworzone dla Was przez: Philip, Tessa, Andrew, Cory, James, Ben, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Eve, Hunter, Ian, Jeff, Jennifer, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Avi, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, Bill, Todd, Ryan, Zach, Sarah, Nova, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, Jeska, Torley, Kona, Callum, Charity, Ventrella, Jack, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Teeny, Monroe, Icculus, David, Tess, Lizzie, Patsy, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Satoko, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Mogura, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Rohn, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, Katie, Dawn, Katt, Dusty, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Vidtuts, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, Ann, Meredith, Clare, Joy, Praveen, Cody, Edmund, Ruthe, Sirena, Gayathri, Spider, FJ, Davidoff, Tian, Jennie, Louise, Oskar, Landon, Noelle, Jarv, Ingrid, Al, Sommer, Doc, Aria, Huin, Gray, Lili, Vir, DJ, Yang, T, Simone, Maestro, Scott, Charlene, Quixote, Amanda, Susan, Zed, Anne, Enkidu, Esbee, Joroan, Katelin, Roxie, Tay, Scarlet, Kevin, Johnny, Wolfgang, Andren, Bob, Howard, Merov, Rand, Ray, Michon, Newell, Galen, Dessie, Les, Michon, Jenelle, Geo, Siz, Shapiro, Pete, Calyle, Selene, Allen, Phoebe, Goldin, Kimmora, Dakota, Slaton, Lindquist, Zoey, Hari, Othello, Rohit, Sheldon, Petra, Viale, Gordon, Kaye, Pink, Ferny, Emerson, Davy, Bri, Chan, Juan, Robert, Terrence, Nathan, Carl i wielu innych. + Second Life zostaÅ‚o stworzone dla Was przez: Philip, Tessa, Andrew, Cory, James, Ben, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Eve, Hunter, Ian, Jeff, Jennifer, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Avi, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, Bill, Todd, Ryan, Zach, Sarah, Nova, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, Jeska, Torley, Kona, Callum, Charity, Ventrella, Jack, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Teeny, Monroe, Icculus, David, Tess, Lizzie, Patsy, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Satoko, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Mogura, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Rohn, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, Katie, Dawn, Katt, Dusty, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Vidtuts, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, Ann, Meredith, Clare, Joy, Praveen, Cody, Edmund, Ruthe, Sirena, Gayathri, Spider, FJ, Davidoff, Tian, Jennie, Louise, Oskar, Landon, Noelle, Jarv, Ingrid, Al, Sommer, Doc, Aria, Huin, Gray, Lili, Vir, DJ, Yang, T, Simone, Maestro, Scott, Charlene, Quixote, Amanda, Susan, Zed, Anne, Enkidu, Esbee, Joroan, Katelin, Roxie, Tay, Scarlet, Kevin, Johnny, Wolfgang, Andren, Bob, Howard, Merov, Rand, Ray, Michon, Newell, Galen, Dessie, Les and many others. - PodziÄ™kowania dla nastÄ™pujÄ…cych rezydentów za pomoc w pracy nad obecnÄ… wersjÄ… Second Life: able whitman, Adeon Writer, adonaira aabye, Aeron Kohime, Agathos Frascati, Aimee Trescothick, Aleric Inglewood, Alissa Sabre, Aminom Marvin, Angela Talamasca, Aralara Rajal, Armin Weatherwax, Ashrilyn Hayashida, Athanasius Skytower, Aura Dirval, Barney Boomslang, Biancaluce Robbiani, Biker Offcourse, Borg Capalini, Bulli Schumann, catherine pfeffer, Chalice Yao, Corre Porta, Court Goodman, Cummere Mayo, Dale Innis, Darien Caldwell, Darjeeling Schoonhoven, Daten Thielt, dimentox travanti, Dirk Talamasca, Drew Dwi, Duckless Vandyke, Elanthius Flagstaff, Electro Burnstein, emiley tomsen, Escort DeFarge, Eva Rau, Ezian Ecksol, Fire Centaur, Fluf Fredriksson, Francisco Koolhoven, Frontera Thor, Frungi Stastny, Gally Young, gearsawe stonecutter, Gigs Taggart, Gordon Wendt, Gudmund Shepherd, Gypsy Paz, Harleen Gretzky, Henri Beauchamp, Inma Rau, Irene Muni, Iskar Ariantho, Jacek Antonelli, JB Kraft, Jessicka Graves, Joeseph Albanese, Joshua Philgarlic, Khyota Wulluf, kirstenlee Cinquetti, Latif Khalifa, Lex Neva, Lilibeth Andree, Lisa Lowe, Lunita Savira, Loosey Demonia, lum pfohl, Marcos Fonzarelli, MartinRJ Fayray, Marusame Arai, Matthew Dowd, Maya Remblai, McCabe Maxsted, Meghan Dench, Melchoir Tokhes, Menos Short, Michelle2 Zenovka, Mimika Oh, Minerva Memel, Mm Alder, Ochi Wolfe, Omei Turnbull, Pesho Replacement, Phantom Ninetails, phoenixflames kukulcan, Polo Gufler, prez pessoa, princess niven, Prokofy Neva, Qie Niangao, Rem Beattie, RodneyLee Jessop, Saijanai Kuhn, Seg Baphomet, Sergen Davies, Shirley Marquez, SignpostMarv Martin, Sindy Tsure, Sira Arbizu, Skips Jigsaw, Sougent Harrop, Spritely Pixel, Squirrel Wood, StarSong Bright, Subversive Writer, Sugarcult Dagger, Sylumm Grigorovich, Tammy Nowotny, Tanooki Darkes, Tayra Dagostino, Theoretical Chemistry, Thickbrick Sleaford, valerie rosewood, Vex Streeter, Vixen Heron, Whoops Babii, Winter Ventura, Xiki Luik, Yann Dufaux, Yina Yao, Yukinoroh Kamachi, Zolute Infinity, Zwagoth Klaar - - - - I get by with a little help from my friends. --Richard Starkey +PodziÄ™kowania dla nastÄ™pujÄ…cych rezydentów za pomoc w pracy nad obecnÄ… wersjÄ… Second Life: (in progress) +It is a rare mind indeed that can render the hitherto non-existent blindingly obvious. The cry 'I could have thought of that' is a very popular and misleading one, for the fact is that they didn't, and a very significant and revealing fact it is too. + -- Douglas Adams </text_editor> </panel> <panel label="Licencje" name="licenses_panel"> diff --git a/indra/newview/skins/default/xui/pl/floater_about_land.xml b/indra/newview/skins/default/xui/pl/floater_about_land.xml index d456ea26b422892480e8634ffbc5a0d3f6190fe0..e4908deb079499749fc0dc6aed2959ffea3f1430 100644 --- a/indra/newview/skins/default/xui/pl/floater_about_land.xml +++ b/indra/newview/skins/default/xui/pl/floater_about_land.xml @@ -1,7 +1,68 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floaterland" title="O POSIADÅOÅšCI"> + <floater.string name="maturity_icon_general"> + "Parcel_PG_Dark" + </floater.string> + <floater.string name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> + <floater.string name="Minutes"> + [MINUTES] minuty + </floater.string> + <floater.string name="Minute"> + minuta + </floater.string> + <floater.string name="Seconds"> + [SECONDS] sekundy + </floater.string> + <floater.string name="Remaining"> + pozostaÅ‚y + </floater.string> <tab_container name="landtab"> - <panel label="Ogólne" name="land_general_panel"> + <panel label="OGÓLNE" name="land_general_panel"> + <panel.string name="new users only"> + Tylko nowi Rezydenci + </panel.string> + <panel.string name="anyone"> + Każdy + </panel.string> + <panel.string name="area_text"> + Obszar: + </panel.string> + <panel.string name="area_size_text"> + [AREA] m² + </panel.string> + <panel.string name="auction_id_text"> + Numer aukcji: [ID] + </panel.string> + <panel.string name="need_tier_to_modify"> + Musisz zaakceptować zakup by móc modyfikować PosiadÅ‚ość. + </panel.string> + <panel.string name="group_owned_text"> + (WÅ‚asność Grupy) + </panel.string> + <panel.string name="profile_text"> + Profil... + </panel.string> + <panel.string name="info_text"> + Info... + </panel.string> + <panel.string name="public_text"> + (publiczne) + </panel.string> + <panel.string name="none_text"> + (brak) + </panel.string> + <panel.string name="sale_pending_text"> + (Sprzedaż w toku realizacji) + </panel.string> + <panel.string name="no_selection_text"> + PosiadÅ‚ość nie wybrana. +Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokazać jej dane. + </panel.string> <text name="Name:"> Nazwa: </text> @@ -26,14 +87,16 @@ <text name="OwnerText"> Leyla Linden </text> - <button label="Profile..." label_selected="Profile..." name="Profile..."/> <text name="Group:"> Grupa: </text> - <button label="Ustaw..." label_selected="Ustaw..." name="Set..."/> - <check_box label="UdostÄ™pnij przypisywanie na grupÄ™" name="check deed" tool_tip="Oficer grupy ma prawo przepisać prawo wÅ‚asnoÅ›ci posiadÅ‚oÅ›ci na grupÄ™. PosiadÅ‚ość wspierana jest przez przydziaÅ‚y pochodzÄ…ce od czÅ‚onków grupy."/> - <button label="Przypisz..." label_selected="Przypisz..." name="Deed..." tool_tip="Prawo przypisania posiadÅ‚oÅ›ci na grupÄ™ może dokonać jedynie oficer grupy."/> - <check_box label="WÅ‚aÅ›cicel dokonuje wpÅ‚at zwiÄ…zanych z posiadÅ‚oÅ›ciÄ…" name="check contrib" tool_tip="Kiedy posiadÅ‚ość zostaje przypisana na grupÄ™, poprzedni wÅ‚aÅ›ciciel realizuje wpÅ‚aty z niÄ… zwiÄ…zane w celu jej utrzymania."/> + <text name="GroupText"> + Leyla Linden + </text> + <button label="Ustaw" name="Set..."/> + <check_box label="UdostÄ™pnij przypisywanie na GrupÄ™" name="check deed" tool_tip="Oficer Grupy ma prawo przepisać prawo wÅ‚asnoÅ›ci PosiadÅ‚oÅ›ci na GrupÄ™. PosiadÅ‚ość wspierana jest przez przydziaÅ‚y pochodzÄ…ce od czÅ‚onków Grupy."/> + <button label="Przypisz" name="Deed..." tool_tip="Prawo przypisania PosiadÅ‚oÅ›ci na GrupÄ™ może dokonać jedynie oficer Grupy."/> + <check_box label="WÅ‚aÅ›cicel dokonuje wpÅ‚at zwiÄ…zanych z PosiadÅ‚oÅ›ciÄ…" name="check contrib" tool_tip="Kiedy PosiadÅ‚ość zostaje przypisana na GrupÄ™, poprzedni WÅ‚aÅ›ciciel realizuje wpÅ‚aty z niÄ… zwiÄ…zane w celu jej utrzymania."/> <text name="For Sale:"> Na Sprzedaż: </text> @@ -41,9 +104,9 @@ Nie </text> <text name="For Sale: Price L$[PRICE]."> - Cena: L$[PRICE] (L$[PRICE_PER_SQM]/m²). + Cena: [PRICE]L$ ([PRICE_PER_SQM]L$/m²). </text> - <button label="Sprzedaj PosiadÅ‚ość..." label_selected="Sprzedaj PosiadÅ‚ość..." name="Sell Land..."/> + <button label="Sprzedaj posiadÅ‚ość" name="Sell Land..."/> <text name="For sale to"> Na sprzedaż dla: [BUYER] </text> @@ -53,7 +116,7 @@ <text name="Selling with no objects in parcel."> Obiekty nie sÄ… zawarte w sprzedaży. </text> - <button label="Anuluj Sprzedaż" label_selected="Anuluj Sprzedaż" name="Cancel Land Sale"/> + <button label="Anuluj sprzedaż" label_selected="Anuluj sprzedaż" name="Cancel Land Sale"/> <text name="Claimed:"> Data: </text> @@ -73,138 +136,93 @@ 0 </text> <button label="Kup PosiadÅ‚ość..." label_selected="Kup PosiadÅ‚ość..." left="130" name="Buy Land..." width="125"/> - <button label="Kup dla Grupy..." label_selected="Kup dla Grupy..." name="Buy For Group..."/> + <button label="Skrypt" name="Scripts..."/> + <button label="Kup dla Grupy" name="Buy For Group..."/> <button label="Kup PrzepustkÄ™..." label_selected="Kup PrzeputkÄ™..." left="130" name="Buy Pass..." tool_tip="Przepustka udostÄ™pnia tymczasowy wstÄ™p na posiadÅ‚ość." width="125"/> - <button label="Porzuć z PosiadÅ‚oÅ›ci..." label_selected="Porzuć z PosiadÅ‚oÅ›ci..." name="Abandon Land..."/> - <button label="Odzyskaj PosiadÅ‚ość..." label_selected="Odzyskaj PosiadÅ‚ość..." name="Reclaim Land..."/> - <button label="Sprzedaż przez Lindenów..." label_selected="Sprzedaż przez Lindenów..." name="Linden Sale..." tool_tip="PosiadÅ‚ość musi mieć wÅ‚aÅ›ciciela, zawartość oraz nie może być wystawiona na aukcÄ™."/> - <panel.string name="new users only"> - Tylko nowi użytkownicy - </panel.string> - <panel.string name="anyone"> - Każdy - </panel.string> - <panel.string name="area_text"> - Obszar: - </panel.string> - <panel.string name="area_size_text"> - [AREA] m² - </panel.string> - <panel.string name="auction_id_text"> - Numer aukcji: [ID] - </panel.string> - <panel.string name="need_tier_to_modify"> - Musisz zaakceptować zakup by móc modyfikować posiadÅ‚ość. - </panel.string> - <panel.string name="group_owned_text"> - (WÅ‚asność Grupy) - </panel.string> - <panel.string name="profile_text"> - Profil... - </panel.string> - <panel.string name="info_text"> - Info... - </panel.string> - <panel.string name="public_text"> - (publiczne) + <button label="Porzuć PosiadÅ‚ość" name="Abandon Land..."/> + <button label="Odzyskaj PosiadÅ‚ość" name="Reclaim Land..."/> + <button label="Sprzedaż przez Lindenów" name="Linden Sale..." tool_tip="PosiadÅ‚ość musi mieć WÅ‚aÅ›ciciela, zawartość oraz nie może być wystawiona na AukcjÄ™."/> + </panel> + <panel label="UMOWA" name="land_covenant_panel"> + <panel.string name="can_resell"> + PosiadÅ‚ość zakupiona w tym Regionie może być odsprzedana. </panel.string> - <panel.string name="none_text"> - (brak) + <panel.string name="can_not_resell"> + PosiadÅ‚ość zakupiona w tym Regionie nie może być odsprzedana. </panel.string> - <panel.string name="sale_pending_text"> - (Sprzedaż w Toku Realizacji) + <panel.string name="can_change"> + PosiadÅ‚ość zakupiona w tym Regionie może być Å‚Ä…czona/dzielona. </panel.string> - <panel.string name="no_selection_text"> - PosiadÅ‚ość nie wybrana. -Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokazać jej dane. + <panel.string name="can_not_change"> + PosiadÅ‚ość zakupiona w tym Regionie nie może być +Å‚Ä…czona/dzielona. </panel.string> - </panel> - <panel label="Umowa" name="land_covenant_panel"> <text name="estate_section_lbl"> MajÄ…tek: </text> - <text name="estate_name_lbl"> - Nazwa: - </text> - <text name="estate_name_text" left="115"> + <text left="115" name="estate_name_text"> Główne </text> <text name="estate_owner_lbl"> WÅ‚aÅ›ciciel: </text> - <text name="estate_owner_text" left="115"> + <text left="115" name="estate_owner_text"> (brak) </text> - <text_editor name="covenant_editor" left="115"> + <text_editor left="115" name="covenant_editor"> Ta posiadÅ‚ość nie wymaga żadej umowy. </text_editor> - <text name="covenant_timestamp_text" left="115"> + <text left="115" name="covenant_timestamp_text"> Ostatnia Modyfikacja Wed Dec 31 16:00:00 1969 </text> <text name="region_section_lbl"> Region: </text> - <text name="region_name_lbl"> - Nazwa: - </text> - <text name="region_name_text" left="115"> + <text left="115" name="region_name_text"> leyla </text> <text name="region_landtype_lbl"> Typ: </text> - <text name="region_landtype_text" left="115"> + <text left="115" name="region_landtype_text"> Region Główny / Ziemia </text> <text name="region_maturity_lbl"> Rodzaj: </text> - <text name="region_maturity_text" left="115"> + <text left="115" name="region_maturity_text"> 'Adult' </text> <text name="resellable_lbl"> Odsprzedaj: </text> - <text name="resellable_clause" width="338" left="115"> - PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. + <text left="115" name="resellable_clause" width="338"> + PosiadÅ‚ość zakupiona w tym Regionie nie może być odsprzedana. </text> <text name="changeable_lbl"> Podziel: </text> - <text name="changeable_clause" width="338" left="115"> - PosiadÅ‚ość zakupiona w tym regionie nie może być + <text left="115" name="changeable_clause" width="338"> + PosiadÅ‚ość zakupiona w tym Regionie nie może być Å‚Ä…czona/dzielona. </text> - <panel.string name="can_resell"> - PosiadÅ‚ość zakupiona w tym regionie może być odsprzedana. - </panel.string> - <panel.string name="can_not_resell"> - PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. - </panel.string> - <panel.string name="can_change"> - PosiadÅ‚ość zakupiona w tym regionie może być Å‚Ä…czona/dzielona. + </panel> + <panel label="OBIEKTY" name="land_objects_panel"> + <panel.string name="objects_available_text"> + [COUNT] z [MAX] ([AVAILABLE] jest dostÄ™pne) </panel.string> - <panel.string name="can_not_change"> - PosiadÅ‚ość zakupiona w tym regionie nie może być -Å‚Ä…czona/dzielona. + <panel.string name="objects_deleted_text"> + [COUNT] z [MAX] ([DELETED] zostanie usuniÄ™te) </panel.string> - </panel> - <panel label="Obiekty" name="land_objects_panel"> <text name="parcel_object_bonus"> - Ilość Ekstra Obiektów: [BONUS] + Ilość ekstra obiektów: [BONUS] </text> <text name="Simulator primitive usage:"> - Ilość używanych primóww: + Ilość używanych primów: </text> <text name="objects_available" width="230"> [COUNT] z [MAX] ([AVAILABLE] jest dostÄ™pne) </text> - <panel.string name="objects_available_text"> - [COUNT] z [MAX] ([AVAILABLE] jest dostÄ™pne) - </panel.string> - <panel.string name="objects_deleted_text"> - [COUNT] z [MAX] ([DELETED] zostanie usuniÄ™te) - </panel.string> <text name="Primitives parcel supports:"> Maksymalna ilość primów: </text> @@ -212,19 +230,19 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz [COUNT] </text> <text name="Primitives on parcel:"> - Primy na posiadÅ‚oÅ›ci: + Primy na PosiadÅ‚oÅ›ci: </text> <text name="total_objects_text"> [COUNT] </text> <text name="Owned by parcel owner:"> - WÅ‚aÅ›ciciela posiadÅ‚oÅ›ci: + WÅ‚aÅ›ciciela PosiadÅ‚oÅ›ci: </text> <text name="owner_objects_text"> [COUNT] </text> <button label="Pokaż" label_selected="Pokaż" name="ShowOwner"/> - <button label="Zwróć..." label_selected="Zwróć..." name="ReturnOwner..." tool_tip="Zwróć obiekty do ich wÅ‚aÅ›cicieli."/> + <button label="Zwróć" name="ReturnOwner..." tool_tip="Zwróć obiekty do ich WÅ‚aÅ›cicieli."/> <text name="Set to group:"> Grupy: </text> @@ -232,7 +250,7 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz [COUNT] </text> <button label="Pokaż" label_selected="Pokaż" name="ShowGroup"/> - <button label="Zwróć..." label_selected="Zwróć..." name="ReturnGroup..." tool_tip="Zwróć obiekty do ich wÅ‚aÅ›cicieli.."/> + <button label="Zwróć" name="ReturnGroup..." tool_tip="Zwróć obiekty do ich WÅ‚aÅ›cicieli.."/> <text name="Owned by others:"> Innych Rezydentów: </text> @@ -240,7 +258,7 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz [COUNT] </text> <button label="Pokaż" label_selected="Pokaż" name="ShowOther"/> - <button label="Zwróć..." label_selected="Zwróć..." name="ReturnOther..." tool_tip="Zwróć obiekty do ich wÅ‚aÅ›cicieli."/> + <button label="Zwróć" name="ReturnOther..." tool_tip="Zwróć obiekty do ich WÅ‚aÅ›cicieli."/> <text name="Selected / sat upon:"> Wybranych: </text> @@ -251,25 +269,55 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz Zwracaj obiekty innych Rezydentów (minut, 0 = wyÅ‚Ä…cz): </text> <text name="Object Owners:" width="108"> - WÅ‚aÅ›ciciel Obiektów: + WÅ‚aÅ›ciciel obiektów: </text> - <button label="OdÅ›wież ListÄ™" label_selected="OdÅ›wież ListÄ™" left="112" name="Refresh List"/> + <button label="OdÅ›wież listÄ™" label_selected="OdÅ›wież listÄ™" left="112" name="Refresh List" tool_tip="Refresh Object List"/> <button label="Zwróć obiekty..." label_selected="Zwróć obiekty..." left="224" name="Return objects..."/> <name_list name="owner list"> - <column label="Typ" name="type"/> - <column name="online_status"/> - <column label="Nazwa" name="name"/> - <column label="Liczba" name="count"/> - <column label="Najbardziej aktualne" name="mostrecent"/> + <name_list.columns label="Typ" name="type"/> + <name_list.columns name="online_status"/> + <name_list.columns label="Nazwa" name="name"/> + <name_list.columns label="Liczba" name="count"/> + <name_list.columns label="Najbardziej aktualne" name="mostrecent"/> </name_list> </panel> - <panel label="Opcje" name="land_options_panel"> + <panel label="OPCJE" name="land_options_panel"> + <panel.string name="search_enabled_tooltip"> + UdostÄ™pnij wyÅ›wietlanie tej PosiadÅ‚oÅ›ci w wyszukiwarce + </panel.string> + <panel.string name="search_disabled_small_tooltip"> + Wybrana opcja jest wyÅ‚Ä…czona, ponieważ wielkość PosiadÅ‚oÅ›ci wynosi 128 m² bÄ…dź mniej. +Jedynie wiÄ™ksze posiadÅ‚oÅ›ci mogÄ… być umieszczone w bazie wyszukiwarki. + </panel.string> + <panel.string name="search_disabled_permissions_tooltip"> + Wybrana opcja jest wyÅ‚Ä…czona ponieważ nie posiadasz prawa do modyfikacji PosiadÅ‚oÅ›ci. + </panel.string> + <panel.string name="mature_check_mature"> + Treść 'Mature' + </panel.string> + <panel.string name="mature_check_adult"> + Treść 'Adult' + </panel.string> + <panel.string name="mature_check_mature_tooltip"> + Twoja PosiadÅ‚ość bÄ…dź treść jakÄ… zawiera klasyfikowana jest jako 'Mature'. + </panel.string> + <panel.string name="mature_check_adult_tooltip"> + Informacje o Twojej PosiadÅ‚oÅ›ci i treÅ›ci jakÄ… zawiera klasyfikowane sÄ… jako 'Adult'. + </panel.string> + <panel.string name="landing_point_none"> + (brak) + </panel.string> + <panel.string name="push_restrict_text"> + Popychanie niedozwolone + </panel.string> + <panel.string name="push_restrict_region_text"> + Popychanie niedozwolone (Ustawienie Regionu) + </panel.string> <text name="allow_label"> UdostÄ™pnij innym Rezydentom: </text> - <check_box label="Edytowanie Terenu" name="edit land check" tool_tip="Wybrana - każdy może ksztaÅ‚tować Twój teren. Najlepiej jest zostawić tÄ… opcjÄ™ nie wybranÄ…, Ty zawsze możesz ksztaÅ‚towć Twój teren."/> - <check_box label="Zapisywania Miejsca" name="check landmark"/> - <check_box label="Latanie" name="check fly" tool_tip="Wybrana - Rezydenci mogÄ… latać na Twojej posiadÅ‚oÅ›ci. Nie wybrana - mogÄ… tylko wlatywać do lub latać ponad TwojÄ… posiadÅ‚oÅ›ciÄ…."/> + <check_box label="Edytowanie Terenu" name="edit land check" tool_tip="Wybrana - każdy może ksztaÅ‚tować Twój teren. Najlepiej jest zostawić tÄ… opcjÄ™ nie wybranÄ…, Ty zawsze możesz ksztaÅ‚tować Twój teren."/> + <check_box label="Latanie" name="check fly" tool_tip="Wybrana - Rezydenci mogÄ… latać na Twojej PosiadÅ‚oÅ›ci. Nie jest wybrana - mogÄ… tylko wlatywać do lub latać ponad TwojÄ… PosiadÅ‚oÅ›ciÄ…."/> <text name="allow_label2"> Budowanie: </text> @@ -288,87 +336,39 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <text name="land_options_label"> Opcje PosiadÅ‚oÅ›ci: </text> - <check_box label="Bezpieczna (brak zniszczeÅ„)" name="check safe" tool_tip="Wybrana - posiadÅ‚ość jest bezpieczna - zniszczenia w walce sÄ… zablokowane. Nie wybrana - zniszczenia w walce sÄ… wÅ‚Ä…czone."/> - <check_box label="Popychanie niedozwolone" name="PushRestrictCheck" tool_tip="Nie pozwalaj skryptom na popychanie. Wybranie tej opcji może być przydatne do ograniczenia zakłóceÅ„ spokoju w Twojej posiadÅ‚oÅ›ci."/> - <check_box label="WyÅ›wietlaj w wyszukiwarce (30L$/tyg.)" name="ShowDirectoryCheck" tool_tip="UdostÄ™pnij ukazywanie siÄ™ nazwy posiadÅ‚oÅ›ci w wyszukiwarce"/> - <panel.string name="search_enabled_tooltip"> - UdostÄ™pnij wyÅ›wietlanie tej posiadÅ‚oÅ›ci w wyszukiwarce - </panel.string> - <panel.string name="search_disabled_small_tooltip"> - Wybrana opcja jest wyÅ‚Ä…czona ze wzglÄ™du iż wielkość posiadÅ‚oÅ›ci wynosi 128 m² bÄ…dź mniej. -Jedynie wiÄ™ksze posiadÅ‚oÅ›ci mogÄ… być umieszczone w bazie wyszukiwarki. - </panel.string> - <panel.string name="search_disabled_permissions_tooltip"> - Wybrana opcja jest wyÅ‚Ä…czona ponieważ nie posiadasz prawa do modyfikacji posiadÅ‚oÅ›ci. - </panel.string> + <check_box label="Bezpieczna (brak zniszczeÅ„)" name="check safe" tool_tip="Wybrana - PosiadÅ‚ość jest bezpieczna - zniszczenia w walce sÄ… zablokowane. Nie jest wybrana - zniszczenia w walce sÄ… wÅ‚Ä…czone."/> + <check_box label="Popychanie niedozwolone" name="PushRestrictCheck" tool_tip="Nie pozwalaj skryptom na popychanie. Wybranie tej opcji może być przydatne do ograniczenia zakłóceÅ„ spokoju w Twojej PosiadÅ‚oÅ›ci."/> + <check_box label="WyÅ›wietlaj w wyszukiwarce (30L$/tyg.)" name="ShowDirectoryCheck" tool_tip="UdostÄ™pnij ukazywanie siÄ™ nazwy PosiadÅ‚oÅ›ci w wyszukiwarce"/> <combo_box name="land category with adult"> - <combo_box.item name="item0" label="Każda Kategoria" - /> - <combo_box.item name="item1" label="Linden Lokacja" - /> - <combo_box.item name="item2" label="'Adult'" - /> - <combo_box.item name="item3" label="Sztuka i Kultura" - /> - <combo_box.item name="item4" label="Biznes" - /> - <combo_box.item name="item5" label="Edukacyjna" - /> - <combo_box.item name="item6" label="Gra" - /> - <combo_box.item name="item7" label="Poznawanie ludzi" - /> - <combo_box.item name="item8" label="Przyjazne dla nowych" - /> - <combo_box.item name="item9" label="Park i Natura" - /> - <combo_box.item name="item10" label="Mieszkalna" - /> - <combo_box.item name="item11" label="Zakupy" - /> - <combo_box.item name="item12" label="Inna" - /> + <combo_box.item label="Każda kategoria" name="item0"/> + <combo_box.item label="Linden Lokalizacja" name="item1"/> + <combo_box.item label="'Adult'" name="item2"/> + <combo_box.item label="Sztuka i kultura" name="item3"/> + <combo_box.item label="Biznes" name="item4"/> + <combo_box.item label="Edukacyjna" name="item5"/> + <combo_box.item label="Gra" name="item6"/> + <combo_box.item label="Poznawanie ludzi" name="item7"/> + <combo_box.item label="Przyjazne dla nowych" name="item8"/> + <combo_box.item label="Park i natura" name="item9"/> + <combo_box.item label="Mieszkalna" name="item10"/> + <combo_box.item label="Zakupy" name="item11"/> + <combo_box.item label="Inna" name="item12"/> </combo_box> <combo_box name="land category"> - <combo_box.item name="item0" label="Każda Kategoria" - /> - <combo_box.item name="item1" label="Linden Lokacja" - /> - <combo_box.item name="item3" label="Sztuka i Kultura" - /> - <combo_box.item name="item4" label="Biznes" - /> - <combo_box.item name="item5" label="Edukacyjna" - /> - <combo_box.item name="item6" label="Gra" - /> - <combo_box.item name="item7" label="Poznawanie ludzi" - /> - <combo_box.item name="item8" label="Przyjazna dla nowych" - /> - <combo_box.item name="item9" label="Parki i Natura" - /> - <combo_box.item name="item10" label="Mieszkalna" - /> - <combo_box.item name="item11" label="Zakupy" - /> - <combo_box.item name="item12" label="Inna" - /> + <combo_box.item label="Każda kategoria" name="item0"/> + <combo_box.item label="Linden Lokalizacja" name="item1"/> + <combo_box.item label="Sztuka i kultura" name="item3"/> + <combo_box.item label="Biznes" name="item4"/> + <combo_box.item label="Edukacyjna" name="item5"/> + <combo_box.item label="Gra" name="item6"/> + <combo_box.item label="Poznawanie ludzi" name="item7"/> + <combo_box.item label="Przyjazna dla nowych" name="item8"/> + <combo_box.item label="Parki i natura" name="item9"/> + <combo_box.item label="Mieszkalna" name="item10"/> + <combo_box.item label="Zakupy" name="item11"/> + <combo_box.item label="Inna" name="item12"/> </combo_box> - <button label="?" label_selected="?" name="?"/> <check_box label="Treść 'Mature'" name="MatureCheck" tool_tip=""/> - <panel.string name="mature_check_mature"> - Treść 'Mature' - </panel.string> - <panel.string name="mature_check_adult"> - Treść 'Adult' - </panel.string> - <panel.string name="mature_check_mature_tooltip"> - Twoja posiadÅ‚ość bÄ…dź treść jakÄ… zawiera klasyfikowana jest jako 'Mature'. - </panel.string> - <panel.string name="mature_check_adult_tooltip"> - Informacje o Twojej posiadÅ‚oÅ›ci i treÅ›ci jakÄ… zawiera klasyfikowane sÄ… jako 'Adult'. - </panel.string> <text name="Snapshot:"> ZdjÄ™cie: </text> @@ -376,38 +376,27 @@ Jedynie wiÄ™ksze posiadÅ‚oÅ›ci mogÄ… być umieszczone w bazie wyszukiwarki. <text name="landing_point"> Punkt LÄ…dowania: [LANDING] </text> - <panel.string name="landing_point_none"> - (brak) - </panel.string> <button label="Ustaw" label_selected="Ustaw" name="Set" tool_tip="Ustal miejsce lÄ…dowania dla przybywajÄ…cych goÅ›ci. Używa poÅ‚ożenia Twojego awatara na tej posiadÅ‚oÅ›ci."/> <button label="Nowy" label_selected="Nowy" name="Clear" tool_tip="Clear the landing point."/> <text name="Teleport Routing: "> - Trasa Teleportacji: - </text> - <combo_box name="landing type" tool_tip="Trasa Teleportacj-ustaw w jaki sposób bÄ™dzie sÄ™ odbywać proces telportacji w posiadÅ‚oÅ›ci."> - <combo_box.item name="Blocked" label="Zablokowana" - /> - <combo_box.item name="LandingPoint" label="Punkt LÄ…dowania" - /> - <combo_box.item name="Anywhere" label="Gdziekolwiek" - /> + Trasa teleportacji: + </text> + <combo_box name="landing type" tool_tip="Trasa teleportacj-ustaw w jaki sposób bÄ™dzie sÄ™ odbywać proces telportacji w PosiadÅ‚oÅ›ci."> + <combo_box.item label="Zablokowana" name="Blocked"/> + <combo_box.item label="Punkt LÄ…dowania" name="LandingPoint"/> + <combo_box.item label="Gdziekolwiek" name="Anywhere"/> </combo_box> - <panel.string name="push_restrict_text"> - Popychanie niedozwolone - </panel.string> - <panel.string name="push_restrict_region_text"> - Popychanie niedozwolone (Ustawienie Regionu) - </panel.string> </panel> - <panel label="Media" name="land_media_panel"> + <panel label="MEDIA" name="land_media_panel"> <text name="with media:"> - Typ Mediów: + Typ mediów: </text> <combo_box name="media type" tool_tip=""/> <text name="at URL:"> - URL Mediów: + URL mediów: </text> - <button label="Ustaw..." label_selected="Ustaw..." name="set_media_url"/> + <button label="Ustaw" name="set_media_url"/> + <check_box label="Ukryj URL mediów" name="hide_media_url" tool_tip="Wybranie tej opcji, zablokuje widok adresu do medów wszystkim nieautoryzowanym Użytkownikom. Nie dotyczy to jednak typów HTML."/> <text name="Description:"> Opis: </text> @@ -418,18 +407,9 @@ TeksturÄ™: </text> <texture_picker label="" name="media texture" tool_tip="Kliknij by wybrać zdjÄ™cie"/> <text name="replace_texture_help"> - (Obiekty używajÄ…ce tej tekstury bÄ™dÄ… wyÅ›wietlaÅ‚y -film lub stronÄ™ internetowÄ… po naciÅ›niÄ™ciu -przycisku odtwarzania.) - </text> - <text name="Options:"> - Opcje -Mediów: + Obiekty używajÄ…ce tej tekstury bÄ™dÄ… wyÅ›wietlaÅ‚y film lub stronÄ™ internetowÄ… po naciÅ›niÄ™ciu przycisku odtwarzania. Wybierz miniaturÄ™, jeÅ›li chcesz zmienić teksturÄ™. </text> <check_box label="Automatyczna Skala" name="media_auto_scale" tool_tip="Wybranie tej opcji dobierze odpowiedni rozmiar zawartoÅ›ci mediów dla tej posiadÅ‚oÅ›ci automatycznie. Może to mieć znaczÄ…cy wpÅ‚yw na jakość odtwarzanego materialu - może zwolnić i zmniejszyć jakość materiaÅ‚u."/> - <check_box label="Powtórka Odtwarzania" name="media_loop" tool_tip="Odtwarzaj media z powtórkÄ…. Po wyÅ›wietleniu materialu, rozpocznie siÄ™ odtwarzanie od poczÄ…tku."/> - <check_box label="Ukryj URL Mediów" name="hide_media_url" tool_tip="Wybranie tej opcji, zablokuje widok adresu do medów wszystkim nieautoryzowanym użytkownikom. Nie dotyczy to jednak typów HTML."/> - <check_box label="Ukryj URL Muzyki" name="hide_music_url" tool_tip="Wybranie tej opcji, zablokuje widok adresu do medów muzycznych w posiadÅ‚oÅ›ci wszystkim nieautoryzowanym użytkownikom"/> <text name="media_size" tool_tip="Rozmiar dla Å‚adowania mediów internetowych. Zostaw 0 dla ustawieÅ„ domyÅ›lnych."> Rozmiar: </text> @@ -438,56 +418,48 @@ Mediów: <text name="pixels"> pixeli </text> - <text name="MusicURL:"> - URL Muzyki: - </text> - <text name="Sound:"> - DźwiÄ™k: - </text> - <check_box label="Restrykcja obiektów oraz gestur dozwolonych w tej posiadÅ‚oÅ›ci" name="check sound local"/> - <button label="?" label_selected="?" name="?" left="432"/> - <text name="Voice settings:"> - GÅ‚os: + <text name="Options:"> + Opcje +Mediów: </text> - <check_box label="Rozmowy Dozwolone" name="parcel_enable_voice_channel"/> - <check_box label="Rozmowy Dozwolone (ustawione przez majÄ…tek)" name="parcel_enable_voice_channel_is_estate_disabled"/> - <check_box label="Ogranicz komunikacjÄ™ gÅ‚osowÄ… w tej posiadÅ‚oÅ›ci." name="parcel_enable_voice_channel_parcel"/> + <check_box label="Powtórka Odtwarzania" name="media_loop" tool_tip="Odtwarzaj media z powtórkÄ…. Po wyÅ›wietleniu materialu, rozpocznie siÄ™ odtwarzanie od poczÄ…tku."/> </panel> - <panel label="DostÄ™p" name="land_access_panel"> + <panel label="DŹWIĘK" name="land_audio_panel"> + <check_box label="Ukryj URL muzyki" name="hide_music_url" tool_tip="Wybranie tej opcji, zablokuje widok adresu do medów muzycznych w posiadÅ‚oÅ›ci wszystkim nieautoryzowanym Użytkownikom"/> + <check_box label="Rozmowy dozwolone" name="parcel_enable_voice_channel"/> + <check_box label="Rozmowy dozwolone (ustawione przez MajÄ…tek)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Ogranicz komunikacjÄ™ gÅ‚osowÄ… w tej posiadÅ‚oÅ›ci." name="parcel_enable_voice_channel_local"/> + </panel> + <panel label="DOSTĘP" name="land_access_panel"> + <panel.string name="access_estate_defined"> + (Zdefiniowane przez MajÄ…tek) + </panel.string> + <panel.string name="allow_public_access"> + UdostÄ™pnij dostÄ™p publiczny ([MATURITY]) + </panel.string> + <panel.string name="estate_override"> + Jedna lub wiÄ™cej z tych opcji ustawiona jest z poziomu PosiadÅ‚oÅ›ci + </panel.string> <text name="Limit access to this parcel to:"> - DostÄ™p do tej posiadÅ‚oÅ›ci: + DostÄ™p do tej PosiadÅ‚oÅ›ci: </text> - <check_box label="Publiczny" name="public_access"/> + <check_box label="Publiczny [MATURITY]" name="public_access"/> <text name="Only Allow"> Zablokuj dostÄ™p dla: </text> - <check_box label="Rezydentów niezarejestrowanych w systemie pÅ‚atniczym z Linden Lab" name="limit_payment" tool_tip="Ban unidentified residents."/> - <check_box label="Rezydentów z brakiem weryfikacji wieku " name="limit_age_verified" tool_tip="Zbanuj Rezydetów bez weryfikacji wieku. Odwiedź support.secondlife.com po wiÄ™cej informacji."/> - <panel.string name="estate_override"> - Jedna lub wiÄ™cej z tych opcji ustawiona jest z poziomu posiadÅ‚oÅ›ci - </panel.string> - <check_box label="UdostÄ™pnij wejÅ›cie grupie: [GROUP]" name="GroupCheck" tool_tip="Ustaw grupÄ™ w głównej zakÅ‚adce"/> - <check_box label="Sprzedaj wejÅ›ciówki:" name="PassCheck" tool_tip="Otwórz tymczasowy dostÄ™p do tej posiadÅ‚oÅ›ci"/> + <check_box label="Rezydentów zarejestrowanych w systemie pÅ‚atniczym Linden Lab [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Zbanuj Rezydentów niezarejestrowanych w systemie pÅ‚atniczym z Linden Lab."/> + <check_box label="Weryfikacja Wieku: [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Zbanuj Rezydetów bez Weryfikacji Wieku. Odwiedź support.secondlife.com po wiÄ™cej informacji."/> + <check_box label="UdostÄ™pnij wejÅ›cie Grupie: [GROUP]" name="GroupCheck" tool_tip="Ustaw GrupÄ™ w głównej zakÅ‚adce"/> + <check_box label="Sprzedaj przepustki:" name="PassCheck" tool_tip="Otwórz tymczasowy dostÄ™p do tej PosiadÅ‚oÅ›ci"/> <combo_box name="pass_combo"> - <combo_box.item name="Anyone" label="Każdemu" - /> - <combo_box.item name="Group" label="Grupie" - /> + <combo_box.item label="Każdemu" name="Anyone"/> + <combo_box.item label="Grupie" name="Group"/> </combo_box> <spinner label="Cena w L$:" name="PriceSpin"/> <spinner label="Ilość godzin dostÄ™pu:" name="HoursSpin"/> - <text label="Zawsze udostÄ™pniaj" name="AllowedText"> - Dozwoleni Rezydenci - </text> - <name_list name="AccessList" tool_tip="([LISTED] na liÅ›cie, [MAX] max)"/> - <button label="Dodaj..." label_selected="Dodaj..." name="add_allowed"/> - <button label="UsuÅ„" label_selected="UsuÅ„" name="remove_allowed"/> - <text label="Ban" name="BanCheck"> - NieporzÄ…dani Rezydenci (bany) - </text> - <name_list name="BannedList" tool_tip="([LISTED] na liÅ›cie, [MAX] max)"/> - <button label="Dodaj..." label_selected="Dodaj..." name="add_banned"/> - <button label="UsuÅ„" label_selected="UsuÅ„" name="remove_banned"/> + <panel name="Allowed_layout_panel"> + <name_list name="AccessList" tool_tip="([LISTED] na liÅ›cie, [MAX] maksimum)"/> + </panel> </panel> </tab_container> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_activeim.xml b/indra/newview/skins/default/xui/pl/floater_activeim.xml new file mode 100644 index 0000000000000000000000000000000000000000..2a34409f8bc21b6c1b8fbdc34ac3eff3803a59d6 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_activeim.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_activeim" title="AKTYWNY IM"/> diff --git a/indra/newview/skins/default/xui/pl/floater_animation_preview.xml b/indra/newview/skins/default/xui/pl/floater_animation_preview.xml index 0524b8ade32db358091f209e4727f517ee86f322..ca06665c659e3f66fb7611005a43a178363509e1 100644 --- a/indra/newview/skins/default/xui/pl/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_animation_preview.xml @@ -1,172 +1,187 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Animation Preview" title=""> + <floater.string name="failed_to_initialize"> + Inicjalizacja ruchu nie powiodÅ‚a siÄ™. + </floater.string> + <floater.string name="anim_too_long"> + DÅ‚ugość pliku animacji wynosi [LENGTH] sekund. + +Maksymalna dÅ‚ugość pliku animacji wynosi [MAX_LENGTH] sekund. + </floater.string> + <floater.string name="failed_file_read"> + Brak możliwoÅ›ci odczytania plików animacji do wyÅ›wietlenia. + +[STATUS] + </floater.string> + <floater.string name="E_ST_OK"> + Ok + </floater.string> + <floater.string name="E_ST_EOF"> + NiewÅ‚aÅ›ciwe zakoÅ„czenie nazwy pliku. + </floater.string> + <floater.string name="E_ST_NO_CONSTRAINT"> + Brak możliwoÅ›ci wyÅ›wietlenia definicji ograniczenia. + </floater.string> + <floater.string name="E_ST_NO_FILE"> + Plik BVH nie może zostać otworzony. + </floater.string> + <floater.string name="E_ST_NO_HIER"> + NiewÅ‚aÅ›ciwy nagłówek HIERARCHI. + </floater.string> + <floater.string name="E_ST_NO_JOINT"> + ROOT oraz JOINT nieodnalezione. + </floater.string> + <floater.string name="E_ST_NO_NAME"> + Brak nazwy JOINT. + </floater.string> + <floater.string name="E_ST_NO_OFFSET"> + OFFSET nieodnalezione. + </floater.string> + <floater.string name="E_ST_NO_CHANNELS"> + CHANNELS nieodnalezione. + </floater.string> + <floater.string name="E_ST_NO_ROTATION"> + Brak otrzymania kolejnoÅ›ci obrotu. + </floater.string> + <floater.string name="E_ST_NO_AXIS"> + Brak osi obrotu. + </floater.string> + <floater.string name="E_ST_NO_MOTION"> + MOTION nieodnalezione. + </floater.string> + <floater.string name="E_ST_NO_FRAMES"> + Brak otrzymania liczby klatek obrazu. + </floater.string> + <floater.string name="E_ST_NO_FRAME_TIME"> + Brak otrzymania czasu dla iloÅ›ci klatek obrazu. + </floater.string> + <floater.string name="E_ST_NO_POS"> + Brak otrzymania wartoÅ›ci pozycji. + </floater.string> + <floater.string name="E_ST_NO_ROT"> + Nie można odczytać wartoÅ›ci obrotu. + </floater.string> + <floater.string name="E_ST_NO_XLT_FILE"> + Nie można otworzyć pliku tÅ‚umaczenia. + </floater.string> + <floater.string name="E_ST_NO_XLT_HEADER"> + Nie można przeczytać tÅ‚umaczenia nagłówka. + </floater.string> + <floater.string name="E_ST_NO_XLT_NAME"> + Nie można przetÅ‚umaczyć nazw. + </floater.string> + <floater.string name="E_ST_NO_XLT_IGNORE"> + Nie można przeczytać tÅ‚umaczenia dla wartoÅ›ci ignorowania. + </floater.string> + <floater.string name="E_ST_NO_XLT_RELATIVE"> + Nie można przeczytać tÅ‚umaczenia wartoÅ›ci relatywnej. + </floater.string> + <floater.string name="E_ST_NO_XLT_OUTNAME"> + Nie można przeczytać nazw wartoÅ›ci tÅ‚umaczenia. + </floater.string> + <floater.string name="E_ST_NO_XLT_MATRIX"> + Nie można przeczytać tÅ‚umaczenia pola. + </floater.string> + <floater.string name="E_ST_NO_XLT_MERGECHILD"> + Brak otrzymania nazwy dla mergechild. + </floater.string> + <floater.string name="E_ST_NO_XLT_MERGEPARENT"> + Brak otrzymania nazwy dla mergeparent. + </floater.string> + <floater.string name="E_ST_NO_XLT_PRIORITY"> + Brak wartoÅ›ci prerogatywy. + </floater.string> + <floater.string name="E_ST_NO_XLT_LOOP"> + Brak otrzymania wartoÅ›ci powtórzeÅ„. + </floater.string> + <floater.string name="E_ST_NO_XLT_EASEIN"> + Brak otrzymawnia wartoÅ›ci easeIn. + </floater.string> + <floater.string name="E_ST_NO_XLT_EASEOUT"> + Brak otrzymania wartoÅ›ci dla easeOut. + </floater.string> + <floater.string name="E_ST_NO_XLT_HAND"> + Brak otrzymania wartoÅ›ci morfizacji. + </floater.string> + <floater.string name="E_ST_NO_XLT_EMOTE"> + Niemożliwość przeczytania nazwy emocji. + </floater.string> + <floater.string name="E_ST_BAD_ROOT"> + NieprawidÅ‚owa nazwa, użyj "hip". + </floater.string> <text name="name_label"> Nazwa: </text> <text name="description_label"> Opis: </text> - <spinner label="PierwszeÅ„stwo" name="priority" - tool_tip="Kontroluj,animacje,które mogÄ… zostać zdominowane przez tÄ… animacjÄ™" /> - <check_box label="Powtarzaj" name="loop_check" tool_tip="Powtarzaj tÄ… animacjÄ™" /> - <spinner label="Od(%)" name="loop_in_point" - tool_tip="Wybierz punkt, od którego chcesz zacząć powtarzać animacjÄ™" /> - <spinner label="Do(%)" name="loop_out_point" - tool_tip="Wybierz punkt, od którego chcesz zakoÅ„czyć powtarznie animacji" /> + <spinner label="PierwszeÅ„stwo" name="priority" tool_tip="Kontroluj animacje,które mogÄ… zostać zdominowane przez tÄ… animacjÄ™"/> + <check_box label="Powtarzaj" name="loop_check" tool_tip="Powtarzaj tÄ… animacjÄ™"/> + <spinner label="Od(%)" name="loop_in_point" tool_tip="Wybierz punkt, od którego chcesz zacząć powtarzać animacjÄ™"/> + <spinner label="Do(%)" name="loop_out_point" tool_tip="Wybierz punkt, od którego chcesz zakoÅ„czyć powtarzanie animacji"/> <text name="hand_label"> Pozycja RÄ™ki </text> - <combo_box label="" name="hand_pose_combo" - tool_tip="Kontroluje co robi rÄ™ka podczas animacji"> - <combo_item name="Spread"> - RozciÄ…gaj - </combo_item> - <combo_item name="Relaxed"> - Odpocznij - </combo_item> - <combo_item name="PointBoth"> - Wskazuj - </combo_item> - <combo_item name="Fist"> - Pięść - </combo_item> - <combo_item name="RelaxedLeft"> - Lewa-Odpocznij - </combo_item> - <combo_item name="PointLeft"> - Wskazuj LewÄ… - </combo_item> - <combo_item name="FistLeft"> - ZaciÅ›nij LewÄ… - </combo_item> - <combo_item name="RelaxedRight"> - Prawa-Odpocznj - </combo_item> - <combo_item name="PointRight"> - Wskazuj PrawÄ… - </combo_item> - <combo_item name="FistRight"> - ZaciÅ›nij PrawÄ… - </combo_item> - <combo_item name="SaluteRight"> - Salutuj PrawÄ… - </combo_item> - <combo_item name="Typing"> - Pisz - </combo_item> - <combo_item name="PeaceRight"> - Prawa-Pokój - </combo_item> + <combo_box label="" name="hand_pose_combo" tool_tip="Kontroluje co robi rÄ™ka podczas animacji"> + <combo_box.item label="RozciÄ…gaj" name="Spread"/> + <combo_box.item label="Odpocznij" name="Relaxed"/> + <combo_box.item label="Wskazuj" name="PointBoth"/> + <combo_box.item label="Pięść" name="Fist"/> + <combo_box.item label="Lewa-Odpocznij" name="RelaxedLeft"/> + <combo_box.item label="Wskazuj LewÄ…" name="PointLeft"/> + <combo_box.item label="ZaciÅ›nij LewÄ…" name="FistLeft"/> + <combo_box.item label="Prawa-Odpocznij" name="RelaxedRight"/> + <combo_box.item label="Wskazuj PrawÄ…" name="PointRight"/> + <combo_box.item label="ZaciÅ›nij PrawÄ…" name="FistRight"/> + <combo_box.item label="Salutuj PrawÄ…" name="SaluteRight"/> + <combo_box.item label="Pisz" name="Typing"/> + <combo_box.item label="Prawa-Pokój" name="PeaceRight"/> </combo_box> <text name="emote_label"> Ekspresja </text> - <combo_box label="" name="emote_combo" - tool_tip="Kontroluj mimikÄ™ twarzy w czasie animacji"> - <combo_item name="[None]"> - [Å»adne] - </combo_item> - <combo_item name="Aaaaah"> - Aaaaah - </combo_item> - <combo_item name="Afraid"> - Obawa - </combo_item> - <combo_item name="Angry"> - ZÅ‚ość - </combo_item> - <combo_item name="BigSmile"> - Duży UÅ›miech - </combo_item> - <combo_item name="Bored"> - Znudzenie - </combo_item> - <combo_item name="Cry"> - PÅ‚acz - </combo_item> - <combo_item name="Disdain"> - Wzgarda - </combo_item> - <combo_item name="Embarrassed"> - ZakÅ‚opotanie - </combo_item> - <combo_item name="Frown"> - Marszczenie Brwi - </combo_item> - <combo_item name="Kiss"> - PocaÅ‚unek - </combo_item> - <combo_item name="Laugh"> - Åšmiech - </combo_item> - <combo_item name="Plllppt"> - Plllppt - </combo_item> - <combo_item name="Repulsed"> - Odrzucenie - </combo_item> - <combo_item name="Sad"> - Smutek - </combo_item> - <combo_item name="Shrug"> - Wzruszanie Ramionami - </combo_item> - <combo_item name="Smile"> - UÅ›miech - </combo_item> - <combo_item name="Surprise"> - Niespodzianka - </combo_item> - <combo_item name="Wink"> - MrugniÄ™cie - </combo_item> - <combo_item name="Worry"> - Zmartwienie - </combo_item> + <combo_box label="" name="emote_combo" tool_tip="Kontroluj mimikÄ™ twarzy w czasie animacji"> + <combo_box.item label="(Å»adne)" name="[None]"/> + <combo_box.item label="Aaaaah" name="Aaaaah"/> + <combo_box.item label="Obawa" name="Afraid"/> + <combo_box.item label="ZÅ‚ość" name="Angry"/> + <combo_box.item label="Duży UÅ›miech" name="BigSmile"/> + <combo_box.item label="Znudzenie" name="Bored"/> + <combo_box.item label="PÅ‚acz" name="Cry"/> + <combo_box.item label="Wzgarda" name="Disdain"/> + <combo_box.item label="ZakÅ‚opotanie" name="Embarrassed"/> + <combo_box.item label="Marszczenie Brwi" name="Frown"/> + <combo_box.item label="PocaÅ‚unek" name="Kiss"/> + <combo_box.item label="Åšmiech" name="Laugh"/> + <combo_box.item label="Plllppt" name="Plllppt"/> + <combo_box.item label="Odrzucenie" name="Repulsed"/> + <combo_box.item label="Smutek" name="Sad"/> + <combo_box.item label="Wzruszenie Ramionami" name="Shrug"/> + <combo_box.item label="UÅ›miech" name="Smile"/> + <combo_box.item label="Niespodzianka" name="Surprise"/> + <combo_box.item label="MrugniÄ™cie" name="Wink"/> + <combo_box.item label="Zmartwienie" name="Worry"/> </combo_box> <text name="preview_label"> PrzeglÄ…daj kiedy: </text> - <combo_box label="" name="preview_base_anim" - tool_tip="Przetestuj zachowanie animacji kiedy awatar wykonuje normalne czynnoÅ›ci"> - <combo_item name="Standing"> - Stoisz - </combo_item> - <combo_item name="Walking"> - Chodzisz - </combo_item> - <combo_item name="Sitting"> - Siedzisz - </combo_item> - <combo_item name="Flying"> - Latasz - </combo_item> + <combo_box label="" name="preview_base_anim" tool_tip="Przetestuj zachowanie animacji kiedy awatar wykonuje normalne czynnoÅ›ci"> + <combo_box.item label="Stoisz" name="Standing"/> + <combo_box.item label="Chodzisz" name="Walking"/> + <combo_box.item label="Siedzisz" name="Sitting"/> + <combo_box.item label="Latasz" name="Flying"/> </combo_box> - <spinner label="ZÅ‚agodzić w (sekund)" name="ease_in_time" - tool_tip="Ilość Czasu (w sekundach), w których animacje mieszajÄ… siÄ™" /> - <spinner label="ZÅ‚agodzić na zewnÄ…trz (sekund)" name="ease_out_time" - tool_tip="Ilość Czasu (w sekundach), w których animacje oddzielajÄ… siÄ™" /> - <button label="" name="play_btn" tool_tip="Play/pause your animation." /> - <button label="" name="stop_btn" tool_tip="Stop animation playback" /> - <slider label="" name="playback_slider" /> + <spinner label="ZÅ‚agodzić w (sekund)" name="ease_in_time" tool_tip="Ilość Czasu (w sekundach), w których animacje mieszajÄ… siÄ™"/> + <spinner label="ZÅ‚agodzić na zewnÄ…trz (sekund)" name="ease_out_time" tool_tip="Ilość Czasu (w sekundach), w których animacje oddzielajÄ… siÄ™"/> + <button label="" name="play_btn" tool_tip="Odtwarzaj animacjÄ™"/> + <button name="pause_btn" tool_tip="Zatrzymaj animacjÄ™"/> + <button label="" name="stop_btn" tool_tip="Stop animation playback"/> + <slider label="" name="playback_slider"/> <text name="bad_animation_text"> Brak możliwoÅ›ci wczytania pliku animacji. Doradzamy eksport plików BVH z Poser 4. </text> - <button label="Anuluj" name="cancel_btn" /> - <button label="ZaÅ‚aduj (L$[AMOUNT])" name="ok_btn" /> - <string name="failed_to_initialize"> - Inicjalizacja ruchu nie powiodÅ‚a siÄ™. - </string> - <string name="anim_too_long"> - DÅ‚ugość pliku animacji wynosi [LENGTH] sekund. - -Maksymalna dÅ‚ugość pliku animacji wynosi [MAX_LENGTH] sekund. - </string> - <string name="failed_file_read"> - Niemożliwość odczytania pliku animacji do wyÅ›wietlenia. - -[STATUS] - </string> + <button label="ZaÅ‚aduj ([AMOUNT]L$)" name="ok_btn"/> + <button label="Anuluj" name="cancel_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_auction.xml b/indra/newview/skins/default/xui/pl/floater_auction.xml index 815c36606c86b7f72d6d79d5a803b89a9c2ecda4..9399fa11153a4c565944805739fc876c35ee5595 100644 --- a/indra/newview/skins/default/xui/pl/floater_auction.xml +++ b/indra/newview/skins/default/xui/pl/floater_auction.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_auction" title="ROZPOCZNIJ SPRZEDAÅ» POSIADÅOÅšCI LINDENÓW"> <floater.string name="already for sale"> - Nie możesz umieÅ›cić posiadÅ‚oÅ›ci na aukcji, jeżeli już zostaÅ‚a wystawiona na sprzedaż. + Nie możesz umieÅ›cić PosiadÅ‚oÅ›ci na Aukcji, jeżeli już zostaÅ‚a wystawiona na sprzedaż. </floater.string> <check_box initial_value="true" label="ZawierajÄ…c żółte ogrodzenie" name="fence_check"/> <button label="ZdjÄ™ce" label_selected="ZdjÄ™ce" name="snapshot_btn"/> - <button label="Sprzedaj Każdemu" label_selected="Sprzedaj Każdemu" name="sell_to_anyone_btn"/> - <button label="Wyczyść Ustawienia" label_selected="Wyczyść Ustawienia" name="reset_parcel_btn"/> + <button label="Sprzedaj każdemu" label_selected="Sprzedaj Każdemu" name="sell_to_anyone_btn"/> + <button label="Wyczyść ustawienia" label_selected="Wyczyść ustawienia" name="reset_parcel_btn"/> <button label="Rozpocznij AukcjÄ™" label_selected="Rozpocznij AukcjÄ™" name="start_auction_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml b/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml index 8c09f7294ca84965b6e272e444ad3667db9f7ac5..0897f5957008ee9b76de2e180de662224ebfd71d 100644 --- a/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml @@ -1,40 +1,46 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="WYBIERZ REZYDENTA"> + <floater.string name="not_found"> + '[TEXT]' nie zostaÅ‚o odnalezione + </floater.string> + <floater.string name="no_one_near"> + Nie ma nikogo w pobliżu + </floater.string> + <floater.string name="no_results"> + Brak wyników + </floater.string> + <floater.string name="searching"> + Wyszukiwanie... + </floater.string> + <string label="Wybierz" label_selected="Wybierz" name="Select"> + Wybierz + </string> + <string name="Close"> + Zamknij + </string> <tab_container name="ResidentChooserTabs"> <panel label="Znajdź" name="SearchPanel"> <text name="InstructSearchResidentName"> - Wpisz imiÄ™ Rezydenta: + Wpisz fragment imienia: </text> - <button label="Znajdź" label_selected="Znajdź" name="Find"/> + <button label="Szukaj" label_selected="Szukaj" name="Find"/> </panel> - <panel label="Wizytówka" name="CallingCardsPanel"> - <text name="InstructSelectCallingCard"> - Wybierz wizytówkÄ™: + <panel label="Znajomi" name="FriendsPanel"> + <text name="InstructSelectFriend"> + Wybierz osobÄ™: </text> </panel> <panel label="Obok mnie:" name="NearMePanel"> <text name="InstructSelectResident"> - Wybierz Rezydenta obok: + Wybierz osobÄ™ w pobliżu: </text> - <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh"/> <slider label="ZasiÄ™g" name="near_me_range"/> <text name="meters"> Metry </text> + <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh"/> </panel> </tab_container> - <button label="Wybierz" label_selected="Wybierz" name="Select"/> - <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> - <string name="not_found"> - '[TEXT]' nie zostaÅ‚o odnalezione - </string> - <string name="no_one_near"> - Nikt w pobliżu - </string> - <string name="no_results"> - Brak wyników - </string> - <string name="searching"> - Wyszukiwanie... - </string> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Cofnij" label_selected="Cofnij" name="cancel_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml b/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml index dce2330807f8390f3a265fbb001a1a71ae1de57a..11651ad7e84dafb7b1f5f4efd83f49a61d3e56d4 100644 --- a/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml @@ -1,30 +1,43 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatar_texture_debug" title="TEKSTURY AWATARA"> - <text name="baked_label"> - Tekstury Renderowane - </text> + <floater.string name="InvalidAvatar"> + NIEWÅAÅšCIWY AWATAR + </floater.string> <text name="composite_label"> - Tekstury Kompozytowe + Tekstury kompozytowe </text> - <texture_picker label="GÅ‚owa" name="baked_head" /> - <texture_picker label="Makijaż" name="head_bodypaint" /> - <texture_picker label="WÅ‚osy" name="hair" /> - <button label="Zrzuć" label_selected="Zrzuć" name="Dump" /> - <texture_picker label="Oczy" name="baked_eyes" /> - <texture_picker label="Oko" name="eye_texture" /> - <texture_picker label="Góra Część CiaÅ‚a" name="baked_upper_body" /> - <texture_picker label="Tatuaż Górnej Części CiaÅ‚a" name="upper_bodypaint" /> - <texture_picker label="Podkoszulek" name="undershirt" /> - <texture_picker label="RÄ™kawiczki" name="gloves" /> - <texture_picker label="Koszula" name="shirt" /> - <texture_picker label="Górna Część Kurtki" name="upper_jacket" /> - <texture_picker label="Dolna Część CiaÅ‚a" name="baked_lower_body" /> - <texture_picker label="Tatuaż Dolnej Części CiaÅ‚a" name="lower_bodypaint" /> - <texture_picker label="Bielizna" name="underpants" /> - <texture_picker label="Skarpety" name="socks" /> - <texture_picker label="Buty" name="shoes" /> - <texture_picker label="Spodnie" name="pants" /> - <texture_picker label="Kurtka" name="jacket" /> - <texture_picker label="Spódnica" name="baked_skirt" /> - <texture_picker label="Spódnica" name="skirt_texture" /> + <button label="Zrzuć" label_selected="Zrzuć" name="Dump"/> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <texture_picker label="WÅ‚osy" name="hair-baked"/> + <texture_picker label="WÅ‚osy" name="hair_grain"/> + <texture_picker label="Alpha wÅ‚osów" name="hair_alpha"/> + <texture_picker label="GÅ‚owa" name="head-baked"/> + <texture_picker label="Makijaż" name="head_bodypaint"/> + <texture_picker label="Alpha gÅ‚owy" name="head_alpha"/> + <texture_picker label="Tatuaż gÅ‚owy" name="head_tattoo"/> + <texture_picker label="Oczy" name="eyes-baked"/> + <texture_picker label="Oko" name="eyes_iris"/> + <texture_picker label="Alpha oczu" name="eyes_alpha"/> + <texture_picker label="Górna część ciaÅ‚a" name="upper-baked"/> + <texture_picker label="Górny wzór na ciele" name="upper_bodypaint"/> + <texture_picker label="Podkoszulek" name="upper_undershirt"/> + <texture_picker label="RÄ™kawiczki" name="upper_gloves"/> + <texture_picker label="Koszula" name="upper_shirt"/> + <texture_picker label="Kurtka górna" name="upper_jacket"/> + <texture_picker label="Alpha górna" name="upper_alpha"/> + <texture_picker label="Tatuaż górny" name="upper_tattoo"/> + <texture_picker label="Dolna część ciaÅ‚a" name="lower-baked"/> + <texture_picker label="Dolny wzór na ciele" name="lower_bodypaint"/> + <texture_picker label="Bielizna" name="lower_underpants"/> + <texture_picker label="Skarpetki" name="lower_socks"/> + <texture_picker label="Buty" name="lower_shoes"/> + <texture_picker label="Spodnie" name="lower_pants"/> + <texture_picker label="Kurtka" name="lower_jacket"/> + <texture_picker label="Alpha dolna" name="lower_alpha"/> + <texture_picker label="Tatuaż dolny" name="lower_tattoo"/> + <texture_picker label="Spódnica" name="skirt-baked"/> + <texture_picker label="Spódnica" name="skirt"/> + </panel> + </scroll_container> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_beacons.xml b/indra/newview/skins/default/xui/pl/floater_beacons.xml index 6e7013f2d7418430a9896d43dab045061dbd3d3a..547db2b3517c670b6a99854fd80065b8be0d0323 100644 --- a/indra/newview/skins/default/xui/pl/floater_beacons.xml +++ b/indra/newview/skins/default/xui/pl/floater_beacons.xml @@ -1,15 +1,21 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="beacons" title="EMITERY"> <panel name="beacons_panel"> - <check_box label="Obiekty Dotykalne" name="touch_only"/> - <check_box label="Obiekty Skryptowane" name="scripted"/> - <check_box label="Obiekty Fizyczne" name="physical"/> - <check_box label="ŹródÅ‚a DźwiÄ™ku" name="sounds"/> - <check_box label="ŹródÅ‚a CzÄ…steczek" name="particles"/> - <check_box label="PodkreÅ›l Emitery" name="highlights"/> - <check_box label="Pokaż Emitery" name="beacons"/> - <text name="beacon_width_label"> - ZasiÄ™g Emiterów: + <text name="label_show"> + Pokaż emitery: </text> + <check_box label="Emitery" name="beacons"/> + <check_box label="PodkreÅ›l emitery" name="highlights"/> + <text name="beacon_width_label" tool_tip="ZasiÄ™g emiterów"> + Szer. + </text> + <text name="label_objects"> + Dla tych obiektów: + </text> + <check_box label="Obiekty fizyczne" name="physical"/> + <check_box label="Obiekty skryptowane" name="scripted"/> + <check_box label="Obiekty dotykalne" name="touch_only"/> + <check_box label="ŹródÅ‚a dźwiÄ™ku" name="sounds"/> + <check_box label="ŹródÅ‚a czÄ…steczek" name="particles"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_build_options.xml b/indra/newview/skins/default/xui/pl/floater_build_options.xml index f538be218cffb7f41d5da5d51232432cdb190856..5d296aa7255ae4877af894d387e385917065a528 100644 --- a/indra/newview/skins/default/xui/pl/floater_build_options.xml +++ b/indra/newview/skins/default/xui/pl/floater_build_options.xml @@ -1,8 +1,11 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="build options floater" title="OPCJE SIATKI"> - <spinner label="Jednostka Siatki (metry)" name="GridResolution" /> - <spinner label="Rozmiary Siatki (metry)" name="GridDrawSize" /> - <check_box label="UdostÄ™pnij Podjednostkowe Dopasowywanie" name="GridSubUnit" /> - <check_box label="Pokaż Sekcje SkoÅ›ne" name="GridCrossSection" /> - <slider label="Nieprzezroczystość Siatki" name="GridOpacity" /> + <spinner label="Jednostki siatki (metery)" name="GridResolution"/> + <spinner label="Rozmiary siatki (metry)" name="GridDrawSize"/> + <check_box label="Pokaż podjednostki" name="GridSubUnit"/> + <check_box label="Pokaż przekroje" name="GridCrossSection"/> + <text name="grid_opacity_label" tool_tip="Nieprzeźroczystość siatki:"> + Nieprzeźroczystość: + </text> + <slider label="Nieprzezroczystość siatki" name="GridOpacity"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml b/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml index f06615642eea90677170efb9921f406c378bac63..f4721b05d8d9e180f60aa69f4ef8d9cf6e184f73 100644 --- a/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml @@ -1,44 +1,54 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floaterbulkperms" title="HURTOWA ZMIANA PRAW ZAWARTOÅšCI"> - <text name="applyto"> - Rodzaj ZawartoÅ›ci - </text> + <floater.string name="nothing_to_modify_text"> + Selekcja zawiera zawartość niemodfyfikowalnÄ… + </floater.string> + <floater.string name="status_text"> + Ustawienie praw na [NAME] + </floater.string> + <floater.string name="start_text"> + RozpoczÄ™cie proÅ›by o zmianÄ™ praw... + </floater.string> + <floater.string name="done_text"> + ZakoÅ„czenie proÅ›by o zmianÄ™ praw. + </floater.string> <check_box label="Animacje" name="check_animation"/> - <check_box label="Części CiaÅ‚a" name="check_bodypart"/> + <icon name="icon_animation" tool_tip="Animacja"/> + <check_box label="Części ciaÅ‚a" name="check_bodypart"/> + <icon name="icon_bodypart" tool_tip="Części CiaÅ‚a"/> <check_box label="Ubranie" name="check_clothing"/> + <icon name="icon_clothing" tool_tip="Ubranie"/> <check_box label="Gestury" name="check_gesture"/> - <check_box label="ZapamiÄ™tane Miejsca" name="check_landmark"/> + <icon name="icon_gesture" tool_tip="Gestury"/> <check_box label="Noty" name="check_notecard"/> + <icon name="icon_notecard" tool_tip="Noty"/> <check_box label="Obiekty" name="check_object"/> + <icon name="icon_object" tool_tip="Obiekty"/> <check_box label="Skrypty" name="check_script"/> + <icon name="icon_script" tool_tip="Skrypty"/> <check_box label="DźwiÄ™ki" name="check_sound"/> + <icon name="icon_sound" tool_tip="DźwiÄ™ki"/> <check_box label="Tekstury" name="check_texture"/> - <button width="115" font="SansSerifSmall" label="Wybierz Wszystkie" label_selected="Wszystkie" name="check_all"/> - <button width="115" font="SansSerifSmall" label="Odznacz Wszystkie" label_selected="Å»adne" name="check_none"/> + <icon name="icon_texture" tool_tip="Tekstury"/> + <button font="SansSerifSmall" label="√ Wszystkie" label_selected="Wszystkie" name="check_all" width="115"/> + <button font="SansSerifSmall" label="Å»adne" label_selected="Å»adne" name="check_none" width="115"/> <text name="newperms"> - Nowe Prawa + Nowe prawa zawartoÅ›ci + </text> + <text name="GroupLabel"> + Grupa: </text> - <check_box label="UdostÄ™pnij Grupie" name="share_with_group"/> - <check_box label="Pozwól kopiować każdemu" name="everyone_copy"/> + <check_box label="UdostÄ™pnij" name="share_with_group"/> + <text name="AnyoneLabel"> + Każdy: + </text> + <check_box label="Kopiuj" name="everyone_copy"/> <text name="NextOwnerLabel"> NastÄ™pny WÅ‚aÅ›ciciel: </text> <check_box label="Modyfikuje" name="next_owner_modify"/> <check_box label="Kopiuje" name="next_owner_copy"/> - <check_box label="Oddaje/Sprzedaje" name="next_owner_transfer"/> - <button label="Pomoc" name="help"/> - <button label="Zastosuj" name="apply"/> - <button label="Zamknij" name="close"/> - <string name="nothing_to_modify_text"> - Selekcja zawiera zawartość niemodfyfikowalnÄ… - </string> - <string name="status_text"> - Ustawienie praw na [NAME] - </string> - <string name="start_text"> - RozpoczÄ™cie proÅ›by o zmianÄ™ praw... - </string> - <string name="done_text"> - ZakoÅ„czenie proÅ›by o zmianÄ™ praw. - </string> + <check_box initial_value="true" label="Oddaj/Sprzedaj" name="next_owner_transfer" tool_tip="NastÄ™pny wÅ‚aÅ›ciciel może oddać lub sprzedać ten obiekt."/> + <button label="OK" name="apply"/> + <button label="Anuluj" name="close"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_bumps.xml b/indra/newview/skins/default/xui/pl/floater_bumps.xml index 10f9d73284f2a051deff896e1ffa4c8c16c8550f..1f1b29a83ece6b3788dd1c694e26ade2d38d5813 100644 --- a/indra/newview/skins/default/xui/pl/floater_bumps.xml +++ b/indra/newview/skins/default/xui/pl/floater_bumps.xml @@ -1,21 +1,24 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_bumps" title="ZDERZENIA, POPCHNIĘCIA, UDERZENIA"> - <string name="none_detected"> + <floater.string name="none_detected"> Brak - </string> - <string name="bump"> + </floater.string> + <floater.string name="bump"> [TIME] [FIRST] [LAST] awatar zderzyÅ‚ siÄ™ z TobÄ… - </string> - <string name="llpushobject"> + </floater.string> + <floater.string name="llpushobject"> [TIME] [FIRST] [LAST] awatar popchnÄ…Å‚ CiÄ™ swoim skryptem - </string> - <string name="selected_object_collide"> + </floater.string> + <floater.string name="selected_object_collide"> [TIME] [FIRST] [LAST] awatar uderzyÅ‚ CiÄ™ swoim obiektem - </string> - <string name="scripted_object_collide"> + </floater.string> + <floater.string name="scripted_object_collide"> [TIME] [FIRST] [LAST] awatar uderzyÅ‚ CiÄ™ swoim skryptowanym obiektem - </string> - <string name="physical_object_collide"> + </floater.string> + <floater.string name="physical_object_collide"> [TIME] [FIRST] [LAST] awatar uderzyÅ‚ CiÄ™ swoim fizycznym obiektem - </string> + </floater.string> + <floater.string name="timeStr"> + [[hour,datetime,slt]:[min,datetime,slt]] + </floater.string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_buy_contents.xml b/indra/newview/skins/default/xui/pl/floater_buy_contents.xml index ebe1c9dfd8936a0ee3fe70ae8f2cd4f5958dfcdb..94f2b50450eb85b779ea94bd3c70b3e5adf676e4 100644 --- a/indra/newview/skins/default/xui/pl/floater_buy_contents.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_contents.xml @@ -1,14 +1,14 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_buy_contents" title="KUP ZAWARTOŚĆ"> <text name="contains_text"> [NAME] zawiera: </text> <text name="buy_text"> - Kupić za L$[AMOUNT] od [NAME]? + Kupić za [AMOUNT]L$ od [NAME]? </text> - <button label="Anuluj" label_selected="Anuluj" name="cancel_btn" /> - <button label="Kup" label_selected="Kup" name="buy_btn" /> - <check_box label="Załóż ubrania teraz" name="wear_check" /> + <button label="Anuluj" label_selected="Anuluj" name="cancel_btn"/> + <button label="Kup" label_selected="Kup" name="buy_btn"/> + <check_box label="Załóż ubrania teraz" name="wear_check"/> <string name="no_copy_text"> (bez prawa kopiowania) </string> diff --git a/indra/newview/skins/default/xui/pl/floater_buy_currency.xml b/indra/newview/skins/default/xui/pl/floater_buy_currency.xml index 5e5948288336fc65642a15675e70864871c7c770..f2a6579dc37181eedc74074c72b4474582f42738 100644 --- a/indra/newview/skins/default/xui/pl/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_currency.xml @@ -1,50 +1,43 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="buy currency" title="KUP $L"> - <text name="info_buying"> - Kup L$: - </text> - <text name="info_cannot_buy"> - Brak możliwoÅ›ci zakupu L$ teraz: - </text> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="buy currency" title="KUP L$"> + <floater.string name="buy_currency"> + Kup [LINDENS] L$ za [LOCALAMOUNT] + </floater.string> <text name="info_need_more"> - Potrzebujesz wiecÄ™j L$: + Potrzebujesz wiÄ™cej L$ </text> - <text name="error_message"> - Pojawienie siÄ™ bÅ‚Ä™du. - </text> - <button label="Idź do strony internetowej" name="error_web" width="168"/> <text name="contacting"> Kontaktowanie z LindeX... </text> - <text name="buy_action_unknown"> - Kup L$ w systemie walutowej wymiany LindeX + <text name="info_buying"> + Kup L$ </text> - <text name="buy_action"> - [NAME] [PRICE]L$ + <text name="balance_label"> + Obecnie posiadasz + </text> + <text name="balance_amount"> + [AMT]L$ </text> <text name="currency_action"> Kup </text> - <line_editor name="currency_amt" left_delta="32"> + <text name="currency_label"> + L$ + </text> + <line_editor label="L$" left_delta="32" name="currency_amt"> 1234 </line_editor> + <text name="buying_label"> + Cena + </text> <text name="currency_est"> za [LOCALAMOUNT] </text> <text name="getting_data"> - Otrzymywanie danych... + Kalkulowanie... </text> - <text name="balance_label"> - Obecnie posiadasz - </text> - <text name="balance_amount"> - [AMT]L$ - </text> - <text name="buying_label"> - Kupujesz - </text> - <text name="buying_amount"> - [AMT]L$ + <text name="buy_action"> + [ACTION] </text> <text name="total_label"> Twój nowy stan konta @@ -52,18 +45,22 @@ <text name="total_amount"> [AMT]L$ </text> - <text name="purchase_warning_repurchase" height="48" bottom_delta="-64" right="-10"> - DokonujÄ…c potwierdzenia na podanÄ… transakcjÄ™, -wyrażasz zgodÄ™ jedynie na zakup waluty. -Sprobuj wykonać operacjÄ™ ponownie. + <text name="currency_links"> + [http://www.secondlife.com/my/account/payment_method_management.php metoda pÅ‚atnoÅ›ci] | [http://www.secondlife.com/my/account/currency.php waluta] | [http://www.secondlife.com/my/account/exchange_rates.php kurs wymiany] + </text> + <text name="exchange_rate_note"> + Wpisz ponownie kwotÄ™ aby zobaczyć ostatni kurs wymiany. </text> - <text name="purchase_warning_notenough" bottom_delta="16"> - Nie zakupujesz wystarczajÄ…cej iloÅ›ci waluty. -ProszÄ™ zwiÄ™kszyć ilość. + <text bottom_delta="-64" height="48" name="purchase_warning_repurchase" right="-10"> + Potwierdzasz zakup L$, nie obiektu. + </text> + <text bottom_delta="16" name="purchase_warning_notenough"> + Nie zakupiono wystarczajÄ…cej iloÅ›ci L$. ProszÄ™ zwiÄ™kszyć kwotÄ™. + </text> + <button label="Kup teraz" name="buy_btn"/> + <button label="Anuluj" name="cancel_btn"/> + <text name="info_cannot_buy"> + Nie można kupić </text> - <button label="Anuluj" name="cancel_btn" /> - <button label="Kup" name="buy_btn" /> - <string name="buy_currency"> - Kup [LINDENS]L$ za [LOCALAMOUNT] - </string> + <button label="Przejdź na stronÄ™ WWW" name="error_web" width="168"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_buy_land.xml b/indra/newview/skins/default/xui/pl/floater_buy_land.xml index 648888828be926b032bbe3541065a7b47e1ea60f..3d01129d9bd332a98e3fe2886264a5c0dcb3c561 100644 --- a/indra/newview/skins/default/xui/pl/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_land.xml @@ -1,5 +1,133 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="buy land" title="BUY LAND"> +<floater name="buy land" title="KUP POSIADÅOŚĆ"> + <floater.string name="can_resell"> + Może być odsprzedana. + </floater.string> + <floater.string name="can_not_resell"> + Nie może być odsprzedana. + </floater.string> + <floater.string name="can_change"> + MogÄ… być Å‚Ä…czone i dzielone. + </floater.string> + <floater.string name="can_not_change"> + Nie mogÄ… być Å‚Ä…czone ani dzielone. + </floater.string> + <floater.string name="cant_buy_for_group"> + Nie masz pozwolenia na zakup PosiadÅ‚oÅ›ci dla Twojej aktywnej Grupy. + </floater.string> + <floater.string name="no_land_selected"> + Obszar nie jest wybrany. + </floater.string> + <floater.string name="multiple_parcels_selected"> + WybraÅ‚eÅ› wiele różnych PosiadÅ‚oÅ›ci. +Spróbuj wybrać mniejszy obszar. + </floater.string> + <floater.string name="no_permission"> + Nie masz pozwolenia na zakup PosiadÅ‚oÅ›ci dla Twojej aktywnej Grupy. + </floater.string> + <floater.string name="parcel_not_for_sale"> + Wybrana PosiadÅ‚ość nie jest na sprzedaż. + </floater.string> + <floater.string name="group_already_owns"> + Ta PosiadÅ‚ość już należy do Grupy. + </floater.string> + <floater.string name="you_already_own"> + Ta PosiadÅ‚ość już należy do Ciebie. + </floater.string> + <floater.string name="set_to_sell_to_other"> + Wybrana PosiadÅ‚ość bÄ™dzie sprzedana komuÅ› innemu. + </floater.string> + <floater.string name="no_public_land"> + Wybrany obszar nie ma publicznych PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="not_owned_by_you"> + WybraÅ‚eÅ› PosiadÅ‚ość, której WÅ‚aÅ›cicielem jest inny Rezydent. +Spróbuj wybrać ponownie mniejszÄ… powierzchniÄ™ PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="processing"> + Przetwarzanie Twojego zakupu... + +(Może zająć kilka minut) + </floater.string> + <floater.string name="fetching_error"> + BÅ‚Ä…d podczas wczytywania informacji zakupu PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="buying_will"> + Zakup tej PosiadÅ‚oÅ›ci spowoduje: + </floater.string> + <floater.string name="buying_for_group"> + Zakup ziemi dla Grupy: + </floater.string> + <floater.string name="cannot_buy_now"> + Nie możesz teraz kupić: + </floater.string> + <floater.string name="not_for_sale"> + Nie jest na sprzedaż: + </floater.string> + <floater.string name="none_needed"> + Poprawność danych. + </floater.string> + <floater.string name="must_upgrade"> + Musisz mieć konto Premium żebyÅ› mógÅ‚ mieć PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="cant_own_land"> + Twoje konto pozwala Ci mieć PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="land_holdings"> + JesteÅ› wÅ‚aÅ›cicielem [BUYER] m² ziemi. + </floater.string> + <floater.string name="pay_to_for_land"> + ZapÅ‚ać [SELLER] [AMOUNT]L$ za PosiadÅ‚ość + </floater.string> + <floater.string name="buy_for_US"> + Kup L$ [AMOUNT] za [LOCAL_AMOUNT], + </floater.string> + <floater.string name="parcel_meters"> + Podana posiadÅ‚ość to [AMOUNT] m² ziemi. + </floater.string> + <floater.string name="premium_land"> + Podana posiadÅ‚ość jest w cenie premium adekwatnie jak za [AMOUNT] m². + </floater.string> + <floater.string name="discounted_land"> + Wybrana posiadÅ‚ość jest w cenie zniżkowej adekwatnie jak za [AMOUNT] m². + </floater.string> + <floater.string name="meters_supports_object"> + [AMOUNT] m² +wspiera [AMOUNT2] obiektów + </floater.string> + <floater.string name="sold_with_objects"> + sprzedane z obiektami + </floater.string> + <floater.string name="sold_without_objects"> + obiekty nie sÄ… zawarte w sprzedaży + </floater.string> + <floater.string name="info_price_string"> + L$ [PRICE] +(L$ [PRICE_PER_SQM]/m²) +[SOLD_WITH_OBJECTS] + </floater.string> + <floater.string name="insufficient_land_credits"> + Grupa [GROUP] musi mieć wystarczajÄ…cy kredyt na +używanie PosiadÅ‚oÅ›ci żeby sfinalizować ten zakup. + </floater.string> + <floater.string name="have_enough_lindens"> + Masz [AMOUNT]L$ co wystarcza na zakup tej PosiadÅ‚oÅ›ci. + </floater.string> + <floater.string name="not_enough_lindens"> + Masz tylko [AMOUNT]L$ i potrzebujesz [AMOUNT2]L$ dodatkowo. + </floater.string> + <floater.string name="balance_left"> + Po zakupie zostanie Ci [AMOUNT]L$. + </floater.string> + <floater.string name="balance_needed"> + Musisz dokupić [AMOUNT]L$ żeby kupić tÄ… PosiadÅ‚ość. + </floater.string> + <floater.string name="no_parcel_selected"> + (PosiadÅ‚ość nie zostaÅ‚a wybrana) + </floater.string> + <floater.string name="icon_PG" value="Parcel_PG_Dark"/> + <floater.string name="icon_M" value="Parcel_M_Dark"/> + <floater.string name="icon_R" value="Parcel_R_Dark"/> <text name="region_name_label"> Region: </text> @@ -74,9 +202,9 @@ sprzedaż z obiektami Tylko czÅ‚onkowie z kontem Premium mogÄ… mieć PosiadÅ‚osci. </text> <combo_box name="account_level"> - <combo_box.item name="US$9.95/month,billedmonthly" label="9.95US$/miesiÄ…c, pÅ‚atne miesiÄ™cznie" /> - <combo_box.item name="US$7.50/month,billedquarterly" label="7.50US$/miesiÄ…c, pÅ‚atne kwartalnie" /> - <combo_box.item name="US$6.00/month,billedannually" label="6.00US$/miesiÄ…c, pÅ‚atne rocznie" /> + <combo_box.item label="US$9.95/miesiÄ™cznie, naliczane miesiÄ™cznie" name="US$9.95/month,billedmonthly"/> + <combo_box.item label="US$7.50/miesiÄ™cznie, naliczane kwartalnie" name="US$7.50/month,billedquarterly"/> + <combo_box.item label="US$6.00/miesiÄ™cznie, naliczane rocznie" name="US$6.00/month,billedannually"/> </combo_box> <text name="land_use_action"> ZwiÄ™ksz opÅ‚atÄ™ za używanie PosiadÅ‚oÅ›ci do 40US$/miesiÄ…c. @@ -98,140 +226,12 @@ PosiadÅ‚ość ta zawiera 512 m² ziemi. 1000 </line_editor> <text name="currency_est"> - za okoÅ‚o [AMOUNT2]US$ + za [LOCAL_AMOUNT] </text> <text name="currency_balance"> Masz 2,100L$. </text> - <check_box label="Zabierz [AMOUNT] metrów donacji z Grupy." name="remove_contribution"/> + <check_box label="UsuÅ„ [AMOUNT] m² z kontrybucji w grupie." name="remove_contribution"/> <button label="Zakup" name="buy_btn"/> <button label="Anuluj" name="cancel_btn"/> - <string name="can_resell"> - Może być odsprzedana. - </string> - <string name="can_not_resell"> - Nie może być odsprzedana. - </string> - <string name="can_change"> - MogÄ… być Å‚Ä…czone i dzielone. - </string> - <string name="can_not_change"> - Nie mogÄ… być Å‚Ä…czone ani dzielone. - </string> - <string name="cant_buy_for_group"> - Nie masz pozwolenia na zakup PosiadÅ‚oÅ›ci dla Twojej aktywnej Grupy. - </string> - <string name="no_land_selected"> - Obszar nie jest wybrany. - </string> - <string name="multiple_parcels_selected"> - WybraÅ‚eÅ› wiele różnych PosiadÅ‚oÅ›ci. -Spróbuj wybrać mniejszy obszar. - </string> - <string name="no_permission"> - Nie masz pozwolenia na zakup PosiadÅ‚oÅ›ci dla Twojej aktywnej Grupy. - </string> - <string name="parcel_not_for_sale"> - Wybrana PosiadÅ‚ość nie jest na sprzedaż. - </string> - <string name="group_already_owns"> - Ta PosiadÅ‚ość już należy do Grupy. - </string> - <string name="you_already_own"> - Ta PosiadÅ‚ość już należy do Ciebie. - </string> - <string name="set_to_sell_to_other"> - Wybrana PosiadÅ‚ość bÄ™dzie sprzedana komu innemu. - </string> - <string name="no_public_land"> - Wybrany obszar nie ma publicznych PosiadÅ‚oÅ›ci. - </string> - <string name="not_owned_by_you"> - Wybrana PosiadÅ‚ość należy do kogoÅ› innego. -Spróbuj wybrać inny obszar. - </string> - <string name="processing"> - Przetwarzanie Twojego zakupu... - -(Może zająć kilka minut) - </string> - <string name="fetching_error"> - BÅ‚Ä…d podczas wczytywania informacji zakupu PosiadÅ‚oÅ›ci. - </string> - <string name="buying_will"> - Zakup tej PosiadÅ‚oÅ›ci spowoduje: - </string> - <string name="buying_for_group"> - Zakup ziemi dla grupy: - </string> - <string name="cannot_buy_now"> - Nie możesz teraz kupić: - </string> - <string name="not_for_sale"> - Nie jest na sprzedaż: - </string> - <string name="none_needed"> - Poprawność danych. - </string> - <string name="must_upgrade"> - Musisz mieć konto Premium żebyÅ› mógÅ‚ mieć PosiadÅ‚oÅ›ci. - </string> - <string name="cant_own_land"> - Twoje konto pozwala Ci mieć PosiadÅ‚oÅ›ci. - </string> - <string name="land_holdings"> - JesteÅ› wÅ‚aÅ›cicielem [BUYER] m² ziemi. - </string> - <string name="pay_to_for_land"> - ZapÅ‚ać [SELLER] [AMOUNT]L$ za PosiadÅ‚ość - </string> - <string name="buy_for_US"> - Kup L$ [AMOUNT] za US$ [AMOUNT2], - </string> - <string name="parcel_meters"> - Podana posiadÅ‚ość to [AMOUNT] m² ziemi. - </string> - <string name="premium_land"> - Podana posiadÅ‚ość jest w cenie premium adekwatnie jak za [AMOUNT] m². - </string> - <string name="discounted_land"> - Wybrana posiadÅ‚ość jest w cenie zniżkowej adekwatnie jak za [AMOUNT] m². - </string> - <string name="meters_supports_object"> - [AMOUNT] m² -wspiera [AMOUNT2] obiektów - </string> - <string name="sold_with_objects"> - sprzedane z obiektami - </string> - <string name="sold_without_objects"> - obiekty nie sÄ… zawarte w sprzedaży - </string> - <string name="info_price_string"> - L$ [PRICE] -(L$ [PRICE_PER_SQM]/m²) -[SOLD_WITH_OBJECTS] - </string> - <string name="insufficient_land_credits"> - Grupa [GROUP] musi mieć wystarczajÄ…cy kredyt na -używanie PosiadÅ‚oÅ›ci żeby sfinalizować ten zakup. - </string> - <string name="have_enough_lindens"> - Masz [AMOUNT]L$ co wystarcza na zakup tej PosiadÅ‚oÅ›ci. - </string> - <string name="not_enough_lindens"> - Masz tylko [AMOUNT]L$ i potrzebujesz [AMOUNT2]L$ dodatkowo. - </string> - <string name="balance_left"> - Po zakupie zostanie Ci [AMOUNT]L$. - </string> - <string name="balance_needed"> - Musisz dokupić [AMOUNT]L$ żeby kupić tÄ… PosiadÅ‚ość. - </string> - <string name="no_parcel_selected"> - (PosiadÅ‚ość nie wybrana) - </string> - <string name="buy_currency"> - Kup [LINDENS]L$ za okoÅ‚o [USD]US$ - </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_buy_object.xml b/indra/newview/skins/default/xui/pl/floater_buy_object.xml index bad798222864676174fae10eb1357da1147ab8ac..7958ed76a1f65031438de0d48ae080a0600a5c5c 100644 --- a/indra/newview/skins/default/xui/pl/floater_buy_object.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_object.xml @@ -1,13 +1,13 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="contents" title="KUP KOPIĘ OBIEKTU"> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="KUP KOPIĘ"> <text name="contents_text"> - i jej zawartość: + i jej zawartość </text> <text name="buy_text"> Kupić za [AMOUNT]L$ od [NAME]? </text> - <button label="Anuluj" label_selected="Anuluj" name="cancel_btn" /> - <button label="Kup" label_selected="Kup" name="buy_btn" /> + <button label="Anuluj" label_selected="Anuluj" name="cancel_btn"/> + <button label="Kup" label_selected="Kup" name="buy_btn"/> <string name="title_buy_text"> Kup </string> diff --git a/indra/newview/skins/default/xui/pl/floater_camera.xml b/indra/newview/skins/default/xui/pl/floater_camera.xml index 95d82a3f9c779a85506db6a5a14d05c25b162543..aec75f026f083ba51cd0c8ec7d93940cd016ce3b 100644 --- a/indra/newview/skins/default/xui/pl/floater_camera.xml +++ b/indra/newview/skins/default/xui/pl/floater_camera.xml @@ -9,6 +9,18 @@ <floater.string name="move_tooltip"> Poruszaj kamerÄ… w dół/górÄ™ oraz w prawo/lewo </floater.string> + <floater.string name="orbit_mode_title"> + Obracaj + </floater.string> + <floater.string name="pan_mode_title"> + W prawo lub w lewo + </floater.string> + <floater.string name="avatar_view_mode_title"> + Ustawienia + </floater.string> + <floater.string name="free_mode_title"> + Zobacz obiekt + </floater.string> <panel name="controls"> <joystick_track name="cam_track_stick" tool_tip="Poruszaj kamerÄ… w górÄ™, w dół, w lewo i w prawo"/> <panel name="zoom" tool_tip="Najedź kamerÄ… w kierunku obiektu"> @@ -16,16 +28,16 @@ </panel> <joystick_rotate name="cam_rotate_stick" tool_tip="Obracaj kamerÄ™ wokoÅ‚ osi"/> <panel name="camera_presets"> - <button name="rear_view" tool_tip="Widok z TyÅ‚u"/> + <button name="rear_view" tool_tip="Widok z tyÅ‚u"/> <button name="group_view" tool_tip="PodglÄ…d Grupy"/> - <button name="front_view" tool_tip="Widok z Przodu"/> - <button name="mouselook_view" tool_tip="Widok Panoramiczny"/> + <button name="front_view" tool_tip="Widok z przodu"/> + <button name="mouselook_view" tool_tip="Widok panoramiczny"/> </panel> </panel> <panel name="buttons"> - <button label="" name="orbit_btn" tool_tip="Obracaj KamerÄ™"/> - <button label="" name="pan_btn" tool_tip="Kamera Horyzontalna"/> - <button label="" name="avatarview_btn" tool_tip="Widok Awatara"/> - <button label="" name="freecamera_btn" tool_tip="PodglÄ…d Obiektu"/> + <button label="" name="orbit_btn" tool_tip="Obracaj kamerÄ™"/> + <button label="" name="pan_btn" tool_tip="Kamera horyzontalna"/> + <button label="" name="avatarview_btn" tool_tip="Ustawienia"/> + <button label="" name="freecamera_btn" tool_tip="PodglÄ…d obiektu"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_choose_group.xml b/indra/newview/skins/default/xui/pl/floater_choose_group.xml index 72b6617094894d6d965c029e2ee914c9fd2e55d6..877cedc0bcd10c4a36af871c8910b1769113e310 100644 --- a/indra/newview/skins/default/xui/pl/floater_choose_group.xml +++ b/indra/newview/skins/default/xui/pl/floater_choose_group.xml @@ -1,8 +1,8 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="groups" title="GRUPY"> <text name="groupdesc"> - Wybierz grupÄ™: + Wybierz GrupÄ™: </text> - <button label="OK" label_selected="OK" name="OK" /> - <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> + <button label="OK" label_selected="OK" name="OK"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_color_picker.xml b/indra/newview/skins/default/xui/pl/floater_color_picker.xml index 7bbdc35f940c25be7155fc44400880a816e695a9..a607ca982f899cac84925990724a84dba4dea889 100644 --- a/indra/newview/skins/default/xui/pl/floater_color_picker.xml +++ b/indra/newview/skins/default/xui/pl/floater_color_picker.xml @@ -21,11 +21,11 @@ <check_box label="Zastosuj teraz" name="apply_immediate"/> <button label="" label_selected="" name="color_pipette"/> <button label="Anuluj" label_selected="Anuluj" name="cancel_btn"/> - <button label="Ok" label_selected="Ok" name="select_btn"/> + <button label="OK" label_selected="OK" name="select_btn"/> <text name="Current color:"> - Obecny Kolor: + Obecny kolor: </text> <text name="(Drag below to save.)"> - (PrzeciÄ…gnij tutaj by zapisać) + (PrzeciÄ…gnij tutaj aby zapisać) </text> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_customize.xml b/indra/newview/skins/default/xui/pl/floater_customize.xml index 0c01d15faff7f26c56805a703fda7cda372b3f5c..dd1d5cf684b2b35af01c0db52603b0c407129e9e 100644 --- a/indra/newview/skins/default/xui/pl/floater_customize.xml +++ b/indra/newview/skins/default/xui/pl/floater_customize.xml @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="WYGLÄ„D"> <tab_container name="customize tab container"> - <placeholder label="Części CiaÅ‚a" name="body_parts_placeholder"/> + <text label="Części CiaÅ‚a" name="body_parts_placeholder"> + Części ciaÅ‚a + </text> <panel label="KsztaÅ‚t" name="Shape"> <button label="Wróć" label_selected="Wróć" name="Revert"/> <button label="CiaÅ‚o" label_selected="CiaÅ‚o" name="Body"/> @@ -14,8 +16,8 @@ <button label="Tułów" label_selected="Tułów" name="Torso"/> <button label="Nogi" label_selected="Nogi" name="Legs"/> <radio_group name="sex radio"> - <radio_item name="radio" label="Kobieta"/> - <radio_item name="radio2" label="Mężczyzna"/> + <radio_item label="Kobieta" name="radio" value="0"/> + <radio_item label="Mężczyzna" name="radio2" value="1"/> </radio_group> <text name="title"> [DESC] @@ -33,9 +35,7 @@ Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowy ksztaÅ‚t poprzez przeciÄ…gniÄ™cie go ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny ksztaÅ‚t -z plików roboczych. + Załóż nowy ksztaÅ‚t poprzez przeciÄ…gniÄ™cie go ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny ksztaÅ‚t z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tego ksztaÅ‚tu. @@ -43,15 +43,15 @@ z plików roboczych. <text name="Item Action Label"> KsztaÅ‚t: </text> - <button label="Nowy KsztaÅ‚t" label_selected="Nowy KsztaÅ‚t" name="Create New"/> + <button label="Nowy ksztaÅ‚t" label_selected="Nowy ksztaÅ‚t" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> </panel> <panel label="Skórka" name="Skin"> - <button label="Kolor Skórki" label_selected="Kolor Skórki" name="Skin Color"/> - <button label="Detale Twarzy" label_selected="Detale Twarzy" name="Face Detail"/> + <button label="Kolor skórki" label_selected="Kolor skórki" name="Skin Color"/> + <button label="Detale twarzy" label_selected="Detale twarzy" name="Face Detail"/> <button label="Makijaż" label_selected="Makijaż" name="Makeup"/> - <button label="Detale CiaÅ‚a" label_selected="Detale CiaÅ‚a" name="Body Detail"/> + <button label="Detale ciaÅ‚a" label_selected="Detale ciaÅ‚a" name="Body Detail"/> <text name="title"> [DESC] </text> @@ -68,9 +68,7 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowÄ… skórkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… skórkÄ™ -z plików roboczych. + Załóż nowÄ… skórkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… skórkÄ™ z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tej skórki. @@ -78,12 +76,12 @@ z plików roboczych. <text name="Item Action Label"> Skórka: </text> - <texture_picker label="Tatuaże GÅ‚owy" name="Head Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> - <texture_picker label="Tatuaże Górne" name="Upper Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> - <texture_picker label="Tatuaże Dolne" name="Lower Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> - <button label="Nowa Skórka" label_selected="Nowa Skórka" name="Create New"/> + <texture_picker label="Tatuaże gÅ‚owy" name="Head Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <texture_picker label="Tatuaże górne" name="Upper Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <texture_picker label="Tatuaże dolne" name="Lower Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <button label="Nowa skórka" label_selected="Nowa skórka" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="WÅ‚osy" name="Hair"> @@ -107,9 +105,7 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe wÅ‚osy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne wÅ‚osy -z plików roboczych. + Załóż nowe wÅ‚osy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne wÅ‚osy z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych wÅ‚osów. @@ -118,9 +114,9 @@ z plików roboczych. WÅ‚osy: </text> <texture_picker label="Tekstura" name="Texture" tool_tip="Kliknij by wybrać teksturÄ™"/> - <button label="Nowe WÅ‚osy" label_selected="Nowe WÅ‚osy" name="Create New"/> + <button label="Nowe wÅ‚osy" label_selected="Nowe wÅ‚osy" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Oczy" name="Eyes"> @@ -140,9 +136,7 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe oczy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne oczy -z plików roboczych. + Załóż nowe oczy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne oczy z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych oczów. @@ -151,19 +145,21 @@ z plików roboczych. Oczy: </text> <texture_picker label="TÄ™czówka" name="Iris" tool_tip="Kliknij by wybrać teksturÄ™"/> - <button label="Nowe Oczy" label_selected="Nowe Oczy" name="Create New"/> + <button label="Nowe oczy" label_selected="Nowe oczy" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> - <panel label="Ubrania" name="clothes_placeholder"/> + <text label="Ubrania" name="clothes_placeholder"> + Ubrania + </text> <panel label="Koszula" name="Shirt"> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowa Koszula" label_selected="Nowa Koszula" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Nowa Koszula" label_selected="Nowa Koszula" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> <text name="title"> [DESC] @@ -181,9 +177,7 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowÄ… koszulÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… koszulÄ™ -z plików roboczych. + Załóż nowÄ… koszulÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… koszulÄ™ z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tej koszuli. @@ -194,11 +188,11 @@ z plików roboczych. </panel> <panel label="Spodnie" name="Pants"> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij tutaj by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowe Spodnie" label_selected="Nowe Spodnie" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Nowe spodnie" label_selected="Nowe spodnie" name="Create New"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> <text name="title"> [DESC] @@ -216,9 +210,7 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe spodnie poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne spodnie -z plików roboczych. + Załóż nowe spodnie poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne spodnie z plików roboczych. </text> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych spodni. @@ -244,10 +236,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe buty poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne buty -z plików roboczych. + Załóż nowe buty poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne buty z plików roboczych. </text> + <button label="Nowe Buty" label_selected="Nowe Buty" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych butów. </text> @@ -255,11 +246,10 @@ z plików roboczych. Buty: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowe Buty" label_selected="Nowe Buty" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Skarpety" name="Socks"> @@ -279,10 +269,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe skarpety poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne skarpety -z plików roboczych. + Załóż nowe skarpety poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne skarpety z plików roboczych. </text> + <button label="Nowe Skarpety" label_selected="Nowe Skarpety" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych skarpet. </text> @@ -290,11 +279,10 @@ z plików roboczych. Skarpetki: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowe Skarpety" label_selected="Nowe Skarpety" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Kurtka" name="Jacket"> @@ -314,23 +302,21 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowÄ… kurtkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… kurtkÄ™ -z plików roboczych. + Załóż nowÄ… kurtkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… kurtkÄ™ z plików roboczych. </text> + <button label="Nowa Kurtka" label_selected="Nowa Kurtka" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tej kurtki. </text> <text name="Item Action Label"> Kurtka: </text> - <texture_picker label="Górny MateriaÅ‚" name="Upper Fabric" tool_tip="Kliknij by wybrać teksturÄ™" width="76"/> - <texture_picker label="Dolny MateriaÅ‚" name="Lower Fabric" tool_tip="Kliknij by wybrać kolor" width="76"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" width="76"/> - <button label="Nowa Kurtka" label_selected="Nowa Kurtka" name="Create New"/> + <texture_picker label="Górny materiaÅ‚" name="Upper Fabric" tool_tip="Kliknij by wybrać teksturÄ™" width="76"/> + <texture_picker label="Dolny materiaÅ‚" name="Lower Fabric" tool_tip="Kliknij by wybrać kolor" width="76"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor" width="76"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="RÄ™kawiczki" name="Gloves"> @@ -350,10 +336,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowe rÄ™kawiczki poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne rÄ™kawiczki -z plików roboczych. + Załóż nowe rÄ™kawiczki poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne rÄ™kawiczki z plików roboczych. </text> + <button label="Nowe RÄ™kawiczki" label_selected="Nowe RÄ™kawiczki" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tych rÄ™kawiczek </text> @@ -361,11 +346,10 @@ z plików roboczych. RÄ™kawiczki: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowe RÄ™kawiczki" label_selected="Nowe RÄ™kawiczki" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Podkoszulek" name="Undershirt"> @@ -385,10 +369,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowy podkoszulek poprzez przeciÄ…gniÄ™cie ich ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny podkoszulek -z plików roboczych. + Załóż nowy podkoszulek poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny podkoszulek z plików roboczych. </text> + <button label="Nowy Podkoszulek" label_selected="Nowy Podkoszulek" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tego podkoszulka. </text> @@ -396,11 +379,10 @@ z plików roboczych. Podkoszulka: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowy Podkoszulek" label_selected="Nowy Podkoszulek" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Bielizna" name="Underpants"> @@ -420,10 +402,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowÄ… bieliznÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… bieliznÄ™ -z plików roboczych. + Załóż nowÄ… bieliznÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… bieliznÄ™ z plików roboczych. </text> + <button label="Nowa Bielizna" label_selected="Nowa Bielizna" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tej bielizny. </text> @@ -431,11 +412,10 @@ z plików roboczych. Bielizna: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowa Bielizna" label_selected="Nowa Bielizna" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Spódnica" name="Skirt"> @@ -455,10 +435,9 @@ z plików roboczych. Zapisane w [PATH] </text> <text name="not worn instructions"> - Załóż nowÄ… spódnicÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy -na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… spódnicÄ™ -z plików roboczych. + Załóż nowÄ… spódnicÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… spódnicÄ™ z plików roboczych. </text> + <button label="Nowa Spódnica" label_selected="Nowa Spódnica" name="Create New"/> <text name="no modify instructions"> Nie posiadasz prawa do modyfikowania tej spódnicy. </text> @@ -466,15 +445,85 @@ z plików roboczych. Spódnica: </text> <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> - <button label="Nowa Spódnica" label_selected="Nowa Spódnica" name="Create New"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> + </panel> + <panel label="Tatuaż" name="Tattoo"> + <text name="title"> + [DESC] + </text> + <text name="title_no_modify"> + [DESC]: nie można modyfikować + </text> + <text name="title_loading"> + [DESC]: Å‚adowanie... + </text> + <text name="title_not_worn"> + [DESC]: nienaÅ‚ożone + </text> + <text name="path"> + Zapisane w [PATH] + </text> + <text name="not worn instructions"> + Załóż nowy tatuaż poprzez przeciÄ…gniÄ™cie go ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny tatuaż z plików roboczych. + </text> + <button label="Utwórz Nowy Tatuaż" label_selected="Stwórz Nowy Tatuaż" name="Create New"/> + <text name="no modify instructions"> + Nie posiadasz uprawnieÅ„ do modyfikowania tych ubraÅ„/części ciaÅ‚a. + </text> + <text name="Item Action Label"> + Tatuaż: + </text> + <texture_picker label="Tatuaż gÅ‚owy" name="Head Tattoo" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Górny tatuaż" name="Upper Tattoo" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Tatuaż dolnej części ciaÅ‚a" name="Lower Tattoo" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> + </panel> + <panel label="Alpha" name="Alpha"> + <text name="title"> + [DESC] + </text> + <text name="title_no_modify"> + [DESC]: nie można modyfikować + </text> + <text name="title_loading"> + [DESC]: Å‚adowanie... + </text> + <text name="title_not_worn"> + [DESC]: nienaÅ‚ożone + </text> + <text name="path"> + Zapisane w [PATH] + </text> + <text name="not worn instructions"> + Załóż nowÄ… maskÄ™ alpha poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… z plików roboczych. + </text> + <button label="Stwórz nowÄ… Alpha" label_selected="Utwórz NowÄ… Alpha" name="Create New"/> + <text name="no modify instructions"> + Nie posiadasz uprawnieÅ„ do modyfikowania tych ubraÅ„/części ciaÅ‚a. + </text> + <text name="Item Action Label"> + Alpha: + </text> + <texture_picker label="Dolna Alpha" name="Lower Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha górnej części ciaÅ‚a" name="Upper Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha gÅ‚owy" name="Head Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha oka" name="Eye Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha wÅ‚osów" name="Hair Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> <button label="Zapisz" label_selected="Zapisz" name="Save"/> - <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Zapisz jako..." label_selected="Zapisz jako..." name="Save As"/> <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> </tab_container> + <button label="Info o skrypcie" label_selected="Info o skrypcie" name="script_info" tool_tip="Pokaż skrypty przyÅ‚Ä…czone do Twojego awatara"/> + <button label="Stwórz ubranie" label_selected="Stwórz Ubranie" name="make_outfit_btn"/> <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> <button label="OK" label_selected="OK" name="Ok"/> - <button label="Stwórz Ubranie..." label_selected="Stwórz Ubranie..." name="Make Outfit" width="115"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_day_cycle_options.xml b/indra/newview/skins/default/xui/pl/floater_day_cycle_options.xml index 6671bb853e40e746ad1167e4b3d6a2fd1ce42448..0cb2114f99798abf45f05bfeaf844d6f81735abf 100644 --- a/indra/newview/skins/default/xui/pl/floater_day_cycle_options.xml +++ b/indra/newview/skins/default/xui/pl/floater_day_cycle_options.xml @@ -62,7 +62,7 @@ <button label="Dodaj" label_selected="Dodaj" name="WLAddKey" /> <button label="UsuÅ„" label_selected="UsuÅ„" name="WLDeleteKey" /> <text name="WLCurKeyFrameText"> - Preferencje Czasu: + Preferencje czasu: </text> <text name="WLCurKeyTimeText"> Czas: @@ -78,7 +78,7 @@ </text> <combo_box label="5 min" name="WLSnapOptions" /> <text name="DayCycleText2"> - DÅ‚ugość Cyklu: + DÅ‚ugość cyklu: </text> <spinner label="Godz" name="WLLengthOfDayHour" /> <spinner label="Min" name="WLLengthOfDayMin" /> @@ -88,11 +88,11 @@ </text> <button label="Start" label_selected="Start" name="WLAnimSky" /> <button label="Stop" label_selected="Stop" name="WLStopAnimSky" /> - <button label="Używaj Czasu Regionu" label_selected="Używaj Czasu Regionu" + <button label="Używaj czasu regionu" label_selected="Używaj czasu regionu" name="WLUseLindenTime" /> - <button label="Zapisz Test Dnia" label_selected="Zapisz Test Dnia" + <button label="Zapisz test dnia" label_selected="Zapisz test dnia" name="WLSaveDayCycle" /> - <button label="ZaÅ‚aduj Test Dnia" label_selected="ZaÅ‚aduj Test Dnia" + <button label="ZaÅ‚aduj test dnia" label_selected="ZaÅ‚aduj test dnia" name="WLLoadDayCycle" /> </panel> </tab_container> diff --git a/indra/newview/skins/default/xui/pl/floater_device_settings.xml b/indra/newview/skins/default/xui/pl/floater_device_settings.xml index e79478731d143fbd279422ed332471dce26999fe..c485fb2e293ed9c445f81e41ab74f396bbf420d6 100644 --- a/indra/newview/skins/default/xui/pl/floater_device_settings.xml +++ b/indra/newview/skins/default/xui/pl/floater_device_settings.xml @@ -1,3 +1,2 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="floater_device_settings" - title="USTAWIENIA URZÄ„DZEŃ KOMUNIKACJI GÅOSOWEJ" /> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_device_settings" title="USTAWIENIA URZÄ„DZEŃ KOMUNIKACJI GÅOSOWEJ"/> diff --git a/indra/newview/skins/default/xui/pl/floater_env_settings.xml b/indra/newview/skins/default/xui/pl/floater_env_settings.xml index e197d94b271da6412211d426c422b8eea836f283..3ab854fbbbbfc01b30663654fed3d015237b1e27 100644 --- a/indra/newview/skins/default/xui/pl/floater_env_settings.xml +++ b/indra/newview/skins/default/xui/pl/floater_env_settings.xml @@ -1,26 +1,28 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Environment Editor Floater" title="EDYTOR ÅšRODOWISKA"> + <floater.string name="timeStr"> + [hour12,datetime,utc]:[min,datetime,utc] [ampm,datetime,utc] + </floater.string> <text name="EnvTimeText"> Czas </text> <text name="EnvTimeText2"> 12:00 PM </text> - <slider label="" name="EnvTimeSlider" /> + <slider label="" name="EnvTimeSlider"/> <text name="EnvCloudText"> Chmury: </text> - <slider label="" name="EnvCloudSlider" /> + <slider label="" name="EnvCloudSlider"/> <text name="EnvWaterColorText"> - Kolor Wody + Kolor wody </text> - <color_swatch label="" name="EnvWaterColor" tool_tip="Kliknij by wybrać kolor" /> + <color_swatch label="" name="EnvWaterColor" tool_tip="Kliknij aby wybrać kolor"/> <text name="EnvWaterFogText"> Zamglenie: </text> - <slider label="" name="EnvWaterFogSlider" /> - <button label="Używaj Czasu Regionu" name="EnvUseEstateTimeButton" /> - <button label="Zaawansowane Niebo" name="EnvAdvancedSkyButton" /> - <button label="Zaawansowana Woda" name="EnvAdvancedWaterButton" /> - <button label="?" name="EnvSettingsHelpButton" /> + <slider label="" name="EnvWaterFogSlider"/> + <button label="Używaj czasu regionu" name="EnvUseEstateTimeButton"/> + <button label="Zaawansowane niebo" name="EnvAdvancedSkyButton"/> + <button label="Zaawansowana woda" name="EnvAdvancedWaterButton"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_event.xml b/indra/newview/skins/default/xui/pl/floater_event.xml new file mode 100644 index 0000000000000000000000000000000000000000..758849346421866d2fc82bb4460f72f7454045f1 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_event.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater label="IMPREZA" name="Event" title="IMPREZA"> + <floater.string name="none"> + żadne + </floater.string> + <floater.string name="notify"> + Zawiadom + </floater.string> + <floater.string name="dont_notify"> + Nie zawiadamiaj + </floater.string> + <floater.string name="moderate"> + Mature + </floater.string> + <floater.string name="adult"> + Adult + </floater.string> + <floater.string name="general"> + PG + </floater.string> + <floater.string name="unknown"> + Nieznana + </floater.string> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <text name="event_name"> + Brak nazwy dla wydarzenia. + </text> + <text name="event_category"> + (bez kategorii) + </text> + <text name="event_runby_label"> + Prowadzona przez: + </text> + <text initial_value="(przetwarzanie)" name="event_runby"/> + <text name="event_date_label"> + Data: + </text> + <text name="event_date"> + 10/10/2010 + </text> + <text name="event_duration_label"> + DÅ‚ugość: + </text> + <text name="event_duration"> + 1 godzina + </text> + <text name="event_covercharge_label"> + OpÅ‚ata: + </text> + <text name="event_cover"> + Bez opÅ‚aty + </text> + <text name="event_location_label"> + Lokalizacja: + </text> + <text name="event_location" value="SampleParcel, Name Long (145, 228, 26)"/> + <text name="rating_label" value="Rodzaj:"/> + <text name="rating_value" value="nieznane"/> + <expandable_text name="event_desc"> + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </expandable_text> + </layout_panel> + <layout_panel name="button_panel"> + <button name="create_event_btn" tool_tip="Stwórz ImprezÄ™"/> + <button name="god_delete_event_btn" tool_tip="Skasuj ImprezÄ™"/> + <button label="Zawiadom mnie" name="notify_btn"/> + <button label="Teleportuj" name="teleport_btn"/> + <button label="Mapa" name="map_btn"/> + </layout_panel> + </layout_stack> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_gesture.xml b/indra/newview/skins/default/xui/pl/floater_gesture.xml index 4685eb6afe6fdb3291417c249dc3e06d93be887e..750a9e4a66f8c9b8b96ec9961f7f360e4f1a9de0 100644 --- a/indra/newview/skins/default/xui/pl/floater_gesture.xml +++ b/indra/newview/skins/default/xui/pl/floater_gesture.xml @@ -1,16 +1,27 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="gestures" title="AKTYWNE GESTY"> - <text name="help_label"> - Kliknij podwójnie by aktywować gÅ‚os i animacjÄ™ gestu. - </text> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater label="Miejsca" name="gestures" title="GESTY"> + <floater.string name="loading"> + Åadowanie... + </floater.string> + <floater.string name="playing"> + (Odtwarzanie) + </floater.string> + <floater.string name="copy_name"> + Kopia [COPY_NAME] + </floater.string> <scroll_list name="gesture_list"> - <column label="Aktywuj" name="trigger" /> - <column label="Klucz" name="shortcut" /> - <column label="" name="key" /> - <column label="Nazwa" name="name" /> + <scroll_list.columns label="Nazwa" name="name"/> + <scroll_list.columns label="Czat" name="trigger"/> + <scroll_list.columns label="" name="key"/> + <scroll_list.columns label="Klucz" name="shortcut"/> </scroll_list> - <button label="Nowy" name="new_gesture_btn" /> - <button label="Edytuj" name="edit_btn" /> - <button label="Odtwarzaj" name="play_btn" /> - <button label="Zatrzymaj" name="stop_btn" /> + <panel label="bottom_panel" name="bottom_panel"> + <menu_button name="gear_btn" tool_tip="WiÄ™cej opcji"/> + <button name="new_gesture_btn" tool_tip="Stwórz nowÄ… gesturÄ™"/> + <button name="activate_btn" tool_tip="Aktywuj/Dezaktywuj wybrany gest"/> + <button name="del_btn" tool_tip="UsuÅ„ gest"/> + </panel> + <button label="Edytuj" name="edit_btn"/> + <button label="Odtwarzaj" name="play_btn"/> + <button label="Zatrzymaj" name="stop_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_god_tools.xml b/indra/newview/skins/default/xui/pl/floater_god_tools.xml index a3ccffac03322425a74c9f4fddfdbd2b46ae260f..4d49c32fc182e24855300fdded0163889a90b009 100644 --- a/indra/newview/skins/default/xui/pl/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/pl/floater_god_tools.xml @@ -2,26 +2,25 @@ <floater name="godtools floater" title="BOSKIE NARZĘDZIA"> <tab_container name="GodTools Tabs"> <panel label="Grid" name="grid"> - <button width="205" label="UsuÅ„ wszystkich użytkowników" label_selected="UsuÅ„ wszystkich użytkowników" name="Kick all users"/> - <button width="285" label="Wyrównaj Widoczność Buforu Mapy Regionu" label_selected="Wyrównaj Widoczność Buforu Mapy Regionu" name="Flush This Region's Map Visibility Caches"/> + <button label="Wyrzuć wszystkich Rezydentów" label_selected="Wyrzuć wszystkich Rezydentów" name="Kick all users" width="205"/> + <button label="Wyrównaj widoczność buforu mapy Regionu" label_selected="Wyrównaj widoczność buforu mapy Regionu" name="Flush This Region's Map Visibility Caches" width="285"/> </panel> <panel label="Region" name="region"> <text name="Sim Name:" width="100"> Nazwa Symulatora: </text> - <line_editor left="115" name="region name" width="178" /> - <line_editor name="region name"/> - <check_box label="WstÄ™p" name="check prelude" /> + <line_editor left="115" name="region name" width="178"/> + <check_box label="WstÄ™p" name="check prelude" tool_tip="Set this to make the region a prelude"/> <check_box label="Korekta SÅ‚oÅ„ca" name="check fixed sun" tool_tip="Skorektuj ustawienia pozycji sÅ‚oÅ„ca."/> - <check_box height="32" label="Zresetuj PozycjÄ™ Miejsca Startowego" name="check reset home" /> - <check_box bottom_delta="-32" label="Widoczny" name="check visible" tool_tip="Wybierz tÄ™ opcjÄ™ by ustawić region widocznym dla wszystkich."/> + <check_box height="32" label="Zresetuj pozycjÄ™ Miejsca Startowego" name="check reset home" tool_tip="Zresetuj miejsce startu Rezydentów po teleportacji"/> + <check_box bottom_delta="-32" label="Widoczny" name="check visible" tool_tip="Wybierz tÄ… opcjÄ™ by ustawić region widocznym dla wszystkich."/> <check_box label="Zniszczenia" name="check damage" tool_tip="Wybierz tÄ™ opcjÄ™ by uruchomić opcjÄ™ zniszczeÅ„ w regionie."/> - <check_box label="Zablokuj Monitorowanie Trafficu" name="block dwell" tool_tip="Wybierz tÄ™ opcjÄ™ by zablokować monitorowanie trafficu w regionie."/> - <check_box label="Zablokuj Terraformowanie" name="block terraform" tool_tip="Wybierz tÄ™ opcjÄ™ by zablokować terraforming w regionie"/> - <check_box label="Piaskownica" name="is sandbox" /> - <button width="138" label="Ustal Teren" label_selected="Ustal Teren" name="Bake Terrain" tool_tip="ZapamiÄ™taj obecny teren jako poczÄ…tkowy dla cofniÄ™cia modyfikacji terenu."/> - <button width="138" label="CofniÄ™cie Modyfikacji" label_selected="CofniÄ™cie Modyfikacji" name="Revert Terrain" tool_tip="Przywróć Ustawienia DomyÅ›lne Regionu."/> - <button width="138" label="ZamieÅ„ Teren" label_selected="ZamieÅ„ Teren" name="Swap Terrain" /> + <check_box label="Zablokuj Monitorowanie Trafficu" name="block dwell" tool_tip="Wybierz tÄ… opcjÄ™ by zablokować monitorowanie trafficu w regionie."/> + <check_box label="Zablokuj Terraformowanie" name="block terraform" tool_tip="Wybierz tÄ… opcjÄ™ by zablokować terraforming w regionie"/> + <check_box label="Piaskownica" name="is sandbox" tool_tip="Toggle whether this is a sandbox region"/> + <button label="Ustal teren" label_selected="Ustal teren" name="Bake Terrain" tool_tip="ZapamiÄ™taj obecny teren jako poczÄ…tkowy dla cofniÄ™cia modyfikacji terenu." width="138"/> + <button label="CofniÄ™cie modyfikacji" label_selected="CofniÄ™cie modyfikacji" name="Revert Terrain" tool_tip="Przywróć ustawienia domyÅ›lne Regionu." width="138"/> + <button label="ZamieÅ„ teren" label_selected="ZamieÅ„ teren" name="Swap Terrain" tool_tip="Swap current terrain with default" width="138"/> <text name="estate id"> ID Regionu: </text> @@ -33,46 +32,46 @@ <text name="Grid Pos: "> Pozycje Gridu: </text> - <line_editor name="gridposx" tool_tip="Pozycja x gridu dla regionu" left_delta="110" width="35" /> - <line_editor name="gridposy" tool_tip="Pozycja y gridu dla regionu" left_delta="45" width="35" /> + <line_editor left_delta="110" name="gridposx" tool_tip="Pozycja x gridu dla regionu" width="35"/> + <line_editor left_delta="45" name="gridposy" tool_tip="Pozycja y gridu dla regionu" width="35"/> <text name="Redirect to Grid: "> PrzeÅ‚Ä…cz do gridu: </text> - <line_editor left_delta="110" name="redirectx" width="35" /> - <line_editor left_delta="45" name="redirecty" width="35" /> - <spinner name="billable factor"/> + <line_editor left_delta="110" name="redirectx" width="35"/> + <line_editor left_delta="45" name="redirecty" width="35"/> <text name="billable factor text"> - Czynnik PÅ‚atnoÅ›ci: + Czynnik pÅ‚atnoÅ›ci: </text> - <spinner name="land cost"/> + <spinner name="billable factor"/> <text name="land cost text"> L$/m²: </text> - <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh" /> - <button label="Zastosuj" label_selected="Zastosuj" name="Apply" /> - <button width="150" left="156" label="Wybierz Region" label_selected="Wybierz Region" name="Select Region" tool_tip="Wybierz caÅ‚y region za pomocÄ… narzÄ™dzi edycji terenu"/> - <button width="150" left="156" label="Automatyczne Zapisanie" label_selected="Automatyczne Zapisanie" name="Autosave now" /> + <spinner name="land cost"/> + <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh" tool_tip="Click here to refresh the above information"/> + <button label="Zastosuj" label_selected="Zastosuj" name="Apply" tool_tip="Click here to apply any changes from above"/> + <button label="Wybierz Region" label_selected="Wybierz Region" left="156" name="Select Region" tool_tip="Wybierz caÅ‚y Region za pomocÄ… narzÄ™dzi edycji terenu" width="150"/> + <button label="Automatyczne zapisanie" label_selected="Automatyczne zapisanie" left="156" name="Autosave now" tool_tip="Save gzipped state to autosave directory" width="150"/> </panel> <panel label="Obiekty" name="objects"> <text name="Sim Name:" width="105"> Nazwa Symulatora: </text> - <text name="region name" left_delta="110"> + <text left_delta="110" name="region name"> Welsh </text> - <check_box label="WyÅ‚Ä…cz Skrypty" name="disable scripts" /> - <check_box label="Deaktywuj Kolizje" name="disable collisions" /> - <check_box label="WylÄ…cz FizykÄ™" name="disable physics" /> - <button label="Zastosuj" label_selected="Zastosuj" name="Apply" /> - <button label="Ustaw Cel" label_selected="Set Target" name="Set Target" /> + <check_box label="WyÅ‚Ä…cz skrypty" name="disable scripts" tool_tip="Set this to disable all scripts in this region"/> + <check_box label="Deaktywuj kolizje" name="disable collisions" tool_tip="Set this to disable non-agent collisions in this region"/> + <check_box label="WylÄ…cz fizykÄ™" name="disable physics" tool_tip="Set this to disable all physics in this region"/> + <button label="Zastosuj" label_selected="Zastosuj" name="Apply" tool_tip="Click here to apply any changes from above"/> + <button label="Ustaw Cel" label_selected="Set Target" name="Set Target" tool_tip="Set the target avatar for object deletion"/> <text name="target_avatar_name"> (brak) </text> - <button label="UsuÅ„ cel z oskryptowanych obiektów na innych posiadÅ‚oÅ›ciach" label_selected="UsuÅ„ cel 's skryptowane obiekty na innych posiadÅ‚oÅ›ciach" name="Delete Target's Scripted Objects On Others Land" /> - <button label="UsuÅ„ cel z oskryptowanych obiektów na jakichkolwiek posiadÅ‚oÅ›ciach" label_selected="UsuÅ„ cel 's skryptowane obiekty na jakichkolwiek posiadÅ‚oÅ›ciach" name="Delete Target's Scripted Objects On *Any* Land" /> - <button label="UsuÅ„ wszystkie cele i obiekty" label_selected="UsuÅ„ wszystkie cele i obiekty" name="Delete *ALL* Of Target's Objects" /> - <button label="Główne Kolizje" label_selected="Główne Kolizje" name="Get Top Colliders" /> - <button label="Główne Skrypty" label_selected="Główne Skrypty" name="Get Top Scripts" /> + <button label="UsuÅ„ cel z oskryptowanych obiektów na innych posiadÅ‚oÅ›ciach" label_selected="UsuÅ„ cel 's skryptowane obiekty na innych posiadÅ‚oÅ›ciach" name="Delete Target's Scripted Objects On Others Land" tool_tip="Delete all scripted objects owned by the target on land not owned by the target. (no copy) objects will be returned."/> + <button label="UsuÅ„ cel z oskryptowanych obiektów na jakichkolwiek posiadÅ‚oÅ›ciach" label_selected="UsuÅ„ cel 's skryptowane obiekty na jakichkolwiek posiadÅ‚oÅ›ciach" name="Delete Target's Scripted Objects On *Any* Land" tool_tip="Delete all scripted objects owned by the target in this region. (no copy) objects will be returned."/> + <button label="UsuÅ„ wszystkie cele i obiekty" label_selected="UsuÅ„ wszystkie cele i obiekty" name="Delete *ALL* Of Target's Objects" tool_tip="Delete all objects owned by the target in this region. (no copy) objects will be returned."/> + <button label="Główne kolizje" label_selected="Główne kolizje" name="Get Top Colliders" tool_tip="Gets list of objects experiencing the most narrowphase callbacks"/> + <button label="Główne skrypty" label_selected="Główne skrypty" name="Get Top Scripts" tool_tip="Gets list of objects spending the most time running scripts"/> <button label="Treść skryptów" label_selected="Treść skryptów" name="Scripts digest" tool_tip="WyÅ›wietla listÄ™ wszystkich skryptów i liczbÄ™ ich zastosowaÅ„."/> </panel> <panel label="Zażądaj" name="request"> @@ -80,17 +79,17 @@ Cel: </text> <combo_box name="destination"> - <combo_box.item name="item1" label="Selekcja" /> - <combo_box.item name="item2" label="Agent Regionu" /> + <combo_box.item label="Selekcja" name="item1"/> + <combo_box.item label="Agent Regionu" name="item2"/> </combo_box> <text name="Request:"> Żądanie: </text> <combo_box name="request"> - <combo_box.item name="item1" label="kolidery <kroki>" /> - <combo_box.item name="item2" label="skrypty <policz>,<opcjonalnie powtórzenie>" /> - <combo_box.item name="item3" label="obiekty <powtórzenia>" /> - <combo_box.item name="item4" label="rez <asset_id>" /> + <combo_box.item label="kolidery <kroki>" name="item1"/> + <combo_box.item label="skrypty <policz>,<opcjonalnie powtórzenie>" name="item2"/> + <combo_box.item label="obiekty <powtórzenia>" name="item3"/> + <combo_box.item label="rez <asset_id>" name="item4"/> </combo_box> <text name="Parameter:"> Parameter: diff --git a/indra/newview/skins/default/xui/pl/floater_hardware_settings.xml b/indra/newview/skins/default/xui/pl/floater_hardware_settings.xml index 39695a67b6ccf3111e609bbb0ee309f436cd315e..bd5dd7e7d2ed418a2dda65f024e1641d420eb069 100644 --- a/indra/newview/skins/default/xui/pl/floater_hardware_settings.xml +++ b/indra/newview/skins/default/xui/pl/floater_hardware_settings.xml @@ -1,28 +1,28 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Hardware Settings Floater" title="USTAWIENIA SPRZĘTOWE"> <text name="Filtering:"> Filtrowanie: </text> - <check_box label="Filtrowanie Anizotropowe" name="ani" /> + <check_box label="Filtr anizotropowy" name="ani"/> <text name="Antialiasing:"> - Antialiasing: + Antyaliasing: </text> <combo_box label="Antialiasing" name="fsaa" width="84"> - <combo_box.item name="FSAADisabled" label="WyÅ‚Ä…czone" /> - <combo_box.item name="2x" label="2x" /> - <combo_box.item name="4x" label="4x" /> - <combo_box.item name="8x" label="8x" /> - <combo_box.item name="16x" label="16x" /> + <combo_box.item label="WyÅ‚Ä…czone" name="FSAADisabled"/> + <combo_box.item label="2x" name="2x"/> + <combo_box.item label="4x" name="4x"/> + <combo_box.item label="8x" name="8x"/> + <combo_box.item label="16x" name="16x"/> </combo_box> - <spinner label="Gamma:" name="gamma" /> + <spinner label="Gamma:" name="gamma"/> <text name="(brightness, lower is brighter)"> - (jaskrawość, mniej jest jaÅ›niej, 0=domyÅ›lny) + (0=domyÅ›lna jaskrawość, niższa wartość=jaÅ›niej) </text> <text name="Enable VBO:"> WÅ‚Ä…cz VBO: </text> - <check_box label="WÅ‚Ä…cz Bufor Vertexów OpenGL" name="vbo" tool_tip="" /> - <slider label="Pamięć Tekstur (MB):" name="GrapicsCardTextureMemory" tool_tip="" /> - <spinner label="Stosunek Dystansu MgÅ‚y:" name="fog" /> - <button label="OK" label_selected="OK" name="OK" /> + <check_box initial_value="true" label="WÅ‚Ä…cz rozszerzenie OpenGL" name="vbo" tool_tip=""/> + <slider label="Pamięć na tekstury (MB):" name="GraphicsCardTextureMemory" tool_tip="Ilość alokacji pamiÄ™ci dla tekstur. DomyÅ›lne dla karty pamiÄ™ci video. Obniżenie poziomu tych funkcji może polepszyć wydajność systemowÄ… jednak spowoduje zmniejszenie jakoÅ›ci i wyrazistoÅ›ci tekstur."/> + <spinner label="Stosunek dystansu mgÅ‚y:" name="fog"/> + <button label="OK" label_selected="OK" name="OK"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_help_browser.xml b/indra/newview/skins/default/xui/pl/floater_help_browser.xml new file mode 100644 index 0000000000000000000000000000000000000000..dfd5f907e5135e50a93c55229a54c8bdc488d237 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_help_browser.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_help_browser" title="PRZEGLÄ„DARKA POMOCY"> + <floater.string name="loading_text"> + Åadowanie... + </floater.string> + <layout_stack name="stack1"> + <layout_panel name="external_controls"/> + </layout_stack> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_im.xml b/indra/newview/skins/default/xui/pl/floater_im.xml index 67c9d134964088b51d9618cc0fbdaa197d369bb0..e40935ccb7bee20ba8c5c61e2bf957abeb5cad37 100644 --- a/indra/newview/skins/default/xui/pl/floater_im.xml +++ b/indra/newview/skins/default/xui/pl/floater_im.xml @@ -1,7 +1,7 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <multi_floater name="im_floater" title="Wiadomość (IM)"> <string name="only_user_message"> - JesteÅ› jedynÄ… osobÄ… w tej konferencji. + JesteÅ› jedynym uczestnikiem tej konferencji. </string> <string name="offline_message"> [FIRST] [LAST] - ta osoba jest obecnie niedostÄ™pna. @@ -10,7 +10,7 @@ Kliknij na [BUTTON NAME] przycisk by zaakceptować/doÅ‚Ä…czyć do tej rozmowy. </string> <string name="muted_message"> - Ten Rezydent jest przez Ciebie wyciszony. WysyÅ‚anie wiadomoÅ›ci automatycznie wyÅ‚Ä…czy tryb wyciszenia. + ZablokowaÅ‚eÅ› tego Rezydenta. WysÅ‚anie wiadomoÅ›ci automatycznie odblokuje go. </string> <string name="generic_request_error"> BÅ‚Ä…d. Spróbuj ponownie za kilka minut. @@ -31,7 +31,7 @@ Moderator wyciszyÅ‚ CiÄ™. </string> <string name="add_session_event"> - Nie można dodać nikogo do czatu z [RECIPIENT]. + Niemożliwość dodania Rezydentów do tej konferencji z [RECIPIENT]. </string> <string name="message_session_event"> Nie można wysÅ‚ać Twojej wiadomoÅ›ci do sesji czatu z [RECIPIENT]. diff --git a/indra/newview/skins/default/xui/pl/floater_im_container.xml b/indra/newview/skins/default/xui/pl/floater_im_container.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddf0790fa8cb38f84f62a16c51ab398a0cd32f6f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_im_container.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<multi_floater name="floater_im_box" title="ROZMOWY"/> diff --git a/indra/newview/skins/default/xui/pl/floater_im_session.xml b/indra/newview/skins/default/xui/pl/floater_im_session.xml index f4dd7d00e1406b2a83f9402b6bfa608b476107db..db513f787cbb3ad108697ec9614e1217c290a6b2 100644 --- a/indra/newview/skins/default/xui/pl/floater_im_session.xml +++ b/indra/newview/skins/default/xui/pl/floater_im_session.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="panel_im"> <layout_stack name="im_panels"> - <layout_panel label="Panel Kontroli WiadomoÅ›ci Prywatnej (IM)" name="panel_im_control_panel"/> + <layout_panel label="Panel kontroli wiadomoÅ›ci prywatnej (IM)" name="panel_im_control_panel"/> <layout_panel> <line_editor label="Do" name="chat_editor"/> </layout_panel> diff --git a/indra/newview/skins/default/xui/pl/floater_image_preview.xml b/indra/newview/skins/default/xui/pl/floater_image_preview.xml index 27f898a66b2c109a9a093703d8e6fb1fc45f1bf3..a27e8ffed36f32b67cd7a6e29335c378dbf92ada 100644 --- a/indra/newview/skins/default/xui/pl/floater_image_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_image_preview.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Image Preview" title=""> <text name="name_label"> Nazwa: @@ -10,23 +10,23 @@ WyÅ›wietl obraz jako: </text> <combo_box label="Rodzaj Ubrania" name="clothing_type_combo"> - <combo_box.item name="Image" label="Obraz" /> - <combo_box.item name="Hair" label="WÅ‚osy" /> - <combo_box.item name="FemaleHead" label="Damska GÅ‚owa" /> - <combo_box.item name="FemaleUpperBody" label="Damska Górna Część CiaÅ‚a" /> - <combo_box.item name="FemaleLowerBody" label="Damska Górna Część CiaÅ‚a" /> - <combo_box.item name="MaleHead" label="MÄ™ska GÅ‚owa" /> - <combo_box.item name="MaleUpperBody" label="MÄ™ska Górna Część CiaÅ‚a" /> - <combo_box.item name="MaleLowerBody" label="MÄ™ska Dolna Część CiaÅ‚a" /> - <combo_box.item name="Skirt" label="Spódnica" /> - <combo_box.item name="SculptedPrim" label="Sculpt" /> + <combo_box.item label="Obraz" name="Image"/> + <combo_box.item label="WÅ‚osy" name="Hair"/> + <combo_box.item label="Damska gÅ‚owa" name="FemaleHead"/> + <combo_box.item label="Damska górna część ciaÅ‚a" name="FemaleUpperBody"/> + <combo_box.item label="Damska górna część ciaÅ‚a" name="FemaleLowerBody"/> + <combo_box.item label="MÄ™ska gÅ‚owa" name="MaleHead"/> + <combo_box.item label="MÄ™ska górna część ciaÅ‚a" name="MaleUpperBody"/> + <combo_box.item label="MÄ™ska dolna część ciaÅ‚a" name="MaleLowerBody"/> + <combo_box.item label="Spódnica" name="Skirt"/> + <combo_box.item label="Prim sculptowy" name="SculptedPrim"/> </combo_box> <text name="bad_image_text"> Nie można wczytać obrazu. Spróbuj zapisać obraz jako 24 bitowÄ… Targa (.tga). </text> - <check_box label="Użyj kompresji bez strat" name="lossless_check" /> - <button label="Anuluj" name="cancel_btn" /> - <button label="ZaÅ‚aduj ([AMOUNT]L$)" name="ok_btn" /> + <check_box label="Użyj kompresji bez strat" name="lossless_check"/> + <button label="Anuluj" name="cancel_btn"/> + <button label="ZaÅ‚aduj ([AMOUNT]L$)" name="ok_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_incoming_call.xml b/indra/newview/skins/default/xui/pl/floater_incoming_call.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5ec3804aeb1842e030e8f0b7dae8691da14fbd2 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_incoming_call.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="incoming call" title="DZWONI NIEZNANA OSOBA"> + <floater.string name="lifetime"> + 5 + </floater.string> + <floater.string name="localchat"> + Rozmowy gÅ‚osowe w pobliżu + </floater.string> + <floater.string name="anonymous"> + anonimowy + </floater.string> + <floater.string name="VoiceInviteP2P"> + dzwoni. + </floater.string> + <floater.string name="VoiceInviteAdHoc"> + rozpoczÄ…Å‚ rozmowÄ™ gÅ‚osowÄ… w czacie konferencji. + </floater.string> + <floater.string name="VoiceInviteGroup"> + zaczyna rozmowÄ™ z grupÄ… [GROUP]. + </floater.string> + <text name="question"> + Czy chcesz opuÅ›cić [CURRENT_CHAT] i doÅ‚Ä…czyć do tej rozmowy gÅ‚osowej? + </text> + <button label="Zaakceptuj" label_selected="Zaakceptuj" name="Accept"/> + <button label="Odmów" label_selected="Odmów" name="Reject"/> + <button label="Rozpocznij IM" name="Start IM"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_inspect.xml b/indra/newview/skins/default/xui/pl/floater_inspect.xml index c98e0541d82bff7ce598a8d91fb6fab643877958..2c66f2851dab30953a3cc90dcbf72b5cccf9ea0c 100644 --- a/indra/newview/skins/default/xui/pl/floater_inspect.xml +++ b/indra/newview/skins/default/xui/pl/floater_inspect.xml @@ -1,13 +1,14 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="inspect" title="INSPEKCJA OBIEKTÓW"> + <floater.string name="timeStamp"> + [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] + </floater.string> <scroll_list name="object_list" tool_tip=""> - <column label="Nazwa" name="object_name" /> - <column label="WÅ‚aÅ›ciciel" name="owner_name" /> - <column label="Twórca" name="creator_name" /> - <column label="Data Kreacji" name="creation_date" /> + <scroll_list.columns label="Nazwa" name="object_name"/> + <scroll_list.columns label="WÅ‚aÅ›ciciel" name="owner_name"/> + <scroll_list.columns label="Twórca" name="creator_name"/> + <scroll_list.columns label="Data kreacji" name="creation_date"/> </scroll_list> - <button label="Profil WÅ‚aÅ›ciciela..." label_selected="" name="button owner" - tool_tip="" /> - <button label="Profil Twórcy..." label_selected="" name="button creator" - tool_tip="" /> + <button label="Profil WÅ‚aÅ›ciciela..." label_selected="" name="button owner" tool_tip=""/> + <button label="Profil Twórcy..." label_selected="" name="button creator" tool_tip=""/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_inventory.xml b/indra/newview/skins/default/xui/pl/floater_inventory.xml index 157be76c4d5f779b426f5eec62db731444d22c0b..0dc4d5b96d66c84a3372c6f5ca13c897080d19db 100644 --- a/indra/newview/skins/default/xui/pl/floater_inventory.xml +++ b/indra/newview/skins/default/xui/pl/floater_inventory.xml @@ -1,47 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Inventory" title="MOJA SZAFA"> - <search_editor label="Wyszukiwarka" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Wszystkie Obiekty" name="All Items"/> - <inventory_panel label="Nowe Obiekty" name="Recent Items"/> - </tab_container> - <menu_bar name="Inventory Menu"> - <menu label="Plik" name="File"> - <menu_item_call label="Otwórz" name="Open"/> - <menu_item_call label="Nowe Okno" name="New Window"/> - <menu_item_call label="Pokaż Filtr" name="Show Filters"/> - <menu_item_call label="Zresetuj Filtr" name="Reset Current"/> - <menu_item_call label="Zamknij Wszystkie Foldery" name="Close All Folders"/> - <menu_item_call label="Opróżnij Kosz" name="Empty Trash"/> - </menu> - <menu label="Stwórz" name="Create"> - <menu_item_call label="Nowy Folder" name="New Folder"/> - <menu_item_call label="Nowy Skrypt" name="New Script"/> - <menu_item_call label="NowÄ… NotÄ™" name="New Note"/> - <menu_item_call label="Nowy Gest" name="New Gesture"/> - <menu name="New Clothes"> - <menu_item_call label="Nowa Koszula" name="New Shirt"/> - <menu_item_call label="Nowe Spodnie" name="New Pants"/> - <menu_item_call label="Nowe Buty" name="New Shoes"/> - <menu_item_call label="Nowe Skarpety" name="New Socks"/> - <menu_item_call label="Nowa Kurtka" name="New Jacket"/> - <menu_item_call label="Nowa Spódnica" name="New Skirt"/> - <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves"/> - <menu_item_call label="Nowy Podkoszulek" name="New Undershirt"/> - <menu_item_call label="Nowa Bielizna" name="New Underpants"/> - </menu> - <menu name="New Body Parts"> - <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape"/> - <menu_item_call label="NowÄ… SkórkÄ™" name="New Skin"/> - <menu_item_call label="Nowe WÅ‚osy" name="New Hair"/> - <menu_item_call label="Nowe Oczy" name="New Eyes"/> - </menu> - </menu> - <menu label="PorzÄ…dkuj" name="Sort"> - <menu_item_check label="WedÅ‚ug Nazwy" name="By Name"/> - <menu_item_check label="WedÅ‚ug Daty" name="By Date"/> - <menu_item_check label="Foldery Zawsze WedÅ‚ug Nazwy" name="Folders Always By Name"/> - <menu_item_check label="UÅ‚ożenie Folderów od Góry" name="System Folders To Top"/> - </menu> - </menu_bar> + <floater.string name="Title"> + MOJA SZAFA + </floater.string> + <floater.string name="TitleFetching"> + MOJA SZAFA (Dostarczanie [ITEM_COUNT] obiektów...) [FILTER] + </floater.string> + <floater.string name="TitleCompleted"> + MOJA SZAFA ([ITEM_COUNT] Obiektów) [FILTER] + </floater.string> + <floater.string name="Fetched"> + Dostarczono + </floater.string> + <panel label="Panel Moja Szafa" name="Inventory Panel"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_inventory_item_properties.xml b/indra/newview/skins/default/xui/pl/floater_inventory_item_properties.xml index 665172dd49a589c7c30c61c3516d2143dc2c0889..1e63987585f816905c2a92555d30540899266a76 100644 --- a/indra/newview/skins/default/xui/pl/floater_inventory_item_properties.xml +++ b/indra/newview/skins/default/xui/pl/floater_inventory_item_properties.xml @@ -1,5 +1,20 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="item properties" title="WÅAÅšCIWOÅšCI OBIEKTÓW W SZAFIE"> + <floater.string name="unknown"> + (nieznany) + </floater.string> + <floater.string name="public"> + (publiczny) + </floater.string> + <floater.string name="you_can"> + Opcje: + </floater.string> + <floater.string name="owner_can"> + WÅ‚aÅ›ciciel może: + </floater.string> + <floater.string name="acquiredDate"> + [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] + </floater.string> <text name="LabelItemNameTitle"> Nazwa: </text> @@ -12,14 +27,14 @@ <text name="LabelCreatorName"> Nicole Linden </text> - <button label="Profil..." label_selected="" name="BtnCreator" /> + <button label="Profil..." label_selected="" name="BtnCreator"/> <text name="LabelOwnerTitle"> WÅ‚aÅ›ciciel: </text> <text name="LabelOwnerName"> Thrax Linden </text> - <button label="Profil..." label_selected="" name="BtnOwner" /> + <button label="Profil..." label_selected="" name="BtnOwner"/> <text name="LabelAcquiredTitle"> Nabyte: </text> @@ -27,55 +42,32 @@ Wed May 24 12:50:46 2006 </text> <text name="OwnerLabel"> - Opcje: - </text> - <check_box label="Modyfikuj" name="CheckOwnerModify" /> - <check_box label="Kopiuj" name="CheckOwnerCopy" /> - <check_box label="Sprzedaj/Oddaj" name="CheckOwnerTransfer" /> - <text name="BaseMaskDebug"> - P: - </text> - <text name="OwnerMaskDebug"> - W: + Ty: </text> - <text name="GroupMaskDebug"> - G: + <check_box label="Edytuj" name="CheckOwnerModify"/> + <check_box label="Kopiuj" name="CheckOwnerCopy"/> + <check_box label="Odsprzedaż" name="CheckOwnerTransfer"/> + <text name="AnyoneLabel"> + Każdy: </text> - <text name="EveryoneMaskDebug"> - W: + <check_box label="Kopiuj" name="CheckEveryoneCopy"/> + <text name="GroupLabel"> + Grupa: </text> - <text name="NextMaskDebug"> - N: - </text> - <check_box label="UdostÄ™pnij grupie" name="CheckShareWithGroup" /> - <check_box label="UdostÄ™pnij kopiowanie każdemu" name="CheckEveryoneCopy" /> + <check_box label="UdostÄ™pnij" name="CheckShareWithGroup"/> <text name="NextOwnerLabel"> - NastÄ™pna Osoba: - </text> - <check_box label="Modyfikuje" name="CheckNextOwnerModify" /> - <check_box label="Kopiuje" name="CheckNextOwnerCopy" /> - <check_box label="Sprzedaje/Oddaje" name="CheckNextOwnerTransfer" /> - <text name="SaleLabel"> - Zaznacz ArtykuÅ‚: + NastÄ™pny wÅ‚aÅ›ciciel: + </text> + <check_box label="Edytuj" name="CheckNextOwnerModify"/> + <check_box label="Kopiuje" name="CheckNextOwnerCopy"/> + <check_box label="Odsprzedaż" name="CheckNextOwnerTransfer"/> + <check_box label="Sprzedaż" name="CheckPurchase"/> + <combo_box name="combobox sale copy"> + <combo_box.item label="Kopiuj" name="Copy"/> + <combo_box.item label="Oryginalny" name="Original"/> + </combo_box> + <spinner label="Cena:" name="Edit Cost"/> + <text name="CurrencySymbol"> + L$ </text> - <check_box label="Sprzedaż" name="CheckPurchase" /> - <radio_group name="RadioSaleType"> - <radio_item name="radio" label="OryginaÅ‚" /> - <radio_item name="radio2" label="Kopia" /> - </radio_group> - <text name="TextPrice"> - Cena: L$ - </text> - <string name="unknown"> - (nieznany) - </string> - <string name="public"> - (publiczny) - </string> - <string name="you_can"> - Opcje: - </string> - <string name="owner_can"> - WÅ‚aÅ›ciciel może: - </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_inventory_view_finder.xml b/indra/newview/skins/default/xui/pl/floater_inventory_view_finder.xml index 9204262304d0a24240645e571bfd887e501d1135..bd7b221c5d68c67c5f352bcbe719b06366196b6a 100644 --- a/indra/newview/skins/default/xui/pl/floater_inventory_view_finder.xml +++ b/indra/newview/skins/default/xui/pl/floater_inventory_view_finder.xml @@ -4,7 +4,7 @@ <check_box label="Wizytówki" name="check_calling_card" /> <check_box label="Ubrania" name="check_clothing" /> <check_box label="Gesty" name="check_gesture" /> - <check_box label="ZakÅ‚adki Miejsc" name="check_landmark" /> + <check_box label="Landmarki" name="check_landmark" /> <check_box label="Noty" name="check_notecard" /> <check_box label="Obiekty" name="check_object" /> <check_box label="Skrypty" name="check_script" /> diff --git a/indra/newview/skins/default/xui/pl/floater_joystick.xml b/indra/newview/skins/default/xui/pl/floater_joystick.xml index 22ac458b85d3cbebad9a5b6dd7d597d574c556b0..78742c39d1dc13667835f531574f6b6f602ad14c 100644 --- a/indra/newview/skins/default/xui/pl/floater_joystick.xml +++ b/indra/newview/skins/default/xui/pl/floater_joystick.xml @@ -1,110 +1,110 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Joystick" width="590" title="KONFIGURACJA JOYSTICKA"> - <check_box name="enable_joystick" label="Aktywuj Joystick:"/> +<floater name="Joystick" title="KONFIGURACJA JOYSTICKA" width="590"> + <check_box label="Aktywuj Joystick:" name="enable_joystick"/> <text left="130" name="joystick_type" width="360"/> - <spinner label="Kalibracja Osi X" left="20" width="170" label_width="130" name="JoystickAxis1"/> - <spinner label="Kalibracja Osi Y" left="210" width="170" label_width="130" name="JoystickAxis2" /> - <spinner label="Kalibracja Osi Z" left="400" width="170" label_width="130" name="JoystickAxis0" /> - <spinner label="Kalibracja Wznoszenia" left="20" width="170" label_width="130" name="JoystickAxis4" /> - <spinner label="Kalibracja Wychylania" left="210" width="170" label_width="130" name="JoystickAxis5" /> - <spinner label="Kalibracja Obrotu" left="400" width="170" label_width="130" name="JoystickAxis3"/> - <spinner label="Kalibracja PowiÄ™kszania" width="170" label_width="130" name="JoystickAxis6" /> - <check_box label="BezpoÅ›rednie" left="205" name="ZoomDirect" /> - <check_box label="Kursor 3D" left="340" name="Cursor3D" /> - <check_box label="Automatyczne" left="450" name="AutoLeveling" /> - <text left="22" name="Control Modes:"> + <spinner label="Kalibracja Osi X" label_width="130" left="20" name="JoystickAxis1" width="170"/> + <spinner label="Kalibracja Osi Y" label_width="130" left="210" name="JoystickAxis2" width="170"/> + <spinner label="Kalibracja Osi Z" label_width="130" left="400" name="JoystickAxis0" width="170"/> + <spinner label="Kalibracja wznoszenia" label_width="130" left="20" name="JoystickAxis4" width="170"/> + <spinner label="Kalibracja wychylania" label_width="130" left="210" name="JoystickAxis5" width="170"/> + <spinner label="Kalibracja obrotu" label_width="130" left="400" name="JoystickAxis3" width="170"/> + <spinner label="Kalibracja powiÄ™kszania" label_width="130" name="JoystickAxis6" width="170"/> + <check_box label="BezpoÅ›rednie" left="205" name="ZoomDirect"/> + <check_box label="Kursor 3D" left="340" name="Cursor3D"/> + <check_box label="Automatyczne" left="450" name="AutoLeveling"/> + <text left="22" name="Control Modes:"> Kontroluj: </text> - <check_box left="130" width="90" name="JoystickAvatarEnabled" label="Awatara"/> - <check_box left="205" width="90" name="JoystickBuildEnabled" label="Budowanie"/> - <check_box left="282" width="90" name="JoystickFlycamEnabled" label="KamerÄ™ podczas latania"/> - <text width="104" name="XScale"> + <check_box label="Awatara" left="130" name="JoystickAvatarEnabled" width="90"/> + <check_box label="Budowanie" left="205" name="JoystickBuildEnabled" width="90"/> + <check_box label="KamerÄ™ podczas latania" left="282" name="JoystickFlycamEnabled" width="90"/> + <text name="XScale" width="104"> Skala X </text> - <spinner left="133" name="AvatarAxisScale1" /> - <spinner left="208" name="BuildAxisScale1" /> - <spinner left="283" name="FlycamAxisScale1" /> - <text width="104" name="YScale"> + <spinner left="133" name="AvatarAxisScale1"/> + <spinner left="208" name="BuildAxisScale1"/> + <spinner left="283" name="FlycamAxisScale1"/> + <text name="YScale" width="104"> Skala Y </text> - <spinner left="133" name="AvatarAxisScale2" /> - <spinner left="208" name="BuildAxisScale2" /> - <spinner left="283" name="FlycamAxisScale2" /> - <text width="104" name="ZScale"> + <spinner left="133" name="AvatarAxisScale2"/> + <spinner left="208" name="BuildAxisScale2"/> + <spinner left="283" name="FlycamAxisScale2"/> + <text name="ZScale" width="104"> Skala Z </text> - <spinner left="133" name="AvatarAxisScale0" /> - <spinner left="208" name="BuildAxisScale0" /> - <spinner left="283" name="FlycamAxisScale0" /> - <text width="104" name="PitchScale"> - Skala Wznoszenia - </text> - <spinner left="133" name="AvatarAxisScale4" /> - <spinner left="208" name="BuildAxisScale4" /> - <spinner left="283" name="FlycamAxisScale4" /> - <text width="104" name="YawScale"> - Skala Odchylania - </text> - <spinner left="133" name="AvatarAxisScale5" /> - <spinner left="208" name="BuildAxisScale5" /> - <spinner left="283" name="FlycamAxisScale5" /> - <text width="104" name="RollScale"> - Skala Obrotu - </text> - <spinner left="208" name="BuildAxisScale3" /> - <spinner left="283" name="FlycamAxisScale3" /> - <text width="104" name="XDeadZone"> - Tolerancja Osi X - </text> - <spinner left="133" name="AvatarAxisDeadZone1" /> - <spinner left="208" name="BuildAxisDeadZone1" /> - <spinner left="283" name="FlycamAxisDeadZone1" /> - <text width="104" name="YDeadZone"> - Tolerancja Osi Y - </text> - <spinner left="133" name="AvatarAxisDeadZone2" /> - <spinner left="208" name="BuildAxisDeadZone2" /> - <spinner left="283" name="FlycamAxisDeadZone2" /> - <text width="104" name="ZDeadZone"> - Tolerancja Osi Z - </text> - <spinner left="133" name="AvatarAxisDeadZone0" /> - <spinner left="208" name="BuildAxisDeadZone0" /> - <spinner left="283" name="FlycamAxisDeadZone0" /> - <text width="104" name="PitchDeadZone"> - Tolerancja Wznoszenia - </text> - <spinner left="133" name="AvatarAxisDeadZone4" /> - <spinner left="208" name="BuildAxisDeadZone4" /> - <spinner left="283" name="FlycamAxisDeadZone4" /> - <text width="104" name="YawDeadZone"> - Tolerancja Odchylania - </text> - <spinner left="133" name="AvatarAxisDeadZone5" /> - <spinner left="208" name="BuildAxisDeadZone5" /> - <spinner left="283" name="FlycamAxisDeadZone5" /> - <text width="104" name="RollDeadZone"> - Tolerancja Obrotu - </text> - <spinner left="208" name="BuildAxisDeadZone3" /> - <spinner left="283" name="FlycamAxisDeadZone3" /> - <text width="104" name="Feathering"> + <spinner left="133" name="AvatarAxisScale0"/> + <spinner left="208" name="BuildAxisScale0"/> + <spinner left="283" name="FlycamAxisScale0"/> + <text name="PitchScale" width="104"> + Skala wznoszenia + </text> + <spinner left="133" name="AvatarAxisScale4"/> + <spinner left="208" name="BuildAxisScale4"/> + <spinner left="283" name="FlycamAxisScale4"/> + <text name="YawScale" width="104"> + Skala odchylania + </text> + <spinner left="133" name="AvatarAxisScale5"/> + <spinner left="208" name="BuildAxisScale5"/> + <spinner left="283" name="FlycamAxisScale5"/> + <text name="RollScale" width="104"> + Skala obrotu + </text> + <spinner left="208" name="BuildAxisScale3"/> + <spinner left="283" name="FlycamAxisScale3"/> + <text name="XDeadZone" width="104"> + Tolerancja osi X + </text> + <spinner left="133" name="AvatarAxisDeadZone1"/> + <spinner left="208" name="BuildAxisDeadZone1"/> + <spinner left="283" name="FlycamAxisDeadZone1"/> + <text name="YDeadZone" width="104"> + Tolerancja osi Y + </text> + <spinner left="133" name="AvatarAxisDeadZone2"/> + <spinner left="208" name="BuildAxisDeadZone2"/> + <spinner left="283" name="FlycamAxisDeadZone2"/> + <text name="ZDeadZone" width="104"> + Tolerancja osi Z + </text> + <spinner left="133" name="AvatarAxisDeadZone0"/> + <spinner left="208" name="BuildAxisDeadZone0"/> + <spinner left="283" name="FlycamAxisDeadZone0"/> + <text name="PitchDeadZone" width="104"> + Tolerancja wznoszenia + </text> + <spinner left="133" name="AvatarAxisDeadZone4"/> + <spinner left="208" name="BuildAxisDeadZone4"/> + <spinner left="283" name="FlycamAxisDeadZone4"/> + <text name="YawDeadZone" width="104"> + Tolerancja odchylania + </text> + <spinner left="133" name="AvatarAxisDeadZone5"/> + <spinner left="208" name="BuildAxisDeadZone5"/> + <spinner left="283" name="FlycamAxisDeadZone5"/> + <text name="RollDeadZone" width="104"> + Tolerancja obrotu + </text> + <spinner left="208" name="BuildAxisDeadZone3"/> + <spinner left="283" name="FlycamAxisDeadZone3"/> + <text name="Feathering" width="104"> Przenikanie </text> - <slider left="125" label="" name="AvatarFeathering" /> - <slider left="200" label="" name="BuildFeathering" /> - <slider left="275" label="" name="FlycamFeathering" /> - <text width="104" name="ZoomScale2"> - Skala PowiÄ™kszania + <slider label="" left="125" name="AvatarFeathering"/> + <slider label="" left="200" name="BuildFeathering"/> + <slider label="" left="275" name="FlycamFeathering"/> + <text name="ZoomScale2" width="104"> + Skala powiÄ™kszania </text> - <spinner left="283" label="" name="FlycamAxisScale6" /> - <text width="104" name="ZoomDeadZone"> - Tolerancja PowiÄ™kszania + <spinner label="" left="283" name="FlycamAxisScale6"/> + <text name="ZoomDeadZone" width="104"> + Tolerancja powiÄ™kszania </text> - <spinner left="283" label="" name="FlycamAxisDeadZone6" /> - <button left="366" label="Ustawienia DomyÅ›lne" name="SpaceNavigatorDefaults" /> - <button left="366" label="OK" label_selected="OK" name="ok_btn" /> - <button label="Anuluj" label_selected="Anuluj" name="cancel_btn" /> + <spinner label="" left="283" name="FlycamAxisDeadZone6"/> + <button label="Ustawienia domyÅ›lne" left="366" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" left="366" name="ok_btn"/> + <button label="Anuluj" label_selected="Anuluj" name="cancel_btn"/> <stat_view label="Monitor Joysticka" name="axis_view"> <stat_bar label="OÅ› 0" name="axis0"/> <stat_bar label="OÅ› 1" name="axis1"/> @@ -113,7 +113,7 @@ <stat_bar label="OÅ› 4" name="axis4"/> <stat_bar label="OÅ› 5" name="axis5"/> </stat_view> - <string name="NoDevice"> + <string name="NoDevice"> brak podÅ‚Ä…cznego urzÄ…dzenia </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_lagmeter.xml b/indra/newview/skins/default/xui/pl/floater_lagmeter.xml index 69d563bdbabdbf297d5d7f860d1df4f714e55be2..8038550bcb30637ac063dfd4edf0ea17ae6dd2d0 100644 --- a/indra/newview/skins/default/xui/pl/floater_lagmeter.xml +++ b/indra/newview/skins/default/xui/pl/floater_lagmeter.xml @@ -1,154 +1,151 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_lagmeter" title="POMIAR LAGÓW"> - <button label="" label_selected="" name="client_lagmeter" - tool_tip="Status lagów klienta" /> - <text name="client"> - Klient: - </text> - <text name="client_text"> - W normie - </text> - <button label="" label_selected="" name="network_lagmeter" - tool_tip="Network lag status" /> - <text name="network"> - Sieć: - </text> - <text name="network_text"> - W normie - </text> - <button label="" label_selected="" name="server_lagmeter" tool_tip="Server lag status" /> - <text name="server"> - Serwer: - </text> - <text name="server_text"> - W normie - </text> - <button label="?" name="server_help" /> - <button label=">>" name="minimize" /> - <string name="max_title_msg"> - Pomiar Lagów - </string> - <string name="max_width_px"> + <floater.string name="max_title_msg"> + Pomiar lagów + </floater.string> + <floater.string name="max_width_px"> 360 - </string> - <string name="min_title_msg"> + </floater.string> + <floater.string name="min_title_msg"> Lag - </string> - <string name="min_width_px"> + </floater.string> + <floater.string name="min_width_px"> 90 - </string> - <string name="client_text_msg"> + </floater.string> + <floater.string name="client_text_msg"> Klient - </string> - <string name="client_frame_rate_critical_fps"> + </floater.string> + <floater.string name="client_frame_rate_critical_fps"> 10 - </string> - <string name="client_frame_rate_warning_fps"> + </floater.string> + <floater.string name="client_frame_rate_warning_fps"> 15 - </string> - <string name="client_frame_time_window_bg_msg"> + </floater.string> + <floater.string name="client_frame_time_window_bg_msg"> W normie, okno w tle - </string> - <string name="client_frame_time_critical_msg"> + </floater.string> + <floater.string name="client_frame_time_critical_msg"> Ilość klatek na sekundÄ™ klienta poniżej [CLIENT_FRAME_RATE_CRITICAL] - </string> - <string name="client_frame_time_warning_msg"> + </floater.string> + <floater.string name="client_frame_time_warning_msg"> Ilość klatek na sekundÄ™ pomiÄ™dzy [CLIENT_FRAME_RATE_CRITICAL] i [CLIENT_FRAME_RATE_WARNING] - </string> - <string name="client_frame_time_normal_msg"> + </floater.string> + <floater.string name="client_frame_time_normal_msg"> W normie - </string> - <string name="client_draw_distance_cause_msg"> - Przyczyna: Dystans rysowania jest za wysoki - </string> - <string name="client_texture_loading_cause_msg"> - Przyczyna: Åadowanie obrazu - </string> - <string name="client_texture_memory_cause_msg"> - Przyczyna: Za dużo obrazów w pamiÄ™ci - </string> - <string name="client_complex_objects_cause_msg"> - Przyczyna: Za dużo zÅ‚ożonych obiektów - </string> - <string name="network_text_msg"> + </floater.string> + <floater.string name="client_draw_distance_cause_msg"> + Przyczyna: dystans rysowania jest za wysoki + </floater.string> + <floater.string name="client_texture_loading_cause_msg"> + Przyczyna: Å‚adowanie obrazu + </floater.string> + <floater.string name="client_texture_memory_cause_msg"> + Przyczyna: za dużo obrazów w pamiÄ™ci + </floater.string> + <floater.string name="client_complex_objects_cause_msg"> + Przyczyna: za dużo zÅ‚ożonych obiektów + </floater.string> + <floater.string name="network_text_msg"> Sieć - </string> - <string name="network_packet_loss_critical_pct"> + </floater.string> + <floater.string name="network_packet_loss_critical_pct"> 10 - </string> - <string name="network_packet_loss_warning_pct"> + </floater.string> + <floater.string name="network_packet_loss_warning_pct"> 5 - </string> - <string name="network_packet_loss_critical_msg"> + </floater.string> + <floater.string name="network_packet_loss_critical_msg"> Utrata pakietów przekracza [NETWORK_PACKET_LOSS_CRITICAL]% - </string> - <string name="network_packet_loss_warning_msg"> + </floater.string> + <floater.string name="network_packet_loss_warning_msg"> Utrata pakietów przekracza [NETWORK_PACKET_LOSS_WARNING]%-[NETWORK_PACKET_LOSS_CRITICAL]% - </string> - <string name="network_performance_normal_msg"> + </floater.string> + <floater.string name="network_performance_normal_msg"> W normie - </string> - <string name="network_ping_critical_ms"> + </floater.string> + <floater.string name="network_ping_critical_ms"> 600 - </string> - <string name="network_ping_warning_ms"> + </floater.string> + <floater.string name="network_ping_warning_ms"> 300 - </string> - <string name="network_ping_critical_msg"> + </floater.string> + <floater.string name="network_ping_critical_msg"> Fatalny ping - [NETWORK_PING_CRITICAL] ms - </string> - <string name="network_ping_warning_msg"> + </floater.string> + <floater.string name="network_ping_warning_msg"> Wolny ping - [NETWORK_PING_WARNING]-[NETWORK_PING_CRITICAL] ms - </string> - <string name="network_packet_loss_cause_msg"> + </floater.string> + <floater.string name="network_packet_loss_cause_msg"> ZÅ‚e poÅ‚Ä…czenie lub przepustowość. - </string> - <string name="network_ping_cause_msg"> + </floater.string> + <floater.string name="network_ping_cause_msg"> ZÅ‚e poÅ‚Ä…czenie lub aplikacja współdzielÄ…ca pliki. - </string> - <string name="server_text_msg"> + </floater.string> + <floater.string name="server_text_msg"> Serwer - </string> - <string name="server_frame_rate_critical_fps"> + </floater.string> + <floater.string name="server_frame_rate_critical_fps"> 20 - </string> - <string name="server_frame_rate_warning_fps"> + </floater.string> + <floater.string name="server_frame_rate_warning_fps"> 30 - </string> - <string name="server_single_process_max_time_ms"> + </floater.string> + <floater.string name="server_single_process_max_time_ms"> 20 - </string> - <string name="server_frame_time_critical_msg"> + </floater.string> + <floater.string name="server_frame_time_critical_msg"> Ilość klatek na sekundÄ™ poniżej [SERVER_FRAME_RATE_CRITICAL] - </string> - <string name="server_frame_time_warning_msg"> + </floater.string> + <floater.string name="server_frame_time_warning_msg"> Ilość klatek na sekundÄ™ pomiÄ™dzy [SERVER_FRAME_RATE_CRITICAL] i [SERVER_FRAME_RATE_WARNING] - </string> - <string name="server_frame_time_normal_msg"> + </floater.string> + <floater.string name="server_frame_time_normal_msg"> W normie - </string> - <string name="server_physics_cause_msg"> - Przyczyna: Za dużo obiektów fizycznych - </string> - <string name="server_scripts_cause_msg"> - Przyczyna: Za dużo obieków skryptowanych - </string> - <string name="server_net_cause_msg"> - Przyczyna: Za duży ruch w sieci - </string> - <string name="server_agent_cause_msg"> - Przyczyna: Za dużo poruszajÄ…cych siÄ™ awatarów w regionie - </string> - <string name="server_images_cause_msg"> - Przyczyna: Za dużo kalkulacji obrazu - </string> - <string name="server_generic_cause_msg"> - Przyczyna: Symulator Å‚aduje siÄ™ zbyt powoli - </string> - <string name="smaller_label"> + </floater.string> + <floater.string name="server_physics_cause_msg"> + Przyczyna: za dużo obiektów fizycznych + </floater.string> + <floater.string name="server_scripts_cause_msg"> + Przyczyna: za dużo obieków skryptowanych + </floater.string> + <floater.string name="server_net_cause_msg"> + Przyczyna: za duży ruch w sieci + </floater.string> + <floater.string name="server_agent_cause_msg"> + Przyczyna: za dużo poruszajÄ…cych siÄ™ awatarów w regionie + </floater.string> + <floater.string name="server_images_cause_msg"> + Przyczyna: za dużo kalkulacji obrazu + </floater.string> + <floater.string name="server_generic_cause_msg"> + Przyczyna: symulator Å‚aduje siÄ™ zbyt powoli + </floater.string> + <floater.string name="smaller_label"> >> - </string> - <string name="bigger_label"> + </floater.string> + <floater.string name="bigger_label"> << - </string> + </floater.string> + <button label="" label_selected="" name="client_lagmeter" tool_tip="Status lagów klienta"/> + <text name="client"> + Klient + </text> + <text name="client_text"> + W normie + </text> + <button label="" label_selected="" name="network_lagmeter" tool_tip="Network lag status"/> + <text name="network"> + Sieć + </text> + <text name="network_text"> + W normie + </text> + <button label="" label_selected="" name="server_lagmeter" tool_tip="Server lag status"/> + <text name="server"> + Serwer + </text> + <text name="server_text"> + W normie + </text> + <button label=">>" name="minimize" tool_tip="ZÅ‚Ä…cz rozmiar pliku xml"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_land_holdings.xml b/indra/newview/skins/default/xui/pl/floater_land_holdings.xml index 13e6a8b16de737dbcd1374fe416f7858975f4d25..72a078949a8823deb8144e2dc6041ea5a7b65b57 100644 --- a/indra/newview/skins/default/xui/pl/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/pl/floater_land_holdings.xml @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="MOJA POSIADÅOŚĆ"> <scroll_list name="parcel list"> - <column label="Nazwa posiadÅ‚oÅ›ci" name="name"/> + <column label="PosiadÅ‚ość" name="name"/> <column label="Region" name="location"/> <column label="Typ" name="type"/> <column label="Obszar" name="area"/> <column label="" name="hidden"/> </scroll_list> <button label="Teleportuj" label_selected="Teleport" name="Teleport" tool_tip="Teleportuj siÄ™ do centrum tej PosiadÅ‚oÅ›ci."/> - <button label="Pokaż na Mapie" label_selected="Pokaż na mapie" name="Show on Map" tool_tip="Pokaż to miejsce na mapie Å›wiata."/> + <button label="Mapa" label_selected="Mapa" name="Show on Map" tool_tip="Pokaż to miejsce na mapie Å›wiata."/> <text name="contrib_label"> Kontrybucje do Twoich Grup: </text> @@ -20,21 +20,21 @@ Dozwolone udziaÅ‚y przy obecnym planie pÅ‚atnoÅ›ci: </text> <text name="allowed_text"> - [AREA] metrów + [AREA] m² </text> <text name="current_label"> UdziaÅ‚y w PosiadÅ‚oÅ›ciach: </text> <text name="current_text"> - [AREA] metrów + [AREA] m² </text> <text name="available_label"> DostÄ™pne na zakup PosiadÅ‚oÅ›ci: </text> <text name="available_text"> - [AREA] metrów + [AREA] m² </text> <string name="area_string"> - [AREA] metrów + [AREA] m² </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_lsl_guide.xml b/indra/newview/skins/default/xui/pl/floater_lsl_guide.xml index 5601aa44649cd4f80950e80049da2dec50cf6f8e..7b1b395f8712647c79e1ab6fa605bfc20e788c20 100644 --- a/indra/newview/skins/default/xui/pl/floater_lsl_guide.xml +++ b/indra/newview/skins/default/xui/pl/floater_lsl_guide.xml @@ -1,7 +1,7 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="script ed float" title="LSL WIKI"> - <check_box label="Idź za kursorem" name="lock_check" /> - <combo_box label="Zablokuj" name="history_combo" /> - <button label="Wróć" name="back_btn" /> - <button label="Do Przodu" name="fwd_btn" /> + <check_box label="Idź za kursorem" name="lock_check"/> + <combo_box label="Zablokuj" name="history_combo"/> + <button label="Wróć" name="back_btn"/> + <button label="Do przodu" name="fwd_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_map.xml b/indra/newview/skins/default/xui/pl/floater_map.xml index 6eabde7c5223ec6a284dc1d72f5c9c58a7070c5b..1e5f3e6d46903e1eb0f3270ae53c1504b9365d1b 100644 --- a/indra/newview/skins/default/xui/pl/floater_map.xml +++ b/indra/newview/skins/default/xui/pl/floater_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Map"> +<floater name="Map" title="Mini-Mapa"> <floater.string name="mini_map_north"> N </floater.string> diff --git a/indra/newview/skins/default/xui/pl/floater_media_browser.xml b/indra/newview/skins/default/xui/pl/floater_media_browser.xml index 74210c75e59a5e15a4be92bd05da0557739d0525..9787736ad8f11b255fff8c0179749f2bd7a4b294 100644 --- a/indra/newview/skins/default/xui/pl/floater_media_browser.xml +++ b/indra/newview/skins/default/xui/pl/floater_media_browser.xml @@ -1,19 +1,19 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_about" title="PRZEGLÄ„DARKA MEDIÓW"> <layout_stack name="stack1"> <layout_panel name="nav_controls"> - <button label="Wróć" name="back" /> - <button label="Do Przodu" name="forward" /> - <button label="ZaÅ‚aduj" name="reload" /> - <button label="Idź" name="go" /> + <button label="Wróć" name="back"/> + <button label="Do przodu" name="forward"/> + <button label="ZaÅ‚aduj" name="reload"/> + <button label="Idź" name="go"/> </layout_panel> <layout_panel name="parcel_owner_controls"> - <button label="WyÅ›lij Obecny URL do PosiadÅ‚oÅ›ci" name="assign" /> + <button label="WyÅ›lij bieżącÄ… stronÄ™ do Parceli" name="assign"/> </layout_panel> <layout_panel name="external_controls"> - <button label="Użyj Mojej PrzeglÄ…darki" name="open_browser" /> - <check_box label="Zawsze otwieraj w mojej przeglÄ…darce internetowej" name="open_always" /> - <button label="Zamknij" name="close" /> + <button label="Użyj mojej przeglÄ…darki" name="open_browser"/> + <check_box label="Zawsze otwieraj w mojej przeglÄ…darce internetowej" name="open_always"/> + <button label="Zamknij" name="close"/> </layout_panel> </layout_stack> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_media_settings.xml b/indra/newview/skins/default/xui/pl/floater_media_settings.xml new file mode 100644 index 0000000000000000000000000000000000000000..5a36331c9aab75aa3ed97a91685c4dd6a7239da4 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_media_settings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="media_settings" title="MEDIA"> + <button label="OK" label_selected="OK" name="OK"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <button label="Zastosuj" label_selected="Zastosuj" name="Apply"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_mem_leaking.xml b/indra/newview/skins/default/xui/pl/floater_mem_leaking.xml index 87d74f6c1597f9f31ac54d37ab41b5c520030fcb..9ce99692d094473c1fd8b6c455515af4b20b0c39 100644 --- a/indra/newview/skins/default/xui/pl/floater_mem_leaking.xml +++ b/indra/newview/skins/default/xui/pl/floater_mem_leaking.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="MemLeak" title="STYMULACJA WYCIEKU PAMIĘCI"> - <spinner label="PrÄ™dkość Przecieków (byty na klatkÄ™):" name="leak_speed"/> - <spinner label="Max Przecieki (MB):" name="max_leak"/> + <spinner label="PrÄ™dkość przecieków (byty na klatkÄ™):" name="leak_speed"/> + <spinner label="Max przecieki (MB):" name="max_leak"/> <text name="total_leaked_label"> PrzeciekÅ‚o: [SIZE] KB </text> diff --git a/indra/newview/skins/default/xui/pl/floater_moveview.xml b/indra/newview/skins/default/xui/pl/floater_moveview.xml index e28cfd589dfb65fb2702a20c93432d50b89311d1..9c97a8a0e7dcd4d2ef05060f93277f2c80cf9366 100644 --- a/indra/newview/skins/default/xui/pl/floater_moveview.xml +++ b/indra/newview/skins/default/xui/pl/floater_moveview.xml @@ -1,15 +1,43 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="move_floater"> -<panel name="panel_actions"> - <button label="" label_selected="" name="turn left btn" tool_tip="Obróć w lewo" /> - <button label="" label_selected="" name="turn right btn" tool_tip="Obroć w Prawo" /> - <button label="" label_selected="" name="move up btn" - tool_tip="Skocz lub zacznij latać w górÄ™" /> - <button label="" label_selected="" name="move down btn" - tool_tip="Pochyl siÄ™ lub zacznij latać w dół" /> - <joystick_slide name="slide left btn" tool_tip="PrzesuÅ„ w lewo" /> - <joystick_slide name="slide right btn" tool_tip="PrzesuÅ„ w prawo" /> - <joystick_turn name="forward btn" tool_tip="PrzesuÅ„ do przodu" /> - <joystick_turn name="backward btn" tool_tip="PrzesuÅ„ do tyÅ‚u" /> -</panel> + <string name="walk_forward_tooltip"> + Idź (naciÅ›nij StrzaÅ‚kÄ™ w GórÄ™ lub W) + </string> + <string name="walk_back_tooltip"> + Idź do tyÅ‚u (naciÅ›nij StrzaÅ‚kÄ™ w Dół lub S) + </string> + <string name="run_forward_tooltip"> + Biegnij do przodu (naciÅ›nij StrzaÅ‚kÄ™ w GórÄ™ lub W) + </string> + <string name="run_back_tooltip"> + Biegnij do przodu (naciÅ›nij StrzaÅ‚kÄ™ w Dół lub S) + </string> + <string name="fly_forward_tooltip"> + Leć do przodu (naciÅ›nij StrzaÅ‚kÄ™ w GórÄ™ lub W) + </string> + <string name="fly_back_tooltip"> + Leć do tyÅ‚u (naciÅ›nij StrzaÅ‚kÄ™ na Dół lub S) + </string> + <string name="walk_title"> + Idź + </string> + <string name="run_title"> + Biegnij + </string> + <string name="fly_title"> + Lataj + </string> + <panel name="panel_actions"> + <button label="" label_selected="" name="turn left btn" tool_tip="Obróć w lewo (naciÅ›nij LewÄ… StrzaÅ‚kÄ™ lub A)"/> + <button label="" label_selected="" name="turn right btn" tool_tip="Obróć w prawo (naciÅ›nij PrawÄ… StrzaÅ‚kÄ™ lub D)"/> + <button label="" label_selected="" name="move up btn" tool_tip="Leć do góry, naciÅ›nij E"/> + <button label="" label_selected="" name="move down btn" tool_tip="Leć w dół, naciÅ›nij C"/> + <joystick_turn name="forward btn" tool_tip="Idź (naciÅ›nij StrzaÅ‚kÄ™ w GórÄ™ lub W)"/> + <joystick_turn name="backward btn" tool_tip="Cofaj siÄ™ (naciÅ›nij StrzaÅ‚kÄ™ w Dół lub S)"/> + </panel> + <panel name="panel_modes"> + <button label="" name="mode_walk_btn" tool_tip="Tryb chodzenia"/> + <button label="" name="mode_run_btn" tool_tip="Tryb biegu"/> + <button label="" name="mode_fly_btn" tool_tip="Tryb latania"/> + </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_mute_object.xml b/indra/newview/skins/default/xui/pl/floater_mute_object.xml index 8055617371b61db3de4132bff3aacecef9a8a9d6..4af5872ef528b0211868918fc93bcda429746911 100644 --- a/indra/newview/skins/default/xui/pl/floater_mute_object.xml +++ b/indra/newview/skins/default/xui/pl/floater_mute_object.xml @@ -9,6 +9,6 @@ <text name="note"> * Zablokuj jedynie tekst obiektu, bez dźwiÄ™ku </text> - <button label="Ok" name="OK"/> + <button label="OK" name="OK"/> <button label="Anuluj" name="Cancel"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_nearby_chat.xml b/indra/newview/skins/default/xui/pl/floater_nearby_chat.xml new file mode 100644 index 0000000000000000000000000000000000000000..e00b3188eaeabffc2a1e94f1494607d7e835f81f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_nearby_chat.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="nearby_chat" title="CZAT LOKALNY"/> diff --git a/indra/newview/skins/default/xui/pl/floater_openobject.xml b/indra/newview/skins/default/xui/pl/floater_openobject.xml index fbbed0f11dfaf2f1902fb83395dd46d5ce3fedb3..8e94ae821cc2caf0505c8deacae3c1a8a7c3452a 100644 --- a/indra/newview/skins/default/xui/pl/floater_openobject.xml +++ b/indra/newview/skins/default/xui/pl/floater_openobject.xml @@ -1,10 +1,8 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="objectcontents" title="ZAWARTOŚĆ OBIEKTU"> <text name="object_name"> [DESC]: </text> - <button label="Kopiuj do Szafy" label_selected="Kopiuj do Szafy" - name="copy_to_inventory_button" /> - <button label="Kopiuj i Zalóż" label_selected="Kopiuj i Załóż" - name="copy_and_wear_button" /> + <button label="Kopiuj do Szafy" label_selected="Kopiuj do Szafy" name="copy_to_inventory_button"/> + <button label="Kopiuj i zalóż" label_selected="Kopiuj i załóż" name="copy_and_wear_button"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_outfit_save_as.xml b/indra/newview/skins/default/xui/pl/floater_outfit_save_as.xml new file mode 100644 index 0000000000000000000000000000000000000000..a8d2e10c5fbe9c42bd2e04316aabc8663edec62f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_outfit_save_as.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="modal container" title="Stwórz ubranie"> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <text name="Save item as:"> + Zapisz to co mam w tej chwili zaÅ‚ożone +jako nowy komplet ubrania: + </text> + <line_editor name="name ed"> + [DESC] (nowy) + </line_editor> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_outgoing_call.xml b/indra/newview/skins/default/xui/pl/floater_outgoing_call.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a70cb3247e0da9e777ad2c968030ad0708b7d14 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_outgoing_call.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="outgoing call" title="ROZMOWA GÅOSOWA"> + <floater.string name="lifetime"> + 5 + </floater.string> + <floater.string name="localchat"> + Rozmowy gÅ‚osowe w pobliżu + </floater.string> + <floater.string name="anonymous"> + anonimowy + </floater.string> + <floater.string name="VoiceInviteP2P"> + dzwoni. + </floater.string> + <floater.string name="VoiceInviteAdHoc"> + uczestniczy w konferencyjnej rozmowie gÅ‚osowej + </floater.string> + <text name="connecting"> + ÅÄ…czy z [CALLEE_NAME] + </text> + <text name="calling"> + Dzwoni [CALEE_NAME] + </text> + <text name="noanswer"> + Brak odpowiedzi. ProszÄ™ spróbować ponownie później. + </text> + <text name="nearby"> + ZostaleÅ› rozÅ‚Ä…czony z [VOICE_CHANNEL_NAME]. [RECONNECT_NEARBY] + </text> + <text name="nearby_P2P_by_other"> + [VOICE_CHANNEL_NAME] zakoÅ„czyÅ‚/a rozmowÄ™ gÅ‚osowÄ…. [RECONNECT_NEARBY] + </text> + <text name="nearby_P2P_by_agent"> + ZakoÅ„czyÅ‚eÅ› rozmowÄ™. [RECONNECT_NEARBY] + </text> + <text name="leaving"> + Opuszcza [CURRENT_CHAT] + </text> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_pay.xml b/indra/newview/skins/default/xui/pl/floater_pay.xml index dfb1b6616ce9ca64f3b96f4db0ff72a527a3c27d..dccb7ed2bb8b5ff4ee86ad86b9548e94b876a13c 100644 --- a/indra/newview/skins/default/xui/pl/floater_pay.xml +++ b/indra/newview/skins/default/xui/pl/floater_pay.xml @@ -1,22 +1,26 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Give Money" title=""> - <button label="L$1" label_selected="L$1" name="fastpay 1" /> - <button label="L$5" label_selected="L$5" name="fastpay 5" /> - <button label="L$10" label_selected="L$10" name="fastpay 10" /> - <button label="L$20" label_selected="L$20" name="fastpay 20" /> - <button label="ZapÅ‚ać" label_selected="ZapÅ‚ać" name="pay btn" /> - <button label="Anuluj" label_selected="Anuluj" name="cancel btn" /> + <string name="payee_group"> + ZapÅ‚ać Grupie + </string> + <string name="payee_resident"> + ZapÅ‚ać Rezydentowi + </string> <text name="payee_label"> - ZapÅ‚ata dla: + ZapÅ‚ać: </text> + <icon name="icon_person" tool_tip="Osoba"/> <text name="payee_name"> [FIRST] [LAST] </text> - <text name="fastpay text" halign="left" left="12"> - Szybka ZapÅ‚ata: - </text> + <button label="L$1" label_selected="L$1" name="fastpay 1"/> + <button label="L$5" label_selected="L$5" name="fastpay 5"/> + <button label="L$10" label_selected="L$10" name="fastpay 10"/> + <button label="L$20" label_selected="L$20" name="fastpay 20"/> <text name="amount text"> - Suma: + lub wybierz kwotÄ™: </text> - <line_editor left="52" name="amount" /> + <line_editor left="52" name="amount"/> + <button label="ZapÅ‚ać" label_selected="ZapÅ‚ać" name="pay btn"/> + <button label="Anuluj" label_selected="Anuluj" name="cancel btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_pay_object.xml b/indra/newview/skins/default/xui/pl/floater_pay_object.xml index 376f517aaa35cd1aeebed29dcff99c34f375a882..d0c69a6c21a8975b85be74b7083046a0db8a9daa 100644 --- a/indra/newview/skins/default/xui/pl/floater_pay_object.xml +++ b/indra/newview/skins/default/xui/pl/floater_pay_object.xml @@ -1,31 +1,30 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Give Money" title=""> - <text name="payee_group" width="100" halign="left"> - ZapÅ‚ać Grupie: - </text> - <text name="payee_resident" width="120" halign="left" > - ZapÅ‚ać Rezydentowi: - </text> - <text name="payee_name" left="125"> + <string halign="left" name="payee_group" width="100"> + ZapÅ‚ać Grupie + </string> + <string halign="left" name="payee_resident" width="120"> + ZapÅ‚ać Rezydentowi + </string> + <icon name="icon_person" tool_tip="Osoba"/> + <text left="125" name="payee_name"> [FIRST] [LAST] </text> - <text name="object_name_label" left="5" width="95" halign="left"> + <text halign="left" left="5" name="object_name_label" width="95"> Poprzez Obiekt: </text> - <text name="object_name_text" left="105" > - ... - </text> - <text name="fastpay text" width="95" halign="left"> - Szybka ZapÅ‚ata: + <icon name="icon_object" tool_tip="Obiekt"/> + <text left="105" name="object_name_text"> + Poprzez obiekt </text> - <text name="amount text" left="5" halign="left"> - Suma: + <button label="L$1" label_selected="L$1" left="105" name="fastpay 1"/> + <button label="L$5" label_selected="L$5" left="190" name="fastpay 5"/> + <button label="L$10" label_selected="L$10" left="105" name="fastpay 10"/> + <button label="L$20" label_selected="L$20" left="190" name="fastpay 20"/> + <text halign="left" left="5" name="amount text"> + lub wybierz kwotÄ™: </text> - <button label="L$1" label_selected="L$1" name="fastpay 1" left="105"/> - <button label="L$5" label_selected="L$5" name="fastpay 5" left="190"/> - <button label="L$10" label_selected="L$10" name="fastpay 10" left="105"/> - <button label="L$20" label_selected="L$20" name="fastpay 20" left="190"/> - <button label="ZapÅ‚ać" label_selected="ZapÅ‚ać" name="pay btn" /> - <button label="Anuluj" label_selected="Anuluj" name="cancel btn" /> - <line_editor left="50" name="amount" width="50" /> + <line_editor left="50" name="amount" width="50"/> + <button label="ZapÅ‚ać" label_selected="ZapÅ‚ać" name="pay btn"/> + <button label="Anuluj" label_selected="Anuluj" name="cancel btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml b/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml index 1b0dd6113efd6036f10ad204b6d116e9f8e07491..2128cfa3c876c4e8ac3850a66dc732017c1294cc 100644 --- a/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml +++ b/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml @@ -5,7 +5,7 @@ <check_box label="UdostÄ™pnij grupie" name="share_with_group"/> <check_box label="Pozwól kopiować każdemu" name="everyone_copy"/> <text name="NextOwnerLabel"> - NastÄ™pny wÅ‚aÅ›ciciel: + NastÄ™pny WÅ‚aÅ›ciciel: </text> <check_box label="Modyfikuje" name="next_owner_modify"/> <check_box label="Kopiuje" name="next_owner_copy"/> diff --git a/indra/newview/skins/default/xui/pl/floater_post_process.xml b/indra/newview/skins/default/xui/pl/floater_post_process.xml index 6bd91f97b1b8fefad9108e2e6ca3e43a9a11efc9..a3515915bf70387047027fcb665c4b7084ba4f64 100644 --- a/indra/newview/skins/default/xui/pl/floater_post_process.xml +++ b/indra/newview/skins/default/xui/pl/floater_post_process.xml @@ -16,40 +16,40 @@ </text> <slider label="" name="wmiColorFilterContrast" /> <text name="wmiColorFilterBaseText"> - Kontrast Koloru Podstawowego + Kontrast koloru podstawowego </text> <slider label="R" name="wmiColorFilterBaseR" /> <slider label="G" name="wmiColorFilterBaseG" /> <slider label="B" name="wmiColorFilterBaseB" /> <slider label="I" name="wmiColorFilterBaseI" /> </panel> - <panel label="Wizja Nocna" name="wmiNightVisionPanel"> + <panel label="Wizja nocna" name="wmiNightVisionPanel"> <check_box label="UdostÄ™pnij" name="wmiNightVisionToggle" /> <text name="wmiNightVisionBrightMultText"> - Wielokrotne Wzmocnienie ÅšwiatÅ‚a + Wielokrotne wzmocnienie Å›wiatÅ‚a </text> <slider label="" name="wmiNightVisionBrightMult" /> <text name="wmiNightVisionNoiseSizeText"> - Rozmiar Szumu + Rozmiar szumu </text> <slider label="" name="wmiNightVisionNoiseSize" /> <text name="wmiNightVisionNoiseStrengthText"> - Moc Szumu + Moc szumu </text> <slider label="" name="wmiNightVisionNoiseStrength" /> </panel> <panel label="Bloom" name="wmiBloomPanel"> <check_box label="UdostÄ™pnij" name="wmiBloomToggle" /> <text name="wmiBloomExtractText"> - Ekstracja Luminacji + Ekstracja luminacji </text> <slider label="" name="wmiBloomExtract" /> <text name="wmiBloomSizeText"> - Rozmiar Rozmazania Obrazu + Rozmiar rozmazania obrazu </text> <slider label="" name="wmiBloomSize" /> <text name="wmiBloomStrengthText"> - Moc Rozmazania Obrazu + Moc rozmazania obrazu </text> <slider label="" name="wmiBloomStrength" /> </panel> diff --git a/indra/newview/skins/default/xui/pl/floater_postcard.xml b/indra/newview/skins/default/xui/pl/floater_postcard.xml index 8f4018924d0c8d4fbd3075d95504148a53b78dfa..095974aa6133b6085101294a2b278417d8ac705e 100644 --- a/indra/newview/skins/default/xui/pl/floater_postcard.xml +++ b/indra/newview/skins/default/xui/pl/floater_postcard.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Postcard" title="WYÅšLIJ POCZTÓWKĘ"> +<floater name="Postcard" title="WYÅšLIJ POCZTÓWKĘ (EMAIL)"> <text name="to_label"> Email Odbiorcy: </text> @@ -20,12 +20,12 @@ Wpisz treść swojej wiadomoÅ›ci tutaj </text_editor> <text name="fine_print"> - Jeżeli odbiorca tej pocztówki doÅ‚Ä…czy do [SECOND_LIFE], otrzymasz bonusa. + Jeżeli Odbiorca tej pocztówki doÅ‚Ä…czy do [SECOND_LIFE], otrzymasz bonus. </text> <button label="Anuluj" name="cancel_btn"/> <button label="WyÅ›lij" name="send_btn"/> <string name="default_subject"> - Pocztówki z [SECOND_LIFE] + Pocztówka z [SECOND_LIFE]. </string> <string name="default_message"> Sprawdź i przekonaj siÄ™ sam! diff --git a/indra/newview/skins/default/xui/pl/floater_preferences.xml b/indra/newview/skins/default/xui/pl/floater_preferences.xml index 2be663283fba0b3400fc2fa6d027bff303ecb41f..3f62d764c61b703782e455f325f270ecdb30a62c 100644 --- a/indra/newview/skins/default/xui/pl/floater_preferences.xml +++ b/indra/newview/skins/default/xui/pl/floater_preferences.xml @@ -1,8 +1,15 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Preferences" title="USTAWIENIA"> - <button label="OK" label_selected="OK" name="OK" /> - <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> - <button label="Zastosuj" label_selected="Zastosuj" name="Apply" /> - <button label="O Second Life" label_selected="O Second Life" name="About..." /> - <button label="Pomoc" label_selected="Pomoc" name="Help" /> + <button label="OK" label_selected="OK" name="OK"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <tab_container name="pref core"> + <panel label="Ogólne" name="general"/> + <panel label="Grafika" name="display"/> + <panel label="Prywatność" name="im"/> + <panel label="DźwiÄ™k & Media" name="audio"/> + <panel label="Czat" name="chat"/> + <panel label="Powiadomienia" name="msgs"/> + <panel label="Ustawienie" name="input"/> + <panel label="Zaawansowane" name="advanced1"/> + </tab_container> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_animation.xml b/indra/newview/skins/default/xui/pl/floater_preview_animation.xml index 2a49864e930b068eb5adadb6d4e34242c4210f72..6ce6914771ef3f2cac5ecc2700d9f837ff6f401a 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_animation.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_animation.xml @@ -6,6 +6,6 @@ <text name="desc txt"> Opis: </text> - <button label="Używaj w Åšwiecie" label_selected="Stop" left="20" name="Anim play btn" tool_tip="Uruchom tÄ™ animacjÄ™ by widzieli jÄ… pozostali Rezydenci" width="131"/> - <button label="Używaj lokalnie" label_selected="Stop" left="162" name="Anim audition btn" tool_tip="Uruchom tÄ™ animacjÄ™ widocznÄ… tylko przez Ciebie" width="125"/> + <button label="Uruchom in-world" label_selected="Stop" left="20" name="Anim play btn" tool_tip="Uruchom animacjÄ™ by widzieli jÄ… pozostali Rezydenci" width="131"/> + <button label="Używaj lokalnie" label_selected="Stop" left="162" name="Anim audition btn" tool_tip="Uruchom animacjÄ™ widocznÄ… tylko przez Ciebie" width="125"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_event.xml b/indra/newview/skins/default/xui/pl/floater_preview_event.xml index 9fc0ff4da61d3c2cd1c7e9eb9e35b2fb2acb4f32..5d9e47bc00500d851fca62b7e8b42cad8fc96b80 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_event.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_event.xml @@ -1,2 +1,6 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="event_preview" title="INFORMACJE O IMPREZIE" /> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="event_preview" title="INFO O IMPREZIE"> + <floater.string name="Title"> + Impreza: [NAME] + </floater.string> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml b/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml index 1c7a3f663181c1415074d0a96916e3e71a01736c..05758ac04d980bcaa0842c4279cb5e393d656ec9 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml @@ -1,14 +1,32 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="gesture_preview"> - <string name="stop_txt"> + <floater.string name="step_anim"> + Animacja + </floater.string> + <floater.string name="step_sound"> + DźwiÄ™k: + </floater.string> + <floater.string name="step_chat"> + Czat: + </floater.string> + <floater.string name="step_wait"> + Wstrzymaj: + </floater.string> + <floater.string name="stop_txt"> Stop - </string> - <string name="preview_txt"> + </floater.string> + <floater.string name="preview_txt"> Pokaż - </string> - <string name="none_text"> + </floater.string> + <floater.string name="none_text"> -- Brak -- - </string> + </floater.string> + <floater.string name="Title"> + Gest: [NAME] + </floater.string> + <text name="name_text"> + Nazwa: + </text> <text name="desc_label"> Opis: </text> @@ -27,29 +45,23 @@ <text name="library_label"> Zbiór: </text> + <scroll_list name="library_list"/> + <button label="Dodaj >>" name="add_btn"/> <text name="steps_label"> Etapy: </text> - <scroll_list name="library_list"> - Animacja -DźwiÄ™k -Czat -Wstrzymaj - </scroll_list> - <button label="Dodaj >>" name="add_btn"/> - <button label="W GórÄ™" name="up_btn"/> - <button label="W Dół" name="down_btn"/> + <button label="W górÄ™" name="up_btn"/> + <button label="W dół" name="down_btn"/> <button label="UsuÅ„" name="delete_btn"/> - <text name="help_label"> - Wszystkie etapy nastÄ…piÄ… razem, -chyba, że dodasz pauzy. - </text> <radio_group name="animation_trigger_type"> - <radio_item name="start" label="Start" /> - <radio_item name="stop" label="Stop" /> + <radio_item label="Start" name="start"/> + <radio_item label="Stop" name="stop"/> </radio_group> <check_box label="do koÅ„ca animacji" name="wait_anim_check"/> <check_box label="czas w sekundach" name="wait_time_check"/> + <text name="help_label"> + Wszystkie etapy nastÄ…piÄ… razem, chyba, że dodasz pauzy. + </text> <check_box label="Aktywny" name="active_check" tool_tip="Aktywne gesty można wÅ‚Ä…czać używajÄ…c przypisanej frazy w czacie albo używajÄ…c przypisanego klawisza skrótowego. W przypaku konfliktu przypisaÅ„ gesty zazwyczaj nie bÄ™dÄ… dziaÅ‚ać."/> <button label="Pokaż" name="preview_btn"/> <button label="Zapisz" name="save_btn"/> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_gesture_info.xml b/indra/newview/skins/default/xui/pl/floater_preview_gesture_info.xml new file mode 100644 index 0000000000000000000000000000000000000000..d31cada96d44e7374fcd536e5de98250c0339397 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_preview_gesture_info.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="Gesture" title="GEST"/> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_gesture_shortcut.xml b/indra/newview/skins/default/xui/pl/floater_preview_gesture_shortcut.xml new file mode 100644 index 0000000000000000000000000000000000000000..d33b799476ef6e8bd78967de2087ce9b8adf22b9 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_preview_gesture_shortcut.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="Gesture" title="GESTY"> + <text name="trigger_label"> + Czat: + </text> + <text name="key_label"> + Klawiatura: + </text> + <combo_box label="Å»aden" name="modifier_combo"/> + <combo_box label="Å»aden" name="key_combo"/> + <text name="replace_text" tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™!"> + ZamieÅ„ na: + </text> + <line_editor name="replace_editor" tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_gesture_steps.xml b/indra/newview/skins/default/xui/pl/floater_preview_gesture_steps.xml new file mode 100644 index 0000000000000000000000000000000000000000..6592d9dad0f97ff19e0d748d691c702c448be67a --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_preview_gesture_steps.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="Gesture" title="GESTY"/> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml b/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml index b9f80490ab021118228bc2e6157bab0da17accfd..1ad07c236bc37f18eb16c61e2daa173100a1753f 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml @@ -1,16 +1,22 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview notecard" title="NOTA:"> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> + <floater.string name="no_object"> + Nie można znaleźć obiektu zawierajÄ…cego tÄ… notkÄ™. + </floater.string> + <floater.string name="not_allowed"> + Nie masz pozwolenia na zobaczenie tej notki. + </floater.string> + <floater.string name="Title"> + Notka: [NAME] + </floater.string> + <floater.string label="Zapisz" label_selected="Zapisz" name="Save"> + Zapisz + </floater.string> <text name="desc txt"> Opis: </text> <text_editor name="Notecard Editor"> Åadowanie... </text_editor> - <string name="no_object"> - Nie można znaleść obiektu zawierajÄ…cego tÄ… notkÄ™. - </string> - <string name="not_allowed"> - Nie masz pozwolenia na zobaczenie tej notki. - </string> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_sound.xml b/indra/newview/skins/default/xui/pl/floater_preview_sound.xml index 656b9bec380d6554c08d0e2ef42edf359891bfd9..d02b3ca75ee2a80f3b0266a89aeb30c36921d5f8 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_sound.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_sound.xml @@ -1,12 +1,11 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview_sound"> + <floater.string name="Title"> + DźwiÄ™k: [NAME] + </floater.string> <text name="desc txt"> Opis: </text> - <button label="Odtwarzaj Lokalnie" label_selected="Odtwarzaj Lokalnie" - name="Sound audition btn" - tool_tip="DźwiÄ™k bÄ™dzie sÅ‚yszalny tylko dla Ciebie." /> - <button label="Odtwarzaj w Åšwiecie" label_selected="Odtwarzaj w Åšwiecie" - name="Sound play btn" - tool_tip="DźwiÄ™k bÄ™dzie sÅ‚yszalny przez wszystkich." width="130" left_delta="-136"/> + <button label="Odtwarzaj" label_selected="Odtwarzaj" left_delta="-136" name="Sound play btn" tool_tip="DźwiÄ™k bÄ™dzie sÅ‚yszalny przez wszystkich." width="130"/> + <button label="Odtwarzaj Lokalnie" label_selected="Odtwarzaj lokalnie" name="Sound audition btn" tool_tip="DźwiÄ™k bÄ™dzie sÅ‚yszalny tylko dla Ciebie."/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_texture.xml b/indra/newview/skins/default/xui/pl/floater_preview_texture.xml index 8bcd800411e40ebc1ce7e0a4b2733d9a0ada102a..e58acee139571d996116d2f2596d4ebccfc99de6 100644 --- a/indra/newview/skins/default/xui/pl/floater_preview_texture.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_texture.xml @@ -1,9 +1,47 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview_texture"> + <floater.string name="Title"> + Tekstura: [NAME] + </floater.string> + <floater.string name="Copy"> + Kopiuj do Szafy + </floater.string> <text name="desc txt"> Opis: </text> <text name="dimensions"> - Wymiary: [WIDTH] x [HEIGHT] + [WIDTH]px x [HEIGHT]px </text> + <text name="aspect_ratio"> + Zobacz proporcje + </text> + <combo_box name="combo_aspect_ratio" tool_tip="WyÅ›wietl w domyÅ›lnych proporcjach"> + <combo_item name="Unconstrained"> + Swobodny + </combo_item> + <combo_item name="1:1" tool_tip="Insygnia Grupy lub realny Profil"> + 1:1 + </combo_item> + <combo_item name="4:3" tool_tip="[SECOND_LIFE] profil"> + 4:3 + </combo_item> + <combo_item name="10:7" tool_tip="Reklamy i atrakcje, landmarki"> + 10:7 + </combo_item> + <combo_item name="3:2" tool_tip="O PosiadÅ‚oÅ›ci"> + 3:2 + </combo_item> + <combo_item name="16:10"> + 16:10 + </combo_item> + <combo_item name="16:9" tool_tip="LubiÄ™"> + 16:9 + </combo_item> + <combo_item name="2:1"> + 2:1 + </combo_item> + </combo_box> + <button label="OK" name="Keep"/> + <button label="Wyrzuć" name="Discard"/> + <button label="Zapisz jako" name="save_tex_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_publish_classified.xml b/indra/newview/skins/default/xui/pl/floater_publish_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..12cda04e1096f579e0e225d311dc70f09751c13d --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_publish_classified.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="publish_classified" title="Publikowanie Reklam"> + <text name="explanation_text"> + Twoja reklama zostanie wyÅ›wietlana przez okres jednego tygodnia od daty jej publikacji. + +PamiÄ™taj, opÅ‚aty za reklamy nie podlegajÄ… prawu zwrotu. + </text> + <spinner label="Cena za ReklamÄ™:" name="price_for_listing" tool_tip="Cena za umieszczenie reklamy w wyszukiwarce." value="50"/> + <text name="l$_text" value="L$"/> + <text name="more_info_text"> + WiÄ™cej info (link do pomocy) + </text> + <button label="Publikuj" name="publish_btn"/> + <button label="Anuluj" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_region_info.xml b/indra/newview/skins/default/xui/pl/floater_region_info.xml index ca3c1391db1eb5365267fab3a13456a4623a3ba9..a1f7785f488eaed112b47a5c6a5d35f03e277278 100644 --- a/indra/newview/skins/default/xui/pl/floater_region_info.xml +++ b/indra/newview/skins/default/xui/pl/floater_region_info.xml @@ -1,2 +1,2 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="regioninfo" title="REGION/MAJÄ„TEK" /> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="regioninfo" title="REGION/MAJÄ„TEK"/> diff --git a/indra/newview/skins/default/xui/pl/floater_report_abuse.xml b/indra/newview/skins/default/xui/pl/floater_report_abuse.xml index 18ce1b230f481e97df4110662b75fae9925e1261..a6f8ba6c11d7bc3e73f53a403dd866f8bfcb5c26 100644 --- a/indra/newview/skins/default/xui/pl/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/pl/floater_report_abuse.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_report_abuse" title="RAPORT O NADUÅ»YCIU"> <floater.string name="Screenshot"> - ZdjÄ™cie Ekranu + ZdjÄ™cie ekranu </floater.string> <check_box label="ZaÅ‚Ä…cz zdjÄ™cie do raportu" name="screen_check"/> <text name="reporter_title"> @@ -40,42 +40,42 @@ </text> <combo_box name="category_combo" tool_tip="Wybór kategorii - wybierz kategoriÄ™, której dotyczy raport"> <combo_box.item label="Wybierz KategoriÄ™:" name="Select_category"/> - <combo_box.item label="Wiek > Udawanie Nieletniej Osoby" name="Age__Age_play"/> + <combo_box.item label="Wiek > Udawanie nieletniej osoby" name="Age__Age_play"/> <combo_box.item label="Wiek > DorosÅ‚y Rezydent w Teen Second Life" name="Age__Adult_resident_on_Teen_Second_Life"/> <combo_box.item label="Wiek > Nieletni Rezydent poza Teen Second Life" name="Age__Underage_resident_outside_of_Teen_Second_Life"/> - <combo_box.item label="Napaść > Strefa Militarna / Niebezpieczny Obszar" name="Assault__Combat_sandbox___unsafe_area"/> - <combo_box.item label="Napaść > Bezpieczny Obszar" name="Assault__Safe_area"/> - <combo_box.item label="Napaść > Obszar do Testowania Broni" name="Assault__Weapons_testing_sandbox"/> - <combo_box.item label="Handel > Niedostarczenie Produktu lub UsÅ‚ugi" name="Commerce__Failure_to_deliver_product_or_service"/> - <combo_box.item label="Naruszenie PrywatnoÅ›ci > Dane Osobiste" name="Disclosure__Real_world_information"/> - <combo_box.item label="Ujawnienie > Monitorowanie Czatu" name="Disclosure__Remotely_monitoring chat"/> - <combo_box.item label="Ujawnienie > Dane z Second Life / Czatu / IM" name="Disclosure__Second_Life_information_chat_IMs"/> - <combo_box.item label="Zakłócanie Spokoju > Nieuczciwe Używanie Zasobów Regionu" name="Disturbing_the_peace__Unfair_use_of_region_resources"/> - <combo_box.item label="Zakłócanie Spokoju > Przesadnie Skryptowane Obiekty" name="Disturbing_the_peace__Excessive_scripted_objects"/> - <combo_box.item label="Zakłócanie Spokoju > Åšmiecenie Obiektami" name="Disturbing_the_peace__Object_littering"/> - <combo_box.item label="Zakłócanie Spokoju > CiÄ…gÅ‚y Spam" name="Disturbing_the_peace__Repetitive_spam"/> - <combo_box.item label="Zakłócanie Spokoju > NieporzÄ…dany Spam Reklamowy" name="Disturbing_the_peace__Unwanted_advert_spam"/> + <combo_box.item label="Napaść > strefa militarna / niebezpieczny obszar" name="Assault__Combat_sandbox___unsafe_area"/> + <combo_box.item label="Napaść > nezpieczny obszar" name="Assault__Safe_area"/> + <combo_box.item label="Napaść > obszar do testowania broni" name="Assault__Weapons_testing_sandbox"/> + <combo_box.item label="Handel > niedostarczenie produktu lub usÅ‚ugi" name="Commerce__Failure_to_deliver_product_or_service"/> + <combo_box.item label="Naruszenie prywatnoÅ›ci > dane osobiste" name="Disclosure__Real_world_information"/> + <combo_box.item label="Ujawnienie > monitorowanie czatu" name="Disclosure__Remotely_monitoring chat"/> + <combo_box.item label="Ujawnienie > dane z Second Life / Czatu / IM" name="Disclosure__Second_Life_information_chat_IMs"/> + <combo_box.item label="Zakłócanie spokoju > nieuczciwe używanie zasobów Regionu" name="Disturbing_the_peace__Unfair_use_of_region_resources"/> + <combo_box.item label="Zakłócanie spokoju > przesadnie skryptowane obiekty" name="Disturbing_the_peace__Excessive_scripted_objects"/> + <combo_box.item label="Zakłócanie spokoju > Å›miecenie obiektami" name="Disturbing_the_peace__Object_littering"/> + <combo_box.item label="Zakłócanie spokoju > ciÄ…gÅ‚y spam" name="Disturbing_the_peace__Repetitive_spam"/> + <combo_box.item label="Zakłócanie spokoju > nieporzÄ…dany spam reklamowy" name="Disturbing_the_peace__Unwanted_advert_spam"/> <combo_box.item label="Oszustwo > L$" name="Fraud__L$"/> <combo_box.item label="Oszustwo > PosiadÅ‚oÅ›ci" name="Fraud__Land"/> - <combo_box.item label="Oszustwo > Piramidy albo Listy ÅaÅ„cuchowe" name="Fraud__Pyramid_scheme_or_chain_letter"/> + <combo_box.item label="Oszustwo > piramidy albo listy Å‚aÅ„cuchowe" name="Fraud__Pyramid_scheme_or_chain_letter"/> <combo_box.item label="Oszustwo > US$" name="Fraud__US$"/> - <combo_box.item label="PrzeÅ›ladowanie > Farmy Reklamowe / Wizualny Spam" name="Harassment__Advert_farms___visual_spam"/> - <combo_box.item label="PrzeÅ›ladowanie > ZniesÅ‚awianie Jedostek lub Grup" name="Harassment__Defaming_individuals_or_groups"/> - <combo_box.item label="PrzeÅ›ladowanie > Ograniczanie Ruchu" name="Harassment__Impeding_movement"/> - <combo_box.item label="PrzeÅ›ladowanie > Molestowanie Seksualne" name="Harassment__Sexual_harassment"/> - <combo_box.item label="PrzeÅ›ladowanie > Namawianie/ZachÄ™canie Innych do Åamania Warunków Umowy (ToS)" name="Harassment__Solicting_inciting_others_to_violate_ToS"/> + <combo_box.item label="PrzeÅ›ladowanie > farmy reklamowe / wizualny spam" name="Harassment__Advert_farms___visual_spam"/> + <combo_box.item label="PrzeÅ›ladowanie > zniesÅ‚awianie jedostek lub grup" name="Harassment__Defaming_individuals_or_groups"/> + <combo_box.item label="PrzeÅ›ladowanie > Ograniczanie ruchu" name="Harassment__Impeding_movement"/> + <combo_box.item label="PrzeÅ›ladowanie > Molestowanie seksualne" name="Harassment__Sexual_harassment"/> + <combo_box.item label="PrzeÅ›ladowanie > Namawianie/ZachÄ™canie innych do Å‚amania warunków umowy (ToS)" name="Harassment__Solicting_inciting_others_to_violate_ToS"/> <combo_box.item label="PrzeÅ›ladowanie > Znieważanie SÅ‚owne" name="Harassment__Verbal_abuse"/> - <combo_box.item label="Nieprzyzwoitość > Obraźliwa Treść lub PostÄ™powanie" name="Indecency__Broadly_offensive_content_or_conduct"/> - <combo_box.item label="Nieprzyzwoitość > Niestosowne ImiÄ™ Awatara" name="Indecency__Inappropriate_avatar_name"/> - <combo_box.item label="Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w regionie 'PG'" name="Indecency__Mature_content_in_PG_region"/> - <combo_box.item label="Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w regionie 'Mature'" name="Indecency__Inappropriate_content_in_Mature_region"/> - <combo_box.item label="Naruszenie WÅ‚asnoÅ›ci Intelektualnej > UsuniÄ™cie TreÅ›ci" name="Intellectual_property_infringement_Content_Removal"/> - <combo_box.item label="Naruszenie WÅ‚asnoÅ›ci Intelektualnej > CopyBot albo Nadużycie Przywilejów" name="Intellectual_property_infringement_CopyBot_or_Permissions_Exploit"/> + <combo_box.item label="Nieprzyzwoitość > Obraźliwa treść lub postÄ™powanie" name="Indecency__Broadly_offensive_content_or_conduct"/> + <combo_box.item label="Nieprzyzwoitość > Niestosowne imiÄ™ awatara" name="Indecency__Inappropriate_avatar_name"/> + <combo_box.item label="Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w Regionie 'PG'" name="Indecency__Mature_content_in_PG_region"/> + <combo_box.item label="Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w Regionie 'Mature'" name="Indecency__Inappropriate_content_in_Mature_region"/> + <combo_box.item label="Naruszenie wÅ‚asnoÅ›ci intelektualnej > usuniÄ™cie treÅ›ci" name="Intellectual_property_infringement_Content_Removal"/> + <combo_box.item label="Naruszenie wÅ‚asnoÅ›ci intelektualnej > CopyBot albo nadużycie przywilejów" name="Intellectual_property_infringement_CopyBot_or_Permissions_Exploit"/> <combo_box.item label="Nietolerancja" name="Intolerance"/> - <combo_box.item label="PosiadÅ‚oÅ›ci > Nadużywanie Piaskownicy" name="Land__Abuse_of_sandbox_resources"/> - <combo_box.item label="PosiadÅ‚oÅ›ci > Naruszenie > Obiekty/Tekstury" name="Land__Encroachment__Objects_textures"/> - <combo_box.item label="PosiadÅ‚oÅ›ci > Naruszenie > CzÄ…steczki" name="Land__Encroachment__Particles"/> - <combo_box.item label="PosiadÅ‚oÅ›ci > Naruszenie > Drzewa/RoÅ›liny" name="Land__Encroachment__Trees_plants"/> + <combo_box.item label="PosiadÅ‚oÅ›ci > nadużywanie piaskownicy" name="Land__Abuse_of_sandbox_resources"/> + <combo_box.item label="PosiadÅ‚oÅ›ci > naruszenie > obiekty/tekstury" name="Land__Encroachment__Objects_textures"/> + <combo_box.item label="PosiadÅ‚oÅ›ci > naruszenie > czÄ…steczki" name="Land__Encroachment__Particles"/> + <combo_box.item label="PosiadÅ‚oÅ›ci > naruszenie > drzewa/roÅ›liny" name="Land__Encroachment__Trees_plants"/> <combo_box.item label="ZakÅ‚ady/Hazard" name="Wagering_gambling"/> <combo_box.item label="Inne" name="Other"/> </combo_box> diff --git a/indra/newview/skins/default/xui/pl/floater_script_debug_panel.xml b/indra/newview/skins/default/xui/pl/floater_script_debug_panel.xml new file mode 100644 index 0000000000000000000000000000000000000000..e70a30fa24af183134e2d78048bbf57a39cbc917 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_script_debug_panel.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="script" short_title="[ALL SCRIPTS]" title="[ALL SCRIPTS]"/> diff --git a/indra/newview/skins/default/xui/pl/floater_script_limits.xml b/indra/newview/skins/default/xui/pl/floater_script_limits.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd13d641a080129a37b634c3eac8499603e30019 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_script_limits.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="scriptlimits" title="SKRYPT"/> diff --git a/indra/newview/skins/default/xui/pl/floater_script_preview.xml b/indra/newview/skins/default/xui/pl/floater_script_preview.xml index e3e72e15a3d8d8ddfad7585161bf2dfbb60ec565..eb6a1df77ba8b14687fbe6e2174c94871056d8b6 100644 --- a/indra/newview/skins/default/xui/pl/floater_script_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_script_preview.xml @@ -1,5 +1,8 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="preview lsl text" title="SKRYPT: SKRYPT OBROTU"> + <floater.string name="Title"> + Skrypt: [NAME] + </floater.string> <text name="desc txt"> Opis: </text> diff --git a/indra/newview/skins/default/xui/pl/floater_script_queue.xml b/indra/newview/skins/default/xui/pl/floater_script_queue.xml index 7655f5fcaced47628e32f52c1108764194685f8c..bdfdba569e5c1d6b4ea32e05fd8333e24b62ec0f 100644 --- a/indra/newview/skins/default/xui/pl/floater_script_queue.xml +++ b/indra/newview/skins/default/xui/pl/floater_script_queue.xml @@ -1,4 +1,19 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="queue" title="ZRESETUJ PRACĘ W TOKU"> - <button label="Zamknij" label_selected="Zamknij" name="close" /> + <floater.string name="Starting"> + RozpoczÄ™cie [START] [COUNT] elementów. + </floater.string> + <floater.string name="Done"> + Wykonane. + </floater.string> + <floater.string name="Resetting"> + Trwa resetowanie + </floater.string> + <floater.string name="Running"> + Skrypt dziaÅ‚a + </floater.string> + <floater.string name="NotRunning"> + Skrypt nie dziaÅ‚a + </floater.string> + <button label="Zamknij" label_selected="Zamknij" name="close"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_script_search.xml b/indra/newview/skins/default/xui/pl/floater_script_search.xml index 255ab4264c0843710c158709b4d5dd66b81827e8..cb010daee4ed6247da146212da45fcd719e27ab4 100644 --- a/indra/newview/skins/default/xui/pl/floater_script_search.xml +++ b/indra/newview/skins/default/xui/pl/floater_script_search.xml @@ -1,10 +1,9 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="script search" title="SZUKAJ SKRYPTU"> - <check_box label="CapsLoock Nieaktywny" name="case_text" /> - <button label="Szukaj" label_selected="Szukaj" name="search_btn" /> - <button label="ZamieÅ„" label_selected="ZamieÅ„" name="replace_btn" /> - <button label="ZamieÅ„ Wszystko" label_selected="ZamieÅ„ Wszystko" - name="replace_all_btn" /> + <check_box label="CapsLoock nieaktywny" name="case_text"/> + <button label="Szukaj" label_selected="Szukaj" name="search_btn"/> + <button label="ZamieÅ„" label_selected="ZamieÅ„" name="replace_btn"/> + <button label="ZamieÅ„ Wszystko" label_selected="ZamieÅ„ wszystko" name="replace_all_btn"/> <text name="txt"> Szukaj </text> diff --git a/indra/newview/skins/default/xui/pl/floater_search.xml b/indra/newview/skins/default/xui/pl/floater_search.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0198670e4f9f9ff0e20ad09a495e5280dba6597 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_search.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_search" title="SZUKAJ"> + <floater.string name="loading_text"> + Åadowanie... + </floater.string> + <floater.string name="done_text"> + Wykonano + </floater.string> + <layout_stack name="stack1"> + <layout_panel name="browser_layout"> + <text name="refresh_search"> + Ustaw wyszukiwanie na odzwierciedlanie poziomu boskiego + </text> + </layout_panel> + </layout_stack> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_select_key.xml b/indra/newview/skins/default/xui/pl/floater_select_key.xml index cf0abb2c23b63c441a7ecf7cbfa37c660b5251dd..190ad61352102145151fc83b208c18dab1ad02f5 100644 --- a/indra/newview/skins/default/xui/pl/floater_select_key.xml +++ b/indra/newview/skins/default/xui/pl/floater_select_key.xml @@ -2,6 +2,6 @@ <floater name="modal container" title=""> <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> <text name="Save item as:"> - NaciÅ›nij by uruchomić przycisk mówienia. + NaciÅ›nij klawisz aby ustawić przeÅ‚Ä…cznik Mówić. </text> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_sell_land.xml b/indra/newview/skins/default/xui/pl/floater_sell_land.xml index a306ec2c346d5071787f5fc44cdd27fa5abeb348..eb1ed74797e2a01e3adf192d258ed5500a031b66 100644 --- a/indra/newview/skins/default/xui/pl/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/pl/floater_sell_land.xml @@ -1,62 +1,65 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="sell land" title="SELL LAND"> - <scroll_container name="profile_scroll"> - <panel name="scroll_content_panel"> - <text name="info_parcel_label"> - PosiadÅ‚ość: - </text> - <text name="info_parcel"> - NAZWA POSIADÅOÅšCI - </text> - <text name="info_size_label"> - Obszar: - </text> - <text name="info_size"> - [AREA] m. - </text> - <text name="info_action"> - Aby sprzedać tÄ… PosiadÅ‚ość: - </text> - <text name="price_label"> - Ustal cenÄ™: - </text> - <text name="price_text"> - Wybierz wÅ‚aÅ›ciwÄ… cenÄ™ za tÄ… PosiadÅ‚ość. - </text> - <text name="price_ld"> - L$ - </text> - <text name="price_per_m"> - ([PER_METER]L$ za metr) - </text> - <text name="sell_to_label"> - Kupiec: - </text> - <text name="sell_to_text"> - Wybierz sprzedaż dla kogokolwiek albo dla wybranego kupca. - </text> - <combo_box name="sell_to"> - <combo_box.item name="--selectone--" label="wybierz --" /> - <combo_box.item name="Anyone" label="Ktokolwiek" /> - <combo_box.item name="Specificuser:" label="Wybrany kupiec:" /> - </combo_box> - <button label="Wybierz..." name="sell_to_select_agent" /> - <text name="sell_objects_label"> - Obiekty sprzedawane razem z PosiadÅ‚oÅ›ciÄ…? - </text> - <text name="sell_objects_text"> - Przekazywalne obiekty wÅ‚aÅ›ciciela PosiadÅ‚oÅ›ci zmieniÄ… wÅ‚aÅ›ciciela. - </text> - <radio_group name="sell_objects"> - <radio_item name="no" label="Nie, zatrzymaj obiekty" /> - <radio_item name="yes" label="Tak, sprzedaj obiekty razem z PosiadÅ‚oÅ›ciÄ…" /> - </radio_group> - <button label="Pokaż Obiekty" name="show_objects" /> - <text name="nag_message_label"> - PAMIĘTAJ: Sprzedaż jest nieodwracalna. - </text> - <button label="Wystaw ZiemiÄ™ na Sprzedaż" name="sell_btn" /> - <button label="Anuluj" name="cancel_btn" /> - </panel> - </scroll_container> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="sell land" title="SPRZEDAJ POSIADÅOŚĆ"> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <text name="info_parcel_label"> + PosiadÅ‚ość: + </text> + <text name="info_parcel"> + NAZWA POSIADÅOÅšCI + </text> + <text name="info_size_label"> + Rozmiar: + </text> + <text name="info_size"> + [AREA] m² + </text> + <text name="info_action"> + Aby sprzedać tÄ… PosiadÅ‚ość: + </text> + <text name="price_label"> + 1. Ustal cenÄ™: + </text> + <text name="price_text"> + Wybierz wÅ‚aÅ›ciwÄ… cenÄ™ za tÄ… PosiadÅ‚ość. + </text> + <text name="price_ld"> + L$ + </text> + <line_editor name="price"> + 0 + </line_editor> + <text name="price_per_m"> + (L$[PER_METER] za m²) + </text> + <text name="sell_to_label"> + 2. Sprzedaj PosiadÅ‚ość: + </text> + <text name="sell_to_text"> + Wybierz sprzedaż dla kogokolwiek albo dla wybranego kupca. + </text> + <combo_box name="sell_to"> + <combo_box.item label="- Wybierz -" name="--selectone--"/> + <combo_box.item label="Ktokolwiek" name="Anyone"/> + <combo_box.item label="Wybrany Kupiec:" name="Specificuser:"/> + </combo_box> + <button label="Wybierz" name="sell_to_select_agent"/> + <text name="sell_objects_label"> + 3. Obiekty sprzedawane razem z PosiadÅ‚oÅ›ciÄ…? + </text> + <text name="sell_objects_text"> + Przekazywalne obiekty wÅ‚aÅ›ciciela PosiadÅ‚oÅ›ci zmieniÄ… wÅ‚aÅ›ciciela. + </text> + <radio_group name="sell_objects"> + <radio_item label="Nie, zatrzymaj obiekty" name="no"/> + <radio_item label="Tak, sprzedaj obiekty razem z PosiadÅ‚oÅ›ciÄ…" name="yes"/> + </radio_group> + <button label="Pokaż Obiekty" name="show_objects"/> + <text name="nag_message_label"> + PAMIĘTAJ: Sprzedaż jest nieodwracalna. + </text> + <button label="Wystaw ziemiÄ™ na sprzedaż" name="sell_btn"/> + <button label="Anuluj" name="cancel_btn"/> + </panel> + </scroll_container> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_settings_debug.xml b/indra/newview/skins/default/xui/pl/floater_settings_debug.xml index f87e2edecc2bd095ac76d58b5958356cb107c157..7c29d52e7bbf81e9143d4d76f1388dc645d339a6 100644 --- a/indra/newview/skins/default/xui/pl/floater_settings_debug.xml +++ b/indra/newview/skins/default/xui/pl/floater_settings_debug.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="settings_debug" title="USTAWIENIA USUWANIA BÅĘDÓW"> - <combo_box name="boolean_combo"> - <combo_box.item name="TRUE" label="PRAWDA" /> - <combo_box.item name="FALSE" label="NIEPRAWDA" /> - </combo_box> - <color_swatch label="Kolor" name="color_swatch"/> +<floater name="settings_debug" title="USTAWIENIA DEBUGOWANIA"> + <radio_group name="boolean_combo"> + <radio_item label="PRAWDA" name="TRUE" value="prawda"/> + <radio_item label="NIEPRAWDA" name="FALSE" value=""/> + </radio_group> + <color_swatch label="Kolor" name="val_color_swatch"/> <spinner label="x" name="val_spinner_1"/> <spinner label="x" name="val_spinner_2"/> <spinner label="x" name="val_spinner_3"/> diff --git a/indra/newview/skins/default/xui/pl/floater_snapshot.xml b/indra/newview/skins/default/xui/pl/floater_snapshot.xml index c807087170a59a2e00126311966836c8354ebc03..df4e5b43bcfd8fcff9457a9078d1c37d6f97093a 100644 --- a/indra/newview/skins/default/xui/pl/floater_snapshot.xml +++ b/indra/newview/skins/default/xui/pl/floater_snapshot.xml @@ -4,23 +4,23 @@ Lokacja zapisu </text> <radio_group label="Rodzaje zdjęć" name="snapshot_type_radio"> - <radio_item name="postcard" label="WyÅ›lij (email) pocztówkÄ™" /> - <radio_item name="texture" label="ZaÅ‚aduj do szafy ([AMOUNT]L$)" /> - <radio_item name="local" label="Zapisz na dysk" /> + <radio_item label="Email" name="postcard"/> + <radio_item label="ZaÅ‚aduj do Szafy (L$[AMOUNT])" name="texture"/> + <radio_item label="Zapisz na dysk" name="local"/> </radio_group> <text name="file_size_label"> - Rozmiar pliku: [SIZE] KB + [SIZE] KB </text> - <button label="OdÅ›wież ZdjÄ™cie" name="new_snapshot_btn"/> + <button label="OdÅ›wież zdjÄ™cie" name="new_snapshot_btn"/> <button label="WyÅ›lij" name="send_btn"/> <button label="ZaÅ‚aduj (L$[AMOUNT])" name="upload_btn"/> <flyout_button label="Zapisz" name="save_btn" tool_tip="Zapisz zdjÄ™cie na dysk"> - <flyout_button.item name="save_item" label="Zapisz"/> - <flyout_button.item name="saveas_item" label="Zapisz Jako..."/> + <flyout_button.item label="Zapisz" name="save_item"/> + <flyout_button.item label="Zapisz jako..." name="saveas_item"/> </flyout_button> <button label="Anuluj" name="discard_btn"/> - <button label="WiÄ™cej >>" name="more_btn" tool_tip="Ustawienia Zaawansowane"/> - <button label="<< Mniej" name="less_btn" tool_tip="Ustawienia Zaawansowane"/> + <button label="WiÄ™cej" name="more_btn" tool_tip="Zaawansowane"/> + <button label="Mniej" name="less_btn" tool_tip="Zaawansowane"/> <text name="type_label2"> Wymiar </text> @@ -28,45 +28,45 @@ Format </text> <combo_box label="Rozdzielczość" name="postcard_size_combo"> - <combo_box.item name="CurrentWindow" label="Obecne Okno" /> - <combo_box.item name="640x480" label="640x480" /> - <combo_box.item name="800x600" label="800x600" /> - <combo_box.item name="1024x768" label="1024x768" /> - <combo_box.item name="Custom" label="Wybierz" /> + <combo_box.item label="Obecne Okno" 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="Wybierz" name="Custom"/> </combo_box> <combo_box label="Rozdzielczość" name="texture_size_combo"> - <combo_box.item name="CurrentWindow" label="Obecne Okno" /> - <combo_box.item name="Small(128x128)" label="MaÅ‚y (128x128)" /> - <combo_box.item name="Medium(256x256)" label="Åšredni (256x256)" /> - <combo_box.item name="Large(512x512)" label="Duży (512x512)" /> - <combo_box.item name="Custom" label="Wybierz" /> + <combo_box.item label="Obecne Okno" name="CurrentWindow"/> + <combo_box.item label="MaÅ‚y (128x128)" name="Small(128x128)"/> + <combo_box.item label="Åšredni (256x256)" name="Medium(256x256)"/> + <combo_box.item label="Duży (512x512)" name="Large(512x512)"/> + <combo_box.item label="Wybierz" name="Custom"/> </combo_box> <combo_box label="Rozdzielczość" name="local_size_combo"> - <combo_box.item name="CurrentWindow" label="Obecne Okno" /> - <combo_box.item name="320x240" label="320x240" /> - <combo_box.item name="640x480" label="640x480" /> - <combo_box.item name="800x600" label="800x600" /> - <combo_box.item name="1024x768" label="1024x768" /> - <combo_box.item name="1280x1024" label="1280x1024" /> - <combo_box.item name="1600x1200" label="1600x1200" /> - <combo_box.item name="Custom" label="Wybierz" /> + <combo_box.item label="Obecne Okno" name="CurrentWindow"/> + <combo_box.item label="320x240" name="320x240"/> + <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="1280x1024" name="1280x1024"/> + <combo_box.item label="1600x1200" name="1600x1200"/> + <combo_box.item label="Wybierz" name="Custom"/> </combo_box> <combo_box label="Format" name="local_format_combo"> - <combo_box.item name="PNG" label="PNG" /> - <combo_box.item name="JPEG" label="JPEG" /> - <combo_box.item name="BMP" label="BMP" /> + <combo_box.item label="PNG" name="PNG"/> + <combo_box.item label="JPEG" name="JPEG"/> + <combo_box.item label="BMP" name="BMP"/> </combo_box> <spinner label="Szer." name="snapshot_width"/> <spinner label="Wys." name="snapshot_height"/> - <check_box label="Ograniczone Proporcje" name="keep_aspect_check"/> - <slider label="Jakość ZdjÄ™cia" name="image_quality_slider"/> + <check_box label="Ograniczone proporcje" name="keep_aspect_check"/> + <slider label="Jakość zdjÄ™cia" name="image_quality_slider"/> <text name="layer_type_label"> Zapisz: </text> <combo_box label="Warstwy Obrazu" name="layer_types"> - <combo_box.item name="Colors" label="Kolory" /> - <combo_box.item name="Depth" label="GÅ‚Ä™bokość" /> - <combo_box.item name="ObjectMattes" label="Obiekty Åšlepe" /> + <combo_box.item label="Kolory" name="Colors"/> + <combo_box.item label="GÅ‚Ä™bokość" name="Depth"/> + <combo_box.item label="Obiekty Å›lepe" name="ObjectMattes"/> </combo_box> <check_box label="Pokaż interfejs na zdjÄ™ciu" name="ui_check"/> <check_box label="Pokaż obiekty HUD na zdjÄ™ciu" name="hud_check"/> diff --git a/indra/newview/skins/default/xui/pl/floater_sound_preview.xml b/indra/newview/skins/default/xui/pl/floater_sound_preview.xml index c66ac0a98fe83615f99706d8992366ac398f82e9..ac041dff6ad0c4842fe2f77265f9a72df1532ad7 100644 --- a/indra/newview/skins/default/xui/pl/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_sound_preview.xml @@ -7,5 +7,5 @@ Opis: </text> <button label="Anuluj" label_selected="Anuluj" name="cancel_btn"/> - <button label="ZaÅ‚aduj (L$[AMOUNT])" label_selected="ZaÅ‚aduj (L$[AMOUNT])" name="ok_btn"/> + <button label="ZaÅ‚aduj ([AMOUNT]L$)" label_selected="ZaÅ‚aduj ([AMOUNT]L$)" name="ok_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_stats.xml b/indra/newview/skins/default/xui/pl/floater_stats.xml index acd3df0585f4bacf89368684d961c40436199d40..ee5fba4d63573740674cf3fbbd719042fe868443 100644 --- a/indra/newview/skins/default/xui/pl/floater_stats.xml +++ b/indra/newview/skins/default/xui/pl/floater_stats.xml @@ -3,17 +3,17 @@ <scroll_container name="statistics_scroll"> <container_view name="statistics_view"> <stat_view label="Podstawowe" name="basic"> - <stat_bar label="Ilość Obrazów/Sec (FPS)" name="fps"/> + <stat_bar label="Ilość obrazów/sek (FPS)" name="fps"/> <stat_bar label="Przepustowość" name="bandwidth"/> - <stat_bar label="Stracone Pakiety" name="packet_loss"/> - <stat_bar label="Ping Sim" name="ping"/> + <stat_bar label="Stracone pakiety" name="packet_loss"/> + <stat_bar label="Ping sim" name="ping"/> </stat_view> <stat_view label="Zaawansowane" name="advanced"> <stat_view label="Renderuj" name="render"> <stat_bar label="KTris Drawn" name="ktrisframe"/> <stat_bar label="KTris Drawn" name="ktrissec"/> - <stat_bar label="Wszystkie Obiekty" name="objs"/> - <stat_bar label="Nowe Obiekty" name="newobjs"/> + <stat_bar label="Wszystkie obiekty" name="objs"/> + <stat_bar label="Nowe obiekty" name="newobjs"/> </stat_view> <stat_view label="Tekstura" name="texture"> <stat_bar label="Suma" name="numimagesstat"/> @@ -24,8 +24,8 @@ <stat_bar label="Bound Mem" name="glboundmemstat"/> </stat_view> <stat_view label="Sieć" name="network"> - <stat_bar label="Pakiety WewnÄ™trzne" name="packetsinstat"/> - <stat_bar label="Pakiety ZewnÄ™trzne" name="packetsoutstat"/> + <stat_bar label="Pakiety wewnÄ™trzne" name="packetsinstat"/> + <stat_bar label="Pakiety zewnÄ™trzne" name="packetsoutstat"/> <stat_bar label="Obiekty" name="objectkbitstat"/> <stat_bar label="Tesktura" name="texturekbitstat"/> <stat_bar label="Asset" name="assetkbitstat"/> @@ -40,30 +40,30 @@ <stat_bar label="Ilość Obrazów/Sec na Symulatorze (Sim FPS)" name="simfps"/> <stat_bar label="Fizyka Obrazów/Sec" name="simphysicsfps"/> <stat_view label="Szczegóły Fizyki" name="physicsdetail"> - <stat_bar label="Pinned Objects" name="physicspinnedtasks"/> + <stat_bar label="Pinned objects" name="physicspinnedtasks"/> <stat_bar label="Niskie LOD Obiektów" name="physicslodtasks"/> - <stat_bar label="Alokacja PamiÄ™ci" name="physicsmemoryallocated"/> - <stat_bar label="Aktualizacja Agentów/Sec" name="simagentups"/> - <stat_bar label="Główni Agenci" name="simmainagents"/> - <stat_bar label="Child Agents" name="simchildagents"/> + <stat_bar label="Alokacja pamiÄ™ci" name="physicsmemoryallocated"/> + <stat_bar label="Aktualizacja agentów/Sek" name="simagentups"/> + <stat_bar label="Główni agenci" name="simmainagents"/> + <stat_bar label="Child agents" name="simchildagents"/> <stat_bar label="Obiekty" name="simobjects"/> - <stat_bar label="Aktywne Obiekty" name="simactiveobjects"/> - <stat_bar label="Aktywne Skrypty" name="simactivescripts"/> - <stat_bar label="Wydarzenie Skryptowe" name="simscripteps"/> - <stat_bar label="Pakiety WewnÄ™trzne" name="siminpps"/> - <stat_bar label="Pakiety ZewnÄ™trzne" name="simoutpps"/> - <stat_bar label="Oczekiwane na Pobranie" name="simpendingdownloads"/> - <stat_bar label="Oczekiwane na ZaÅ‚adowanie" name="simpendinguploads"/> - <stat_bar label="Wszystkie Niepotwierdzone Bity" name="simtotalunackedbytes"/> + <stat_bar label="Aktywne obiekty" name="simactiveobjects"/> + <stat_bar label="Aktywne skrypty" name="simactivescripts"/> + <stat_bar label="Wydarzenie skryptowe" name="simscripteps"/> + <stat_bar label="Pakiety wewnÄ™trzne" name="siminpps"/> + <stat_bar label="Pakiety zewnÄ™trzne" name="simoutpps"/> + <stat_bar label="Oczekiwane na pobranie" name="simpendingdownloads"/> + <stat_bar label="Oczekiwane na zaÅ‚adowanie" name="simpendinguploads"/> + <stat_bar label="Wszystkie niepotwierdzone bity" name="simtotalunackedbytes"/> </stat_view> <stat_view label="Czas (ms)" name="simperf"> - <stat_bar label="CaÅ‚kowity Czas Obrazu" name="simframemsec"/> - <stat_bar label="Czas Sieciowy" name="simnetmsec"/> - <stat_bar label="Czas Fizyki" name="simsimphysicsmsec"/> - <stat_bar label="Czas Symulatora" name="simsimothermsec"/> - <stat_bar label="Czas Agenta" name="simagentmsec"/> - <stat_bar label="Czas Obrazu" name="simimagesmsec"/> - <stat_bar label="Czas Skryptu" name="simscriptmsec"/> + <stat_bar label="CaÅ‚kowity czas obrazu" name="simframemsec"/> + <stat_bar label="Czas sieciowy" name="simnetmsec"/> + <stat_bar label="Czas fizyki" name="simsimphysicsmsec"/> + <stat_bar label="Czas symulatora" name="simsimothermsec"/> + <stat_bar label="Czas agenta" name="simagentmsec"/> + <stat_bar label="Czas obrazu" name="simimagesmsec"/> + <stat_bar label="Czas skryptu" name="simscriptmsec"/> </stat_view> </stat_view> </container_view> diff --git a/indra/newview/skins/default/xui/pl/floater_sys_well.xml b/indra/newview/skins/default/xui/pl/floater_sys_well.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6c73af4f3674fe6ea759971046fb49f820ec3c8 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_sys_well.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="sys_well_window" title="ZAWIADOMIENIA"> + <string name="title_im_well_window"> + ROZMOWY + </string> + <string name="title_notification_well_window"> + ZAWIADOMIENIA + </string> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_telehub.xml b/indra/newview/skins/default/xui/pl/floater_telehub.xml index 9f564452a925447dccfc6d028e5325c46f982f89..32cc08810df9100afb291824a9439092458d56c0 100644 --- a/indra/newview/skins/default/xui/pl/floater_telehub.xml +++ b/indra/newview/skins/default/xui/pl/floater_telehub.xml @@ -1,5 +1,5 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="telehub" title="OBSÅUGA TELEPORTERA" min_height="300" height="300" > +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater height="300" min_height="300" name="telehub" title="TELPORTER"> <text name="status_text_connected" width="250"> Teleporter poÅ‚Ä…czony z obiektem [OBJECT] </text> @@ -12,20 +12,17 @@ <text name="help_text_not_connected"> Wybierz obiekt i kliknij PoÅ‚Ä…cz z teleporterem </text> - <button label="PoÅ‚Ä…cz z teleporterem" name="connect_btn" width="132" /> - <button label="RozÅ‚Ä…cz" name="disconnect_btn" left="152" width="88"/> + <button label="PoÅ‚Ä…cz z teleporterem" name="connect_btn" width="132"/> + <button label="RozÅ‚Ä…cz" left="152" name="disconnect_btn" width="88"/> <text name="spawn_points_text" width="250"> - Punkty SkÅ‚adowe (pozycje - nie obiekty!): + Punkty skÅ‚adowe (pozycje - nie obiekty!): </text> - <button label="Dodaj Punkt" name="add_spawn_point_btn" /> - <button label="UsuÅ„ Punkt" name="remove_spawn_point_btn" /> + <button label="Dodaj punkt" name="add_spawn_point_btn"/> + <button label="UsuÅ„ punkt" name="remove_spawn_point_btn"/> <text name="spawn_point_help"> - Wybierz obiekt i wybierz Dodaj by sprecyzować -pozycjÄ™. Wówczas możesz przesunąć lub -usunąć obiekt. Pozycje sÄ… relatywne do części -centralnej teleportera. - -Wybierz obiekt z listy by zobaczyć jego pozycjÄ™ -w Å›wiecie. + Wybierz obiekt i wybierz "Dodaj" by sprecyzować pozycjÄ™. +Możesz przesunąć lub usunąć obiekt. +Pozycje sÄ… relatywne do części centralnej teleportera. +Wybierz obiekt z listy by zobaczyć jego pozycjÄ™ w Å›wiecie. </text> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml b/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml index 011dc8ee7c2e514809ef71b8805a24bd3da7391a..52c0cb8a93ab2b758dfe20af31f27435038c0a4f 100644 --- a/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml +++ b/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml @@ -4,7 +4,7 @@ Kliknij by wybrać obraz </string> <text name="Multiple"> - Wiele Tekstur + Wiele tekstur </text> <text name="unknown"> Rozmiar: [DIMENSIONS] @@ -12,12 +12,12 @@ <button label="DomyÅ›lna" label_selected="DomyÅ›lna" name="Default"/> <button label="Å»adna" label_selected="Å»adna" name="None"/> <button label="Pusta" label_selected="Pusta" name="Blank"/> - <check_box label="Pokaż Foldery" name="show_folders_check"/> - <search_editor label="Filtruj Tektury" name="inventory search editor"/> + <check_box label="Pokaż foldery" name="show_folders_check"/> + <search_editor label="Filtruj tektury" name="inventory search editor"/> <check_box label="Zastosuj teraz" name="apply_immediate_check"/> <button label="" label_selected="" name="Pipette"/> <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> - <button label="Ok" label_selected="Ok" name="Select"/> + <button label="OK" label_selected="OK" name="Select"/> <string name="pick title"> Wybór: </string> diff --git a/indra/newview/skins/default/xui/pl/floater_tools.xml b/indra/newview/skins/default/xui/pl/floater_tools.xml index e898c283c586a6b6188d773a99d503568c95c82c..5bc3811ef628d374bdc2e7e78ffe1ca48e41a1df 100644 --- a/indra/newview/skins/default/xui/pl/floater_tools.xml +++ b/indra/newview/skins/default/xui/pl/floater_tools.xml @@ -1,45 +1,81 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="toolbox floater" title="" short_title="BUDUJ"> +<floater name="toolbox floater" short_title="BUDUJ" title=""> + <floater.string name="status_rotate"> + PrzeciÄ…gaj kolorowe pierÅ›cienie żeby obracać obiekt + </floater.string> + <floater.string name="status_scale"> + Kliknij i przeciÄ…gaj żeby rozciÄ…gnąć wybranÄ… stronÄ™ + </floater.string> + <floater.string name="status_move"> + Wybierz opcjÄ™: + </floater.string> + <floater.string name="status_modifyland"> + Kliknij i przytrzymaj żeby modyfikować teren + </floater.string> + <floater.string name="status_camera"> + Kliknij i przeciÄ…gnij żeby zmienić widok + </floater.string> + <floater.string name="status_grab"> + PrzeciÄ…gnij by przesunąć, wybierz Ctrl by podnieść, wybierz Ctrl-Shift by obrócić + </floater.string> + <floater.string name="status_place"> + Kliknij in-world by zacząć budować + </floater.string> + <floater.string name="status_selectland"> + Edytowanie Terenu: + </floater.string> + <floater.string name="grid_screen_text"> + Widok + </floater.string> + <floater.string name="grid_local_text"> + Lokalna + </floater.string> + <floater.string name="grid_world_text"> + Åšwiat + </floater.string> + <floater.string name="grid_reference_text"> + WzglÄ™da + </floater.string> + <floater.string name="grid_attachment_text"> + ZaÅ‚Ä…czniki + </floater.string> <button label="" label_selected="" name="button focus" tool_tip="Zbliżenie"/> <button label="" label_selected="" name="button move" tool_tip="PrzesuniÄ™cie"/> <button label="" label_selected="" name="button edit" tool_tip="Edycja"/> <button label="" label_selected="" name="button create" tool_tip="Stwórz"/> <button label="" label_selected="" name="button land" tool_tip="Teren"/> + <text name="text status"> + PrzeciÄ…gnij żeby przenieść, shift-przeciÄ…gnij żeby skopiować + </text> <radio_group name="focus_radio_group"> <radio_item label="Zbliżenie" name="radio zoom"/> <radio_item label="Obracanie (Ctrl)" name="radio orbit"/> - <radio_item label="PrzesuniÄ™cie (Ctrl-Shift)" name="radio pan"/> + <radio_item label="PrzesuniÄ™cie (Ctrl+Shift)" name="radio pan"/> </radio_group> <radio_group name="move_radio_group"> <radio_item label="PrzesuÅ„" name="radio move"/> <radio_item label="PodnieÅ› (Ctrl)" name="radio lift"/> - <radio_item label="Obróć (Ctrl-Shift)" name="radio spin"/> + <radio_item label="Obracanie (Ctrl+Shift)" name="radio spin"/> </radio_group> <radio_group name="edit_radio_group"> - <radio_item label="Pozycja" name="radio position"/> + <radio_item label="PrzesuÅ„" name="radio position"/> <radio_item label="Obróć (Ctrl)" name="radio rotate"/> - <radio_item label="RozciÄ…gnij (Ctrl-Shift)" name="radio stretch"/> - <radio_item label="Wybierz TeksturÄ™" name="radio select face"/> + <radio_item label="RozciÄ…gnij (Ctrl+Shift)" name="radio stretch"/> + <radio_item label="Wybierz teksturÄ™" name="radio select face"/> </radio_group> - <check_box label="Edytuj PoÅ‚Ä…czone Części" name="checkbox edit linked parts"/> - <text name="text ruler mode"> - Linijka: + <check_box label="Edytuj poÅ‚Ä…czone części" name="checkbox edit linked parts"/> + <text name="RenderingCost" tool_tip="Pokazuje koszt renderowania tego obiektu"> + þ: [COUNT] </text> - <combo_box name="combobox grid mode"> - <combo_box.item name="World" label="Åšwiat" - /> - <combo_box.item name="Local" label="Lokalna" - /> - <combo_box.item name="Reference" label="WzglÄ™dna" - /> - </combo_box> <check_box label="RozciÄ…gnij 2 Strony" name="checkbox uniform"/> - <check_box label="RozciÄ…gnij TeksturÄ™" name="checkbox stretch textures"/> - <check_box label="Użyj Siatki" name="checkbox snap to grid"/> - <button label="Opcje..." label_selected="Opcje..." name="Options..."/> - <text name="text status"> - PrzeciÄ…gnij żeby przenieść, shift-przeciÄ…gnij żeby skopiować - </text> + <check_box initial_value="true" label="RozciÄ…gnij TeksturÄ™" name="checkbox stretch textures"/> + <check_box initial_value="true" label="Użyj siatki" name="checkbox snap to grid"/> + <combo_box name="combobox grid mode" tool_tip="Wybierz rodzaj linijki siatki dla pozycjonowania obiektu"> + <combo_box.item label="Åšwiat" name="World"/> + <combo_box.item label="Lokalna" name="Local"/> + <combo_box.item label="WzglÄ™dna" name="Reference"/> + </combo_box> + <button label="Opcje..." label_selected="Opcje..." name="Options..." tool_tip="WiÄ™cej opcji siatki"/> <button label="" label_selected="" name="ToolCube" tool_tip="SzeÅ›cian"/> <button label="" label_selected="" name="ToolPrism" tool_tip="GraniastosÅ‚up"/> <button label="" label_selected="" name="ToolPyramid" tool_tip="OstrosÅ‚up"/> @@ -57,7 +93,7 @@ <button label="" label_selected="" name="ToolGrass" tool_tip="Trawa"/> <check_box label="Trzymaj zaznaczone" name="checkbox sticky"/> <check_box label="Kopiuj zaznaczone" name="checkbox copy selection"/> - <check_box label="Åšrodek" name="checkbox copy centers"/> + <check_box initial_value="true" label="Åšrodek" name="checkbox copy centers"/> <check_box label="Obróć" name="checkbox copy rotates"/> <radio_group name="land_radio_group"> <radio_item label="Zaznaczanie" name="radio select land"/> @@ -68,7 +104,6 @@ <radio_item label="FaÅ‚dowanie" name="radio noise"/> <radio_item label="Cofnij modyfikacjÄ™" name="radio revert"/> </radio_group> - <button label="Zastosuj" label_selected="Zastosuj" name="button apply to selection" tool_tip="Modyfikuj zaznaczony teren"/> <text name="Bulldozer:"> Burzenie: </text> @@ -78,15 +113,52 @@ <text name="Strength:"> SiÅ‚a </text> - <volume_slider name="slider force"/> + <slider_bar initial_value="0.00" name="slider force"/> + <button label="Zastosuj" label_selected="Zastosuj" name="button apply to selection" tool_tip="Modyfikuj zaznaczony teren"/> <text name="obj_count"> - Wybrane obiekty: [COUNT] + Obiekty: [COUNT] </text> <text name="prim_count"> - primy: [COUNT] + Primy: [COUNT] </text> <tab_container name="Object Info Tabs"> <panel label="Ogólne" name="General"> + <panel.string name="text deed continued"> + Przypisz + </panel.string> + <panel.string name="text deed"> + Przypisz + </panel.string> + <panel.string name="text modify info 1"> + Możesz modyfikować ten obiekt + </panel.string> + <panel.string name="text modify info 2"> + Możesz modyfikować te obiekty + </panel.string> + <panel.string name="text modify info 3"> + Nie możesz modyfikować tego obiektu + </panel.string> + <panel.string name="text modify info 4"> + Nie możesz modyfikować tych obiektów + </panel.string> + <panel.string name="text modify warning"> + Musisz zaznaczyć caÅ‚y obiekt by ustawić prawa. + </panel.string> + <panel.string name="Cost Default"> + Cena: L$ + </panel.string> + <panel.string name="Cost Total"> + Cena caÅ‚kowita: L$ + </panel.string> + <panel.string name="Cost Per Unit"> + Cena za: L$ + </panel.string> + <panel.string name="Cost Mixed"> + Cena mieszana + </panel.string> + <panel.string name="Sale Mixed"> + Sprzedaż mieszana + </panel.string> <text name="Name:"> Nazwa: </text> @@ -101,133 +173,74 @@ <text name="Creator Name"> Thrax Linden </text> - <button label="Profil..." label_selected="Profil..." name="button creator profile"/> <text name="Owner:"> WÅ‚aÅ›ciciel: </text> <text name="Owner Name"> Thrax Linden </text> - <button label="Profil..." label_selected="Profil..." name="button owner profile"/> <text name="Group:"> Grupa: </text> - <text name="Group Name Proxy"> - The Lindens - </text> - <button label="Ustaw..." label_selected="Ustaw..." name="button set group"/> - <text name="Permissions:"> - Prawa: - </text> - - <check_box label="UdostÄ™pnij grupie" name="checkbox share with group" tool_tip="Pozwól czÅ‚onkom grupy przesuwać, modyfikować, kopiować i usuwać."/> - <string name="text deed continued"> - Przypisz... - </string> - <string name="text deed"> - Przypisz - </string> - <button label="Przypisz..." label_selected="Przypisz..." name="button deed" tool_tip=""/> - <check_box label="Pozwól przesuwać każdemu" name="checkbox allow everyone move"/> - <check_box label="Pozwól kopiować każdemu" name="checkbox allow everyone copy"/> - <check_box label="Pokaż w wyszukiwarce" name="search_check" tool_tip="UdostÄ™pnij wyÅ›wietlanie siÄ™ tego przedmiotu w wynikach wyszukiwania"/> - <check_box label="Na Sprzedaż" name="checkbox for sale"/> - <text name="Cost"> - Cena: L$ + <button label="Ustaw..." label_selected="Ustaw..." name="button set group" tool_tip="Wybierz grupÄ™, która uzyska dostÄ™p do praw obiektu"/> + <name_box initial_value="Åadowanie..." name="Group Name Proxy"/> + <button label="Przypisz" label_selected="Przypisz" name="button deed" tool_tip="Przypisanie oddaje prawa nastÄ™pnemu wÅ‚aÅ›cicielowi. Obiekty posiadane przez grupÄ™ mogÄ… zostać przypisane przez oficera grupy."/> + <check_box label="UdostÄ™pnij" name="checkbox share with group" tool_tip="Pozwól czÅ‚onkom grupy na dzielenie praw do modyfikacji tego obiektu. Musisz przypisać obiekt aby uaktywnić ograniczenia dla ról."/> + <text name="label click action"> + Kliknij: </text> - <line_editor name="Edit Cost"/> + <combo_box name="clickaction"> + <combo_box.item label="Dotknij (domyÅ›lne)" name="Touch/grab(default)"/> + <combo_box.item label="UsiÄ…dź na obiekcie" name="Sitonobject"/> + <combo_box.item label="Kup obiekt" name="Buyobject"/> + <combo_box.item label="ZapÅ‚ać obiektowi" name="Payobject"/> + <combo_box.item label="Otwórz" name="Open"/> + <combo_box.item label="Przybliż" name="Zoom"/> + </combo_box> + <check_box label="Na sprzedaż:" name="checkbox for sale"/> <combo_box name="sale type"> <combo_box.item label="Kopia" name="Copy"/> <combo_box.item label="Zawartość" name="Contents"/> <combo_box.item label="OrginaÅ‚" name="Original"/> </combo_box> - - <text name="label click action"> - Lewe KlikniÄ™cie: - </text> - <combo_box name="clickaction"> - <combo_box.item name="Touch/grab(default)" label="Dotknij (domyÅ›lne)" - /> - <combo_box.item name="Sitonobject" label="UsiÄ…dź na Obiekcie" - /> - <combo_box.item name="Buyobject" label="Kup Obiekt" - /> - <combo_box.item name="Payobject" label="ZapÅ‚ać Obiektowi" - /> - <combo_box.item name="Open" label="Otwórz" - /> - <combo_box.item name="Play" label="Odtwarzaj Media" - /> - <combo_box.item name="Opemmedia" label="Otwrórz Media" - /> - </combo_box> - <panel name="perms_build"> - <text name="perm_modify"> - Nie masz prawda do modyfikacji tego obiektu - </text> - <text name="B:"> - B: - </text> - <text name="O:"> - O: - </text> - <text name="G:"> - G: - </text> - <text name="E:"> - E: - </text> - <text name="N:"> - N: - </text> - <text name="F:"> - F: - </text> - <text name="Next owner can:"> - NastÄ™pny wÅ‚aÅ›ciciel: - </text> - <check_box label="Zmienia" name="checkbox next owner can modify"/> - <check_box label="Kopiuje" name="checkbox next owner can copy"/> - <check_box name="checkbox next owner can transfer"/> - </panel> - <string name="text modify info 1"> - Możesz modyfikować ten obiekt - </string> - <string name="text modify info 2"> - Możesz modyfikować te obiekty - </string> - <string name="text modify info 3"> - Nie możesz modyfikować tego obiektu - </string> - <string name="text modify info 4"> - Nie możesz modyfikować tych obieków - </string> - <string name="text modify warning"> - Musisz zaznaczyć caÅ‚y obiekt by ustawić prawa - </string> - <string name="Cost Default"> - Cena: L$ - </string> - <string name="Cost Total"> - Cena CaÅ‚oÅ›ci: L$ - </string> - <string name="Cost Per Unit"> - Cena Za: L$ - </string> - <string name="Cost Mixed"> - Cena Mieszana - </string> - <string name="Sale Mixed"> - Sprzedaż Mieszana - </string> + <spinner label="Cena: L$" name="Edit Cost"/> + <check_box label="Pokaż w wyszukiwarce" name="search_check" tool_tip="UdostÄ™pnij wyÅ›wietlanie siÄ™ tego przedmiotu w wynikach wyszukiwania"/> + <panel name="perms_build"> + <text name="perm_modify"> + Możesz modyfikować ten obiekt + </text> + <text name="Anyone can:"> + Każdy: + </text> + <check_box label="PrzesuÅ„" name="checkbox allow everyone move"/> + <check_box label="Kopiuj" name="checkbox allow everyone copy"/> + <text name="Next owner can:"> + NastÄ™pny WÅ‚aÅ›ciciel: + </text> + <check_box label="Zmienia" name="checkbox next owner can modify"/> + <check_box label="Kopiuje" name="checkbox next owner can copy"/> + <check_box label="Oddaje/Sprzedaje" name="checkbox next owner can transfer" tool_tip="NastÄ™pny WÅ‚aÅ›ciciel może oddawać lub sprzedawać ten obiekt"/> + <text name="B:"> + B: + </text> + <text name="O:"> + O: + </text> + <text name="G:"> + G: + </text> + <text name="E:"> + E: + </text> + <text name="N:"> + N: + </text> + <text name="F:"> + F: + </text> + </panel> </panel> <panel label="Obiekt" name="Object"> - <text name="select_single"> - Wybierz tylko jeden element by edytować jego parametry - </text> - <text name="edit_object"> - Edytuj parametry obiektu: - </text> <check_box label="Zablokowany" name="checkbox locked" tool_tip="Chroni obiekty przed ich przesuniÄ™ciem lub usuniÄ™ciem. Pomocne także w czasie budowania by uniknÄ…c niepotrzebnych edycji."/> <check_box label="Fizyczny" name="Physical Checkbox Ctrl" tool_tip="Umożliwia obcność siÅ‚ grawitacyjnych i oddziaÅ‚ywania pomiÄ™dzy obiektami."/> <check_box label="Tymczasowy" name="Temporary Checkbox Ctrl" tool_tip="Umożliwia usuniÄ™cie obiektu po 1 minucie od jego stworzenia."/> @@ -250,48 +263,27 @@ <spinner label="X" name="Rot X"/> <spinner label="Y" name="Rot Y"/> <spinner label="Z" name="Rot Z"/> - <text name="label material"> - MateriaÅ‚ - </text> - <combo_box name="material"> - <combo_box.item name="Stone" label="KamieÅ„" - /> - <combo_box.item name="Metal" label="Metal" - /> - <combo_box.item name="Glass" label="SzkÅ‚o" - /> - <combo_box.item name="Wood" label="Drewno" - /> - <combo_box.item name="Flesh" label="CiaÅ‚o" - /> - <combo_box.item name="Plastic" label="Plastik" - /> - <combo_box.item name="Rubber" label="Guma" - /> - </combo_box> - <text name="label basetype"> - Rodzaj Bloku Budowalnego - </text> <combo_box name="comboBaseType"> - <combo_box.item name="Box" label="Klocek" - /> - <combo_box.item name="Cylinder" label="Walec" - /> - <combo_box.item name="Prism" label="GraniastosÅ‚up" - /> - <combo_box.item name="Sphere" label="Kula" - /> - <combo_box.item name="Torus" label="Torus" - /> - <combo_box.item name="Tube" label="Rura" - /> - <combo_box.item name="Ring" label="PierÅ›cieÅ„" - /> - <combo_box.item name="Sculpted" label="Skulpty" - /> + <combo_box.item label="Klocek" name="Box"/> + <combo_box.item label="Walec" name="Cylinder"/> + <combo_box.item label="GraniastosÅ‚up" name="Prism"/> + <combo_box.item label="Kula" name="Sphere"/> + <combo_box.item label="Torus" name="Torus"/> + <combo_box.item label="Rura" name="Tube"/> + <combo_box.item label="PierÅ›cieÅ„" name="Ring"/> + <combo_box.item label="Skulpty" name="Sculpted"/> + </combo_box> + <combo_box name="material"> + <combo_box.item label="KamieÅ„" name="Stone"/> + <combo_box.item label="Metal" name="Metal"/> + <combo_box.item label="SzkÅ‚o" name="Glass"/> + <combo_box.item label="Drewno" name="Wood"/> + <combo_box.item label="CiaÅ‚o" name="Flesh"/> + <combo_box.item label="Plastik" name="Plastic"/> + <combo_box.item label="Guma" name="Rubber"/> </combo_box> <text name="text cut"> - Wykrój poczÄ…tek i koniec + Wykrój (poczÄ…tek/koniec) </text> <spinner label="P" name="cut begin"/> <spinner label="K" name="cut end"/> @@ -307,17 +299,13 @@ KsztaÅ‚t Wydrążenia </text> <combo_box name="hole"> - <combo_box.item name="Default" label="DomyÅ›lny" - /> - <combo_box.item name="Circle" label="KoÅ‚o" - /> - <combo_box.item name="Square" label="Kwadrat" - /> - <combo_box.item name="Triangle" label="TrójkÄ…t" - /> + <combo_box.item label="DomyÅ›lny" name="Default"/> + <combo_box.item label="KoÅ‚o" name="Circle"/> + <combo_box.item label="Kwadrat" name="Square"/> + <combo_box.item label="TrójkÄ…t" name="Triangle"/> </combo_box> <text name="text twist"> - SkrÄ™cenie + SkrÄ™cenie (poczÄ…tek/koniec) </text> <spinner label="P" name="Twist Begin"/> <spinner label="K" name="Twist End"/> @@ -325,23 +313,23 @@ Zwężenie </text> <text name="scale_hole"> - Rozmiar WgÅ‚Ä™bienia + Rozmiar wgÅ‚Ä™bienia </text> <spinner label="X" name="Taper Scale X"/> <spinner label="Y" name="Taper Scale Y"/> <text name="text topshear"> - PrzesuniÄ™cie Górne + PrzesuniÄ™cie górne </text> <spinner label="X" name="Shear X"/> <spinner label="Y" name="Shear Y"/> <text name="advanced_cut"> - Wykrojenie Przekroju + Wykrojenie przekroju (poczÄ…tek/koniec) </text> <text name="advanced_dimple"> - PrzesuniÄ™cie Promienia + PrzesuniÄ™cie promienia (poczÄ…tek/koniec) </text> <text name="advanced_slice"> - Przetnij poczÄ…tek i koniec + Przetnij(poczÄ…tek/koniec) </text> <spinner label="P" name="Path Limit Begin"/> <spinner label="K" name="Path Limit End"/> @@ -358,23 +346,18 @@ </text> <spinner name="Radius Offset"/> <spinner name="Revolutions"/> - <texture_picker label="Tekstura Skulptowa" name="sculpt texture control" tool_tip="Click to choose a picture"/> - <check_box label="Odbicie" name="sculpt mirror control" tool_tip="Odwraca skulpt wzdłóż osi X."/> - <check_box label="Åšrodek na zewnÄ…trz" name="sculpt invert control" tool_tip="Odwarca normalne skulptu."/> + <texture_picker label="Tekstura skulptowa" name="sculpt texture control" tool_tip="Click to choose a picture"/> + <check_box label="Odbicie" name="sculpt mirror control" tool_tip="Odwraca skulpt wzdÅ‚uż osi X."/> + <check_box label="Åšrodek na zewnÄ…trz" name="sculpt invert control" tool_tip="Odwraca normalne skulptu."/> <text name="label sculpt type"> - Typ ÅšciÄ™gna + Typ Å›ciÄ™gna </text> <combo_box name="sculpt type control"> - <combo_box.item name="None" label="(żadne)" - /> - <combo_box.item name="Sphere" label="Kula" - /> - <combo_box.item name="Torus" label="Torus" - /> - <combo_box.item name="Plane" label="PÅ‚aczyzna" - /> - <combo_box.item name="Cylinder" label="Walec" - /> + <combo_box.item label="(żadne)" name="None"/> + <combo_box.item label="Kula" name="Sphere"/> + <combo_box.item label="Torus" name="Torus"/> + <combo_box.item label="PÅ‚aszczyzna" name="Plane"/> + <combo_box.item label="Walec" name="Cylinder"/> </combo_box> </panel> <panel label="Atrybuty" name="Features"> @@ -384,7 +367,7 @@ <text name="edit_object"> Edytuj cechy obiektu: </text> - <check_box label="Elastyczność" name="Flexible1D Checkbox Ctrl" tool_tip=""/> + <check_box label="Elastyczność" name="Flexible1D Checkbox Ctrl" tool_tip="Elastyczność wzdÅ‚uż osi Z (tylko po stronie klienta)"/> <spinner label="GÅ‚adkość" name="FlexNumSections"/> <spinner label="Ciężar" name="FlexGravity"/> <spinner label="Drżenie" name="FlexFriction"/> @@ -394,124 +377,99 @@ <spinner label="SiÅ‚a Y" name="FlexForceY"/> <spinner label="SiÅ‚a Z" name="FlexForceZ"/> <check_box label="ÅšwiatÅ‚o" name="Light Checkbox Ctrl" tool_tip="Umożliwia emitajcÄ™ Å›wiatÅ‚a"/> - <text name="label color"> - Kolor - </text> - <color_swatch label="" name="colorswatch" tool_tip="Kliknij by wybrać kolor"/> + <color_swatch label="" name="colorswatch" tool_tip="Kliknij aby wybrać kolor"/> + <texture_picker label="" name="light texture control" tool_tip="Kliknij aby wybrać obraz (efekt wystÄ™puje tylko z aktywowanym opóźnionym renderowaniem)"/> <spinner label="SiÅ‚a" name="Light Intensity"/> + <spinner label="FOV" name="Light FOV"/> <spinner label="PromieÅ„" name="Light Radius"/> + <spinner label="Przybliżenie" name="Light Focus"/> <spinner label="Spadek" name="Light Falloff"/> + <spinner label="Otoczenie/Nastrój" name="Light Ambiance"/> </panel> <panel label="Tekstura" name="Texture"> + <panel.string name="string repeats per meter"> + Powtórzenia / m + </panel.string> + <panel.string name="string repeats per face"> + Powtórzenia + </panel.string> <texture_picker label="Tekstura" name="texture control" tool_tip="Kliknij by wybrać obraz"/> - <color_swatch label="Kolor" name="colorswatch" tool_tip="Kliknij by wybrać kolor"/> - <text name="color trans" left="170" width="99"> + <color_swatch label="Kolor" name="colorswatch" tool_tip="Kliknij aby wybrać kolor"/> + <text left="170" name="color trans" width="99"> Przezroczystość% </text> <spinner left="170" name="ColorTrans"/> - <text name="glow label" left="170"> + <text left="170" name="glow label"> Blask </text> <spinner left="170" name="glow"/> - <check_box label="Jaskrawość" name="checkbox fullbright" left="170"/> + <check_box label="Jaskrawość" left="170" name="checkbox fullbright"/> <text name="tex gen"> Mapowanie </text> <combo_box name="combobox texgen"> - <combo_box.item name="Default" label="DomyÅ›lne" - /> - <combo_box.item name="Planar" label="Planarne" - /> + <combo_box.item label="DomyÅ›lne" name="Default"/> + <combo_box.item label="Planarne" name="Planar"/> </combo_box> <text name="label shininess"> PoÅ‚ysk </text> <combo_box name="combobox shininess"> - <combo_box.item name="None" label="Å»adny" - /> - <combo_box.item name="Low" label="Niski" - /> - <combo_box.item name="Medium" label="Åšredni" - /> - <combo_box.item name="High" label="Wysoki" - /> + <combo_box.item label="Å»adny" name="None"/> + <combo_box.item label="Niski" name="Low"/> + <combo_box.item label="Åšredni" name="Medium"/> + <combo_box.item label="Wysoki" name="High"/> </combo_box> <text name="label bumpiness"> Powierzchnia </text> <combo_box name="combobox bumpiness"> - <combo_box.item name="None" label="Å»adna" - /> - <combo_box.item name="Brightness" label="NajjaÅ›niejsza" - /> - <combo_box.item name="Darkness" label="Najciemniejsza" - /> - <combo_box.item name="woodgrain" label="Drewniano-ziarnista" - /> - <combo_box.item name="bark" label="Kory Drzewa" - /> - <combo_box.item name="bricks" label="CegieÅ‚" - /> - <combo_box.item name="checker" label="Planszy Szachowej" - /> - <combo_box.item name="concrete" label="Betonu" - /> - <combo_box.item name="crustytile" label="PÅ‚ytki/Kafelki" - /> - <combo_box.item name="cutstone" label="Kamienia" - /> - <combo_box.item name="discs" label="Dysku CD" - /> - <combo_box.item name="gravel" label="Å»wiru" - /> - <combo_box.item name="petridish" label="Skamieliny" - /> - <combo_box.item name="siding" label="Brzegu" - /> - <combo_box.item name="stonetile" label="PÅ‚ytki Kamiennej" - /> - <combo_box.item name="stucco" label="Stucco" - /> - <combo_box.item name="suction" label="Suction" - /> - <combo_box.item name="weave" label="Fali" - /> + <combo_box.item label="Å»adna" name="None"/> + <combo_box.item label="NajjaÅ›niejsza" name="Brightness"/> + <combo_box.item label="Najciemniejsza" name="Darkness"/> + <combo_box.item label="Drewniano-ziarnista" name="woodgrain"/> + <combo_box.item label="Kory Drzewa" name="bark"/> + <combo_box.item label="CegieÅ‚" name="bricks"/> + <combo_box.item label="Planszy Szachowej" name="checker"/> + <combo_box.item label="Betonu" name="concrete"/> + <combo_box.item label="PÅ‚ytki/Kafelki" name="crustytile"/> + <combo_box.item label="Kamienia" name="cutstone"/> + <combo_box.item label="Dysku CD" name="discs"/> + <combo_box.item label="Å»wiru" name="gravel"/> + <combo_box.item label="Skamieliny" name="petridish"/> + <combo_box.item label="Brzegu" name="siding"/> + <combo_box.item label="PÅ‚ytki Kamiennej" name="stonetile"/> + <combo_box.item label="Stucco" name="stucco"/> + <combo_box.item label="Suction" name="suction"/> + <combo_box.item label="Fali" name="weave"/> </combo_box> <text name="tex scale"> - Ilość powtórzeÅ„ + Powtórzenia </text> <spinner label="Poziomo (U)" name="TexScaleU"/> <check_box label="Odwróć" name="checkbox flip s"/> <spinner label="Pionowo (V)" name="TexScaleV"/> <check_box label="Odwróć" name="checkbox flip t"/> - <text name="tex rotate"> - Obrót (stopnie) - </text> - <spinner name="TexRot"/> - <string name="string repeats per meter"> - Powtórzenia / m - </string> - <string name="string repeats per face"> - Powtórzenia - </string> - <text name="rpt"> - Powtórzenia / m - </text> - <spinner name="rptctrl"/> + <spinner label="PowtórzeniaËš" name="TexRot"/> + <spinner label="Powtórzenia / metr" name="rptctrl"/> <button label="Zastosuj" label_selected="Zastosuj" name="button apply"/> <text name="tex offset"> - Dopasowanie + Wyrównanie tekstury </text> <spinner label="Poziome (U)" name="TexOffsetU"/> <spinner label="Pionowe (V)" name="TexOffsetV"/> - <text name="textbox autofix"> - Dopasuj TeksturÄ™ Mediów -(najpierw zaÅ‚aduj) - </text> - <button label="Dopasuj" label_selected="Dopasuj" name="button align" left="160"/> + <panel name="Add_Media"> + <text name="media_tex"> + Media + </text> + <button name="add_media" tool_tip="Dodaj media"/> + <button name="delete_media" tool_tip="UsuÅ„ tÄ… teksturÄ™ mediów"/> + <button name="edit_media" tool_tip="Edytuj media"/> + <button label="Dodaj" label_selected="Dopasuj teksturÄ™ mediów" name="button align" tool_tip="Dodaj teksturÄ™ mediów (musi siÄ™ najpierw zaÅ‚adować)"/> + </panel> </panel> <panel label="Treść" name="Contents"> - <button label="Nowy Skrypt" label_selected="Nowy Skrypt" name="button new script"/> + <button label="Nowy skrypt" label_selected="Nowy skrypt" name="button new script"/> <button label="Prawa" name="button permissions"/> </panel> </tab_container> @@ -520,62 +478,29 @@ Informacje o PosiadÅ‚oÅ›ci </text> <text name="label_area_price"> - Cena: L$[PRICE] za [AREA] m + Cena: L$[PRICE] za [AREA] m² </text> <text name="label_area"> - Obszar: [AREA] m + Obszar: [AREA] m² </text> - <button label="O PosiadÅ‚oÅ›ci..." label_selected="O PosiadÅ‚oÅ›ci..." name="button about land"/> - <check_box label="Pokaż WÅ‚aÅ›cicieli" name="checkbox show owners" tool_tip="Pokoloruj posiadÅ‚oÅ›ci zgodnie z przynależnoÅ›ciÄ… do wÅ‚aÅ›ciciela: Zielony = Twoja PosiadÅ‚ość Morski = PosiadÅ‚ość Twojej Grupy Czerwony = PosiadÅ‚oÅ›ci Innych Żółty = Na Sprzedaż Fioletowy = Na AukcjÄ™ Szary = Publiczna"/> - <button label="?" label_selected="?" name="button show owners help" left_delta="120"/> + <button label="O PosiadÅ‚oÅ›ci" label_selected="O PosiadÅ‚oÅ›ci" name="button about land"/> + <check_box label="Pokaż WÅ‚aÅ›cicieli" name="checkbox show owners" tool_tip="Pokoloruj PosiadÅ‚oÅ›ci zgodnie z przynależnoÅ›ciÄ… do WÅ‚aÅ›ciciela: + +Zielony = Twoja PosiadÅ‚ość +Morski = PosiadÅ‚ość Twojej Grupy +Czerwony = PosiadÅ‚oÅ›ci innych +Żółty = Na sprzedaż +Fioletowy = Na aukcjÄ™ +Szary = Publiczna"/> <text name="label_parcel_modify"> Modyfikuj PosiadÅ‚ość </text> <button label="Podziel" label_selected="Podziel" name="button subdivide land"/> <button label="ZÅ‚Ä…cz" label_selected="ZÅ‚Ä…cz" name="button join land"/> <text name="label_parcel_trans"> - Transakcje na posiadÅ‚oÅ›ci + Transakcje na PosiadÅ‚oÅ›ci </text> - <button label="Kup" label_selected="Kup" name="button buy land"/> - <button label="Anuluj" label_selected="Anuluj" name="button abandon land"/> + <button label="Kup PosiadÅ‚ość" label_selected="Kup PosiadÅ‚ość" name="button buy land"/> + <button label="Porzuć PosiadÅ‚ość" label_selected="Porzuć PosiadÅ‚ość" name="button abandon land"/> </panel> - <floater.string name="status_rotate"> - PrzeciÄ…gaj kolorowe pierÅ›cienie żeby obracać obiekt - </floater.string> - <floater.string name="status_scale"> - Kliknij i przeciÄ…gaj żeby rozciÄ…gnąć wybranÄ… stronÄ™ - </floater.string> - <floater.string name="status_move"> - Wybierz opcjÄ™: - </floater.string> - <floater.string name="status_modifyland"> - Kliknij i przytrzymaj żeby modyfikować teren - </floater.string> - <floater.string name="status_camera"> - Kliknij i przeciÄ…gnij żeby zmienić widok - </floater.string> - <floater.string name="status_grab"> - PrzeciÄ…gnij by przesunąć, wybierz Ctrl by podnieść, wybierz Ctrl-Shift by obrócić - </floater.string> - <floater.string name="status_place"> - Kliknij in-world by zacząć budować - </floater.string> - <floater.string name="status_selectland"> - Edytowanie Terenu: - </floater.string> - <floater.string name="grid_screen_text"> - Widok - </floater.string> - <floater.string name="grid_local_text"> - Lokalna - </floater.string> - <floater.string name="grid_world_text"> - Åšwiat - </floater.string> - <floater.string name="grid_reference_text"> - WzglÄ™da - </floater.string> - <floater.string name="grid_attachment_text"> - ZaÅ‚Ä…czniki - </floater.string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_top_objects.xml b/indra/newview/skins/default/xui/pl/floater_top_objects.xml index e7299b0abb8c434bf39ede64ef082d633b66ec33..6afbce7e1064b287650e2f4f46fdda9a3cac7d12 100644 --- a/indra/newview/skins/default/xui/pl/floater_top_objects.xml +++ b/indra/newview/skins/default/xui/pl/floater_top_objects.xml @@ -1,55 +1,56 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="top_objects" title="ÅADOWANIE..."> +<floater name="top_objects" title="Główne Obiekty"> + <floater.string name="top_scripts_title"> + Główne skrypty + </floater.string> + <floater.string name="top_scripts_text"> + [COUNT] skryptów dziaÅ‚a w czasie [TIME] ms + </floater.string> + <floater.string name="scripts_score_label"> + Czas + </floater.string> + <floater.string name="scripts_mono_time_label"> + Mono Time + </floater.string> + <floater.string name="top_colliders_title"> + Główne kolizje + </floater.string> + <floater.string name="top_colliders_text"> + [COUNT] obiektów odczuwa dziaÅ‚anie wielu potencjalnych kolizji + </floater.string> + <floater.string name="colliders_score_label"> + Wynik + </floater.string> + <floater.string name="none_descriptor"> + Nieodnalezione + </floater.string> <text name="title_text"> Åadowanie... </text> <scroll_list name="objects_list"> - <column label="Wynik" name="score"/> - <column label="Nazwa" name="name"/> - <column label="WÅ‚aÅ›ciciel" name="owner"/> - <column label="Miejsce" name="location"/> - <column label="Czas" name="time"/> - <column label="Mono Time" name="mono_time"/> + <scroll_list.columns label="Wynik" name="score"/> + <scroll_list.columns label="Nazwa" name="name"/> + <scroll_list.columns label="WÅ‚aÅ›ciciel" name="owner"/> + <scroll_list.columns label="Miejsce" name="location"/> + <scroll_list.columns label="Czas" name="time"/> + <scroll_list.columns label="Mono Time" name="mono_time"/> + <scroll_list.columns label="URL" name="URLs"/> </scroll_list> <text name="id_text"> - ID Obiektu: + ID obiektu: </text> - <button label="Pokaż Emitery" name="show_beacon_btn"/> + <button label="Pokaż emitery" name="show_beacon_btn"/> <text name="obj_name_text"> - Nazwa Obiektu: + Nazwa obiektu: </text> <button label="Filtr" name="filter_object_btn"/> <text name="owner_name_text"> - Owner Name: + WÅ‚aÅ›ciciel: </text> <button label="Filter" name="filter_owner_btn"/> - <button label="Zwróć Wybrane" name="return_selected_btn"/> - <button label="Zwróć Wszystko" name="return_all_btn"/> - <button label="Deaktywuj Wybrane" name="disable_selected_btn"/> - <button label="Deaktywuj Wszystko" name="disable_all_btn"/> <button label="OdÅ›wież" name="refresh_btn"/> - <string name="top_scripts_title"> - Główne Skrypty - </string> - <string name="top_scripts_text"> - [COUNT] skryptów dziaÅ‚a w czasie [TIME] ms - </string> - <string name="scripts_score_label"> - Czas - </string> - <string name="scripts_mono_time_label"> - Mono Time - </string> - <string name="top_colliders_title"> - Główne Kolizje - </string> - <string name="top_colliders_text"> - [COUNT] obiektów odczuwa dziaÅ‚anie wielu potencjalnych kolizji - </string> - <string name="colliders_score_label"> - Wynik - </string> - <string name="none_descriptor"> - Nie odnalezione - </string> + <button label="Zwróć wybrane" name="return_selected_btn"/> + <button label="Zwróć wszystko" name="return_all_btn"/> + <button label="Deaktywuj wybrane" name="disable_selected_btn"/> + <button label="Deaktywuj wszystko" name="disable_all_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_tos.xml b/indra/newview/skins/default/xui/pl/floater_tos.xml index b9a146df22dffafcda5e9f0bb2c94c8c2b992783..6f7148834785fb56f1f3e82a813e065fab3ca1a2 100644 --- a/indra/newview/skins/default/xui/pl/floater_tos.xml +++ b/indra/newview/skins/default/xui/pl/floater_tos.xml @@ -1,11 +1,10 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="modal container" title=""> - <button label="Kontynuuj" label_selected="Kontynuuj" name="Continue" /> - <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> - <check_box label="Zgadzam siÄ™ na Warunki Serwisu (Terms of Service)" name="agree_chk" /> + <button label="Kontynuuj" label_selected="Kontynuuj" name="Continue"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <check_box label="Zgadzam siÄ™ na Warunki Serwisu (Terms of Service) i PolitykÄ™ PrywatnoÅ›ci (Privacy Policy)" name="agree_chk"/> <text name="tos_heading"> - ProszÄ™ dokÅ‚adnie przeczytać nastÄ™pujÄ…ce Warunki Serwisu (Terms of Service). Musisz -zaakceptować umowÄ™ żeby kontynuować logowanie do [SECOND_LIFE]. + ProszÄ™ dokÅ‚adnie przeczytać nastÄ™pujÄ…ce Warunki Serwisu (Terms of Service) i PolitykÄ™ PrywatnoÅ›ci (Privacy Policy). Musisz zaakceptować umowÄ™ żeby kontynuować logowanie do [SECOND_LIFE]. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/pl/floater_voice_controls.xml b/indra/newview/skins/default/xui/pl/floater_voice_controls.xml new file mode 100644 index 0000000000000000000000000000000000000000..6bee3e911c557767115ae65ff58e924e7a6e3376 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_voice_controls.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater_voice_controls" title="PrzeÅ‚Ä…czniki GÅ‚osu"> + <string name="title_nearby"> + ROZMOWY GÅOSOWE W POBLIÅ»U + </string> + <string name="title_group"> + Rozmowa gÅ‚osowa z grupÄ… [GROUP] + </string> + <string name="title_adhoc"> + Konferencja + </string> + <string name="title_peer_2_peer"> + Rozmowa gÅ‚osowa z [NAME] + </string> + <string name="no_one_near"> + Nikt w pobliżu nie ma aktywnych rozmów gÅ‚osowych + </string> + <layout_stack name="my_call_stack"> + <layout_panel name="my_panel"> + <text name="user_text" value="Mój awatar:"/> + </layout_panel> + <layout_panel name="leave_call_btn_panel"> + <button label="ZakoÅ„cz" name="leave_call_btn"/> + </layout_panel> + </layout_stack> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_water.xml b/indra/newview/skins/default/xui/pl/floater_water.xml index 7333633c1d7dbeb74c6bf3f14852b34e2707ea5f..9720dae516a717fb1d07be6875d97e3ea2e915b4 100644 --- a/indra/newview/skins/default/xui/pl/floater_water.xml +++ b/indra/newview/skins/default/xui/pl/floater_water.xml @@ -1,32 +1,32 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Water Floater" title="ZAAWANSOWANY EDYTOR WODY"> <text name="KeyFramePresetsText"> - Ustawienia Wody: + Ustawienia wody: </text> - <button label="Nowe" label_selected="Nowe" name="WaterNewPreset" /> - <button label="Zapisz" label_selected="Zapisz" name="WaterSavePreset" /> - <button label="UsuÅ„" label_selected="UsuÅ„" name="WaterDeletePreset" /> + <button label="Nowe" label_selected="Nowe" name="WaterNewPreset"/> + <button label="Zapisz" label_selected="Zapisz" name="WaterSavePreset"/> + <button label="UsuÅ„" label_selected="UsuÅ„" name="WaterDeletePreset"/> <tab_container name="Water Tabs"> - <panel label="Ustawienia" name="Settings"> + <panel label="USTAWIENIA" name="Settings"> <text name="BHText"> - Kolor Podwodnej MgÅ‚y + Kolor podwodnej mgÅ‚y </text> - <button label="?" name="WaterFogColorHelp" /> - <color_swatch label="" name="WaterFogColor" tool_tip="Kliknij by wybrać kolor" /> + <button label="?" name="WaterFogColorHelp"/> + <color_swatch label="" name="WaterFogColor" tool_tip="Kliknij aby wybrać kolor"/> <text name="WaterFogDensText"> - WykÅ‚adnik GÄ™stoÅ›ci MgÅ‚y + WykÅ‚adnik gÄ™stoÅ›ci mgÅ‚y </text> - <button label="?" name="WaterFogDensityHelp" /> - <slider label="" name="WaterFogDensity" /> + <button label="?" name="WaterFogDensityHelp"/> + <slider label="" name="WaterFogDensity"/> <text name="WaterUnderWaterFogModText"> - Modyfikator MgÅ‚y + Modyfikator mgÅ‚y </text> - <button label="?" name="WaterUnderWaterFogModHelp" /> - <slider label="" name="WaterUnderWaterFogMod" /> + <button label="?" name="WaterUnderWaterFogModHelp"/> + <slider label="" name="WaterUnderWaterFogMod"/> <text name="BDensText"> - Skala ZmarszczeÅ„ + Skala zmarszczeÅ„ </text> - <button label="?" name="WaterNormalScaleHelp" /> + <button label="?" name="WaterNormalScaleHelp"/> <text name="BHText2"> 1 </text> @@ -36,65 +36,65 @@ <text name="BHText4"> 3 </text> - <slider label="" name="WaterNormalScaleX" /> - <slider label="" name="WaterNormalScaleY" /> - <slider label="" name="WaterNormalScaleZ" /> + <slider label="" name="WaterNormalScaleX"/> + <slider label="" name="WaterNormalScaleY"/> + <slider label="" name="WaterNormalScaleZ"/> <text name="HDText"> Skala Fresnela </text> - <button label="?" name="WaterFresnelScaleHelp" /> - <slider label="" name="WaterFresnelScale" /> + <button label="?" name="WaterFresnelScaleHelp"/> + <slider label="" name="WaterFresnelScale"/> <text name="FresnelOffsetText"> PrzesuniÄ™cie Fresnela </text> - <button label="?" name="WaterFresnelOffsetHelp" /> - <slider label="" name="WaterFresnelOffset" /> + <button label="?" name="WaterFresnelOffsetHelp"/> + <slider label="" name="WaterFresnelOffset"/> <text name="DensMultText"> - Górna Refrakcja + Górna refrakcja </text> - <button label="?" name="WaterScaleAboveHelp" /> - <slider label="" name="WaterScaleAbove" /> + <button label="?" name="WaterScaleAboveHelp"/> + <slider label="" name="WaterScaleAbove"/> <text name="WaterScaleBelowText"> - Dolna Refrakcja + Dolna refrakcja </text> - <button label="?" name="WaterScaleBelowHelp" /> - <slider label="" name="WaterScaleBelow" /> + <button label="?" name="WaterScaleBelowHelp"/> + <slider label="" name="WaterScaleBelow"/> <text name="MaxAltText"> - Mnożnik Rozmycia + Mnożnik rozmycia </text> - <button label="?" name="WaterBlurMultiplierHelp" /> - <slider label="" name="WaterBlurMult" /> + <button label="?" name="WaterBlurMultiplierHelp"/> + <slider label="" name="WaterBlurMult"/> </panel> - <panel label="Rysowanie" name="Waves"> + <panel label="OBRAZ" name="Waves"> <text name="BHText"> - Kierunek Dużych Fal + Kierunek dużych fal </text> - <button label="?" name="WaterWave1Help" /> + <button label="?" name="WaterWave1Help"/> <text name="WaterWave1DirXText"> X </text> <text name="WaterWave1DirYText"> Y </text> - <slider label="" name="WaterWave1DirX" /> - <slider label="" name="WaterWave1DirY" /> + <slider label="" name="WaterWave1DirX"/> + <slider label="" name="WaterWave1DirY"/> <text name="BHText2"> - Kierunek MaÅ‚ych Fal + Kierunek maÅ‚ych fal </text> - <button label="?" name="WaterWave2Help" /> + <button label="?" name="WaterWave2Help"/> <text name="WaterWave2DirXText"> X </text> <text name="WaterWave2DirYText"> Y </text> - <slider label="" name="WaterWave2DirX" /> - <slider label="" name="WaterWave2DirY" /> + <slider label="" name="WaterWave2DirX"/> + <slider label="" name="WaterWave2DirY"/> <text name="BHText3"> - Mapa Normalnych + Mapa normalnych </text> - <button label="?" name="WaterNormalMapHelp" /> - <texture_picker label="" name="WaterNormalMap" /> + <button label="?" name="WaterNormalMapHelp"/> + <texture_picker label="" name="WaterNormalMap"/> </panel> </tab_container> <string name="WLDefaultWaterNames"> diff --git a/indra/newview/skins/default/xui/pl/floater_wearable_save_as.xml b/indra/newview/skins/default/xui/pl/floater_wearable_save_as.xml index 2d4582392c301d2964e6e7415a25266d825a702c..925295102e405522690007628ceb4c1c67c4e606 100644 --- a/indra/newview/skins/default/xui/pl/floater_wearable_save_as.xml +++ b/indra/newview/skins/default/xui/pl/floater_wearable_save_as.xml @@ -1,9 +1,9 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="modal container" title=""> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> <text name="Save item as:"> - Zachowaj jako: + Zapisz obiekt w mojej Szafie jako: </text> <line_editor name="name ed"> Nowe [DESC] diff --git a/indra/newview/skins/default/xui/pl/floater_whitelist_entry.xml b/indra/newview/skins/default/xui/pl/floater_whitelist_entry.xml new file mode 100644 index 0000000000000000000000000000000000000000..4081b8a37e86eadaa012f2280b309793c4a811c6 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_whitelist_entry.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="whitelist_entry" title="BIAÅA LISTA"> + <text name="media_label"> + Wprowadź URL lub wzorzec URL dla dodania do listy dozwolonych domen + </text> + <line_editor name="whitelist_entry" tool_tip="Wprowadź URL lub wzorzec URL do BiaÅ‚ej Listy"/> + <button label="OK" name="ok_btn"/> + <button label="Anuluj" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_windlight_options.xml b/indra/newview/skins/default/xui/pl/floater_windlight_options.xml index 86ef9300da38f4c4c0c99fc4f4ebd1455f626c72..49e523fae8bc75a18af9ec3eba05ff2d7f3ac726 100644 --- a/indra/newview/skins/default/xui/pl/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/pl/floater_windlight_options.xml @@ -1,19 +1,18 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="WindLight floater" title="ZAAWANSOWANY EDYTOR NIEBA"> <text name="KeyFramePresetsText"> - Ustawienia Nieba: + Ustawienia nieba: </text> - <button label="Nowe" label_selected="Nowe" name="WLNewPreset" /> - <button label="Zapisz" label_selected="Zapisz" name="WLSavePreset" /> - <button label="UsuÅ„" label_selected="UsuÅ„" name="WLDeletePreset" /> - <button label="Edytor Cyklu Dnia" label_selected="Edytor Cyklu Dnia" - name="WLDayCycleMenuButton" /> + <button label="Nowe" label_selected="Nowe" name="WLNewPreset"/> + <button label="Zapisz" label_selected="Zapisz" name="WLSavePreset"/> + <button label="UsuÅ„" label_selected="UsuÅ„" name="WLDeletePreset"/> + <button label="Edytor cyklu dnia" label_selected="Edytor cyklu dnia" name="WLDayCycleMenuButton"/> <tab_container name="WindLight Tabs"> - <panel label="Atmosfera" name="Atmosphere"> + <panel label="ATMOSFERA" name="Atmosphere"> <text name="BHText"> - Horyzont BÅ‚Ä™kitu + Horyzont bÅ‚Ä™kitu </text> - <button label="?" name="WLBlueHorizonHelp" /> + <button label="?" name="WLBlueHorizonHelp"/> <text name="BHText2"> R </text> @@ -26,19 +25,19 @@ <text name="BHText5"> I </text> - <slider label="" name="WLBlueHorizonR" /> - <slider label="" name="WLBlueHorizonG" /> - <slider label="" name="WLBlueHorizonB" /> - <slider label="" name="WLBlueHorizonI" /> + <slider label="" name="WLBlueHorizonR"/> + <slider label="" name="WLBlueHorizonG"/> + <slider label="" name="WLBlueHorizonB"/> + <slider label="" name="WLBlueHorizonI"/> <text name="BDensText"> - Horyzont Zamglenia + Horyzont zamglenia </text> - <button label="?" name="WLHazeHorizonHelp" /> - <slider label="" name="WLHazeHorizon" /> + <button label="?" name="WLHazeHorizonHelp"/> + <slider label="" name="WLHazeHorizon"/> <text name="BDensText2"> - GÄ™stość BÅ‚Ä™kitu + GÄ™stość bÅ‚Ä™kitu </text> - <button label="?" name="WLBlueDensityHelp" /> + <button label="?" name="WLBlueDensityHelp"/> <text name="BHText6"> R </text> @@ -51,36 +50,36 @@ <text name="BHText9"> I </text> - <slider label="" name="WLBlueDensityR" /> - <slider label="" name="WLBlueDensityG" /> - <slider label="" name="WLBlueDensityB" /> - <slider label="" name="WLBlueDensityI" /> + <slider label="" name="WLBlueDensityR"/> + <slider label="" name="WLBlueDensityG"/> + <slider label="" name="WLBlueDensityB"/> + <slider label="" name="WLBlueDensityI"/> <text name="HDText"> - GÄ™stość Zamglenia + GÄ™stość zamglenia </text> - <button label="?" name="WLHazeDensityHelp" /> - <slider label="" name="WLHazeDensity" /> + <button label="?" name="WLHazeDensityHelp"/> + <slider label="" name="WLHazeDensity"/> <text name="DensMultText"> - Mnożnik GÄ™soÅ›ci + Mnożnik gÄ™soÅ›ci </text> - <button label="?" name="WLDensityMultHelp" /> - <slider label="" name="WLDensityMult" /> + <button label="?" name="WLDensityMultHelp"/> + <slider label="" name="WLDensityMult"/> <text name="WLDistanceMultText"> - Mnożnik Dystansu + Mnożnik dystansu </text> - <button label="?" name="WLDistanceMultHelp" /> - <slider label="" name="WLDistanceMult" /> + <button label="?" name="WLDistanceMultHelp"/> + <slider label="" name="WLDistanceMult"/> <text name="MaxAltText"> - Max Wysokość + Max wysokość </text> - <button label="?" name="WLMaxAltitudeHelp" /> - <slider label="" name="WLMaxAltitude" /> + <button label="?" name="WLMaxAltitudeHelp"/> + <slider label="" name="WLMaxAltitude"/> </panel> - <panel label="ÅšwiatÅ‚o" name="Lighting"> + <panel label="ÅšWIATÅO" name="Lighting"> <text name="SLCText"> - Kolor SÅ‚oÅ„ca/Księżyca + Kolor sÅ‚oÅ„ca/księżyca </text> - <button label="?" name="WLSunlightColorHelp" /> + <button label="?" name="WLSunlightColorHelp"/> <text name="BHText"> R </text> @@ -93,19 +92,19 @@ <text name="BHText4"> I </text> - <slider label="" name="WLSunlightR" /> - <slider label="" name="WLSunlightG" /> - <slider label="" name="WLSunlightB" /> - <slider label="" name="WLSunlightI" /> + <slider label="" name="WLSunlightR"/> + <slider label="" name="WLSunlightG"/> + <slider label="" name="WLSunlightB"/> + <slider label="" name="WLSunlightI"/> <text name="TODText"> - Pozycja SÅ‚oÅ„ca/Księżyca + Pozycja sÅ‚oÅ„ca/księżyca </text> - <button label="?" name="WLTimeOfDayHelp" /> - <slider label="" name="WLSunAngle" /> + <button label="?" name="WLTimeOfDayHelp"/> + <slider label="" name="WLSunAngle"/> <text name="WLAmbientText"> Otoczenie </text> - <button label="?" name="WLAmbientHelp" /> + <button label="?" name="WLAmbientHelp"/> <text name="BHText5"> R </text> @@ -118,37 +117,37 @@ <text name="BHText8"> I </text> - <slider label="" name="WLAmbientR" /> - <slider label="" name="WLAmbientG" /> - <slider label="" name="WLAmbientB" /> - <slider label="" name="WLAmbientI" /> + <slider label="" name="WLAmbientR"/> + <slider label="" name="WLAmbientG"/> + <slider label="" name="WLAmbientB"/> + <slider label="" name="WLAmbientI"/> <text name="WLEastAngleText"> - Pozycja Wschodu + Pozycja wschodu </text> - <button label="?" name="WLEastAngleHelp" /> - <slider label="" name="WLEastAngle" /> + <button label="?" name="WLEastAngleHelp"/> + <slider label="" name="WLEastAngle"/> <text name="SunGlowText"> - Blask SÅ‚oÅ„ca + Blask sÅ‚oÅ„ca </text> - <button label="?" name="WLSunGlowHelp" /> - <slider label="Ostrość" name="WLGlowB" /> - <slider label="Rozmiar" name="WLGlowR" /> + <button label="?" name="WLSunGlowHelp"/> + <slider label="Ostrość" name="WLGlowB"/> + <slider label="Rozmiar" name="WLGlowR"/> <text name="SceneGammaText"> - Jasność Obrazu + Jasność obrazu </text> - <button label="?" name="WLSceneGammaHelp" /> - <slider label="" name="WLGamma" /> + <button label="?" name="WLSceneGammaHelp"/> + <slider label="" name="WLGamma"/> <text name="WLStarText"> - Blask Gwiazd + Blask gwiazd </text> - <button label="?" name="WLStarBrightnessHelp" /> - <slider label="" name="WLStarAlpha" /> + <button label="?" name="WLStarBrightnessHelp"/> + <slider label="" name="WLStarAlpha"/> </panel> - <panel label="Chmury" name="Clouds"> + <panel label="CHMURY" name="Clouds"> <text name="WLCloudColorText"> - Kolor Chmur + Kolor chmur </text> - <button label="?" name="WLCloudColorHelp" /> + <button label="?" name="WLCloudColorHelp"/> <text name="BHText"> R </text> @@ -161,14 +160,14 @@ <text name="BHText4"> I </text> - <slider label="" name="WLCloudColorR" /> - <slider label="" name="WLCloudColorG" /> - <slider label="" name="WLCloudColorB" /> - <slider label="" name="WLCloudColorI" /> + <slider label="" name="WLCloudColorR"/> + <slider label="" name="WLCloudColorG"/> + <slider label="" name="WLCloudColorB"/> + <slider label="" name="WLCloudColorI"/> <text name="WLCloudColorText2"> Chmury (XY/GÄ™stość) </text> - <button label="?" name="WLCloudDensityHelp" /> + <button label="?" name="WLCloudDensityHelp"/> <text name="BHText5"> X </text> @@ -178,23 +177,23 @@ <text name="BHText7"> G </text> - <slider label="" name="WLCloudX" /> - <slider label="" name="WLCloudY" /> - <slider label="" name="WLCloudDensity" /> + <slider label="" name="WLCloudX"/> + <slider label="" name="WLCloudY"/> + <slider label="" name="WLCloudDensity"/> <text name="WLCloudCoverageText"> - Pokrycie Chmur + Pokrycie chmur </text> - <button label="?" name="WLCloudCoverageHelp" /> - <slider label="" name="WLCloudCoverage" /> + <button label="?" name="WLCloudCoverageHelp"/> + <slider label="" name="WLCloudCoverage"/> <text name="WLCloudScaleText"> - Skala Chmur + Skala chmur </text> - <button label="?" name="WLCloudScaleHelp" /> - <slider label="" name="WLCloudScale" /> + <button label="?" name="WLCloudScaleHelp"/> + <slider label="" name="WLCloudScale"/> <text name="WLCloudDetailText"> - Szczegóły (XY/GÄ™stość) + Szczegóły (XY/gÄ™stość) </text> - <button label="?" name="WLCloudDetailHelp" /> + <button label="?" name="WLCloudDetailHelp"/> <text name="BHText8"> X </text> @@ -204,23 +203,23 @@ <text name="BHText10"> G </text> - <slider label="" name="WLCloudDetailX" /> - <slider label="" name="WLCloudDetailY" /> - <slider label="" name="WLCloudDetailDensity" /> + <slider label="" name="WLCloudDetailX"/> + <slider label="" name="WLCloudDetailY"/> + <slider label="" name="WLCloudDetailDensity"/> <text name="WLCloudScrollXText"> - Przewijanie Chmur X + Przewijanie chmur X </text> - <button label="?" name="WLCloudScrollXHelp" /> - <check_box label="Zablokuj" name="WLCloudLockX" /> - <slider label="" name="WLCloudScrollX" /> + <button label="?" name="WLCloudScrollXHelp"/> + <check_box label="Zablokuj" name="WLCloudLockX"/> + <slider label="" name="WLCloudScrollX"/> <text name="WLCloudScrollYText"> - Przewijanie Chmur Y + Przewijanie chmur Y </text> - <button label="?" name="WLCloudScrollYHelp" /> - <check_box label="Zablokuj" name="WLCloudLockY" /> - <slider label="" name="WLCloudScrollY" /> - <check_box label="Klasyczne Chmury" name="DrawClassicClouds" /> - <button label="?" name="WLClassicCloudsHelp" /> + <button label="?" name="WLCloudScrollYHelp"/> + <check_box label="Zablokuj" name="WLCloudLockY"/> + <slider label="" name="WLCloudScrollY"/> + <check_box label="Klasyczne chmury" name="DrawClassicClouds"/> + <button label="?" name="WLClassicCloudsHelp"/> </panel> </tab_container> <string name="WLDefaultSkyNames"> diff --git a/indra/newview/skins/default/xui/pl/floater_window_size.xml b/indra/newview/skins/default/xui/pl/floater_window_size.xml new file mode 100644 index 0000000000000000000000000000000000000000..2a6c257e54d81034ba6fffaaa1bfbcc65c1ed876 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_window_size.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="window_size" title="WYMIARY OKNA"> + <string name="resolution_format"> + [RES_X] x [RES_Y] + </string> + <text name="windowsize_text"> + Ustaw rozmiar okna: + </text> + <combo_box name="window_size_combo" tool_tip="szerokość x wysokość"> + <combo_box.item label="1000 x 700 (domyÅ›lnie)" name="item0"/> + <combo_box.item label="1024 x 768" name="item1"/> + <combo_box.item label="1280 x 720 (720p)" name="item2"/> + <combo_box.item label="1920 x 1080 (1080p)" name="item3"/> + </combo_box> + <button label="Ustaw" name="set_btn"/> + <button label="Anuluj" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_world_map.xml b/indra/newview/skins/default/xui/pl/floater_world_map.xml index 36e3b0651bf51be9c630dabaa506328efa21f4d9..95010e0b91b08646c334c7768a0b8296714157af 100644 --- a/indra/newview/skins/default/xui/pl/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pl/floater_world_map.xml @@ -1,59 +1,70 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="worldmap" title="MAPA ÅšWIATA"> - <tab_container name="maptab"> - <panel label="Obiekty" name="objects_mapview"/> - <panel label="Teren" name="terrain_mapview"/> - </tab_container> - <text name="you_label"> - Ty - </text> - <icon left="1058" name="home"/> - <text name="home_label"> - Start - </text> - <text name="auction_label"> - Aukcja - </text> - <text name="land_for_sale_label"> - Na Sprzedaż - </text> - <button width="122" left="1116" label="Teleportuj do Start" label_selected="Teleportuj do Start" name="Go Home" tool_tip="Teleportuj siÄ™ do miejsca startowego"/> - <check_box label="Rezydent" name="people_chk"/> - <check_box label="Infohub" name="infohub_chk"/> - <check_box label="Telehub" name="telehubchk"/> - <check_box label="PosiadÅ‚ość na sprzedaż" name="land_for_sale_chk"/> - <text name="events_label"> - Wydarzenia: - </text> - <check_box label="'PG'" name="event_chk"/> - <check_box label="'Mature'" name="event_mature_chk"/> - <check_box label="'Adult'" name="event_adult_chk"/> - <icon bottom="-196" name="avatar_icon"/> - <combo_box label="DostÄ™pni Znajomi" name="friend combo" tool_tip="Znajomi na mapie"> - <combo_box.item name="item1" label="DostÄ™pni Znajomi" /> - </combo_box> - <combo_box label="Zapisane Miejsca" name="landmark combo" tool_tip="Zapisane miejsca na mapie"> - <combo_box.item name="item1" label="Zapisane Miejsca" /> - </combo_box> - <line_editor label="Szukaj po nazwie regionu" name="location" tool_tip="Wpisz nazwÄ™ regionu"/> - <button label="Szukaj" name="DoSearch" tool_tip="Wyszukiwaie regionu"/> - <text name="search_label"> - Wyniki wyszukiwania: - </text> - <scroll_list name="search_results" bottom_delta="-310" height="304" > - <column label="" name="icon"/> - <column label="" name="sim_name"/> - </scroll_list> - <text name="location_label"> - PoÅ‚ożenie: - </text> - <spinner name="spin x" tool_tip="współrzÄ™dne X na mapie"/> - <spinner name="spin y" tool_tip="współrzÄ™dne Y na mapie"/> - <spinner name="spin z" tool_tip="współrzÄ™dne Z na mapie"/> - <button label="Teleportuj" label_selected="Teleportuj" name="Teleport" tool_tip="Teleportuj do wybranego miejsca"/> - <button label="Pokaż Cel" label_selected="Pokaż Cel" name="Show Destination" tool_tip="Wycentruj miejsce celu na mapie"/> - <button label="Wyczyść" label_selected="Wyczyść" name="Clear" tool_tip="Stop tracking"/> - <button label="Pokaż moje miejsce" label_selected="Pokaż moje miejsce" name="Show My Location" tool_tip="Wycentruj pozcjÄ™ awatara na mapie"/> - <button label="Kopiuj SLurl do schowka" name="copy_slurl" tool_tip="Kopie SLurl obecnego miejsca bÄ™dÄ™ mogÅ‚y zostać użyte na stronie internetowej."/> - <slider label="Skala" name="zoom slider"/> + <panel name="layout_panel_1"> + <text name="events_label"> + Legenda + </text> + </panel> + <panel name="layout_panel_2"> + <button name="Show My Location" tool_tip="WyÅ›rodkuj mapÄ™ w miejscu, gdzie znajduje siÄ™ mój awatar"/> + <text name="me_label"> + Ja + </text> + <text name="person_label"> + Osoba + </text> + <text name="infohub_label"> + Infohub + </text> + <text name="land_sale_label"> + Sprzedaż PosiadÅ‚oÅ›ci + </text> + <text name="by_owner_label"> + przez WÅ‚aÅ›ciciela + </text> + <text name="auction_label"> + aukcja PosiadÅ‚oÅ›ci + </text> + <button name="Go Home" tool_tip="Teleportuj do mojego Miejsca Startowego"/> + <text name="Home_label"> + Miejsce Startu + </text> + <text name="events_label"> + Wydarzenia: + </text> + <text name="pg_label"> + Ogólne + </text> + <check_box initial_value="prawda" name="event_mature_chk"/> + <text name="mature_label"> + Moderuj + </text> + <text name="adult_label"> + Adult + </text> + </panel> + <panel name="layout_panel_3"> + <text name="find_on_map_label"> + Znajdź na mapie + </text> + </panel> + <panel name="layout_panel_4"> + <combo_box label="DostÄ™pni Znajomi" name="friend combo" tool_tip="Pokaż znajomych na mapie"> + <combo_box.item label="Moi DostÄ™pni Znajomi" name="item1"/> + </combo_box> + <combo_box label="Zapisane Miejsca" name="landmark combo" tool_tip="Pokaż zapisane miejsce na mapie"> + <combo_box.item label="Zapisane Miejsca" name="item1"/> + </combo_box> + <search_editor label="Regiony WedÅ‚ug Nazwy" name="location" tool_tip="Wpisz nazwÄ™ regionu"/> + <button label="Znajdź" name="DoSearch" tool_tip="Szukaj regionu"/> + <button name="Clear" tool_tip="Wyczyść zapamiÄ™tane linie oraz zresetuj mapÄ™"/> + <button label="Teleportuj" name="Teleport" tool_tip="Teleportuj do wybranego miejsca"/> + <button label="Kopiuj SLurl" name="copy_slurl" tool_tip="Kopie obecnego miejsca jako SLurl mogÄ… zostać użyte na stronie internetowej."/> + <button label="Pokaż wybrane" name="Show Destination" tool_tip="WyÅ›rodkuj mapÄ™ w wybranym miejscu"/> + </panel> + <panel name="layout_panel_5"> + <text name="zoom_label"> + Przybliż + </text> + </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/inspect_avatar.xml b/indra/newview/skins/default/xui/pl/inspect_avatar.xml index 4ba36de6faa633e6409e0c4cfbd462f7e73cac38..3ee0b976eb76d2670dd0c273cc7dbca85627192f 100644 --- a/indra/newview/skins/default/xui/pl/inspect_avatar.xml +++ b/indra/newview/skins/default/xui/pl/inspect_avatar.xml @@ -13,9 +13,9 @@ <slider name="volume_slider" tool_tip="Posiom GÅ‚oÅ›noÅ›ci" value="0.5"/> <button label="Dodaj Znajomość" name="add_friend_btn"/> <button label="IM" name="im_btn"/> - <button label="WiÄ™cej" name="view_profile_btn"/> + <button label="Profil" name="view_profile_btn"/> <panel name="moderator_panel"> - <button label="WyÅ‚Ä…cz KomunikacjÄ™ GÅ‚osowÄ…" name="disable_voice"/> - <button label="WÅ‚Ä…cz KomunikacjÄ™ GÅ‚osowÄ…" name="enable_voice"/> + <button label="WyÅ‚Ä…cz komunikacjÄ™ gÅ‚osowÄ…" name="disable_voice"/> + <button label="WÅ‚Ä…cz komunikacjÄ™ gÅ‚osowÄ…" name="enable_voice"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/inspect_group.xml b/indra/newview/skins/default/xui/pl/inspect_group.xml index d434443794cb837c8497b6ef394e66dd057255be..0a2a62ce74b3cf084af8a9c8ae72ffb512db94c1 100644 --- a/indra/newview/skins/default/xui/pl/inspect_group.xml +++ b/indra/newview/skins/default/xui/pl/inspect_group.xml @@ -5,10 +5,10 @@ --> <floater name="inspect_group"> <string name="PrivateGroup"> - Grupa Prywatna + Grupa prywatna </string> <string name="FreeToJoin"> - WstÄ™p Wolny + WstÄ™p wolny </string> <string name="CostToJoin"> L$[AMOUNT] by doÅ‚Ä…czyć diff --git a/indra/newview/skins/default/xui/pl/inspect_object.xml b/indra/newview/skins/default/xui/pl/inspect_object.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e15691463e10712dbcf3ce4fc6796bcaddd2000 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/inspect_object.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<!-- + Not can_close / no title to avoid window chrome + Single instance - only have one at a time, recycle it each spawn +--> +<floater name="inspect_object"> + <string name="Creator"> + Przez [CREATOR] + </string> + <string name="CreatorAndOwner"> + przez [CREATOR] +wÅ‚aÅ›ciciel [OWNER] + </string> + <string name="Price"> + L$[AMOUNT] + </string> + <string name="PriceFree"> + Darmowe! + </string> + <string name="Touch"> + Dotknij + </string> + <string name="Sit"> + UsiÄ…dź tutaj + </string> + <button label="Kup" name="buy_btn"/> + <button label="ZapÅ‚ać" name="pay_btn"/> + <button label="Weź kopiÄ™" name="take_free_copy_btn"/> + <button label="Dotknij" name="touch_btn"/> + <button label="UsiÄ…dź tutaj" name="sit_btn"/> + <button label="Otwórz" name="open_btn"/> + <icon name="secure_browsing" tool_tip="Zabezpiecz przeglÄ…danie"/> + <button label="WiÄ™cej" name="more_info_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/menu_attachment_self.xml b/indra/newview/skins/default/xui/pl/menu_attachment_self.xml index 1107a5d9d1c8c9436f8d34ca9df7ae78dce2cfa8..ff695be205b7a0475123501c0d840e0588d947ad 100644 --- a/indra/newview/skins/default/xui/pl/menu_attachment_self.xml +++ b/indra/newview/skins/default/xui/pl/menu_attachment_self.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Attachment Pie"> - <menu_item_call label="Dotnij" name="Attachment Object Touch"/> + <menu_item_call label="Dotknij" name="Attachment Object Touch"/> <menu_item_call label="Edytuj" name="Edit..."/> <menu_item_call label="OdÅ‚Ä…cz" name="Detach"/> <menu_item_call label="Opuść" name="Drop"/> diff --git a/indra/newview/skins/default/xui/pl/menu_avatar_self.xml b/indra/newview/skins/default/xui/pl/menu_avatar_self.xml index 427c0d464ba1baca60b5daa144f55876f44fdae9..0bca90168f93841cb68f994a60e635f13f94b8ec 100644 --- a/indra/newview/skins/default/xui/pl/menu_avatar_self.xml +++ b/indra/newview/skins/default/xui/pl/menu_avatar_self.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Self Pie"> <menu_item_call label="WstaÅ„" name="Stand Up"/> - <context_menu label="Zdejmij >" name="Take Off >"> - <context_menu label="Ubranie >" name="Clothes >"> + <context_menu label="Zdejmij â–¶" name="Take Off >"> + <context_menu label="Ubrania â–¶" name="Clothes >"> <menu_item_call label="KoszulkÄ™" name="Shirt"/> <menu_item_call label="Spodnie" name="Pants"/> <menu_item_call label="SpódnicÄ™" name="Skirt"/> @@ -16,8 +16,8 @@ <menu_item_call label="Ubranie Przezroczyste" name="Self Alpha"/> <menu_item_call label="Wszystko" name="All Clothes"/> </context_menu> - <context_menu label="HUD >" name="Object Detach HUD"/> - <context_menu label="OdÅ‚Ä…cz >" name="Object Detach"/> + <context_menu label="HUD â–¶" name="Object Detach HUD"/> + <context_menu label="OdÅ‚Ä…cz â–¶" name="Object Detach"/> <menu_item_call label="OdÅ‚Ä…cz Wszystko" name="Detach All"/> </context_menu> <menu_item_call label="Mój WyglÄ…d" name="Appearance..."/> diff --git a/indra/newview/skins/default/xui/pl/menu_bottomtray.xml b/indra/newview/skins/default/xui/pl/menu_bottomtray.xml index 818dfc08aeb5f2c14b993843d59a27e38f6982b1..9fcf1b3440437c4c76611effdb4cdaa6598d8db9 100644 --- a/indra/newview/skins/default/xui/pl/menu_bottomtray.xml +++ b/indra/newview/skins/default/xui/pl/menu_bottomtray.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="hide_camera_move_controls_menu"> - <menu_item_check label="Przycisk Gesturek" name="ShowGestureButton"/> + <menu_item_check label="Przycisk Gestur" name="ShowGestureButton"/> <menu_item_check label="Przycisk Ruchu" name="ShowMoveButton"/> <menu_item_check label="Przycisk Widoku" name="ShowCameraButton"/> <menu_item_check label="Przycisk Zdjęć" name="ShowSnapshotButton"/> @@ -8,5 +8,5 @@ <menu_item_call label="Kopiuj" name="NearbyChatBar_Copy"/> <menu_item_call label="Wklej" name="NearbyChatBar_Paste"/> <menu_item_call label="UsuÅ„" name="NearbyChatBar_Delete"/> - <menu_item_call label="Zaznacz Wszystko" name="NearbyChatBar_Select_All"/> + <menu_item_call label="Zaznacz wszystko" name="NearbyChatBar_Select_All"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_favorites.xml b/indra/newview/skins/default/xui/pl/menu_favorites.xml index 0a0b54a54812eafbe1464e4285696f42cd5ee7c3..cbacaf4bebafdcb6970c1b91878a9817c124a333 100644 --- a/indra/newview/skins/default/xui/pl/menu_favorites.xml +++ b/indra/newview/skins/default/xui/pl/menu_favorites.xml @@ -3,7 +3,7 @@ <menu_item_call label="Teleportuj" name="Teleport To Landmark"/> <menu_item_call label="Zobacz/Edytuj Ulubione Miejsce" name="Landmark Open"/> <menu_item_call label="Kopiuj SLurl" name="Copy slurl"/> - <menu_item_call label="Pokaż na Mapie" name="Show On Map"/> + <menu_item_call label="Pokaż na mapie" name="Show On Map"/> <menu_item_call label="Kopiuj" name="Landmark Copy"/> <menu_item_call label="Wklej" name="Landmark Paste"/> <menu_item_call label="UsuÅ„" name="Delete"/> diff --git a/indra/newview/skins/default/xui/pl/menu_hide_navbar.xml b/indra/newview/skins/default/xui/pl/menu_hide_navbar.xml index 1c2687338d30ab8c57bdc80e7da0c6f0d5c2df98..d30f5a4d3fc946c216740d3ff4ab81f41fb946c0 100644 --- a/indra/newview/skins/default/xui/pl/menu_hide_navbar.xml +++ b/indra/newview/skins/default/xui/pl/menu_hide_navbar.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="hide_navbar_menu"> - <menu_item_check label="Pokaż Pasek Nawigacji" name="ShowNavbarNavigationPanel"/> - <menu_item_check label="Pokaż Pasek Ulubionych" name="ShowNavbarFavoritesPanel"/> + <menu_item_check label="Pokaż pasek Nawigacji" name="ShowNavbarNavigationPanel"/> + <menu_item_check label="Pokaż pasek Ulubionych" name="ShowNavbarFavoritesPanel"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_im_well_button.xml b/indra/newview/skins/default/xui/pl/menu_im_well_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..207bc2211b30df0242c54f17dfc33ba95794f5f2 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/menu_im_well_button.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<context_menu name="IM Well Button Context Menu"> + <menu_item_call label="Zamknij wszystkie" name="Close All"/> +</context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_imchiclet_adhoc.xml b/indra/newview/skins/default/xui/pl/menu_imchiclet_adhoc.xml index 925272d5ee0ecb72899ef34e8e30760fea814bef..4ead44878a3f23d27dda5e640c3fe4ae454a19aa 100644 --- a/indra/newview/skins/default/xui/pl/menu_imchiclet_adhoc.xml +++ b/indra/newview/skins/default/xui/pl/menu_imchiclet_adhoc.xml @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="IMChiclet AdHoc Menu"> - <menu_item_call label="ZakoÅ„cz RozmowÄ™" name="End Session"/> + <menu_item_call label="ZakoÅ„cz rozmowÄ™" name="End Session"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_imchiclet_group.xml b/indra/newview/skins/default/xui/pl/menu_imchiclet_group.xml index dc232c096d1ef59934a13ccc63e14a1ef1bde813..c53f72c043a7ecf22ce614384ebf813287ec8b0b 100644 --- a/indra/newview/skins/default/xui/pl/menu_imchiclet_group.xml +++ b/indra/newview/skins/default/xui/pl/menu_imchiclet_group.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="IMChiclet Group Menu"> <menu_item_call label="O Grupie" name="Show Profile"/> - <menu_item_call label="Pokaż SesjÄ™" name="Chat"/> - <menu_item_call label="ZakoÅ„cz RozmowÄ™" name="End Session"/> + <menu_item_call label="Pokaż sesjÄ™" name="Chat"/> + <menu_item_call label="ZakoÅ„cz rozmowÄ™" name="End Session"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_imchiclet_p2p.xml b/indra/newview/skins/default/xui/pl/menu_imchiclet_p2p.xml index df991cbc36fcf2922af2933f8159128c34a43def..c0c812c0a771e948c4c39a100ef6b1d07a36146f 100644 --- a/indra/newview/skins/default/xui/pl/menu_imchiclet_p2p.xml +++ b/indra/newview/skins/default/xui/pl/menu_imchiclet_p2p.xml @@ -2,6 +2,6 @@ <menu name="IMChiclet P2P Menu"> <menu_item_call label="Zobacz Profil" name="Show Profile"/> <menu_item_call label="Dodaj Znajomość" name="Add Friend"/> - <menu_item_call label="Pokaż SesjÄ™" name="Send IM"/> - <menu_item_call label="ZakoÅ„cz RozmowÄ™" name="End Session"/> + <menu_item_call label="Pokaż sesjÄ™" name="Send IM"/> + <menu_item_call label="ZakoÅ„cz rozmowÄ™" name="End Session"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_inspect_avatar_gear.xml b/indra/newview/skins/default/xui/pl/menu_inspect_avatar_gear.xml index 22d81cb8234bb8ec26fc09dda736bfa71d6d43bc..325072d0fb88465a1be16a6abebe7bc97c015035 100644 --- a/indra/newview/skins/default/xui/pl/menu_inspect_avatar_gear.xml +++ b/indra/newview/skins/default/xui/pl/menu_inspect_avatar_gear.xml @@ -7,11 +7,13 @@ <menu_item_call label="Teleportuj" name="teleport"/> <menu_item_call label="ZaproÅ› do Grupy" name="invite_to_group"/> <menu_item_call label="Zablokuj" name="block"/> + <menu_item_call label="Odblokuj" name="unblock"/> <menu_item_call label="Raport" name="report"/> <menu_item_call label="Unieruchom" name="freeze"/> <menu_item_call label="Wyrzuć" name="eject"/> <menu_item_call label="Debug" name="debug"/> - <menu_item_call label="Znajdź na Mapie" name="find_on_map"/> + <menu_item_call label="Znajdź na mapie" name="find_on_map"/> <menu_item_call label="Przybliż" name="zoom_in"/> <menu_item_call label="ZapÅ‚ać" name="pay"/> + <menu_item_call label="UdostÄ™pnij" name="share"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_inspect_object_gear.xml b/indra/newview/skins/default/xui/pl/menu_inspect_object_gear.xml index 988c31a6e4906b5d2c350b2be78e05051066e6ff..2c56d2ca3d1cefc10d79e6e1def5f82f608e3134 100644 --- a/indra/newview/skins/default/xui/pl/menu_inspect_object_gear.xml +++ b/indra/newview/skins/default/xui/pl/menu_inspect_object_gear.xml @@ -5,7 +5,7 @@ <menu_item_call label="ZapÅ‚ać" name="pay"/> <menu_item_call label="Kup" name="buy"/> <menu_item_call label="Weź" name="take"/> - <menu_item_call label="Weź KopiÄ™" name="take_copy"/> + <menu_item_call label="Weź kopiÄ™" name="take_copy"/> <menu_item_call label="Otwórz" name="open"/> <menu_item_call label="Edytuj" name="edit"/> <menu_item_call label="Ubierz" name="wear"/> @@ -13,5 +13,5 @@ <menu_item_call label="Zablokuj" name="block"/> <menu_item_call label="Przybliż" name="zoom_in"/> <menu_item_call label="UsuÅ„" name="remove"/> - <menu_item_call label="WiÄ™cej Informacji" name="more_info"/> + <menu_item_call label="WiÄ™cej informacji" name="more_info"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_inventory.xml b/indra/newview/skins/default/xui/pl/menu_inventory.xml index 75c84c275dbbd06d6c09481df85d833172136ecf..7fe9da3c0c89ef5fb34899c14c1fc21a713a21d9 100644 --- a/indra/newview/skins/default/xui/pl/menu_inventory.xml +++ b/indra/newview/skins/default/xui/pl/menu_inventory.xml @@ -4,32 +4,32 @@ <menu_item_call label="Otwórz" name="Task Open"/> <menu_item_call label="Odtwarzaj" name="Task Play"/> <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Task Properties"/> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="Task Rename"/> + <menu_item_call label="ZmieÅ„ nazwÄ™" name="Task Rename"/> <menu_item_call label="UsuÅ„" name="Task Remove"/> <menu_item_call label="Opróżnij Kosz" name="Empty Trash"/> <menu_item_call label="Opróżnij Folder Zgubione i Odnalezione" name="Empty Lost And Found"/> - <menu_item_call label="Nowy Folder" name="New Folder"/> - <menu_item_call label="Nowy Skrypt" name="New Script"/> - <menu_item_call label="Nowa Nota" name="New Note"/> - <menu_item_call label="Nowy Gest" name="New Gesture"/> + <menu_item_call label="Nowy folder" name="New Folder"/> + <menu_item_call label="Nowy skrypt" name="New Script"/> + <menu_item_call label="Nowa nota" name="New Note"/> + <menu_item_call label="Nowy gest" name="New Gesture"/> <menu label="Nowe Ubranie" name="New Clothes"> - <menu_item_call label="Nowa Koszulka" name="New Shirt"/> - <menu_item_call label="Nowe Spodnie" name="New Pants"/> - <menu_item_call label="Nowe Buty" name="New Shoes"/> - <menu_item_call label="Nowe Skarpety" name="New Socks"/> - <menu_item_call label="Nowa Kurtka" name="New Jacket"/> - <menu_item_call label="Nowa Spódnica" name="New Skirt"/> - <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves"/> - <menu_item_call label="Nowy Podkoszulek" name="New Undershirt"/> - <menu_item_call label="Nowa Bielizna" name="New Underpants"/> - <menu_item_call label="Nowa Maska Przezroczysta" name="New Alpha Mask"/> - <menu_item_call label="Nowy Tatuaż" name="New Tattoo"/> + <menu_item_call label="Nowa koszulka" name="New Shirt"/> + <menu_item_call label="Nowe spodnie" name="New Pants"/> + <menu_item_call label="Nowe buty" name="New Shoes"/> + <menu_item_call label="Nowe skarpety" name="New Socks"/> + <menu_item_call label="Nowa kurtka" name="New Jacket"/> + <menu_item_call label="Nowa spódnica" name="New Skirt"/> + <menu_item_call label="Nowe rÄ™kawiczki" name="New Gloves"/> + <menu_item_call label="Nowy podkoszulek" name="New Undershirt"/> + <menu_item_call label="Nowa bielizna" name="New Underpants"/> + <menu_item_call label="Nowa maska Alpha" name="New Alpha Mask"/> + <menu_item_call label="Nowy tatuaż" name="New Tattoo"/> </menu> <menu label="Nowa Część CiaÅ‚a" name="New Body Parts"> - <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape"/> - <menu_item_call label="Nowa Skórka" name="New Skin"/> - <menu_item_call label="Nowe WÅ‚osy" name="New Hair"/> - <menu_item_call label="Nowe Oczy" name="New Eyes"/> + <menu_item_call label="Nowy ksztaÅ‚t" name="New Shape"/> + <menu_item_call label="Nowa skórka" name="New Skin"/> + <menu_item_call label="Nowe wÅ‚osy" name="New Hair"/> + <menu_item_call label="Nowe oczy" name="New Eyes"/> </menu> <menu label="ZmieÅ„ CzcionkÄ™" name="Change Type"> <menu_item_call label="DomyÅ›lna" name="Default"/> @@ -46,32 +46,31 @@ <menu_item_call label="Teleportuj" name="Landmark Open"/> <menu_item_call label="Otwórz" name="Animation Open"/> <menu_item_call label="Otwórz" name="Sound Open"/> - <menu_item_call label="UsuÅ„ Obiekt" name="Purge Item"/> - <menu_item_call label="Przywróć Obiekt" name="Restore Item"/> - <menu_item_call label="Otwórz Link" name="Goto Link"/> + <menu_item_call label="ZmieÅ„ strój" name="Replace Outfit"/> + <menu_item_call label="Dodaj do stroju" name="Add To Outfit"/> + <menu_item_call label="UsuÅ„ obiekt" name="Purge Item"/> + <menu_item_call label="Przywróć obiekt" name="Restore Item"/> <menu_item_call label="Otwórz" name="Open"/> <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Properties"/> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="Rename"/> - <menu_item_call label="Kopiuj Dane UUID" name="Copy Asset UUID"/> + <menu_item_call label="ZmieÅ„ nazwÄ™" name="Rename"/> + <menu_item_call label="Kopiuj dane UUID" name="Copy Asset UUID"/> <menu_item_call label="Kopiuj" name="Copy"/> <menu_item_call label="Wklej" name="Paste"/> - <menu_item_call label="Wklej jako Link" name="Paste As Link"/> + <menu_item_call label="Wklej jako link" name="Paste As Link"/> <menu_item_call label="UsuÅ„" name="Delete"/> - <menu_item_call label="Zdejmij Obiekt" name="Take Off Items"/> - <menu_item_call label="Dodaj do Stroju" name="Add To Outfit"/> - <menu_item_call label="ZmieÅ„ Strój" name="Replace Outfit"/> - <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat Folder"/> + <menu_item_call label="Skasuj Folder Systemu" name="Delete System Folder"/> + <menu_item_call label="Rozpocznij konferencjÄ™ czatowÄ…" name="Conference Chat Folder"/> <menu_item_call label="Odtwarzaj" name="Sound Play"/> <menu_item_call label="O Miejscu" name="About Landmark"/> - <menu_item_call label="Odtwarzaj w Åšwiecie" name="Animation Play"/> - <menu_item_call label="Odtwarzaj Lokalnie" name="Animation Audition"/> + <menu_item_call label="Używaj in-world" name="Animation Play"/> + <menu_item_call label="Odtwarzaj lokalnie" name="Animation Audition"/> <menu_item_call label="WyÅ›lij IM" name="Send Instant Message"/> - <menu_item_call label="Zaoferuj TeleportacjÄ™..." name="Offer Teleport..."/> - <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat"/> + <menu_item_call label="Teleportuj..." name="Offer Teleport..."/> + <menu_item_call label="Rozpocznij konferencjÄ™ czatowÄ…" name="Conference Chat"/> <menu_item_call label="Aktywuj" name="Activate"/> <menu_item_call label="Deaktywuj" name="Deactivate"/> <menu_item_call label="Zapisz jako" name="Save As"/> - <menu_item_call label="OdÅ‚Ä…cz od Siebie" name="Detach From Yourself"/> + <menu_item_call label="OdÅ‚Ä…cz od siebie" name="Detach From Yourself"/> <menu_item_call label="Ubierz" name="Object Wear"/> <menu label="DoÅ‚Ä…cz do" name="Attach To"/> <menu label="DoÅ‚Ä…cz do ZaÅ‚Ä…czników HUD" name="Attach To HUD"/> diff --git a/indra/newview/skins/default/xui/pl/menu_inventory_add.xml b/indra/newview/skins/default/xui/pl/menu_inventory_add.xml index 5b8c5426dd7174261ae8011a84acae7fd7029352..b4d85c2c5cd343e52bb3533e9477df7d67ec6c1c 100644 --- a/indra/newview/skins/default/xui/pl/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/pl/menu_inventory_add.xml @@ -1,32 +1,32 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_inventory_add"> <menu label="ZaÅ‚aduj" name="upload"> - <menu_item_call label="Obraz (L$[COST])..." name="Upload Image"/> - <menu_item_call label="DźwiÄ™k (L$[COST])..." name="Upload Sound"/> - <menu_item_call label="AnimacjÄ™ (L$[COST])..." name="Upload Animation"/> - <menu_item_call label="Zbiór Plików (L$[COST] za jeden plik)..." name="Bulk Upload"/> + <menu_item_call label="obraz (L$[COST])..." name="Upload Image"/> + <menu_item_call label="dźwiÄ™k (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="animacjÄ™ (L$[COST])..." name="Upload Animation"/> + <menu_item_call label="zbiór plików (L$[COST] za jeden plik)..." name="Bulk Upload"/> </menu> - <menu_item_call label="Nowy Folder" name="New Folder"/> - <menu_item_call label="Nowy Skrypt" name="New Script"/> - <menu_item_call label="Nowa Nota" name="New Note"/> - <menu_item_call label="Nowa Gesturka" name="New Gesture"/> + <menu_item_call label="Nowy folder" name="New Folder"/> + <menu_item_call label="Nowy skrypt" name="New Script"/> + <menu_item_call label="Nowa nota" name="New Note"/> + <menu_item_call label="Nowy gest" name="New Gesture"/> <menu label="Nowe Ubranie" name="New Clothes"> - <menu_item_call label="Nowa Koszulka" name="New Shirt"/> - <menu_item_call label="Nowe Spodnie" name="New Pants"/> - <menu_item_call label="Nowe Buty" name="New Shoes"/> - <menu_item_call label="Nowe Skarpetki" name="New Socks"/> - <menu_item_call label="Nowa Kurtka" name="New Jacket"/> - <menu_item_call label="Nowa Spódnica" name="New Skirt"/> - <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves"/> - <menu_item_call label="Nowy Podkoszulek" name="New Undershirt"/> - <menu_item_call label="Nowa Bielizna" name="New Underpants"/> - <menu_item_call label="Nowe Ubranie Przezroczyste" name="New Alpha"/> - <menu_item_call label="Nowy Tatuaż" name="New Tattoo"/> + <menu_item_call label="Nowa koszulka" name="New Shirt"/> + <menu_item_call label="Nowe spodnie" name="New Pants"/> + <menu_item_call label="Nowe buty" name="New Shoes"/> + <menu_item_call label="Nowe skarpetki" name="New Socks"/> + <menu_item_call label="Nowa kurtka" name="New Jacket"/> + <menu_item_call label="Nowa spódnica" name="New Skirt"/> + <menu_item_call label="Nowe rÄ™kawiczki" name="New Gloves"/> + <menu_item_call label="Nowy podkoszulek" name="New Undershirt"/> + <menu_item_call label="Nowa bielizna" name="New Underpants"/> + <menu_item_call label="Nowe ubranie Przezroczyste" name="New Alpha"/> + <menu_item_call label="Nowy tatuaż" name="New Tattoo"/> </menu> <menu label="Nowa Część CiaÅ‚a" name="New Body Parts"> - <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape"/> - <menu_item_call label="Nowa Skórka" name="New Skin"/> - <menu_item_call label="Nowe WÅ‚osy" name="New Hair"/> - <menu_item_call label="Nowe Oczy" name="New Eyes"/> + <menu_item_call label="Nowy ksztaÅ‚t" name="New Shape"/> + <menu_item_call label="Nowa skórka" name="New Skin"/> + <menu_item_call label="Nowe wÅ‚osy" name="New Hair"/> + <menu_item_call label="Nowe oczy" name="New Eyes"/> </menu> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_inventory_gear_default.xml b/indra/newview/skins/default/xui/pl/menu_inventory_gear_default.xml index 8f5f94a02f9ac746f619d71cc80ecac179172a38..2ec3741682683b02995ef684c30e0a257bb08149 100644 --- a/indra/newview/skins/default/xui/pl/menu_inventory_gear_default.xml +++ b/indra/newview/skins/default/xui/pl/menu_inventory_gear_default.xml @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_gear_default"> - <menu_item_call label="Nowe Okno Szafy" name="new_window"/> - <menu_item_call label="PorzÄ…dkuj WedÅ‚ug Nazwy" name="sort_by_name"/> - <menu_item_call label="PorzÄ…dkuj WedÅ‚ug Daty" name="sort_by_recent"/> - <menu_item_call label="Pokaż Filtry" name="show_filters"/> - <menu_item_call label="Zresetuj Filtry" name="reset_filters"/> - <menu_item_call label="Zamknij Wszystkie Foldery" name="close_folders"/> + <menu_item_call label="Nowe okno Szafy" name="new_window"/> + <menu_item_call label="PorzÄ…dkuj wedÅ‚ug nazwy" name="sort_by_name"/> + <menu_item_call label="PorzÄ…dkuj wedÅ‚ug daty" name="sort_by_recent"/> + <menu_item_call label="Pokaż filtry" name="show_filters"/> + <menu_item_call label="Zresetuj filtry" name="reset_filters"/> + <menu_item_call label="Zamknij wszystkie foldery" name="close_folders"/> <menu_item_call label="Opróżnij Kosz" name="empty_trash"/> <menu_item_call label="Opróżnij Zagubione i Odnalezione" name="empty_lostnfound"/> - <menu_item_call label="Zapisz TeksturÄ™ Jako" name="Save Texture As"/> - <menu_item_call label="Znajdź OryginaÅ‚" name="Find Original"/> - <menu_item_call label="Znajdź Wszystkie Linki" name="Find All Links"/> + <menu_item_call label="Zapisz teksturÄ™ jako" name="Save Texture As"/> + <menu_item_call label="Znajdź oryginaÅ‚" name="Find Original"/> + <menu_item_call label="Znajdź wszystkie linki" name="Find All Links"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_land.xml b/indra/newview/skins/default/xui/pl/menu_land.xml index 2c89b43525a836d31fd50a20fe7f2711162622b4..1e1ce73089c90b1d5a34530e258434364cdbb300 100644 --- a/indra/newview/skins/default/xui/pl/menu_land.xml +++ b/indra/newview/skins/default/xui/pl/menu_land.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Land Pie"> <menu_item_call label="O PosiadÅ‚oÅ›ci" name="Place Information..."/> - <menu_item_call label="UsiÄ…dź Tutaj" name="Sit Here"/> + <menu_item_call label="UsiÄ…dź tutaj" name="Sit Here"/> <menu_item_call label="Kup PosiadÅ‚ość" name="Land Buy"/> - <menu_item_call label="Kup WstÄ™p" name="Land Buy Pass"/> + <menu_item_call label="Kup przepustkÄ™" name="Land Buy Pass"/> <menu_item_call label="Buduj" name="Create"/> - <menu_item_call label="Edytuj Teren" name="Edit Terrain"/> + <menu_item_call label="Edytuj teren" name="Edit Terrain"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_landmark.xml b/indra/newview/skins/default/xui/pl/menu_landmark.xml index 8cd7e03bf1ba588f27b1718c4b0edbca8d140522..aa5808390c4d7a3a6c1ba7e475b6b383782da4d0 100644 --- a/indra/newview/skins/default/xui/pl/menu_landmark.xml +++ b/indra/newview/skins/default/xui/pl/menu_landmark.xml @@ -3,5 +3,5 @@ <menu_item_call label="Kopiuj SLurl" name="copy"/> <menu_item_call label="UsuÅ„" name="delete"/> <menu_item_call label="Utwórz" name="pick"/> - <menu_item_call label="Dodaj do Paska Ulubionych" name="add_to_favbar"/> + <menu_item_call label="Dodaj do paska Ulubionych" name="add_to_favbar"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_login.xml b/indra/newview/skins/default/xui/pl/menu_login.xml index 5084b59397d29d9b1c45173f13b56bf14dc27ae8..2673f5c27136340062b5ec46c2cce52cb5574579 100644 --- a/indra/newview/skins/default/xui/pl/menu_login.xml +++ b/indra/newview/skins/default/xui/pl/menu_login.xml @@ -2,7 +2,7 @@ <menu_bar name="Login Menu"> <menu label="Ja" name="File"> <menu_item_call label="Ustawienia" name="Preferences..."/> - <menu_item_call label="WyÅ‚Ä…cz Program" name="Quit"/> + <menu_item_call label="WyÅ‚Ä…cz program" name="Quit"/> </menu> <menu label="Pomoc" name="Help"> <menu_item_call label="[SECOND_LIFE]: Pomoc" name="Second Life Help"/> @@ -16,15 +16,15 @@ <menu_item_call label="Wklej" name="Paste"/> <menu_item_call label="UsuÅ„" name="Delete"/> <menu_item_call label="Powiel" name="Duplicate"/> - <menu_item_call label="Zaznacz Wszystko" name="Select All"/> + <menu_item_call label="Zaznacz wszystko" name="Select All"/> <menu_item_call label="Odznacz" name="Deselect"/> </menu> - <menu_item_call label="Ustawienia Debugowania" name="Debug Settings"/> - <menu_item_call label="Ustawienia UI/Kolor" name="UI/Color Settings"/> - <menu_item_call label="Pokaż schowek" name="Show Side Tray"/> + <menu_item_call label="Ustawienia debugowania" name="Debug Settings"/> + <menu_item_call label="Ustawienia UI/kolor" name="UI/Color Settings"/> <menu label="UI Testy" name="UI Tests"/> + <menu_item_call label="Ustaw rozmiar interfejsu..." name="Set Window Size..."/> <menu_item_call label="WyÅ›wietl TOS" name="TOS"/> - <menu_item_call label="WyÅ›wietl Wiadomość KrytycznÄ…" name="Critical"/> - <menu_item_call label="Test PrzeglÄ…darki Internetowej" name="Web Browser Test"/> + <menu_item_call label="WyÅ›wietl wiadomość krytycznÄ…" name="Critical"/> + <menu_item_call label="Test przeglÄ…darki internetowej" name="Web Browser Test"/> </menu> </menu_bar> diff --git a/indra/newview/skins/default/xui/pl/menu_mini_map.xml b/indra/newview/skins/default/xui/pl/menu_mini_map.xml index 4152fb41c8790504872261591f9777db36754230..94e4c91abb4026a62f6245f2b5f7598ca245d1ef 100644 --- a/indra/newview/skins/default/xui/pl/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/pl/menu_mini_map.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> - <menu_item_call label="Zoom Blisko" name="Zoom Close"/> - <menu_item_call label="Zoom Åšrednio" name="Zoom Medium"/> - <menu_item_call label="Zoom Daleko" name="Zoom Far"/> - <menu_item_check label="Obróć MapÄ™" name="Rotate Map"/> +<menu name="Popup"> + <menu_item_call label="Zoom blisko" name="Zoom Close"/> + <menu_item_call label="Zoom Å›rednio" name="Zoom Medium"/> + <menu_item_call label="Zoom daleko" name="Zoom Far"/> + <menu_item_check label="Obróć mapÄ™" name="Rotate Map"/> <menu_item_call label="Zatrzymaj" name="Stop Tracking"/> <menu_item_call label="Mapa Åšwiata" name="World Map"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_navbar.xml b/indra/newview/skins/default/xui/pl/menu_navbar.xml index 8d84f3e7645bd5b51de805908882bf13c8c9760c..f38b805ee22d78668c9371edb398574f280c004c 100644 --- a/indra/newview/skins/default/xui/pl/menu_navbar.xml +++ b/indra/newview/skins/default/xui/pl/menu_navbar.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="Navbar Menu"> - <menu_item_check label="Pokaż WspółrzÄ™dne" name="Show Coordinates"/> - <menu_item_check label="Pokaż WÅ‚aÅ›ciwoÅ›ci PosiadÅ‚oÅ›ci" name="Show Parcel Properties"/> + <menu_item_check label="Pokaż współrzÄ™dne" name="Show Coordinates"/> + <menu_item_check label="Pokaż wÅ‚aÅ›ciwoÅ›ci PosiadÅ‚oÅ›ci" name="Show Parcel Properties"/> <menu_item_call label="Ulubione Miejsce" name="Landmark"/> <menu_item_call label="Wytnij" name="Cut"/> <menu_item_call label="Kopiuj" name="Copy"/> <menu_item_call label="Wklej" name="Paste"/> <menu_item_call label="UsuÅ„" name="Delete"/> - <menu_item_call label="Zaznacz Wszystko" name="Select All"/> + <menu_item_call label="Zaznacz wszystko" name="Select All"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_nearby_chat.xml b/indra/newview/skins/default/xui/pl/menu_nearby_chat.xml index 78b8c0a4fcad5e08ff3950101df0865718f7d829..fe5bc6ba6f39a545357459212609220118016daf 100644 --- a/indra/newview/skins/default/xui/pl/menu_nearby_chat.xml +++ b/indra/newview/skins/default/xui/pl/menu_nearby_chat.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="NearBy Chat Menu"> - <menu_item_call label="Pokaż Osoby w Pobliżu..." name="nearby_people"/> - <menu_item_check label="Pokaż Zablokowany Tekst" name="muted_text"/> - <menu_item_check label="WyÅ›wietlaj Ikonki Znajomych" name="show_buddy_icons"/> - <menu_item_check label="WyÅ›wietlaj Imiona" name="show_names"/> - <menu_item_check label="WyÅ›wietlaj Ikonki i Imiona" name="show_icons_and_names"/> - <menu_item_call label="Rozmiar Czcionki" name="font_size"/> + <menu_item_call label="Pokaż osoby w pobliżu..." name="nearby_people"/> + <menu_item_check label="Pokaż zablokowany tekst" name="muted_text"/> + <menu_item_check label="WyÅ›wietlaj ikonki znajomych" name="show_buddy_icons"/> + <menu_item_check label="WyÅ›wietlaj imiona" name="show_names"/> + <menu_item_check label="WyÅ›wietlaj ikonki i imiona" name="show_icons_and_names"/> + <menu_item_call label="Rozmiar czcionki" name="font_size"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_notification_well_button.xml b/indra/newview/skins/default/xui/pl/menu_notification_well_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..bd3d42f9b1facfeef347dcd3aeaaf36cbac0423e --- /dev/null +++ b/indra/newview/skins/default/xui/pl/menu_notification_well_button.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<context_menu name="Notification Well Button Context Menu"> + <menu_item_call label="Zamknij" name="Close All"/> +</context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_object.xml b/indra/newview/skins/default/xui/pl/menu_object.xml index bdeeb61bf48399e0d48f73d071032725fafa285d..763b120f89bb1cc75dde7ca4ce0e1b7f7c28a6ca 100644 --- a/indra/newview/skins/default/xui/pl/menu_object.xml +++ b/indra/newview/skins/default/xui/pl/menu_object.xml @@ -4,21 +4,24 @@ <menu_item_call label="Edytuj" name="Edit..."/> <menu_item_call label="Buduj" name="Build"/> <menu_item_call label="Otwórz" name="Open"/> - <menu_item_call label="UsiÄ…dź Tutaj" name="Object Sit"/> + <menu_item_call label="UsiÄ…dź tutaj" name="Object Sit"/> + <menu_item_call label="WstaÅ„" name="Object Stand Up"/> <menu_item_call label="Sprawdź" name="Object Inspect"/> - <context_menu label="Połóż >" name="Put On"> + <menu_item_call label="Przybliż" name="Zoom In"/> + <context_menu label="Załóż na â–¶" name="Put On"> <menu_item_call label="Załóż" name="Wear"/> - <context_menu label="DoÅ‚Ä…cz do >" name="Object Attach"/> - <context_menu label="DoÅ‚Ä…cz do HUD >" name="Object Attach HUD"/> + <context_menu label="DoÅ‚Ä…cz â–¶" name="Object Attach"/> + <context_menu label="DoÅ‚Ä…cz HUD â–¶" name="Object Attach HUD"/> </context_menu> - <context_menu label="UsuÅ„ >" name="Remove"> - <menu_item_call label="Weź" name="Pie Object Take"/> + <context_menu label="UsuÅ„ â–¶" name="Remove"> <menu_item_call label="Raport" name="Report Abuse..."/> <menu_item_call label="Zablokuj" name="Object Mute"/> <menu_item_call label="Zwróć" name="Return..."/> <menu_item_call label="UsuÅ„" name="Delete"/> </context_menu> - <menu_item_call label="Weź KopiÄ™" name="Take Copy"/> + <menu_item_call label="Kup" name="Pie Object Bye"/> + <menu_item_call label="Weź" name="Pie Object Take"/> + <menu_item_call label="Weź kopiÄ™" name="Take Copy"/> <menu_item_call label="ZapÅ‚ać" name="Pay..."/> <menu_item_call label="Kup" name="Buy..."/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_participant_list.xml b/indra/newview/skins/default/xui/pl/menu_participant_list.xml index 604ee2d104d2a283ed43f46c9a2924af85452d4d..079b8558da701859cb4c8022d7a09b5e38b012ab 100644 --- a/indra/newview/skins/default/xui/pl/menu_participant_list.xml +++ b/indra/newview/skins/default/xui/pl/menu_participant_list.xml @@ -1,16 +1,20 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Participant List Context Menu"> + <menu_item_check label="Sortuj wedÅ‚ug imienia" name="SortByName"/> + <menu_item_check label="Sortuj wedÅ‚ug ostatniego mówcy" name="SortByRecentSpeakers"/> <menu_item_call label="Zobacz Profil" name="View Profile"/> <menu_item_call label="Dodaj Znajomość" name="Add Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="ZadzwoÅ„" name="Call"/> <menu_item_call label="UdostÄ™pnij" name="Share"/> <menu_item_call label="ZapÅ‚ać" name="Pay"/> - <menu_item_check label="Zablokuj/Odblokuj" name="Block/Unblock"/> - <menu_item_check label="Zablokuj Tekst" name="MuteText"/> - <menu_item_check label="Odblokuj Tekst" name="AllowTextChat"/> - <menu_item_call label="Zablokuj tego uczestnika" name="ModerateVoiceMuteSelected"/> - <menu_item_call label="Zablokuj wszystkich pozostaÅ‚ych" name="ModerateVoiceMuteOthers"/> - <menu_item_call label="Oblokuj tego uczestnika" name="ModerateVoiceUnMuteSelected"/> - <menu_item_call label="Odblokuj wszystkich pozostaÅ‚ych" name="ModerateVoiceUnMuteOthers"/> + <menu_item_check label="Zablokuj gÅ‚os" name="Block/Unblock"/> + <menu_item_check label="Zablokuj tekst" name="MuteText"/> + <context_menu label="Opcje Moderatora >" name="Moderator Options"> + <menu_item_check label="Czat/IM dozwolony" name="AllowTextChat"/> + <menu_item_call label="Wycisz tego uczestnika" name="ModerateVoiceMuteSelected"/> + <menu_item_call label="Wycisz wszystkich pozostaÅ‚ych" name="ModerateVoiceMuteOthers"/> + <menu_item_call label="Odblokuj wyciszenie tego uczestnika" name="ModerateVoiceUnMuteSelected"/> + <menu_item_call label="Odblokuj wyciszenie wszystkich" name="ModerateVoiceUnMuteOthers"/> + </context_menu> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_friends_view_sort.xml b/indra/newview/skins/default/xui/pl/menu_people_friends_view_sort.xml index 0043030035c8561c1ca2503e252f0d0672bea1ec..9c33fad00f094313e3eece0726ac92f1ad3979a5 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_friends_view_sort.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_friends_view_sort.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Nazwy" name="sort_name"/> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Statusu" name="sort_status"/> - <menu_item_check label="WyÅ›wietlaj Ikonki" name="view_icons"/> - <menu_item_call label="Pokaż Zablokowanych Rezydentów & Obiekty" name="show_blocked_list"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug nazwy" name="sort_name"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug statusu" name="sort_status"/> + <menu_item_check label="WyÅ›wietlaj ikonki" name="view_icons"/> + <menu_item_call label="Pokaż zablokowanych Rezydentów & obiekty" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_groups.xml b/indra/newview/skins/default/xui/pl/menu_people_groups.xml new file mode 100644 index 0000000000000000000000000000000000000000..567482dcda32603a4bf2003ed4943199abc2195a --- /dev/null +++ b/indra/newview/skins/default/xui/pl/menu_people_groups.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="menu_group_plus"> + <menu_item_call label="Zobacz Info" name="View Info"/> + <menu_item_call label="Czat" name="Chat"/> + <menu_item_call label="Rozmowa" name="Call"/> + <menu_item_call label="Aktywuj" name="Activate"/> + <menu_item_call label="Opuść" name="Leave"/> +</menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_groups_view_sort.xml b/indra/newview/skins/default/xui/pl/menu_people_groups_view_sort.xml index f661cfeba0a5f98581a3d9f559504585ec71b063..4be60d9b8330300430e155bf546cee83c7ddded2 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_groups_view_sort.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_groups_view_sort.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="WyÅ›wietlaj Ikonki Grupy" name="Display Group Icons"/> - <menu_item_call label="Opuść Zaznaczone Grupy" name="Leave Selected Group"/> + <menu_item_check label="WyÅ›wietlaj ikonki Grupy" name="Display Group Icons"/> + <menu_item_call label="Opuść zaznaczone Grupy" name="Leave Selected Group"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_nearby.xml b/indra/newview/skins/default/xui/pl/menu_people_nearby.xml index 0f80b56c163e4f4ed41de5b8d3b41f5b77d33191..afe3a5200b8c60cb0181620d583f7e0e23958a7a 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_nearby.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_nearby.xml @@ -2,9 +2,12 @@ <context_menu name="Avatar Context Menu"> <menu_item_call label="Zobacz Profil" name="View Profile"/> <menu_item_call label="Dodaj Znajomość" name="Add Friend"/> + <menu_item_call label="UsuÅ„ z listy Znajomych" name="Remove Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="ZadzwoÅ„" name="Call"/> + <menu_item_call label="Mapa" name="Map"/> <menu_item_call label="UdostÄ™pnij" name="Share"/> <menu_item_call label="ZapÅ‚ać" name="Pay"/> <menu_item_check label="Zablokuj/Odblokuj" name="Block/Unblock"/> + <menu_item_call label="Teleportuj" name="teleport"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_nearby_multiselect.xml b/indra/newview/skins/default/xui/pl/menu_people_nearby_multiselect.xml index 156c10e3f3a7b128c5c6eda336e135b2985832e4..bc89402a96386804de8ae6ff0eaa637bff5e5458 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_nearby_multiselect.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_nearby_multiselect.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Multi-Selected People Context Menu"> <menu_item_call label="Dodaj Znajomych" name="Add Friends"/> + <menu_item_call label="UsuÅ„ Znajomych" name="Remove Friend"/> <menu_item_call label="IM" name="IM"/> <menu_item_call label="ZadzwoÅ„" name="Call"/> <menu_item_call label="UdostÄ™pnij" name="Share"/> diff --git a/indra/newview/skins/default/xui/pl/menu_people_nearby_view_sort.xml b/indra/newview/skins/default/xui/pl/menu_people_nearby_view_sort.xml index 9e5f1a5917dcf32950dd3354862c4c34d0d97a35..8ec3820f84e888c5bc13ee47df866d53d55997b2 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_nearby_view_sort.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_nearby_view_sort.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Ostatnich Rozmówców" name="sort_by_recent_speakers"/> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Nazwy" name="sort_name"/> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug OdlegÅ‚oÅ›ci" name="sort_distance"/> - <menu_item_check label="WyÅ›wietlaj Ikonki" name="view_icons"/> - <menu_item_call label="Pokaż Zablokowanych Rezydentów & Obiekty" name="show_blocked_list"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug ostatnich rozmówców" name="sort_by_recent_speakers"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug nazwy" name="sort_name"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug odlegÅ‚oÅ›ci" name="sort_distance"/> + <menu_item_check label="WyÅ›wietlaj ikonki" name="view_icons"/> + <menu_item_call label="Pokaż zablokowanych Rezydentów & obiekty" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_people_recent_view_sort.xml b/indra/newview/skins/default/xui/pl/menu_people_recent_view_sort.xml index 418b67bce8b8a3bfb3e7c8ce6bd5b46103ea8851..b474a556bdad38e6f19fa4c2892a3ef251507b53 100644 --- a/indra/newview/skins/default/xui/pl/menu_people_recent_view_sort.xml +++ b/indra/newview/skins/default/xui/pl/menu_people_recent_view_sort.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_group_plus"> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Daty" name="sort_most"/> - <menu_item_check label="PorzÄ…dkuj WedÅ‚ug Nazwy" name="sort_name"/> - <menu_item_check label="WyÅ›wietlaj Ikonki" name="view_icons"/> - <menu_item_call label="Pokaż Zablokowanych Rezydentów & Obiekty" name="show_blocked_list"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug daty" name="sort_most"/> + <menu_item_check label="PorzÄ…dkuj wedÅ‚ug nazwy" name="sort_name"/> + <menu_item_check label="WyÅ›wietlaj ikonki" name="view_icons"/> + <menu_item_call label="Pokaż zablokowanych Rezydentów & obiekty" name="show_blocked_list"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_picks_plus.xml b/indra/newview/skins/default/xui/pl/menu_picks_plus.xml index 14ab9c2978c8077038d41c8a48aad0771f106dc6..8f196612a8bcc6100be6ac78d851a82c7afd6877 100644 --- a/indra/newview/skins/default/xui/pl/menu_picks_plus.xml +++ b/indra/newview/skins/default/xui/pl/menu_picks_plus.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="picks_plus_menu"> - <menu_item_call label="Utwórz" name="create_pick"/> + <menu_item_call label="Stwórz" name="create_pick"/> <menu_item_call label="Nowa Reklama" name="create_classified"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_place.xml b/indra/newview/skins/default/xui/pl/menu_place.xml index 72f4b1265f88d9d3bda5e088eadcd305b081227f..312bfc6bb01e7a52559d43007f7111de6b3dea3a 100644 --- a/indra/newview/skins/default/xui/pl/menu_place.xml +++ b/indra/newview/skins/default/xui/pl/menu_place.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="place_overflow_menu"> - <menu_item_call label="Zapisz Ulubione Miejsce" name="landmark"/> + <menu_item_call label="Zapisz Landmark" name="landmark"/> <menu_item_call label="Utwórz" name="pick"/> - <menu_item_call label="Kup WstÄ™p" name="pass"/> + <menu_item_call label="Kup PrzepustkÄ™" name="pass"/> <menu_item_call label="Edytuj" name="edit"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_place_add_button.xml b/indra/newview/skins/default/xui/pl/menu_place_add_button.xml index a737fc49ceac7c8816da50b4700cd63987dffb43..6175671fb9fba15a65db40800037702edc47ab88 100644 --- a/indra/newview/skins/default/xui/pl/menu_place_add_button.xml +++ b/indra/newview/skins/default/xui/pl/menu_place_add_button.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_folder_gear"> - <menu_item_call label="Dodaj Folder" name="add_folder"/> - <menu_item_call label="Dodaj do Ulubionych Miejsc" name="add_landmark"/> + <menu_item_call label="Dodaj folder" name="add_folder"/> + <menu_item_call label="Dodaj do Landmarków" name="add_landmark"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_places_gear_folder.xml b/indra/newview/skins/default/xui/pl/menu_places_gear_folder.xml index f5ece87b282f1db8d545bd7e9497c688ee80d9bf..d17b6c1033ad104ec22ae7d02aefe26528bccce0 100644 --- a/indra/newview/skins/default/xui/pl/menu_places_gear_folder.xml +++ b/indra/newview/skins/default/xui/pl/menu_places_gear_folder.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_folder_gear"> - <menu_item_call label="Dodaj do Ulubionych Miejsc" name="add_landmark"/> - <menu_item_call label="Dodaj Folder" name="add_folder"/> + <menu_item_call label="Dodaj do Landmarków" name="add_landmark"/> + <menu_item_call label="Dodaj folder" name="add_folder"/> <menu_item_call label="Wytnij" name="cut"/> <menu_item_call label="Kopiuj" name="copy_folder"/> <menu_item_call label="Wklej" name="paste"/> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="rename"/> + <menu_item_call label="ZmieÅ„ nazwÄ™" name="rename"/> <menu_item_call label="UsuÅ„" name="delete"/> <menu_item_call label="RozwiÅ„" name="expand"/> <menu_item_call label="Schowaj" name="collapse"/> - <menu_item_call label="RozwiÅ„ Wszystkie Foldery" name="expand_all"/> - <menu_item_call label="Schowaj Wszystkie Foldery" name="collapse_all"/> + <menu_item_call label="RozwiÅ„ wszystkie foldery" name="expand_all"/> + <menu_item_call label="Schowaj wszystkie foldery" name="collapse_all"/> <menu_item_check label="Sortuj wedÅ‚ug daty" name="sort_by_date"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_places_gear_landmark.xml b/indra/newview/skins/default/xui/pl/menu_places_gear_landmark.xml index e88f650ed065079b599f5c17291941cdd844f301..0720aea8aac9ee8c4eddc8e93a3186546cef6789 100644 --- a/indra/newview/skins/default/xui/pl/menu_places_gear_landmark.xml +++ b/indra/newview/skins/default/xui/pl/menu_places_gear_landmark.xml @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="menu_ladmark_gear"> <menu_item_call label="Teleportuj" name="teleport"/> - <menu_item_call label="WiÄ™cej Informacji" name="more_info"/> - <menu_item_call label="Pokaż na Mapie" name="show_on_map"/> - <menu_item_call label="Dodaj do Ulubionych Miejsc" name="add_landmark"/> - <menu_item_call label="Dodaj Folder" name="add_folder"/> + <menu_item_call label="WiÄ™cej informacji" name="more_info"/> + <menu_item_call label="Pokaż na mapie" name="show_on_map"/> + <menu_item_call label="Dodaj do Landmarków" name="add_landmark"/> + <menu_item_call label="Dodaj folder" name="add_folder"/> <menu_item_call label="Wytnij" name="cut"/> - <menu_item_call label="Kopiuj Ulubione Miejsce" name="copy_landmark"/> + <menu_item_call label="Kopiuj Landmark" name="copy_landmark"/> <menu_item_call label="Kopiuj SLurl" name="copy_slurl"/> <menu_item_call label="Wklej" name="paste"/> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="rename"/> + <menu_item_call label="ZmieÅ„ nazwÄ™" name="rename"/> <menu_item_call label="UsuÅ„" name="delete"/> - <menu_item_call label="RozwiÅ„ Wszystkie Foldery" name="expand_all"/> - <menu_item_call label="Schowaj Wszystkie Foldery" name="collapse_all"/> + <menu_item_call label="RozwiÅ„ wszystkie foldery" name="expand_all"/> + <menu_item_call label="Schowaj wszystkie foldery" name="collapse_all"/> <menu_item_check label="Sortuj wedÅ‚ug daty" name="sort_by_date"/> <menu_item_call label="Stwórz Ulubione" name="create_pick"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml b/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml index 8405d48e49241449e8a614ce348f339789578d1b..ef836c8ecfe3f59c0244a46a60f2a1f492fc49ce 100644 --- a/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml @@ -1,5 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Mapa" name="show_on_map"/> <menu_item_call label="ZapÅ‚ać" name="pay"/> <menu_item_call label="UdostÄ™pnij" name="share"/> + <menu_item_call label="Zablokuj" name="block"/> + <menu_item_call label="Odblokuj" name="unblock"/> + <menu_item_call label="Wyrzuć" name="kick"/> + <menu_item_call label="Unieruchom" name="freeze"/> + <menu_item_call label="Uruchom" name="unfreeze"/> + <menu_item_call label="CSR" name="csr"/> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_teleport_history_item.xml b/indra/newview/skins/default/xui/pl/menu_teleport_history_item.xml index 7e58747267d85d8e5374c1e8ff665b1f33ba338a..cd36c116b065f7a49c2538de5de7baf257912058 100644 --- a/indra/newview/skins/default/xui/pl/menu_teleport_history_item.xml +++ b/indra/newview/skins/default/xui/pl/menu_teleport_history_item.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Teleport History Item Context Menu"> <menu_item_call label="Teleportuj" name="Teleport"/> - <menu_item_call label="WiÄ™cej Szczegółów" name="More Information"/> + <menu_item_call label="WiÄ™cej szczegółów" name="More Information"/> <menu_item_call label="Kopiuj do schowka" name="CopyToClipboard"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_agent.xml b/indra/newview/skins/default/xui/pl/menu_url_agent.xml index 0f210b140bb42c18beb491ddfe8c11519c024943..7c90e6582ddbac395ae663494a771c7ad607e40f 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_agent.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_agent.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> <menu_item_call label="Pokaż Profil Rezydenta" name="show_agent"/> - <menu_item_call label="Kopiuj NazwÄ™ do Schowka" name="url_copy_label"/> + <menu_item_call label="Kopiuj nazwÄ™ do schowka" name="url_copy_label"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_group.xml b/indra/newview/skins/default/xui/pl/menu_url_group.xml index 38e4360691e680b548e4504b82bfc53a25a5d5c7..109f96e5625f8a02b0b15ed6ff2b8e85acc026d4 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_group.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_group.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż Szczegóły o Grupie" name="show_group"/> - <menu_item_call label="Kopiuj GrupÄ™ do Schowka" name="url_copy_label"/> + <menu_item_call label="Pokaż szczegóły o Grupie" name="show_group"/> + <menu_item_call label="Kopiuj GrupÄ™ do schowka" name="url_copy_label"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_http.xml b/indra/newview/skins/default/xui/pl/menu_url_http.xml index 0d8793d41e7ed1438633e02949fcac85fca10f86..e73f7b674562e71b81864fba4fa3decd812fb360 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_http.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_http.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Otwórz PrzeglÄ…darkÄ™ InternetowÄ…" name="url_open"/> - <menu_item_call label="Otwórz w WewnÄ™trzenej PrzeglÄ…darce" name="url_open_internal"/> - <menu_item_call label="Otwórz w ZewnÄ™trznej PrzeglÄ…darce" name="url_open_external"/> + <menu_item_call label="Otwórz przeglÄ…darkÄ™ internetowÄ…" name="url_open"/> + <menu_item_call label="Otwórz w wewnÄ™trzenej przeglÄ…darce" name="url_open_internal"/> + <menu_item_call label="Otwórz w zewnÄ™trznej przeglÄ…darce" name="url_open_external"/> <menu_item_call label="Kopiuj URL do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_inventory.xml b/indra/newview/skins/default/xui/pl/menu_url_inventory.xml index c11860d6fe1d0d9862389a9744f93a55ab7d51c2..ce3309cba02792e8f56e40a53920eeb26b982670 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_inventory.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_inventory.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż Obiekt w Szafie" name="show_item"/> - <menu_item_call label="Kopiuj NazwÄ™ do Schowka" name="url_copy_label"/> + <menu_item_call label="Pokaż obiekt w Szafie" name="show_item"/> + <menu_item_call label="Kopiuj nazwÄ™ do schowka" name="url_copy_label"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_map.xml b/indra/newview/skins/default/xui/pl/menu_url_map.xml index becbd8276fc95196317580543e2333bb9407fa8a..179ab1f6768213a1629ae7b3ce85cabc542f30d9 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_map.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_map.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż na Mapie" name="show_on_map"/> - <menu_item_call label="Teleportuj do Miejsca" name="teleport_to_location"/> + <menu_item_call label="Pokaż na mapie" name="show_on_map"/> + <menu_item_call label="Teleportuj do miejsca" name="teleport_to_location"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_objectim.xml b/indra/newview/skins/default/xui/pl/menu_url_objectim.xml index 0bdf1da2a40cbf95d851beb2c8c85faab604ea74..7576208a9ef1e706579dbcc90ff65d866cd73c2a 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_objectim.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_objectim.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż Szczegóły o Obiekcie" name="show_object"/> - <menu_item_call label="Pokaż na Mapie" name="show_on_map"/> - <menu_item_call label="Teleportuj to Miejsca Obiektu" name="teleport_to_object"/> - <menu_item_call label="Kopiuj NazwÄ™ Obiektu do Schowka" name="url_copy_label"/> + <menu_item_call label="Pokaż szczegóły o obiekcie" name="show_object"/> + <menu_item_call label="Pokaż na mapie" name="show_on_map"/> + <menu_item_call label="Teleportuj to miejsca obiektu" name="teleport_to_object"/> + <menu_item_call label="Kopiuj nazwÄ™ obiektu do schowka" name="url_copy_label"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_parcel.xml b/indra/newview/skins/default/xui/pl/menu_url_parcel.xml index 881c010bc1206c1bf90fb9d10009d2ddec397705..43b945b8bebf39dd1998048683781894bca1fa96 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_parcel.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_parcel.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż Szczegóły o Miejscu" name="show_parcel"/> - <menu_item_call label="Pokaż na Mapie" name="show_on_map"/> + <menu_item_call label="Pokaż szczegóły o Miejscu" name="show_parcel"/> + <menu_item_call label="Pokaż na mapie" name="show_on_map"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_url_slurl.xml b/indra/newview/skins/default/xui/pl/menu_url_slurl.xml index b9fa692365ce9a071a6deb22e7e08117f8d1e000..456146d8e56af6fa4e93ea4b57a3b51431c0aa86 100644 --- a/indra/newview/skins/default/xui/pl/menu_url_slurl.xml +++ b/indra/newview/skins/default/xui/pl/menu_url_slurl.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Url Popup"> - <menu_item_call label="Pokaż Szczegóły o Miejscu" name="show_place"/> - <menu_item_call label="Pokaż na Mapie" name="show_on_map"/> + <menu_item_call label="Pokaż szczegóły o Miejscu" name="show_place"/> + <menu_item_call label="Pokaż na mapie" name="show_on_map"/> <menu_item_call label="Teleportuj do miejsca" name="teleport_to_location"/> <menu_item_call label="Kopiuj SLurl do schowka" name="url_copy"/> </context_menu> diff --git a/indra/newview/skins/default/xui/pl/menu_viewer.xml b/indra/newview/skins/default/xui/pl/menu_viewer.xml index 2a5842e553ffb30cfb0028f29e22febd2eded0ef..85ceb9592fe9374a9dbadd43e4b221807032ae84 100644 --- a/indra/newview/skins/default/xui/pl/menu_viewer.xml +++ b/indra/newview/skins/default/xui/pl/menu_viewer.xml @@ -7,44 +7,45 @@ <menu_item_call label="Mój Profil" name="Profile"/> <menu_item_call label="Mój WyglÄ…d" name="Appearance"/> <menu_item_check label="Moja Szafa" name="Inventory"/> - <menu_item_call label="Pokaż SzafÄ™ w Schowku" name="ShowSidetrayInventory"/> - <menu_item_call label="Moje Gesturki" name="Gestures"/> + <menu_item_check label="Moja Szafa" name="ShowSidetrayInventory"/> + <menu_item_check label="Moje Gesty" name="Gestures"/> <menu label="Mój Status" name="Status"> <menu_item_call label="Tryb Oddalenia" name="Set Away"/> <menu_item_call label="Tryb Pracy" name="Set Busy"/> </menu> - <menu_item_call label="ZarzÄ…daj Statusu Administratora" name="Request Admin Options"/> + <menu_item_call label="Zażądaj Statusu Administratora" name="Request Admin Options"/> <menu_item_call label="WyÅ‚Ä…cz Status Administratora" name="Leave Admin Options"/> <menu_item_call label="WyÅ‚Ä…cz [APP_NAME]" name="Quit"/> </menu> - <menu label="Kommunikacja" name="Communicate"> + <menu label="Komunikacja" name="Communicate"> <menu_item_call label="Znajomi" name="My Friends"/> <menu_item_call label="Grupy" name="My Groups"/> <menu_item_check label="Czat Lokalny" name="Nearby Chat"/> <menu_item_call label="Osoby w Pobliżu" name="Active Speakers"/> - <menu_item_check label="Media w Pobliżu" name="Nearby Media"/> </menu> <menu label="Åšwiat" name="World"> - <menu_item_check label="Ustawienia Ruchu" name="Movement Controls"/> - <menu_item_check label="Widok" name="Camera Controls"/> - <menu_item_call label="O PosiadÅ‚oÅ›ci" name="About Land"/> - <menu_item_call label="Region/MajÄ…tek" name="Region/Estate"/> + <menu_item_check label="Mini-Mapa" name="Mini-Map"/> + <menu_item_check label="Mapa Åšwiata" name="World Map"/> + <menu_item_call label="Zrób ZdjÄ™cie" name="Take Snapshot"/> + <menu_item_call label="ZapamiÄ™taj to Miejsce" name="Create Landmark Here"/> + <menu label="Miejsce" name="Land"> + <menu_item_call label="O PosiadÅ‚oÅ›ci" name="About Land"/> + <menu_item_call label="Region/MajÄ…tek" name="Region/Estate"/> + </menu> <menu_item_call label="Kup PosiadÅ‚ość" name="Buy Land"/> <menu_item_call label="Moje PosiadÅ‚oÅ›ci" name="My Land"/> - <menu label="Pokaż" name="Land"> - <menu_item_check label="Linie Banu" name="Ban Lines"/> + <menu label="Pokaż" name="LandShow"> + <menu_item_check label="Ustawienia Ruchu" name="Movement Controls"/> + <menu_item_check label="Zobacz Ustawienia" name="Camera Controls"/> + <menu_item_check label="Linie Bana" name="Ban Lines"/> <menu_item_check label="Emitery" name="beacons"/> <menu_item_check label="Granice PosiadÅ‚oÅ›ci" name="Property Lines"/> <menu_item_check label="WÅ‚aÅ›ciciele PosiadÅ‚oÅ›ci" name="Land Owners"/> + <menu_item_check label="WspółrzÄ™dne" name="Coordinates"/> + <menu_item_check label="WÅ‚aÅ›ciwoÅ›ci PosiadÅ‚oÅ›ci" name="Parcel Properties"/> </menu> - <menu label="Ulubione Miejsca" name="Landmarks"> - <menu_item_call label="Zapisz Ulubione Miejsce" name="Create Landmark Here"/> - <menu_item_call label="Ustaw Miejsce Startu" name="Set Home to Here"/> - </menu> - <menu_item_call label="Miejsce Startu" name="Teleport Home"/> - <menu_item_check label="Mini-Mapa" name="Mini-Map"/> - <menu_item_check label="Mapa Åšwiata" name="World Map"/> - <menu_item_call label="Zrób ZdjÄ™cie" name="Take Snapshot"/> + <menu_item_call label="Teleportuj do Miejsca Startu" name="Teleport Home"/> + <menu_item_call label="Ustaw Miejsce Startu" name="Set Home to Here"/> <menu label="SÅ‚oÅ„ce" name="Environment Settings"> <menu_item_call label="Wschód SÅ‚oÅ„ca" name="Sunrise"/> <menu_item_call label="PoÅ‚udnie" name="Noon"/> @@ -74,12 +75,14 @@ <menu_item_call label="Zaznacz Wszystko" name="Select All"/> <menu_item_call label="Cofnij Zaznaczenie" name="Deselect"/> </menu> - <menu_item_call label="Grupuj" name="Link"/> + <menu_item_call label="Linkuj" name="Link"/> <menu_item_call label="Rozlinkuj" name="Unlink"/> + <menu_item_check label="Edytuj Zgrupowane Obiekty" name="Edit Linked Parts"/> <menu_item_call label="Ogniskowa Selekcji" name="Focus on Selection"/> <menu_item_call label="Przybliż do Selekcji" name="Zoom to Selection"/> <menu label="Obiekt" name="Object"> - <menu_item_call label="Kup" name="Menu Object Take"/> + <menu_item_call label="Kup" name="Menu Object Buy"/> + <menu_item_call label="Weź" name="Menu Object Take"/> <menu_item_call label="Weź KopiÄ™" name="Take Copy"/> <menu_item_call label="Zapisz Obiekt do Szafy" name="Save Object Back to My Inventory"/> <menu_item_call label="Zapisz do TreÅ›ci Obiektu" name="Save Object Back to Object Contents"/> @@ -92,25 +95,18 @@ <menu_item_call label="Wstrzymaj DziaÅ‚anie Skryptów w Selekcji" name="Set Scripts to Not Running"/> </menu> <menu label="Opcje" name="Options"> - <menu_item_check label="Edytuj Części Zlinkowane" name="Edit Linked Parts"/> <menu_item_call label="Ustaw DomyÅ›lne Pozwolenia Åadowania" name="perm prefs"/> <menu_item_check label="Pokaż Zaawansowane Pozwolenia" name="DebugPermissions"/> - <menu label="Selekcja" name="Selection"> - <menu_item_check label="Wybierz Tylko Moje Obiekty" name="Select Only My Objects"/> - <menu_item_check label="Zaznacz Tylko PoruszajÄ…ce siÄ™ Obiekty" name="Select Only Movable Objects"/> - <menu_item_check label="Wybierz Przez Zaznaczenie" name="Select By Surrounding"/> - </menu> - <menu label="Pokaż" name="Show"> - <menu_item_check label="Pokaż UkrytÄ… SelekcjÄ™" name="Show Hidden Selection"/> - <menu_item_check label="Pokaż PromieÅ„ ÅšwiatÅ‚a dla Selekcji" name="Show Light Radius for Selection"/> - <menu_item_check label="Pokaż Emitery Selekcji" name="Show Selection Beam"/> - </menu> - <menu label="Siatka" name="Grid"> - <menu_item_check label="PrzeciÄ…gnij Obiekt" name="Snap to Grid"/> - <menu_item_call label="PrzeciÄ…gnij Obiekt XY do Siatki" name="Snap Object XY to Grid"/> - <menu_item_call label="Zastosuj Zaznaczenie dla Siatki" name="Use Selection for Grid"/> - <menu_item_call label="Ustawienia Siatki" name="Grid Options"/> - </menu> + <menu_item_check label="Wybierz Tylko Moje Obiekty" name="Select Only My Objects"/> + <menu_item_check label="Wybierz Tylko Obiekty Przesuwalne" name="Select Only Movable Objects"/> + <menu_item_check label="Wybierz przez Otoczenie" name="Select By Surrounding"/> + <menu_item_check label="Zobacz UkrytÄ… SelekcjÄ™" name="Show Hidden Selection"/> + <menu_item_check label="Pokaż PromieÅ„ Emitera dla Selekcji" name="Show Light Radius for Selection"/> + <menu_item_check label="Pokaż Emiter Selekcji" name="Show Selection Beam"/> + <menu_item_check label="Uruchom SiatkÄ™" name="Snap to Grid"/> + <menu_item_call label="PrzeciÄ…gnij Obiekt do Siatki" name="Snap Object XY to Grid"/> + <menu_item_call label="Wybierz Zaznaczenie Siatki" name="Use Selection for Grid"/> + <menu_item_call label="Opcje Siatki" name="Grid Options"/> </menu> <menu label="Wybierz Zlinkowane Części" name="Select Linked Parts"> <menu_item_call label="Wybierz NastÄ™pnÄ… Część" name="Select Next Part"/> @@ -121,15 +117,14 @@ </menu> <menu label="Pomoc" name="Help"> <menu_item_call label="[SECOND_LIFE] Portal Pomocy" name="Second Life Help"/> - <menu_item_call label="Samouczek" name="Tutorial"/> <menu_item_call label="Złóż Raport o Nadużyciu" name="Report Abuse"/> <menu_item_call label="ZgÅ‚oÅ› BÅ‚Ä™dy Klienta" name="Report Bug"/> </menu> <menu label="Zaawansowane" name="Advanced"> - <menu_item_check label="Uruchom Tryb Oddalenia po 30 Minutach" name="Go Away/AFK When Idle"/> <menu_item_call label="Zatrzymaj Wszystkie Animacje" name="Stop Animating My Avatar"/> <menu_item_call label="Odswież WyÅ›wietlanie Tekstur" name="Rebake Texture"/> <menu_item_call label="DomyÅ›lne Ustawienia Rozmiaru Interfejsu" name="Set UI Size to Default"/> + <menu_item_call label="Ustaw Rozmiar Interfejsu..." name="Set Window Size..."/> <menu_item_check label="Ogranicz Dystans Selekcji" name="Limit Select Distance"/> <menu_item_check label="WyÅ‚Ä…cz Ograniczenia ZasiÄ™gu Kamery" name="Disable Camera Distance"/> <menu_item_check label="Wysoka Rozdzielczość Zdjęć" name="HighResSnapshot"/> @@ -176,8 +171,8 @@ <menu_item_check label="Uruchom Wiele WÄ…tków" name="Run Multiple Threads"/> <menu_item_call label="Wyczyść Bufor Danych Grupy" name="ClearGroupCache"/> <menu_item_check label="WygÅ‚adzanie Ruchu Myszki" name="Mouse Smoothing"/> - <menu_item_check label="Pokaż WiadomoÅ›ci w Pobliżu" name="IMInChat"/> <menu label="Skróty" name="Shortcuts"> + <menu_item_call label="Obraz (L$[COST])..." name="Upload Image"/> <menu_item_check label="Szukaj" name="Search"/> <menu_item_call label="Zwolnij Klawisze" name="Release Keys"/> <menu_item_call label="DomyÅ›lne Ustawienia Rozmiaru Interfejsu" name="Set UI Size to Default"/> @@ -189,7 +184,7 @@ <menu_item_call label="Widok Panoramiczny" name="Mouselook"/> <menu_item_check label="Wolna Kamera" name="Joystick Flycam"/> <menu_item_call label="Reset Widoku" name="Reset View"/> - <menu_item_call label="Zobacz Ostatniego Rozmówce" name="Look at Last Chatter"/> + <menu_item_call label="Zobacz Ostatniego RozmówcÄ™" name="Look at Last Chatter"/> <menu label="Wybierz NarzÄ™dzie Budowania" name="Select Tool"> <menu_item_call label="NarzÄ™dzie Ogniskowej" name="Focus"/> <menu_item_call label="NarzÄ™dzie Ruchu" name="Move"/> @@ -205,7 +200,7 @@ <menu_item_call label="Pokaż Ustawienia Debugowania" name="Debug Settings"/> <menu_item_check label="Pokaż Menu Progresu" name="Debug Mode"/> </menu> - <menu label="PostÄ™p" name="Develop"> + <menu label="PostÄ™p..." name="Develop"> <menu label="Konsola" name="Consoles"> <menu_item_check label="Konsola Tekstur" name="Texture Console"/> <menu_item_check label="Debugowanie ZdarzeÅ„ Konsoli" name="Debug Console"/> @@ -217,6 +212,7 @@ <menu_item_call label="Info Regionu do Debugowania Konsoli" name="Region Info to Debug Console"/> <menu_item_check label="Kamera" name="Camera"/> <menu_item_check label="Wiatr" name="Wind"/> + <menu_item_check label="Znak" name="Badge"/> </menu> <menu label="Pokaż Informacje" name="Display Info"> <menu_item_check label="Pokaż Czas" name="Show Time"/> diff --git a/indra/newview/skins/default/xui/pl/mime_types.xml b/indra/newview/skins/default/xui/pl/mime_types.xml index c90d5761e6ea4fbc1c967e80b36df13d49ba203a..cbf2afa91d3cda2818d2fd87bafda8f8e484aacb 100644 --- a/indra/newview/skins/default/xui/pl/mime_types.xml +++ b/indra/newview/skins/default/xui/pl/mime_types.xml @@ -2,13 +2,13 @@ <mimetypes name="default"> <widgetset name="web"> <label name="web_label"> - Zawartość Strony Internetowej + Zawartość przeglÄ…darki internetowej </label> <tooltip name="web_tooltip"> - To miejsce posiada zawartość strony internetowej + To miejsce posiada zawartość przeglÄ…darki internetowej </tooltip> <playtip name="web_playtip"> - Pokaż zawartość strony internetowej + Pokaż zawartość przeglÄ…darki internetowej </playtip> </widgetset> <widgetset name="movie"> diff --git a/indra/newview/skins/default/xui/pl/mime_types_linux.xml b/indra/newview/skins/default/xui/pl/mime_types_linux.xml new file mode 100644 index 0000000000000000000000000000000000000000..a2b8168b518625dd8cf889a399b83260a6bc6091 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/mime_types_linux.xml @@ -0,0 +1,217 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<mimetypes name="default"> + <widgetset name="web"> + <label name="web_label"> + Zawartość przeglÄ…darki internetowej + </label> + <tooltip name="web_tooltip"> + W tym miejscu można zobaczyć zawartość przeglÄ…darki internetowej + </tooltip> + <playtip name="web_playtip"> + Pokaż zawartość przeglÄ…darki internetowej + </playtip> + </widgetset> + <widgetset name="movie"> + <label name="movie_label"> + Film + </label> + <tooltip name="movie_tooltip"> + To miejsce wyÅ›witela filmy + </tooltip> + <playtip name="movie_playtip"> + Zacznij odtwarzanie filmu + </playtip> + </widgetset> + <widgetset name="image"> + <label name="image_label"> + Obraz + </label> + <tooltip name="image_tooltip"> + W tym miejscu można zobaczyć obrazy + </tooltip> + <playtip name="image_playtip"> + Zobacz obrazy wyÅ›wietlane w tym miejscu + </playtip> + </widgetset> + <widgetset name="audio"> + <label name="audio_label"> + Audio + </label> + <tooltip name="audio_tooltip"> + W tym miejscu odtwarzane jest audio + </tooltip> + <playtip name="audio_playtip"> + Zacznij odtwarzanie audio + </playtip> + </widgetset> + <scheme name="rtsp"> + <label name="rtsp_label"> + Strumieniowe w czasie rzeczywistym + </label> + </scheme> + <mimetype name="blank"> + <label name="blank_label"> + - Å»adne - + </label> + </mimetype> + <mimetype name="none/none"> + <label name="none/none_label"> + - Å»adne - + </label> + </mimetype> + <mimetype name="audio/*"> + <label name="audio2_label"> + Audio + </label> + </mimetype> + <mimetype name="video/*"> + <label name="video2_label"> + Video + </label> + </mimetype> + <mimetype name="image/*"> + <label name="image2_label"> + Obraz + </label> + </mimetype> + <mimetype name="video/vnd.secondlife.qt.legacy"> + <label name="vnd.secondlife.qt.legacy_label"> + Film (QuickTime) + </label> + </mimetype> + <mimetype name="application/javascript"> + <label name="application/javascript_label"> + Javascript + </label> + </mimetype> + <mimetype name="application/ogg"> + <label name="application/ogg_label"> + Ogg Audio/Video + </label> + </mimetype> + <mimetype name="application/pdf"> + <label name="application/pdf_label"> + Dokument PDF + </label> + </mimetype> + <mimetype name="application/postscript"> + <label name="application/postscript_label"> + Dokument Postscript + </label> + </mimetype> + <mimetype name="application/rtf"> + <label name="application/rtf_label"> + Tekst (RTF) + </label> + </mimetype> + <mimetype name="application/smil"> + <label name="application/smil_label"> + Synchronized Multimedia Integration Language (SMIL) + </label> + </mimetype> + <mimetype name="application/xhtml+xml"> + <label name="application/xhtml+xml_label"> + Strona internetowa (XHTML) + </label> + </mimetype> + <mimetype name="application/x-director"> + <label name="application/x-director_label"> + Macromedia Director + </label> + </mimetype> + <mimetype name="audio/mid"> + <label name="audio/mid_label"> + Audio (MIDI) + </label> + </mimetype> + <mimetype name="audio/mpeg"> + <label name="audio/mpeg_label"> + Audio (MP3) + </label> + </mimetype> + <mimetype name="audio/x-aiff"> + <label name="audio/x-aiff_label"> + Audio (AIFF) + </label> + </mimetype> + <mimetype name="audio/x-wav"> + <label name="audio/x-wav_label"> + Audio (WAV) + </label> + </mimetype> + <mimetype name="image/bmp"> + <label name="image/bmp_label"> + Obraz (BMP) + </label> + </mimetype> + <mimetype name="image/gif"> + <label name="image/gif_label"> + Obraz (GIF) + </label> + </mimetype> + <mimetype name="image/jpeg"> + <label name="image/jpeg_label"> + Obraz (JPEG) + </label> + </mimetype> + <mimetype name="image/png"> + <label name="image/png_label"> + Obraz (PNG) + </label> + </mimetype> + <mimetype name="image/svg+xml"> + <label name="image/svg+xml_label"> + Obraz (SVG) + </label> + </mimetype> + <mimetype name="image/tiff"> + <label name="image/tiff_label"> + Obraz (TIFF) + </label> + </mimetype> + <mimetype name="text/html"> + <label name="text/html_label"> + Strona internetowa + </label> + </mimetype> + <mimetype name="text/plain"> + <label name="text/plain_label"> + Tekst + </label> + </mimetype> + <mimetype name="text/xml"> + <label name="text/xml_label"> + XML + </label> + </mimetype> + <mimetype name="video/mpeg"> + <label name="video/mpeg_label"> + Film (MPEG) + </label> + </mimetype> + <mimetype name="video/mp4"> + <label name="video/mp4_label"> + Film (MP4) + </label> + </mimetype> + <mimetype name="video/quicktime"> + <label name="video/quicktime_label"> + Film (QuickTime) + </label> + </mimetype> + <mimetype name="video/x-ms-asf"> + <label name="video/x-ms-asf_label"> + Film (Windows Media ASF) + </label> + </mimetype> + <mimetype name="video/x-ms-wmv"> + <label name="video/x-ms-wmv_label"> + Film (Windows Media WMV) + </label> + </mimetype> + <mimetype name="video/x-msvideo"> + <label name="video/x-msvideo_label"> + Film (AVI) + </label> + </mimetype> +</mimetypes> diff --git a/indra/newview/skins/default/xui/pl/mime_types_mac.xml b/indra/newview/skins/default/xui/pl/mime_types_mac.xml index bd39ff7ac3adb6682fe8a82e7ed587840daf7cdd..ae860249bb8da46a33c5c883072a391bd3ab86b3 100644 --- a/indra/newview/skins/default/xui/pl/mime_types_mac.xml +++ b/indra/newview/skins/default/xui/pl/mime_types_mac.xml @@ -2,13 +2,13 @@ <mimetypes name="default"> <widgetset name="web"> <label name="web_label"> - Zawartość PrzeglÄ…darki Internetowej + Zawartość przeglÄ…darki internetowej </label> <tooltip name="web_tooltip"> - To miejsce posiada zawartość internetowÄ… + W tym miejscu można zobaczyć zawartość przeglÄ…darki internetowej </tooltip> <playtip name="web_playtip"> - Pokaż Zawartość PrzeglÄ…darki Internetowej + Pokaż zawartość przeglÄ…darki internetowej </playtip> </widgetset> <widgetset name="movie"> diff --git a/indra/newview/skins/default/xui/pl/notifications.xml b/indra/newview/skins/default/xui/pl/notifications.xml index 3cf9be507d0068da634ba6706994c9ba13cfe84c..12d68ed30edd2e2c41426711640816f0eb943274 100644 --- a/indra/newview/skins/default/xui/pl/notifications.xml +++ b/indra/newview/skins/default/xui/pl/notifications.xml @@ -9,72 +9,43 @@ <global name="implicitclosebutton"> Zamknij </global> - <template name="okbutton"> - <form> - <button - name="OK" - text="$yestext"/> - </form> - </template> - - <template name="okignore"> - <form> - <button - name="OK" - text="$yestext"/> - <ignore text="$ignoretext"/> - </form> - </template> - - <template name="okcancelbuttons"> - <form> - <button - name="OK" - text="$yestext"/> - <button - name="Cancel" - text="$notext"/> - </form> - </template> - - <template name="okcancelignore"> - <form> - <button - name="OK" - text="$yestext"/> - <button - name="Cancel" - text="$notext"/> - <ignore text="$ignoretext"/> - </form> - </template> - - <template name="okhelpbuttons"> - <form> - <button - name="OK" - text="$yestext"/> - <button - name="Help" - text="$helptext"/> - </form> - </template> - - <template name="yesnocancelbuttons"> - <form> - <button - name="Yes" - text="$yestext"/> - <button - name="No" - text="$notext"/> - <button - name="Cancel" - text="$canceltext"/> - </form> - </template> + <template name="okbutton"> + <form> + <button name="OK_okbutton" text="$yestext"/> + </form> + </template> + <template name="okignore"> + <form> + <button name="OK_okignore" text="$yestext"/> + </form> + </template> + <template name="okcancelbuttons"> + <form> + <button name="OK_okcancelbuttons" text="$yestext"/> + <button name="Cancel_okcancelbuttons" text="$notext"/> + </form> + </template> + <template name="okcancelignore"> + <form> + <button name="OK_okcancelignore" text="$yestext"/> + <button name="Cancel_okcancelignore" text="$canceltext"/> + </form> + </template> + <template name="okhelpbuttons"> + <form> + <button name="OK_okhelpbuttons" text="$yestext"/> + <button name="Help" text="$helptext"/> + </form> + </template> + <template name="yesnocancelbuttons"> + <form> + <button name="Yes" text="$yestext"/> + <button name="No" text="$notext"/> + <button name="Cancel_yesnocancelbuttons" text="$canceltext"/> + </form> + </template> <notification functor="GenericAcknowledge" label="Nieznany rodzaj komunikatu" name="MissingAlert"> - Twoja wersja klienta [APP_NAME] nie może wyÅ›wietlić odebranej wiadomoÅ›ci. + Twoja wersja klienta [APP_NAME] nie może wyÅ›wietlić odebranej wiadomoÅ›ci. Upewnij siÄ™, że posiadasz najnowszÄ… wersjÄ™ klienta. Szczegóły bÅ‚Ä™du: BÅ‚Ä…d o nazwie '[_NAME]' nie zostaÅ‚ odnaleziony w pliku notifications.xml. <usetemplate name="okbutton" yestext="OK"/> @@ -97,24 +68,18 @@ Szczegóły bÅ‚Ä™du: BÅ‚Ä…d o nazwie '[_NAME]' nie zostaÅ‚ odnaleziony <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> </notification> <notification name="BadInstallation"> - Podczas aktualizacji klienta [APP_NAME] wystÄ…piÅ‚ bÅ‚Ä…d. ProszÄ™ odwiedzić stronÄ™ secondlife.com by Å›ciÄ…gnąć najnowszÄ… wersje klienta. - <usetemplate - name="okbutton" - yestext="OK"/> + Podczas aktualizacji [APP_NAME] wystÄ…piÅ‚ bÅ‚Ä…d. ProszÄ™ odwiedzić stronÄ™ [http://get.secondlife.com download the latest version] by Å›ciÄ…gnąć najnowszÄ… wersje klienta. + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LoginFailedNoNetwork"> - BÅ‚Ä…d sieci: Brak poÅ‚Ä…czenia. + Brak poÅ‚Ä…czenia z [SECOND_LIFE_GRID]. '[DIAGNOSTIC]' Sprawdź stan swojego poÅ‚Ä…czenia sieciowego. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="MessageTemplateNotFound"> Wzór komunikatu dla [PATH] nie odnaleziony. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="WearableSave"> Zapisać zmiany dotyczÄ…ce ubrania/części ciaÅ‚a? @@ -124,7 +89,7 @@ Sprawdź stan swojego poÅ‚Ä…czenia sieciowego. W trakcie Å‚adwania tekstu dla skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. </notification> <notification name="CompileQueueSaveBytecode"> - W trakcie Å‚adwania skompilowanego skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. + W trakcie Å‚adowania skompilowanego skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. </notification> <notification name="WriteAnimationFail"> Problem w zapisywaniu danych animacji. Spróbuj ponownie za kilka minut. @@ -140,15 +105,17 @@ Wybierz pojedynczy obiekt i spróbuj jeszcze raz. Zapisać wszystkie zmiany dotyczÄ…ce ubrania/czeÅ›ci ciaÅ‚a? <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> </notification> + <notification name="FriendsAndGroupsOnly"> + Osoby spoza listy znajomych, których rozmowy gÅ‚osowe i IM sÄ… ignorowane, nie wiedzÄ… o tym. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="GrantModifyRights"> - Udzielenie praw modyfikacji innemu Rezydentowi umożliwia modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. -Używaj tej opcji z rozwagÄ…! + Udzielenie praw modyfikacji innemu Rezydentowi umożliwia modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. Używaj tej opcji z rozwagÄ…! Czy chcesz dać prawa modyfikacji osobie [FIRST_NAME] [LAST_NAME]? <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> </notification> <notification name="GrantModifyRightsMultiple"> - Udzielenie praw modyfikacji innym Rezydentom umożliwia im modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. -Używaj tej opcji z rozwagÄ…! + Udzielenie praw modyfikacji innym Rezydentom umożliwia im modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. Używaj tej opcji z rozwagÄ…! Czy chcesz dać prawa modyfikacji wybranym osobom? <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> </notification> @@ -179,7 +146,7 @@ Czy chcesz dać prawa modyfikacji wybranym osobom? Ta funkcja nie może być odebrana. CzÅ‚onkowie muszÄ… sami zrezygnować z peÅ‚nienia tej funkcji. Chcesz kontynuować? - <usetemplate ignoretext="Podczas dodawania czÅ‚onków grupy do funkcji wÅ‚aÅ›ciciela" name="okcancelignore" notext="Nie" yestext="Tak"/> + <usetemplate ignoretext="Przed dodaniem nowego wÅ‚aÅ›ciciela do grupy, proszÄ™ potwierdzić swojÄ… decyzjÄ™." name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="AssignDangerousActionWarning"> Dodajesz przywilej [ACTION_NAME] do fukcji [ROLE_NAME]. @@ -201,67 +168,31 @@ Udzielaj tego przywileju z rozwagÄ…. Dodać ten przywilej do funkcji [ROLE_NAME]? <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> </notification> - <notification name="ClickPublishHelpLand"> - Wybranie opcji Publikuj w Wyszukiwarce Wybranie tej opcji umożliwi pokazywanie: -- tej posiadÅ‚oÅ›ci w wynikach wyszukiwarki -- publicznych obiektów na tej posiadÅ‚oÅ›ci -- tej posiadÅ‚oÅ›ci w przeglÄ…darce internetowej - </notification> - <notification name="ClickSoundHelpLand"> - Media oraz muzyka sÄ… aktywne wedÅ‚ug ustawieÅ„ posiadÅ‚oÅ›ci dla mediów. DźwiÄ™k oraz komunikacja gÅ‚osowa mogÄ… być ograniczone w danej posiadÅ‚oÅ›ci, w zależnoÅ›ci od ustawieÅ„ rodzaju treÅ›ci jakÄ… zawiera. Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. - <url name="url"> - https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 - </url> - <usetemplate - name="okcancelbuttons" - yestext="[SECOND_LIFE]:Pomoc" - notext="Zamknij" /> - </notification> - <notification name="ClickSearchHelpAll"> - Wyniki wyszukiwania wyÅ›wietlajÄ… siÄ™ na podstawie rodzaju zakÅ‚adki wyszukiwarki, z której korzystasz, rodzaju statusu Twojego wieku, wybranej kategorii, oraz innych czynników. By uzyskać wiecej szczegółów skorzystaj z [SECOND_LIFE]:Pomoc. - <url name="url"> - https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 - </url> - <usetemplate - name="okcancelbuttons" - yestext="[SECOND_LIFE]:Pomoc" - notext="Zamknij" /> - </notification> - <notification name="ClickPublishHelpLandDisabled"> - Ta posiadÅ‚ość nie może być pokazywana w wynikach wyszukiwania ponieważ region w którym siÄ™ znajduje zabrania tego. - </notification> - <notification name="ClickPublishHelpAvatar"> - Wybranie opcji Publikuj w Wyszukiwarce umożliwi pokazywanie: -- Twojego profilu w wynikach wyszukiwarki -- linku do Twojego profilu na publicznych stronach - </notification> - <notification name="ClickPartnerHelpAvatar"> - Możesz zaproponować zwiÄ…zek innemu Rezydentowi lub rozwiÄ…zać istniejÄ…cy zwiÄ…zek na stronie internetowej [SECOND_LIFE]. - -Chcesz dowiedzieć siÄ™ wiÄ™cej na temat zwiÄ…zków w [SECOND_LIFE]? - <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Idź na stronÄ™"/> - </notification> - <notification name="ClickUploadHelpPermissions"> - Twoje domyÅ›lne ustawienia praw dla Twoich obiektów mogÄ… nie dziaÅ‚ać poprawnie w starszych regionach. - </notification> - <notification name="ClickWebProfileHelpAvatar"> - Jeżeli ten Rezydent posiada link URL w profilu możesz: - * Kliknąć 'ZaÅ‚aduj' żeby zobaczyć stronÄ™ w tej zakÅ‚adce WWW. - * Kliknąć 'ZaÅ‚aduj' > 'Użyj zewnÄ™trznej przeglÄ…darki' żeby zobaczyć stronÄ™ używajÄ…c domyÅ›lnej zewnÄ™trznej przeglÄ…darki. - * Kliknąć 'ZaÅ‚aduj' > 'Otwórz URL strony profilu' żeby wrócić do strony tego Rezydenta po jej opuszczeniu. - -OglÄ…dajÄ…c swój profil możesz wpisać dowolny link URL i kliknąć OK żeby go zapisać. -Rezydenci mogÄ… odwiedzać podany adres, kiedy przeglÄ…dajÄ… Twój profil. + <notification name="AttachmentDrop"> + WybraÅ‚eÅ› opcjÄ™ opuszczenia swojego zaÅ‚Ä…cznika. + Czy chcesz kontynuować? + <usetemplate ignoretext="Potwierdź przed zdjÄ™ciem zaÅ‚Ä…cznika." name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="JoinGroupCanAfford"> DoÅ‚Ä…czenie do tej grupy kosztuje [COST]L$. Chcesz kontynuować? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="DoÅ‚Ä…cz"/> </notification> + <notification name="JoinGroupNoCost"> + DoÅ‚Ä…czasz do grupy [NAME]. +Czy chcesz kontynuować? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Zaakceptuj"/> + </notification> <notification name="JoinGroupCannotAfford"> CzÅ‚onkostwo w tej grupie kosztuje [COST]L$ Masz za maÅ‚o L$ żeby zostać czÅ‚onkiem. </notification> + <notification name="CreateGroupCost"> + Stworzenie tej grupy kosztuje 100L$. +W grupie powinien być wiÄ™cej niż jeden czÅ‚onek, albo zostanie na zawsze skasowana. +ZaproÅ› proszÄ™ czÅ‚onków w ciÄ…gu 48 godzin. + <usetemplate canceltext="Anuluj" name="okcancelbuttons" notext="Anuluj" yestext="Stwórz grupÄ™ za 100L$"/> + </notification> <notification name="LandBuyPass"> Za [COST]L$ możesz odwiedzić tÄ… posiadÅ‚ość ('[PARCEL_NAME]') na [TIME] godzin. Chcesz kupić przepustkÄ™? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> @@ -276,9 +207,9 @@ Cena wynosi [SALE_PRICE]L$ i sprzedaż bÄ™dzie autoryzowana dla [NAME]. <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="ConfirmLandSaleToAnyoneChange"> - UWAGA: WybierajÄ…c Sprzedaż dla Kogokolwiek umożliwiasz zakup posiadÅ‚oÅ›ci wszystkim Rezydentom [SECOND_LIFE]. + UWAGA: WybierajÄ…c opcjÄ™ "Sprzedaj Każdemu" udostÄ™pniasz swojÄ… posiadÅ‚ość do sprzedaży dla jakiegokolwiek Rezydenta [SECOND_LIFE] , nawet osób nieobecnych w tym regionie. -PosiadÅ‚ość o powierzchni [LAND_SIZE] m zostaje wystawiona na sprzedaż. +PosiadÅ‚ość o powierzchni [LAND_SIZE] m² zostaje wystawiona na sprzedaż. Cena wynosi [SALE_PRICE]L$ i sprzedaż bÄ™dzie autoryzowana dla [NAME]. <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> @@ -324,7 +255,7 @@ Obiekty: [N] <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="DisableAllTopObjects"> - Czy na pewno chcesz deaktywować wszystkie obiekty w tym regionie? + Czy na pewno chcesz deaktywować wszystkie obiekty w tym Regionie? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="ReturnObjectsNotOwnedByGroup"> @@ -338,6 +269,12 @@ Obiekty: [N] Ten region pozwala na uszkodzenia. Skrypty muszÄ… pozostać aktywne dla prawidÅ‚owego dziaÅ‚ania broni. </notification> + <notification name="MultipleFacesSelected"> + Obecnie zaznaczono wiele powierzchni. +JeÅ›li dziaÅ‚anie bÄ™dzie kontynuowane, oddzielne media bÄ™dÄ… ustawione na wielu powierzchniach obiektu. +W celu umieszczenia mediów tylko na jednej powierzchni skorzystaj z Wybierz PowierzchniÄ™ i kliknij na wybranej powierzchni obiektu oraz kliknij Dodaj. + <usetemplate ignoretext="Media zostanÄ… ustawione na wielu zaznaczonych powierzchniach" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> <notification name="MustBeInParcel"> Musisz znajdować siÄ™ wewnÄ…trz posiadÅ‚oÅ›ci żeby wybrać punkt lÄ…dowania. </notification> @@ -373,6 +310,10 @@ Folder stroju nie zawiera żadnego ubrania, części ciaÅ‚a ani zaÅ‚Ä…czników. <notification name="CannotWearTrash"> Nie możesz zaÅ‚ożyć ubrania, które znajduje siÄ™ w koszu. </notification> + <notification name="MaxAttachmentsOnOutfit"> + Nie można doÅ‚Ä…czyć obiektu. +Limit [MAX_ATTACHMENTS] zaÅ‚Ä…czników zostaÅ‚ przekroczony. ProszÄ™ najpierw odÅ‚Ä…czyć inny obiekt. + </notification> <notification name="CannotWearInfoNotComplete"> Nie możesz zaÅ‚ożyć tego artkuÅ‚u ponieważ nie zaÅ‚adowaÅ‚ siÄ™ poprawnie. Spróbuj ponownie za kilka minut. </notification> @@ -382,27 +323,36 @@ Czy chcesz przejść na stronÄ™ www.secondlife.com by zaÅ‚ożyć konto? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="AddClassified"> - OgÅ‚oszenia reklamowe ukazujÄ… siÄ™ w zakÅ‚adce Reklama w wyszukiwarce (Szukaj) oraz na stronie internetowej www.secondlife.com przez tydzieÅ„. + OgÅ‚oszenia reklamowe ukazujÄ… siÄ™ w zakÅ‚adce Reklama w wyszukiwarce (Szukaj) oraz na [http://secondlife.com/community/classifieds secondlife.com] przez tydzieÅ„. Napisz treść swojej reklamy, kliknij Zamieść by dodać katalogu ogÅ‚oszeÅ„. -Po zamieszczeniu reklamy zostaniesz poproszony o sprecyzowanie opÅ‚aty za reklamÄ™. +Po zamieszczeniu reklamy zostaniesz poproszony o sprecyzowanie opÅ‚aty za ReklamÄ™. Im wyższa opÅ‚ata tym wyżej Twoja reklama wyÅ›wietla siÄ™ w katalogu i wyszukiwarce po wpisaniu słów kluczowych. - <usetemplate ignoretext="W momencie dodawania nowej reklamy" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Jak stworzyć nowÄ… reklamÄ™?" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="DeleteClassified"> Usunąć reklamÄ™ '[NAME]'? PamiÄ™taj! Nie ma rekompensaty za poniesione koszta. <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> + <notification name="DeleteMedia"> + Wybrano usuniÄ™cie mediów zwiÄ…zanych z tÄ… powierzchniÄ…. +Czy na pewno chcesz kontynuować? + <usetemplate ignoretext="Potwierdź przed usuniÄ™ciem mediów z obiektu" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> <notification name="ClassifiedSave"> - Zapisać zmiany w reklamie [NAME]? + Zapisać zmiany w Reklamie [NAME]? <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> </notification> + <notification name="ClassifiedInsufficientFunds"> + Nie posiadasz wystarczajÄ…cych Å›rodków aby dodać ReklamÄ™. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="DeleteAvatarPick"> Usunąć wybór [PICK] z kategorii LubiÄ™? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="PromptGoToEventsPage"> - Odwiedzić internetowÄ… stronÄ™ imprez [SECOND_LIFE]? + Odwiedzić internetowÄ… stronÄ™ Imprez [SECOND_LIFE]? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="SelectProposalToView"> @@ -411,26 +361,18 @@ PamiÄ™taj! Nie ma rekompensaty za poniesione koszta. <notification name="SelectHistoryItemToView"> Wybierz obiekt z historii, który chcesz zobaczyć. </notification> - <notification name="ResetShowNextTimeDialogs"> - Zresetować 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? - <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> - </notification> - <notification name="SkipShowNextTimeDialogs"> - WyÅ‚Ä…czyć 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? - <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> - </notification> <notification name="CacheWillClear"> - Bufor danych na dysku zostanie zresetowany po relogu do [APP_NAME]. + Bufor danych zostanie wyczyszczony po restarcie aplikacji [APP_NAME]. </notification> <notification name="CacheWillBeMoved"> - Bufor danych na dysku zostanie przemieszczony po relogu do [APP_NAME]. -Bufor bÄ™dzie również wyczyszczony. + Bufor danych zostanie przeniesiony po restarcie aplikacji [APP_NAME]. +PamiÄ™taj: Opcja ta wyczyszcza bufor danych. </notification> <notification name="ChangeConnectionPort"> - Ustawienia portu zostanÄ… wprowadzone po relogu do [APP_NAME]. + Ustawienia portu zostajÄ… zaktualizowane po restarcie aplikacji [APP_NAME]. </notification> <notification name="ChangeSkin"> - Nowa skórka zostanie wprowadzona po relogu do [APP_NAME]. + Nowa skórka zostanie wczytana po restarcie aplikacji [APP_NAME]. </notification> <notification name="GoToAuctionPage"> Odwiedzić stronÄ™ internetowÄ… [SECOND_LIFE] żeby zobaczyć szczgóły aukcji lub zrobić ofertÄ™? @@ -450,17 +392,17 @@ UsuÅ„ kilka etapów i zapisz jeszcze raz. </notification> <notification name="GestureSaveFailedObjectNotFound"> Nie można zapisać gestu ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. -Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. +Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniÄ™ty. </notification> <notification name="GestureSaveFailedReason"> - Nie można zapisać gestu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + Nie można zapisać gestu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz później. </notification> <notification name="SaveNotecardFailObjectNotFound"> Nie można zapisać notki ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. </notification> <notification name="SaveNotecardFailReason"> - Nie można zapisać notki z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + Nie można zapisać notki z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz później. </notification> <notification name="ScriptCannotUndo"> Nie można cofnąć wszystkich zmian w Twojej wersji skryptu. @@ -469,7 +411,7 @@ Czy chcesz zaÅ‚adować ostatniÄ… wersjÄ™ zapisanÄ… na serwerze? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="SaveScriptFailReason"> - Nie można zapisać skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + Nie można zapisać skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz później. </notification> <notification name="SaveScriptFailObjectNotFound"> Nie można zapisać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. @@ -478,6 +420,11 @@ Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. <notification name="SaveBytecodeFailReason"> Nie można zapisać skompilowanego skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. </notification> + <notification name="StartRegionEmpty"> + Oops, Twoje miejsce startu nie zostaÅ‚o okreÅ›lone. +Wpisz proszÄ™ nazwÄ™ regionu w lokalizacjÄ™ startu w polu Lokalizacja Startu lub wybierz Moja Ostatnia Lokalizacja albo Miejsce Startu. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="CouldNotStartStopScript"> Nie można uruchomić lub zatrzymać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. @@ -489,26 +436,26 @@ Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. Nie można zapisać pliku [[FILE]] </notification> <notification name="UnsupportedHardware"> - Uwaga: Twój system nie speÅ‚nia minimalnych wymagaÅ„ sprzÄ™towych [APP_NAME]. Jakość i prÄ™dkość [APP_NAME] mogÄ… być pogorszone. Niestety, nie bÄ™dziemy w stanie udzielić Ci technicznej pomocy, ponieważ konfiguracja Twojego systemu nie speÅ‚nia wymagaÅ„ sprzÄ™towych. + Niestety Twój komputer nie speÅ‚nia minimalnych wymogów sprzÄ™towych dla poprawnego dziaÅ‚ania [APP_NAME]. Możesz odczuwać bardzo niskÄ… wydajność operacyjnÄ…. Niestety portal pomocy, [SUPPORT_SITE] nie posiada informacji na temat poprawnej konfiguracji technicznej Twojego systemu. -MINSPECS -Czy chcesz odwiedzić stronÄ™ [_URL] po dodatkowe informacje? +Po wiÄ™cej info, odwiedź stronÄ™ [_URL] . <url name="url" option="0"> http://www.secondlife.com/corporate/sysreqs.php </url> - <usetemplate ignoretext="Zignoruj ostrzeżenie" name="okcancelignore" notext="Nie" yestext="Tak"/> + <usetemplate ignoretext="Dysk twardy mojego komputera nie jest wspomagany" name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="UnknownGPU"> - Twój system jest wyposażony w kartÄ™ graficznÄ… której jeszcze nie znamy. -To siÄ™ czÄ™sto zdarza z nowym sprzÄ™tem, którego jeszcze nie testowaliÅ›my. -[APP_NAME] najprawdopodobniej bÄ™dzie dziaÅ‚aÅ‚o poprawnie. Możliwe, że bÄ™dziesz musiaÅ‚ wyregulować ustawienia grafiki. -(Edycja > Ustawienia > Grafika). + Twój system jest wyposażony w kartÄ™ graficznÄ…, która nie jest rozpoznana przez [APP_NAME]. +Zdarza siÄ™ to czÄ™stow w przypadku nowego sprzÄ™tu, który nie byÅ‚ testowany z [APP_NAME]. Prawdopodobnie wystarczy dostosowanie ustawieÅ„ grafiki aby dziaÅ‚anie byÅ‚o poprawne. +(Ja > WÅ‚aÅ›ciwoÅ›ci > Grafika). <form name="form"> - <ignore name="ignore" text="Zignoruj ostrzeżenie"/> + <ignore name="ignore" text="Karta graficzna nie zostaÅ‚a zidentyfikowana."/> </form> </notification> <notification name="DisplaySettingsNoShaders"> - [APP_NAME] zawiesiÅ‚ siÄ™ podczas inicjalizacji sterowników graficznych. Jakość grafiki zostaÅ‚a zmniejszona - może pomoże. Pewne funkcje graficzne zostaÅ‚y wyÅ‚Ä…czone. Zalecamy aktualizcje strerowników grapicznych. + [APP_NAME] zawiesiÅ‚ siÄ™ podczas inicjalizacji sterowników graficznych. +Jakość grafiki zostaÅ‚a zmniejszona - może pomoże. +Pewne funkcje graficzne zostaÅ‚y wyÅ‚Ä…czone. Zalecamy aktualizcje sterowników graficznych. Możesz podnieść jakość grafiki pod Ustawienia > Grafika. </notification> <notification name="RegionNoTerraforming"> @@ -553,6 +500,9 @@ Ta osoba tymczasowo nie bÄ™dzie mógÅ‚a siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używ Wyrzucić [AVATAR_NAME] z Twojej posiadÅ‚oÅ›ci? <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wyrzuć i zabroÅ„ wstÄ™pu (ban)" yestext="Wyrzuć"/> </notification> + <notification name="EjectAvatarFromGroup"> + Wyrzuć [AVATAR_NAME] z grupy [GROUP_NAME] + </notification> <notification name="AcquireErrorTooManyObjects"> BÅÄ„D OTRZYMYWANIA: Zbyt wiele wybranych obiektów. </notification> @@ -562,12 +512,12 @@ Ta osoba tymczasowo nie bÄ™dzie mógÅ‚a siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używ <notification name="PromptGoToCurrencyPage"> [EXTRA] -Iść na stronÄ™ [_URL] po informacje dotyczÄ…ce zakupu L$? +Odwiedź stronÄ™ [_URL] po wiÄ™cej informacji na temat zakupu L$? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="UnableToLinkObjects"> Nie można poÅ‚Ä…czyć [COUNT] obiektów. -Maksimalnie można poÅ‚Ä…czyć [MAX] obiektów. +Maksymalnie można poÅ‚Ä…czyć [MAX] obiektów. </notification> <notification name="CannotLinkIncompleteSet"> Możesz Å‚Ä…czyć tylko kompletne zbiory obiektów i musisz wybrać wiÄ™cej niż jeden obiekt. @@ -643,12 +593,19 @@ Oczekiwana - [VALIDS] Nie można utworzyć pliku wyjÅ›ciowego: [FILE] </notification> <notification name="DoNotSupportBulkAnimationUpload"> - Åadowanie zbiorów plików animacji nie jest jeszcze dostÄ™pne. + [APP_NAME] obecnie nie wspomaga Å‚adowania grupowego plików animacji. </notification> <notification name="CannotUploadReason"> Åadowanie pliku [FILE] nie powiodÅ‚o siÄ™ z powodu: [REASON] Spróbuj jeszcze raz póżniej. </notification> + <notification name="LandmarkCreated"> + Dodano "[LANDMARK_NAME]" do folderu [FOLDER_NAME]. + </notification> + <notification name="LandmarkAlreadyExists"> + Posiadasz już landmark dla tej lokalizacji. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="CannotCreateLandmarkNotOwner"> Nie możesz zapamiÄ™tać tego miejsca (LM) ponieważ wÅ‚aÅ›ciciel posiadÅ‚oÅ›ci nie pozwala na to. </notification> @@ -672,6 +629,9 @@ Wybierz obiekty zawierajÄ…ce skrypty. Wybierz skryptowane obiekty do których masz prawa modyfikacji. </notification> + <notification name="CannotOpenScriptObjectNoMod"> + Nie można otworzyć skryptu bez prawa do modyfikacji obiektu. + </notification> <notification name="CannotSetRunningSelectObjectsNoScripts"> 'Uruchomienie' skryptów nie powiodÅ‚o siÄ™. @@ -697,52 +657,47 @@ Nowe zapytanie: [FINALQUERY] Teleportacja nie powiodÅ‚a siÄ™. [REASON] </notification> - - <notification name="invalid_tport"> -WystÄ…piÅ‚ problem z teleportacjÄ…. Wyloguj siÄ™ i zaloguj ponownie. -JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: -www.secondlife.com/support. - </notification> - <notification name="invalid_region_handoff"> -WystÄ…piÅ‚ problem ze zmianÄ… regionu. Wyloguj siÄ™ i zaloguj ponownie. -JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: -www.secondlife.com/support. - </notification> - <notification name="blocked_tport"> -Przepraszamy, teleportacja jest chwilowo niedostÄ™pna. Spróbuj jeszcze raz. + <notification name="invalid_tport"> + Niestety, pojawiÅ‚ siÄ™ bÅ‚Ä…d podczas próby teleportacji. Proponujemy wylogowanie siÄ™ i spróbowanie teleportacji ponownie. +Jeżeli nadal otrzymujesz tÄ™ wiadomość proponujemy odwiedzić stronÄ™ [SUPPORT_SITE]. + </notification> + <notification name="invalid_region_handoff"> + Niestety, pojawiÅ‚ siÄ™ bÅ‚Ä…d podczas próby przedostania siÄ™ na drugi region. Proponujemy wylogowanie siÄ™ i spróbowanie przedostania siÄ™ na drugi region ponownie. +Jeżeli nadal otrzymujesz tÄ™ wiadomość proponujemy odwiedzić stronÄ™ [SUPPORT_SITE]. + </notification> + <notification name="blocked_tport"> + Przepraszamy, teleportacja jest chwilowo niedostÄ™pna. Spróbuj jeszcze raz. JeÅ›li nadal nie możesz siÄ™ teleportować wyloguj siÄ™ i ponownie zaloguj. - </notification> - <notification name="nolandmark_tport"> -Przepraszamy, ale nie możemy znaleźć miejsca docelowego. - </notification> - <notification name="timeout_tport"> -Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji. Spróbuj jeszcze raz. - </notification> - <notification name="noaccess_tport"> -Przepraszamy, ale nie masz dostÄ™pu do miejsca docelowego. - </notification> - <notification name="missing_attach_tport"> -Czekamy na Twoje akcesoria. Możesz poczekać kilka minut lub zrobić relog przed nastÄ™pnÄ… próbÄ… teleportacji. - </notification> - <notification name="too_many_uploads_tport"> -Obecnie ten region ma problemy z Å‚adowaniem obiektów w zwiÄ…zku z czym teleportacja bardzo sie opóznia. + </notification> + <notification name="nolandmark_tport"> + Przepraszamy, ale nie możemy znaleźć miejsca docelowego. + </notification> + <notification name="timeout_tport"> + Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji. Spróbuj jeszcze raz. + </notification> + <notification name="noaccess_tport"> + Przepraszamy, ale nie masz dostÄ™pu do miejsca docelowego. + </notification> + <notification name="missing_attach_tport"> + Czekamy na Twoje akcesoria. Możesz poczekać kilka minut lub zrobić relog przed nastÄ™pnÄ… próbÄ… teleportacji. + </notification> + <notification name="too_many_uploads_tport"> + Obecnie ten region ma problemy z Å‚adowaniem obiektów w zwiÄ…zku z czym teleportacja bardzo sie opóźnia. Spróbuj jeszcze raz za kilka minut albo teleportuj siÄ™ do mniej zatÅ‚oczonego miejsca. - </notification> - <notification name="expired_tport"> -Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. - </notification> - <notification name="expired_region_handoff"> -Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić zmiany regionu wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. - </notification> - <notification name="no_host"> -Nie możemy znaleść miejsca docelowego. To miejsce może być chwilowo nieosiÄ…galne albo przestaÅ‚o istnieć. + </notification> + <notification name="expired_tport"> + Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="expired_region_handoff"> + Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić zmiany regionu wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="no_host"> + Nie możemy znaleść miejsca docelowego. To miejsce może być chwilowo nieosiÄ…galne albo przestaÅ‚o istnieć. Spróbuj jeszcze raz za kilka minut. - </notification> - <notification name="no_inventory_host"> -Szafa chwilowo nie dziaÅ‚a. - </notification> - - + </notification> + <notification name="no_inventory_host"> + Szafa chwilowo nie dziaÅ‚a. + </notification> <notification name="CannotSetLandOwnerNothingSelected"> Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. PosiadÅ‚ość nie zostaÅ‚a wybrana. @@ -751,7 +706,8 @@ PosiadÅ‚ość nie zostaÅ‚a wybrana. Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci ponieważ wybrany obszar przekracza granicÄ™ regionów. Wybierz mniejszy obszar i spróbuj jeszcze raz. </notification> <notification name="ForceOwnerAuctionWarning"> - Ta posiadÅ‚ość jest wystawiona na aukcjÄ™. Wymuszenie wÅ‚asnoÅ›ci anulue aukcjÄ™ i potencjalnie może zdenerwować zainteresowanych Rezydentów, jeżeli licytacja już siÄ™ rozpoczęła. Wymusić wÅ‚asność? + Ta posiadÅ‚ość jest wystawiona na aukcjÄ™. Wymuszenie wÅ‚asnoÅ›ci anuluje aukcjÄ™ i potencjalnie może zdenerwować zainteresowanych Rezydentów, jeżeli licytacja już siÄ™ rozpoczęła. +Wymusić wÅ‚asność? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="CannotContentifyNothingSelected"> @@ -779,7 +735,7 @@ PosiadÅ‚ość nie zostaÅ‚a wybrana. Region nie znaleziony. </notification> <notification name="CannotCloseFloaterBuyLand"> - Dialog Kup PosiadÅ‚ość nie może zostać zamkniÄ™ty dopóki [APP_NAME] nie oszacuje ceny tej tranzakcji. + Okno zakupu landu nie może zostać zamkniÄ™te dopóki aplikacja [APP_NAME] nie okreÅ›li ceny dla tej transkacji. </notification> <notification name="CannotDeedLandNothingSelected"> Nie można przekazać posiadÅ‚oÅ›ci: @@ -790,8 +746,8 @@ PosiadÅ‚ość nie zostaÅ‚a wybrana. Grupa nie zostaÅ‚a wybrana. </notification> <notification name="CannotDeedLandNoRegion"> - Nie można przekazać posiadÅ‚oÅ›ci: -Region nie znaleziony. + Brak możliwoÅ›ci przepisania posiadÅ‚oÅ›ci grupie: +Region, gdzie posiadÅ‚ość siÄ™ znajduje nie zostaÅ‚ odnaleziony. </notification> <notification name="CannotDeedLandMultipleSelected"> Nie można przekazać posiadÅ‚oÅ›ci: @@ -799,14 +755,6 @@ Wiele posiadÅ‚oÅ›ci jest wybranych. Spróbuj wybrać pojedynczÄ… posiadÅ‚ość. </notification> - <notification name="ParcelCanPlayMedia"> - To miejsce może odtwarzać strumienie mediów. -Odtwarzanie strumieni wymaga szybkiego poÅ‚Ä…czenia do Internetu. - -Odtwarzać dostÄ™pne strumienie mediów? -(Selekcja może zostać zmieniona póżniej pod Ustawienia > Audio i Video.) - <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz" yestext="Odtwarzaj"/> - </notification> <notification name="CannotDeedLandWaitingForServer"> Nie można przekazać posiadÅ‚oÅ›ci: Serwer aktualizuje dane wÅ‚asnoÅ›ci. @@ -836,8 +784,8 @@ Nie masz praw do porzucenia tej posiadÅ‚oÅ›ci. Twoje posiadÅ‚oÅ›ci sÄ… podkreÅ›lone na zielono. </notification> <notification name="CannotReleaseLandRegionNotFound"> - Nie można porzucić posiadÅ‚oÅ›ci: -Region nie znaleziony. + Brak możliwoÅ›ci porzucenia posiadÅ‚oÅ›ci: +Region, gdzie posiadÅ‚ość siÄ™ znajduje nie zostaÅ‚ odnaleziony. </notification> <notification name="CannotReleaseLandNoTransfer"> Nie możesz porzucić posiadÅ‚oÅ›ci: @@ -875,12 +823,12 @@ Podzielić posiadÅ‚ość? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="CannotDivideLandNoRegion"> - Nie można podzielić posiadÅ‚oÅ›ci: -Region nie znaleziony. + Brak możliwoÅ›ci podziaÅ‚u posiadÅ‚oÅ›ci: +Region, gdzie posiadÅ‚ość siÄ™ znajduje nie zostaÅ‚ odnaleziony. </notification> <notification name="CannotJoinLandNoRegion"> - Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: -Region nie znaleziony. + Brak możliwoÅ›ci zÅ‚Ä…czenia posiadÅ‚oÅ›ci: +Region, gdzie posiadÅ‚ość siÄ™ znajduje nie zostaÅ‚ odnaleziony. </notification> <notification name="CannotJoinLandNothingSelected"> Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: @@ -904,17 +852,6 @@ Wybierz obaszar usytuowany na obu posiadÅ‚oÅ›ciach. PoÅ‚Ä…czyć posiadÅ‚oÅ›ci? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> - <notification name="ShowOwnersHelp"> - Pokaż wÅ‚aÅ›cicieli: -Pokoloruj posiadÅ‚oÅ›ci zgodnie z przynależnoÅ›ciÄ… do wÅ‚aÅ›ciciela - -Zielony = Twoja PosiadÅ‚ość -Morski = PosiadÅ‚ość Twojej Grupy -Czerwony = PosiadÅ‚oÅ›ci Innych -Żółty = Na Sprzedaż -Fioletowy = Na AukcjÄ™ -Szary = Publiczna - </notification> <notification name="ConfirmNotecardSave"> Ta notka musi być zapisana żeby mogÅ‚a być skopiowana lub zobaczona. Zapisać notkÄ™? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> @@ -927,10 +864,10 @@ Szary = Publiczna Zmiana rozdzielczoÅ›ci do [RESX] x [RESY] nie powidÅ‚a siÄ™ </notification> <notification name="ErrorUndefinedGrasses"> - BÅ‚Ä…d: Niezdefiniowane trawy: [SPECIES] + BÅ‚Ä…d: niezdefiniowane trawy: [SPECIES] </notification> <notification name="ErrorUndefinedTrees"> - BÅ‚ad: Niezdefiniowane drzewa: [SPECIES] + BÅ‚ad: niezdefiniowane drzewa: [SPECIES] </notification> <notification name="CannotSaveWearableOutOfSpace"> Nie można zapisać '[NAME]' do pliku stroju. Musisz zwolnić trochÄ™ miejsca na Twoim komputerze i zapisać strój jeszcze raz. @@ -940,11 +877,8 @@ Szary = Publiczna Zazwyczaj jest to tymczasowy problem. Możesz kontynuować modyfikacje i zapisać strój ponownie za kilka minut. </notification> <notification name="YouHaveBeenLoggedOut"> - Twoja sesja [SECOND_LIFE] zostaÅ‚a zakoÅ„czona: -[MESSAGE] - -Kliknij Kontynuuj żeby zobaczyć IMy i czat. -Å»adne inne operacje nie bÄ™dÄ… dozwolone. Kliknij WyÅ‚Ä…cz w celu natychmiastowego opuszczenia [APP_NAME]. + NastÄ…piÅ‚o wylogowanie z [SECOND_LIFE] + [MESSAGE] <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz" yestext="Kontynuuj"/> </notification> <notification name="OnlyOfficerCanBuyLand"> @@ -996,7 +930,7 @@ ze wszystkich posiadÅ‚oÅ›ci w tym symulatorze? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="BlankClassifiedName"> - Musisz nadać tytuÅ‚ Twojej reklamie. + Musisz nadać tytuÅ‚ Twojej Reklamie. </notification> <notification name="MinClassifiedPrice"> Minimalna cena za publikacjÄ™ wynosi [MIN_PRICE]L$. @@ -1097,29 +1031,39 @@ Przekazać tÄ… posiadÅ‚ość o powierzchni [AREA] m² grupie '[GROUP_NAME]& </notification> <notification name="ErrorMessage"> [ERROR_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> </notification> - <notification name="AvatarMoved"> - Twoje miejsce [TYPE] jest obecnie niedostÄ™pne. [HELP] -Przeniesiono CiÄ™ do pobliskiego regionu. + <notification name="AvatarMovedDesired"> + Miejsce, do którego chcesz siÄ™ teleportować jest chwilowo nieobecne. +ZostaÅ‚eÅ› przeniesiony do regionu sÄ…siedniego. + </notification> + <notification name="AvatarMovedLast"> + Twoje miejsce startu jest obecnie niedostÄ™pne. +ZostaÅ‚eÅ› przeniesiony do sÄ…siedniego regionu. + </notification> + <notification name="AvatarMovedHome"> + Twoje miejsce startu jest obecnie niedostÄ™pne. +ZostaÅ‚eÅ› przeniesiony do pobliskiego regionu. +Możesz ustawić nowe miejsce startu. </notification> <notification name="ClothingLoading"> Twoje ubranie wciąż siÄ™ Å‚aduje. Możesz normalnie używać [SECOND_LIFE], inni użytkownicy bÄ™dÄ… CiÄ™ widzieli poprawnie. <form name="form"> - <ignore name="ignore" text="Åadowanie ubrania zajmuje dużo czasu"/> + <ignore name="ignore" text="Åadowanie ubraÅ„ nadal trwa"/> </form> </notification> <notification name="FirstRun"> Instalacja [APP_NAME] zakoÅ„czona. Jeżeli używasz [SECOND_LIFE] po raz pierwszy to musisz stworzyć konto żeby móc siÄ™ zalogować. -Przejść na stronÄ™ www.secondlife.com żeby stworzyć nowe konto? +Czy chcesz przejść na stronÄ™ [http://join.secondlife.com secondlife.com] żeby stworzyć nowe konto? <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="Nowe Konto..."/> </notification> <notification name="LoginPacketNeverReceived"> - Problemy z poÅ‚Ä…czeniem. Problem może być spowodowany Twoim poÅ‚Ä…czeniem z Internetem albo może istnieć po stronie serwerów [SECOND_LIFE]. + Problemy z poÅ‚Ä…czeniem. Problem może być spowodowany Twoim poÅ‚Ä…czeniem z Internetem albo może istnieć po stronie [SECOND_LIFE_GRID]. -Możesz sprawdzić swoje poÅ‚Ä…czenie z Internetem i spróbować ponownie za kilka minut albo kliknij Pomoc żeby poÅ‚Ä…czyć siÄ™ ze stronÄ… pomocy technicznej albo wybierz Teleportuj żeby spróbować teleportacji do Twojego miejsca startu. +Możesz sprawdzić swoje poÅ‚Ä…czenie z Internetem i spróbować ponownie za kilka minut lub poÅ‚Ä…czyć siÄ™ ze stronÄ… pomocy technicznej tutaj [SUPPORT_SITE] lub wybrać Teleportuj by teleportować siÄ™ do swojego miejsca startu. <form name="form"> <button name="OK" text="OK"/> <button name="Help" text="Pomoc"/> @@ -1139,10 +1083,10 @@ Ten wybór bÄ™dzie można później zmienić. [NAME] [PRICE]L$ Masz za maÅ‚o L$. </notification> <notification name="GrantedModifyRights"> - Masz teraz prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME]. + Masz teraz prawa modyfikacji obiektów należących do [NAME]. </notification> <notification name="RevokedModifyRights"> - Prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME] zostaÅ‚y Ci odebrane. + Prawa modyfikacji obiektów należących do [NAME] zostaÅ‚y Ci odebrane. </notification> <notification name="FlushMapVisibilityCaches"> To spowoduje wyczyszczenie buforów map regionu. @@ -1188,10 +1132,10 @@ ZamieÅ„ teksturÄ™ [TEXTURE_NUM] na 24-o bitowÄ… teksturÄ™ o wymiarze 512x512 lub Maksymalna liczba goÅ›ci wynosi [MAX_AGENTS]. </notification> <notification name="MaxBannedAgentsOnRegion"> - Maksymalna liczba nieporzÄ…danych Rezydentów (banów) wynosi [MAX_BANNED]. + Maksymalna liczba niepożądanych Rezydentów (banów) wynosi [MAX_BANNED]. </notification> <notification name="MaxAgentOnRegionBatch"> - Próba dodania [NUM_ADDED] osób nie powidÅ‚a siÄ™: + Próba dodania [NUM_ADDED] osób nie powiodÅ‚a siÄ™: [MAX_AGENTS] [LIST_TYPE] limit przekroczony o [NUM_EXCESS]. </notification> <notification name="MaxAllowedGroupsOnRegion"> @@ -1236,12 +1180,30 @@ Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i st Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> </notification> + <notification name="DownloadLinuxMandatory"> + Nowa wersja [APP_NAME] jest dostÄ™pna. +[MESSAGE] +Musisz pobrać aktualizacjÄ™ aby korzystać z [APP_NAME]. + <usetemplate name="okcancelbuttons" notext="Wyjdź" yestext="Pobieranie"/> + </notification> + <notification name="DownloadLinux"> + Aktualizacja [APP_NAME] jest dostÄ™pna. +[MESSAGE] +Ta aktualizacja nie jest wymagana ale zaleca siÄ™ jej instalacjÄ™ w celu poprawienia szybkoÅ›ci i stabilnoÅ›ci. + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="Pobieranie"/> + </notification> + <notification name="DownloadLinuxReleaseForDownload"> + Uaktualniona wersja [APP_NAME]zostaÅ‚a opublikowana. +[MESSAGE] +Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="Pobieranie"/> + </notification> <notification name="DownloadMacMandatory"> Nowa wersja [APP_NAME] zostaÅ‚a opublikowana. [MESSAGE] Musisz zainstalować nowÄ… wersjÄ™ żeby używać [APP_NAME]. -ZaÅ‚adować do foldera Aplikacji? +Pobrać i zapisać w folderze Aplikacji? <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz program" yestext="ZaÅ‚aduj"/> </notification> <notification name="DownloadMac"> @@ -1249,7 +1211,7 @@ ZaÅ‚adować do foldera Aplikacji? [MESSAGE] Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. -ZaÅ‚adować do foldera Aplikacji? +Pobrać i zapisać w folderze Aplikacji? <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> </notification> <notification name="DownloadMacReleaseForDownload"> @@ -1257,55 +1219,51 @@ ZaÅ‚adować do foldera Aplikacji? [MESSAGE] Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. -ZaÅ‚adować do foldera Aplikacji? +Pobrać i zapisać w folderze Aplikacji? <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> </notification> <notification name="DeedObjectToGroup"> - Przekazanie tego obiektu spowoduje, że grupa: + Przekazanie tego obiektu spowoduje, że Grupa: * Otrzyma L$ zapÅ‚acone temu obiektowi - <usetemplate ignoretext="PrzekazujÄ…c obiekty grupom" name="okcancelignore" notext="Anuluj" yestext="Przekaż"/> + <usetemplate ignoretext="ProszÄ™ potwierdzić decyzjÄ™ przed przepisaniem obiektu do grupy" name="okcancelignore" notext="Anuluj" yestext="Przekaż"/> </notification> <notification name="WebLaunchExternalTarget"> - Otworzyć systemowÄ… przegÅ‚Ä…darke żeby zobaczyć tÄ… zawartość? - <usetemplate ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zobaczyć stronÄ™" name="okcancelignore" notext="Anuluj" yestext="OK"/> + Czy chcesz otworzyć swojÄ… przeglÄ…darkÄ™ internetowÄ… by zobaczyć zawartość? + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by zobaczyć stronÄ™ internetowÄ…" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchJoinNow"> - Otworzyć stronÄ™ www.secondlife.com żeby zarzÄ…dzać Twoim kontem? - <usetemplate ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zarzÄ…dzać Twoim kontem" name="okcancelignore" notext="Anuluj" yestext="OK"/> + By dokonać zmian i aktualizacji swojego konta, odwiedź [http://secondlife.com/account/ Dashboard]. + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by dokonać zmian w konfiguracji mojego konta" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchSecurityIssues"> Odwiedź [SECOND_LIFE] Wiki i zobacz jak zgÅ‚aszać problemy z bezpieczeÅ„stwem danych. - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki kwestii bezpieczeÅ„stwa danych" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by dowiedzieć siÄ™ wiÄ™cej na temat zgÅ‚aszania problemów bezpieczeÅ„stwa" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchQAWiki"> Odwiedź [SECOND_LIFE] Wiki pytaÅ„ i odpowiedzi. - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki pytaÅ„ i odpowiedzi" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by zobaczyć QA Wiki" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchPublicIssue"> Odwiedź [SECOND_LIFE] katalog publicznych problemów, gdzie możesz zgÅ‚aszać bÅ‚Ä™dy i inne problemy. - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć katalog publicznych problemów" name="okcancelignore" notext="Anuluj" yestext="OK"/> - </notification> - <notification name="WebLaunchPublicIssueHelp"> - Odwiedź [SECOND_LIFE] Wiki i sprawdź jak używać katalogu publicznych problemów. - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki katalogu publicznych problemów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by wysÅ‚ać BÅ‚Ä™dy Klienta" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchSupportWiki"> Otwórz oficjalny blog Lindenów żeby zobaczyć nowe wiadomoÅ›ci i informacje. - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć blog" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by zobaczyć blog" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchLSLGuide"> - Otworzyć przewodnik skryptowania po pomoc ze skryptami? - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć przewodnik skryptowania" name="okcancelignore" notext="Anuluj" yestext="OK"/> + Czy chcesz otworzyć samouczek JÄ™zyka Skryptowania? + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by samouczek JÄ™zyka Skryptowania" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="WebLaunchLSLWiki"> - Otworzyć portal LSL po pomoc ze skryptami? - <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć portal LSL" name="okcancelignore" notext="Anuluj" yestext="OK"/> + Czy napewno chcesz odwiedzić portal LSL Portal? + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by LSL Portal" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="ReturnToOwner"> Czy na pewno chcesz zwrócić wybrane obiekty do ich wÅ‚aÅ›cicieli? Wszystkie udostÄ™pnione obiekty z prawem transferu zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. *UWAGA* Wszystkie udostÄ™pnione obiekty bez prawa transferu zostanÄ… usuniÄ™te! - <usetemplate ignoretext="ZwracajÄ…c obiekty ich wÅ‚aÅ›cicielom" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Potwierdź zanim zwrócisz obiekty do ich wÅ‚aÅ›cicieli" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="GroupLeaveConfirmMember"> JesteÅ› czÅ‚onkiem grupy [GROUP]. @@ -1313,18 +1271,18 @@ Chcesz opuÅ›cić grupÄ™? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="ConfirmKick"> - NA PEWNO chcesz wyrzucić wszystkich użytkowników z sieci? - <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Wyrzuć Wszystkich Użytkowników"/> + Napewno chcesz wyrzucić wszystkich Rezydentów z gridu? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Wyrzuć wszystkich Rezydentów"/> </notification> <notification name="MuteLinden"> - Przepraszamy, ale nie możesz wyciszyć Lindena. + Przepraszamy, ale nie możesz zablokować Lindena. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotStartAuctionAlreadyForSale"> Aukcja nie może zostać rozpoczÄ™ta w posiadÅ‚oÅ›ci, która zostaÅ‚a już wczeÅ›niej wystawiona na aukcjÄ™. Deaktywuj opcjÄ™ sprzedaży posiadÅ‚oÅ›ci jeżeli chcesz rozpocząć aukcjÄ™. </notification> - <notification label="BÅ‚Ä…d Wyciszenia Obiektu Przez NazwÄ™" name="MuteByNameFailed"> - Ta osoba zostaÅ‚a już wyciszona przez Ciebie. + <notification label="Zablokuj obiekty wedÅ‚ug wpisanej nazwy" name="MuteByNameFailed"> + Rezydent/obiekt jest już zablokowany. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="RemoveItemWarn"> @@ -1341,19 +1299,21 @@ Chcesz opuÅ›cić grupÄ™? </notification> <notification name="BusyModeSet"> Tryb Pracy jest wÅ‚Ä…czony. -Czat i IMy bedÄ… ukryte. WysÅ‚ane IMy bÄ™dÄ… otrzymywaÅ‚y TwojÄ… odpowiedź Trybu Pracy. Propozycje teleportacji bÄ™dÄ… odrzucone. -Dodatkowo, wszystkie podarowane dla Ciebie obiekty bÄ™dÄ… automatycznie zapisywane w folderze "Kosz" w Twojej szafie. - <usetemplate ignoretext="WÅ‚Ä…czajÄ…c Tryb Pracy" name="okignore" yestext="OK"/> +Czat i IM bÄ™dÄ… ukryte. WysÅ‚ane IM bÄ™dÄ… otrzymywaÅ‚y TwojÄ… odpowiedź Trybu Pracy. Propozycje teleportacji bÄ™dÄ… odrzucone. +Dodatkowo, wszystkie podarowane dla Ciebie obiekty bÄ™dÄ… automatycznie zapisywane w folderze "Kosz" w Twojej szafie. + <usetemplate ignoretext="Status zmieniony na Tryb Pracy" name="okignore" yestext="OK"/> </notification> <notification name="JoinedTooManyGroupsMember"> - Należysz już do maksymalnej iloÅ›ci grup. -Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej grupie, albo musisz odmówić. W celu opuszczenia grupy wybierz opcjÄ™ 'Grupy...' z menu 'Edycja'. + Należysz już do maksymalnej iloÅ›ci grup. Opuść proszÄ™ przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej grupie, albo odmów. [NAME] oferuje Ci czÅ‚onkostwo w grupie. -[INVITE] <usetemplate name="okcancelbuttons" notext="Odmów" yestext="Przyjmij"/> </notification> + <notification name="JoinedTooManyGroups"> + Należysz już do maksymalnej iloÅ›ci grup. Opuść proszÄ™ przynajmiej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej grupie, albo odmów. + <usetemplate name="okbutton" yestext="OK"/> + </notification> <notification name="KickUser"> - Z jakim komunikatem wyrzucić tego użytkownia? + Wyrzuć tego Rezydenta, wysyÅ‚ajÄ…c nastÄ™pujÄ…cy komunikat. <form name="form"> <input name="message"> Administrator wylogowaÅ‚ CiÄ™. @@ -1373,7 +1333,7 @@ Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej g </form> </notification> <notification name="FreezeUser"> - Z jakim komunikatem unieruchomić tego użytkownia? + Unieruchom tego Rezydenta, wysyÅ‚ajÄ…c nastÄ™pujÄ…cy komunikat. <form name="form"> <input name="message"> Unieruchomiono CiÄ™. Nie możesz siÄ™ ruszać ani rozmawiać. Administrator skontaktuje siÄ™ z TobÄ… poprzez IM. @@ -1383,7 +1343,7 @@ Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej g </form> </notification> <notification name="UnFreezeUser"> - Z jakim komunikatem odblokować tego użytkownia? + Cofnij unieruchomienie tego Rezydenta, wysyÅ‚ajÄ…c nastÄ™pujÄ…cy komunikat. <form name="form"> <input name="message"> Odblokowano CiÄ™. @@ -1403,7 +1363,7 @@ Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej g </form> </notification> <notification name="OfferTeleportFromGod"> - Wymusić przeniesienie użytkownika do miejsca Twojego pobytu? + WysÅ‚ać propozycjÄ™ teleportacji do Twojego miejsca? <form name="form"> <input name="message"> Zapraszam do siebie. Region: [REGION] @@ -1413,8 +1373,16 @@ Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej g </form> </notification> <notification name="TeleportFromLandmark"> - Na pewno chcesz siÄ™ teleportować? - <usetemplate ignoretext="TeleportujÄ…c z miejsca (LM) z Twojej szafy" name="okcancelignore" notext="Anuluj" yestext="Teleportuj"/> + Na pewno chcesz siÄ™ teleportować do <nolink>[LOCATION]</nolink>? + <usetemplate ignoretext="Potwierdź próbÄ™ teleportacji do zapisanego miejsca" name="okcancelignore" notext="Anuluj" yestext="Teleportuj"/> + </notification> + <notification name="TeleportToPick"> + Teleportuj do [PICK]? + <usetemplate ignoretext="Potwierdź, że chcesz teleportować siÄ™ do miejsca w Ulubionych" name="okcancelignore" notext="Anuluj" yestext="Teleportuj"/> + </notification> + <notification name="TeleportToClassified"> + Teleportuj do [CLASSIFIED]? + <usetemplate ignoretext="Potwierdź, że chcesz teleportować siÄ™ do lokalizacji z Reklamy" name="okcancelignore" notext="Anuluj" yestext="Teleportuj"/> </notification> <notification label="Wiadomość do Wszystkich w Twoim MajÄ…tku" name="MessageEstate"> Wpisz krótkÄ… wiadomość która zostanie wysÅ‚ana do wszystkich osób w Twoim majÄ…tku. @@ -1425,9 +1393,9 @@ Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej g </form> </notification> <notification label="Zmiana MajÄ…tku Lindenów" name="ChangeLindenEstate"> - Dokonujesz zmiany w Regionie Głównym należącym do Lindenów (Regiony Główne, Teen Grid, Orientacja). - -Żądana operacja jest wyjÄ…tkowo niebezpieczna dla wszystkich Rezydentów przebywajÄ…cych w regionie. Dodatkowo, zmiany dokonane w Regionie Głównym mogÄ… spowodować problemy przestrzeni serwerowej innych regionów. + Czy napewno chcesz zmienić ustawienia majÄ…tku Linden (mainland, teen grid, orientacja, itp). + +Jest to wyjÄ…tkowo niebezpieczna decyzja, odczuwalna przez wszystkich Rezydentów. Dla mainland, spowoduje to zmianÄ™ tysiÄ™cy regionów oraz ich przestrzeÅ„ serwerowÄ…. Kontynuować? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> @@ -1485,9 +1453,7 @@ Kontynuować? Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. Może być to wynikiem braku informacji na temat weryfikacji Twojego wieku. Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="RegionEntryAccessBlocked_KB"> Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. @@ -1496,37 +1462,26 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <url name="url"> https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 </url> - <usetemplate - name="okcancelignore" - yestext="[SECOND_LIFE]:Pomoc" - notext="Zamknij" - ignoretext="DostÄ™p do posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zawiera"/> + <usetemplate ignoretext="Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. Może być to wynikiem braku informacji na temat weryfikacji Twojego wieku." name="okcancelignore" notext="Zamknij" yestext="[SECOND_LIFE]:Pomoc"/> </notification> <notification name="RegionEntryAccessBlocked_Notify"> Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. </notification> <notification name="RegionEntryAccessBlocked_Change"> - W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie jesteÅ› uprawniony do przebywania w tym regionie. - -Możeszy wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do regionu. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. - <form name="form"> - <button - name="OK" - text="ZmieÅ„ Ustawienia"/> - <button - default="true" - name="Cancel" - text="Zamknij"/> - <ignore name="ignore" text="DostÄ™p do posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> - </form> + Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. + +Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do regionu. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Ja > Ustawienia > Główne. + <form name="form"> + <button name="OK" text="ZmieÅ„ Ustawienia"/> + <button default="true" name="Cancel" text="Zamknij"/> + <ignore name="ignore" text="Moje ustawienia wieku nie dopuszczajÄ… do regionu"/> + </form> </notification> <notification name="LandClaimAccessBlocked"> W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz odzyskać tej posiadÅ‚oÅ›ci. Możesz potrzebować weryfikacji wieku bÄ…dź instalacji najnowszej wersji klienta. Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LandClaimAccessBlocked_KB"> Ze wzglÄ™du na Twój wiek, nie możesz odzyskać tej posiadÅ‚oÅ›ci. @@ -1535,11 +1490,7 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <url name="url"> https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 </url> - <usetemplate - name="okcancelignore" - yestext="[SECOND_LIFE]:Pomoc" - notext="Zamknij" - ignoretext="Odzyskanie posiadÅ‚oÅ›ci jest zablokowane ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zwiera"/> + <usetemplate ignoretext="W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz odzyskać tej posiadÅ‚oÅ›ci." name="okcancelignore" notext="Zamknij" yestext="[SECOND_LIFE]:Pomoc"/> </notification> <notification name="LandClaimAccessBlocked_Notify"> Ze wzglÄ™du na Twój wiek, nie możesz odzyskać tej posiadÅ‚oÅ›ci. @@ -1547,20 +1498,14 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <notification name="LandClaimAccessBlocked_Change"> W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz odzyskać tej posiadÅ‚oÅ›ci. -Możeszy wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do posiadÅ‚oÅ›ci. Wówczas bÄ™dziesz w stanie znaleźć, oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. - <usetemplate - name="okcancelignore" - yestext="ZmieÅ„ Ustawienia" - notext="Zamknij" - ignoretext="Odzyskanie posiadÅ‚oÅ›ci jest zablokowane ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> +Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do regionu. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Ja > Ustawienia > Główne. + <usetemplate ignoretext="Ze wzglÄ™du na Twój wiek, nie możesz odzyskać tej posiadÅ‚oÅ›ci." name="okcancelignore" notext="Zamknij" yestext="ZmieÅ„ Ustawienia"/> </notification> <notification name="LandBuyAccessBlocked"> Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. Może być to wynikiem braku informacji na temat weryfikacji Twojego wieku. Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="LandBuyAccessBlocked_KB"> Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. @@ -1569,11 +1514,7 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <url name="url"> https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 </url> - <usetemplate - name="okcancelignore" - yestext="[SECOND_LIFE]:Pomoc" - notext="Zamknij" - ignoretext="Zakup posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zawiera"/> + <usetemplate ignoretext="Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci." name="okcancelignore" notext="Zamknij" yestext="[SECOND_LIFE]:Pomoc"/> </notification> <notification name="LandBuyAccessBlocked_Notify"> Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. @@ -1581,12 +1522,11 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <notification name="LandBuyAccessBlocked_Change"> W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz kupić tej posiadÅ‚oÅ›ci. -Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do posiadÅ‚oÅ›ci. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. - <usetemplate - name="okcancelignore" - yestext="ZmieÅ„ Ustawienia" - notext="Zamknij" - ignoretext="Zakup posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> +Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do regionu. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Ja > Ustawienia > Główne. + <usetemplate ignoretext="W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz kupić tej posiadÅ‚oÅ›ci." name="okcancelignore" notext="Zamknij" yestext="ZmieÅ„ Ustawienia"/> + </notification> + <notification name="TooManyPrimsSelected"> + Zbyt wiele wybranych obiektów. Wybierz [MAX_PRIM_COUNT] lub mniej i spróbuj ponownie </notification> <notification name="ProblemImportingEstateCovenant"> Problem z importem umowy majÄ…tku. @@ -1600,9 +1540,7 @@ Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach T </notification> <notification name="UnableToLoadNotecardAsset"> Brak możliwoÅ›ci zaÅ‚adowania noty w tej chwili. - <usetemplate - name="okbutton" - yestext="OK"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="NotAllowedToViewNotecard"> NiewystarczajÄ…ce prawa do zobaczenia notki przypisanej do wybranego ID. @@ -1620,19 +1558,11 @@ ZamieÅ›cić tÄ… reklamÄ™ za [AMOUNT]L$? </notification> <notification name="SetClassifiedMature"> Czy ta reklama zawiera treść 'Mature'? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie" - yestext="Tak"/> + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie" yestext="Tak"/> </notification> <notification name="SetGroupMature"> Czy ta grupa zawiera treść 'Mature'? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie" - yestext="Tak"/> + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie" yestext="Tak"/> </notification> <notification label="Potwierdź Restart" name="ConfirmRestart"> Na pewno chcesz zrobić restart tego regionu za 2 minuty? @@ -1646,201 +1576,14 @@ ZamieÅ›cić tÄ… reklamÄ™ za [AMOUNT]L$? <button name="Cancel" text="Anuluj"/> </form> </notification> - <notification label="Blokowanie KsztaÅ‚towania Terenu" name="HelpRegionBlockTerraform"> - Jeżeli ta opcja jest wybrana wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci nie bÄ™dÄ… mogli ksztaÅ‚tować terenu niezależnie od ustawienia opcji 'Edycja Terenu' dla posiadÅ‚oÅ›ci. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="Blokowanie Latania" name="HelpRegionBlockFly"> - Jeżeli ta opcja jest wybrana ludzie nie bÄ™dÄ… mogli latać w tym regionie niezależnie od ustawienia opcji 'Latanie' dla posiadÅ‚oÅ›ci. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="Zezwalanie na Uszkodzenia" name="HelpRegionAllowDamage"> - Jeżeli ta opcja jest wybrana system zdrowia bÄ™dzie aktywny we wszystkich posiadÅ‚oÅ›ciach niezależnie od ustawieÅ„ dla indywidualnych posiadÅ‚oÅ›ci. Jeżeli ta opcja nie jest wybrana wÅ‚aÅ›ciciele indywidualych posiadÅ‚oÅ›ci bÄ™dÄ… mogli kontrolować system zdrowia w swoich posiadÅ‚oÅ›ciach. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="Limit Liczby Awatarów" name="HelpRegionAgentLimit"> - Wybierz maksymalnÄ… liczbÄ™ awatarów dozwolonÄ… w tym regionie. -Wydajność systemu może siÄ™ zmieniać w zależnoÅ›ci od liczby obecnych awatarów. - -DomyÅ›lnie: 40 - </notification> - <notification label="Ekstra Obiekty" name="HelpRegionObjectBonus"> - Ekstra Obiekty jest to mnożnik dla dozwolonych elementów (obiektów prostych). Dozwolony zakres to 1 do 10. Ustawienie '1' pozwala na 117 elementów na każdej posiadÅ‚oÅ›ci o powierzchni 512m. Ustawienie '2' pozwala na 234 elementy, czyli dwa razy tyle, itd. -Maksymalna liczba elementów w regionie to 15000 niezależnie od ustawienia Ekstra Obiektów. PamiÄ™taj - zmniejszenie Ekstra Obiektów po fakcie może spowodować odsyÅ‚anie lub usuwanie istniejÄ…cych obiektów. - -DomyÅ›lnie: 1,0 - </notification> - <notification label="Treść" name="HelpRegionMaturity"> - Aktywuj opcjÄ™ klasyfikacji regionu ze wzglÄ™du na treść jakÄ… zawiera, która zostaje wyÅ›wietlana w górnym pasku widoku w nazwie regionu oraz w podpowiedziach Mapy Åšwiata. Dodatkowo, opcja ta wpÅ‚ywa na dostÄ™p do wyników w czasie wyszukiwania danego regionu. By móc odwiedzić dany region lub mieć dostÄ™p do jego wyników w czasie wyszukiwania, Rezydent musi mieć takie same ustawienia dla treÅ›ci jak dany region. - -By dokonana zmiana zostaÅ‚a zsynchronizowana z MapÄ… Åšwiata, poczekaj kilka minut. - </notification> - <notification label="Blokowanie Popychania" name="HelpRegionRestrictPushObject"> - Ta opcja powoduje, że popychanie bÄ™dzie ograniczone w caÅ‚ym regionie. Jeżeli ta opcja jest wybrana Rezydenci mogÄ… być popchniÄ™ci tylko przez samych siebie lub przez wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. -(Popychanie odnosi sie do funkcji llPushObject() w LSL.) - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="Dzielenie / ÅÄ…czenie PosiadÅ‚oÅ›ci" name="HelpParcelChanges"> - Ta opcja kontroluje czy posiadÅ‚oÅ›ci nie należące do wÅ‚aÅ›ciciela tego majÄ…tku mogÄ… być Å‚Ä…czone / dzielone. -Jeżeli opcja nie jest wybrana: -* Tylko wÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… Å‚Ä…czyć / dzielić posiadÅ‚oÅ›ci. -* Tylko posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela albo do grupy mogÄ… być - Å‚Ä…czone / dzielone przez czÅ‚onków z wystarczajÄ…cymi prawami. -Jeżeli ta opcja jest wybrana: -* Wszyscy wÅ‚aÅ›ciciele mogÄ… Å‚Ä…czyć / dzielić swoje posiadÅ‚oÅ›ci. -* PosiadÅ‚oÅ›ci należące do grupy mogÄ… być Å‚Ä…czone / dzielone - przez czÅ‚onków z wystarczajÄ…cymi prawami. - -DomyÅ›lnie: wybrana - </notification> - <notification label="Nie Pokazuj w Wyszukiwaniu" name="HelpRegionSearch"> - Wybranie tej opcji uniemożliwi wÅ‚aÅ›cicielom posiadÅ‚ość wyÅ›wietlanie ich posiadÅ‚oÅ›ci w wyszukiwaniu -DomyÅ›linie: nie wybrana - </notification> <notification label="Zmienione Restrykcje Wieku dla Regionu" name="RegionMaturityChange"> Ustawienie restrykcji wieku dla regionu zostaÅ‚o zmienione. Zazwyczaj musi upÅ‚ynąć nieco czasu zanim ta zmiana zostanie odzwierciedlona na mapie. - </notification> - <notification label="Odsprzedaż PosiadÅ‚oÅ›ci" name="HelpRegionLandResell"> - WÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… sprzedawać posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela majÄ…tku. -Jeżeli ta opcja nie jest wybrana kupujÄ…cy nie bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. -Jeżeli ta opcja jest wybrana kupujÄ…cy bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. - -DomyÅ›linie: nie pozwalaj - </notification> - <notification label="WyÅ‚Ä…cz Skrypty" name="HelpRegionDisableScripts"> - SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez skrypt. Otwórz panel Statystyki (Ctrl+Shift+1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Skryptów wynosi 25 ms lub wiÄ™cej kliknij na Główne Skrypty. Zobaczysz listÄ™ nazw i lokacji skryptów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - -Wybranie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy wszystkie skrypty w tym regionie. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionego Głównego Skryptu. -Po przebyciu na miejsce zobacz skrypt i sprawdź czy jest on źródÅ‚em problemu. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem skryptu albo usuÅ„ lub zwróć obiekt. -WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy skrypty w tym regionie. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="WyÅ‚Ä…cz Kolizje" name="HelpRegionDisableCollisions"> - SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez fizyczne obiekty. Otwórz panel Statystyki (Ctrl+Shift+1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Symulatora (Fizyka) wynosi 20 ms lub wiÄ™cej kliknij na Główne Kolizje. Zobaczysz listÄ™ nazw i lokacji fizycznych obiektów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - -Wybranie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy kolizje obiektów. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionych Główneych Kolizji. -Po przebyciu na miejsce zobacz obiekt i sprawdź czy jest on źródÅ‚em kolizji z innymi obiektami. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem obiektu albo usuÅ„ lub zwróć obiekt. -WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy kolizje w tym regionie. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="WyÅ‚Ä…cz FizykÄ™" name="HelpRegionDisablePhysics"> - Opcja WyÅ‚Ä…cz FizykÄ™ jest podobna do opcji WyÅ‚Ä…cz Kolizje i spowoduje wyÅ‚Ä…czenie symulacji fizyki. Oznacza to, że nie tylko obiekty przestanÄ… siÄ™ zderzać, ale również awatary nie bÄ™dÄ… siÄ™ mogÅ‚y poruszać. - -Ta opcja powinna być używana wyÅ‚Ä…cznie w przypadku kiedy użycie opcji WyÅ‚Ä…cz Kolizje nie zwiÄ™ksza wystarczajÄ…co wydajnoÅ›ci symulatora w celu sprawdzenia problemów zwiÄ…zanych z fizykÄ… i z kolizjami. - -Po zakoÅ„czeniu badaÅ„ musisz ponownie wÅ‚Ä…czyć fizykÄ™ żeby awatary mogÅ‚y siÄ™ poruszać. - -DomyÅ›lnie: nie wybrana - </notification> - <notification label="Główne Kolizje" name="HelpRegionTopColliders"> - Pokaż listÄ™ obiektów potencjalnie doÅ›wiadczajÄ…cych najwiÄ™kszej iloÅ›ci kolizji miÄ™dzy obiektami. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Symulatora (Fizyka) i sprawdź czy wiÄ™cej niż 20 ms jest spÄ™dzane w fizyce. - </notification> - <notification label="Główne Skrypty" name="HelpRegionTopScripts"> - Pokaż listÄ™ obiektów spÄ™dzajÄ…cych najwÄ™cej czasu wykonujÄ…c skrypty LSL. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Skryptów i sprawdź czy wiÄ™cej niż 25 ms jest spÄ™dzane w skryptach. - </notification> - <notification label="Restart Regionu" name="HelpRegionRestart"> - Restart procesu na serwerze obsÅ‚ugujÄ…cym ten region za dwie minuty. Wszyscy Rezydenci w tym regionie zostanÄ… wylogowani. Region zapisze swoje dane i powinien wystartować w przeciÄ…gu 90 sekund. - -Restart regionu nie naprawi wiÄ™kszoÅ›ci problemów zwiÄ…zanych z wydajnoÅ›ciÄ… / prÄ™dkoÅ›ciÄ… i generalnie powinnien być używany na polecenie. - </notification> - <notification label="Poziom Wody" name="HelpRegionWaterHeight"> - Jest to poziom w metrach gdzie pojawia siÄ™ woda. Jeżeli jest wybrana inna wartość niż 20 i Twoja woda sÄ…siaduje z krawÄ™dziÄ… Å›wiata lub pustym miejscem to bÄ™dzie widoczny uskok. - -DomyÅ›lnie: 20 - </notification> - <notification label="Wznoszenie Terenu" name="HelpRegionTerrainRaise"> - Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… podnieść teren powyżej ustalonego poziomu odniesienia. - -DomyÅ›lnie: 4 - </notification> - <notification label="Obniżanie Terenu" name="HelpRegionTerrainLower"> - Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… obniżyć teren poniżej ustalonego poziomu odniesienia. - -DomyÅ›lnie: -4 - </notification> - <notification label="Åadowanie RAW Terenu" name="HelpRegionUploadRaw"> - Ten przycisk Å‚aduje plik .RAW dla tego regionu. -Plik musi mieć poprawne wymiary (RGB, 256x256) i 13 kanałów. -Najprostszy sposób na stworzenie pliku terenu to zapisanie istniejÄ…cego pliku RAW. Zalecany pierwszy krok to modyfikacje kanaÅ‚u czerwieni (wysokość terenu) i Å‚adowanie nowego pliku. - -Åadowanie pliku może zająć 45 sekund. ZaÅ‚adowanie terenu nie przemieÅ›ci obiektów znajdujÄ…cych siÄ™ na tym terenie, tylko teren i prawa przypisane do posiadÅ‚oÅ›ci ulegnÄ… zmianie. Może to spowodować, że niektóre obiekty zniknÄ… pod ziemiÄ…. - -Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. - </notification> - <notification label="Zapisywanie RAW Terenu" name="HelpRegionDownloadRaw"> - Ten przycisk zapisuje plik zawierajÄ…cy mapÄ™ wysokoÅ›ci, wymiary posiadÅ‚oÅ›ci, dane o posiadÅ‚oÅ›ciach na sprzedaż i niektóre prawa przypisane do posiadÅ‚oÅ›ci w tym regionie. Jeżeli otwierasz ten plik w programie takim jak Photoshop musisz zdefniować wymiary dokumentu jako: RGB, 256x256, 13 kanałów. Ten plik terenu nie może zostać otwarty w żaden inny sposób. - -Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. - </notification> - <notification label="Używaj SÅ‚oÅ„ca MajÄ…tku" name="HelpRegionUseEstateSun"> - Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w tym regionie żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w reszcie majÄ…tku. - -DomyÅ›lnie: wÅ‚Ä…czona - </notification> - <notification label="StaÅ‚e SÅ‚oÅ„ce" name="HelpRegionFixedSun"> - Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. - -DomyÅ›lnie: nie wÅ‚Ä…czona - </notification> - <notification label="Ustalanie Terenu" name="HelpRegionBakeTerrain"> - Ten przycisk zapisuje obecne uksztaÅ‚towanie terenu jako nowy punkt odniesienia dla regionu. Po ustaleniu punktu odniesienia teren może zostać odtworzony do zapisanego ksztaÅ‚tu wybierajÄ…c opcjÄ™ Odtwórz w Edycji Terenu. Zapisany, ustalony teren jest również punktem odniesienia dla górnego i dolnego limitu zmian wysokoÅ›ci. - </notification> - <notification label="ZarzÄ…dcy MajÄ…tku" name="HelpEstateEstateManager"> - ZarzÄ…dca majÄ…tku jest Rezydentem oddelegowanym przez Ciebie do kontroli ustawieÅ„ regionu i majÄ…tku. ZarzÄ…dca majÄ…tku może zmieniać wszystkie ustawienia dostÄ™pne na tym panelu, za wyjÄ…tkiem Å‚adowania, zapisywania i ustalania terenu. W szczgólnoÅ›ci może kontrolować dostÄ™p innych Rezydentów (bany) do Twojego majÄ…tku. - -ZarzÄ…dcy majÄ…tku mogÄ… być dodawani i usuwani wyÅ‚Ä…cznie przez wÅ‚aÅ›ciciela majÄ…tku. Wybieraj na zarzÄ…dców tylko tych Rezydentów którym ufasz ponieważ ponosisz odpowiedzialność za ich dziaÅ‚ania. - </notification> - <notification label="Używaj Globalnego Czasu" name="HelpEstateUseGlobalTime"> - Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w Twoim majÄ…tku żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w regionach głównych należących do Lindenów. - </notification> - <notification label="StaÅ‚e SÅ‚oÅ„ce" name="HelpEstateFixedSun"> - Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. - </notification> - <notification label="DostÄ™p Publiczny" name="HelpEstateExternallyVisible"> - Ta opcja kontroluje czy Rezydenci znajdujÄ…cy siÄ™ w innych majÄ…tkach mogÄ… przenosić siÄ™ do tego majÄ…tku jeżeli nie sÄ… umieszczeni na liÅ›cie dostÄ™pu. - -DomyÅ›lnie: wÅ‚Ä…czona - </notification> - <notification label="Pozwalaj na BezpoÅ›redniÄ… TeleportacjÄ™" name="HelpEstateAllowDirectTeleport"> - WÅ‚Ä…czenie tej opcji pozwala Rezydentom na bezpoÅ›redniÄ… teleportacjÄ™ do dowolnego miejsca a Twoim majÄ…tku. Jeżeli ta opcja nie jest wyÅ‚Ä…czona Rezydenci mogÄ… siÄ™ teleportować do najbliższego teleportera. -DomyÅ›lnie: nie wÅ‚Ä…czona - </notification> - <notification label="DostÄ™p do MajÄ…tku" name="HelpEstateAllowResident"> - DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych Rezydentów i poniższych grup. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. - </notification> - <notification label="DostÄ™p Grup do MajÄ…tku" name="HelpEstateAllowGroup"> - DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych grup i powyższych Rezydentów. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. - </notification> - <notification label="Email o Nadużyciach" name="HelpEstateAbuseEmailAddress"> - Wpisanie ważnego email adresu spowoduje, że raporty o nadużyciach w obrÄ™bie tego majÄ…tku bÄ™dÄ… wysyÅ‚ane na ten adres. Zostawienie pustego miejsca spowoduje, że raporty o nadużyciach bÄ™dÄ… wysyÅ‚ane wyÅ‚Ä…cznie do Linden Lab. - </notification> - <notification label="WstÄ™p Wzbroniony (bany)" name="HelpEstateBanResident"> - Rezydenci umieszczeni na tej liÅ›cie nie majÄ… dostÄ™pu do Twojego majÄ…tku, niezależnie od jakichkolwiek innych ustawieÅ„. - </notification> - <notification label="Pozwalaj na Rozmowy" name="HelpEstateVoiceChat"> - PosiadÅ‚oÅ›ci w tym majÄ…tku mogÄ… mieć wÅ‚asne kanaÅ‚y gÅ‚osu pozwalajÄ…ce Rezydentom na rozmowy z osobami w pobliżu. - -DomyÅ›lnie: nie wÅ‚Ä…czone +Aby wejść do regionu Adult, Rezydenci muszÄ… posiadać zweryfikowane konto, albo w wyniku weryfikacji wieku albo pÅ‚atoÅ›ci. </notification> <notification label="Wersja Niezgodna z Systemem Rozmów" name="VoiceVersionMismatch"> - Ta wersja [APP_NAME] nie jest kompatybilna z systemem Rozmów w tym regionie. Musisz zainstalować aktualnÄ… wersjÄ™ [APP_NAME] żeby Rozmowy dziaÅ‚aÅ‚y porawnie. - </notification> - <notification label="Umowa MajÄ…tku" name="HelpEstateCovenant"> - WÅ‚Ä…czenie opcji umowy majÄ…tku jest wymagane w celu umożliwienia sprzedaży posiadÅ‚oÅ›ci w obrÄ™bie majÄ…tku. -Jeżeli opcja umowy nie jest wybrana sprzedaż posiadÅ‚oÅ›ci nie jest dozwolona. Notka okreÅ›lajÄ…ca TwojÄ… umowÄ™ może być pusta jeżeli nie chcesz ustalić zasad specyficznych dla Twojego majÄ…tku i jeżeli nie chcesz uprzedzać nabywców o faktach odnoszÄ…cych siÄ™ do posiadÅ‚oÅ›ci przed zakupem. - -Umowa może być używana w celu okreÅ›lenia zasad, zaleceÅ„, przekazywania informacji o kulturze lub, po prostu, Twoich wÅ‚asnych oczekiwaÅ„ w odniesieniu do potencjalnego nabywacy. -Możesz zdefiniować zasady podziaÅ‚u posidÅ‚oÅ›ci, prawa budowlane, zasady opÅ‚at i wszystkie dodatkowe informacje z którymi nowy wÅ‚aÅ›ciciel powinien zapoznać siÄ™ i zaakceptować przed zakupem. - -Nabywca musi wybrać opcjÄ™ akceptacji umowy żeby trasakcja mogÅ‚a zostać sfinalizowana. Umowa majÄ…tku jest zawsze dostÄ™pna w dialogu O PosiadÅ‚oÅ›ci dla każedej posiadÅ‚oÅ›ci ze zdefinowanÄ… umowÄ…. + Ta wersja [APP_NAME] nie jest kompatybilna z systemem rozmów w tym Regionie. Musisz zainstalować aktualnÄ… wersjÄ™ [APP_NAME] aby komunikacja gÅ‚osowa dziaÅ‚aÅ‚a poprawnie. </notification> <notification label="Nie Można Kupić Obiektów" name="BuyObjectOneOwner"> Jednorazowo możesz kupować tylko od jednego wÅ‚aÅ›ciciela. @@ -1917,63 +1660,45 @@ Wpisz hasÅ‚o ponownie i kliknij OK. </notification> <notification name="SetPickLocation"> Uwaga: -Lokacja tego wyboru zostaÅ‚a zaktualizowana ale pozostaÅ‚e szczegóły zachowajÄ… oryginalne wartoÅ›ci. +Lokalizacja tego wyboru zostaÅ‚a zaktualizowana ale pozostaÅ‚e szczegóły zachowajÄ… oryginalne wartoÅ›ci. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="MoveInventoryFromObject"> - Wybrane obiekty szafy nie majÄ… praw kopiowania. -Obiekty zostanÄ… przeniesione do Twojej szafy, nie zostanÄ… skopiowane. + Wybrane obiekty Szafy nie majÄ… praw kopiowania. +Obiekty zostanÄ… przeniesione do Twojej Szafy, nie zostanÄ… skopiowane. -Przenieść obiekty szafy? - <usetemplate ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania z obiektów" name="okcancelignore" notext="Anuluj" yestext="OK"/> +Przenieść obiekty Szafy? + <usetemplate ignoretext="Uprzedź przed przeniesieniem zawartoÅ›ci niekopiowalnej z obiektu" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="MoveInventoryFromScriptedObject"> - Wybrane obiekty szafy nie majÄ… praw kopiowania. + Wybrane obiekty Szafy nie majÄ… praw kopiowania. Obiekty zostanÄ… przeniesione do Twojej Szafy, nie zostanÄ… skopiowane. -Ponieważ obiekty zawierajÄ… skrypty, przeniesienie obiektów do Twojej szafy może spowodować niepoprawne dziaÅ‚anie skryptów. +Ponieważ obiekty zawierajÄ… skrypty, przeniesienie obiektów do Twojej Szafy może spowodować niepoprawne dziaÅ‚anie skryptów. Przenieść obiekty szafy? - <usetemplate ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania ze skryptowanych obiektów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + <usetemplate ignoretext="Uprzedź przed przeniesieniem zawartoÅ›ci niekopiowalnej z obiektu, która może uszkodzić skrypty obiektu" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="ClickActionNotPayable"> - Uwaga: Opcja 'ZapÅ‚ać Obiektowi' zostaÅ‚a wybrana, ale żeby ta opcja dziaÅ‚aÅ‚a musi być dodany skrypt z funkcjÄ… money(). + Uwaga: Opcja ZapÅ‚ać Obiektowi zostaÅ‚a wybrana, ale żeby ta opcja dziaÅ‚aÅ‚a musi być dodany skrypt z funkcjÄ… money(). <form name="form"> - <ignore name="ignore" text="WybierajÄ…c opcjÄ™ ZapÅ‚ać Obiektowi dla obiektów bez funkcji money()"/> + <ignore name="ignore" text="Opcja ZapÅ‚ać Obiektowi zostaÅ‚a aktywowana podczas budowania obiektów bez skryptu z funkcjÄ… money()."/> </form> </notification> <notification name="OpenObjectCannotCopy"> W tym obiekcie nie ma elementów które możesz skopiować. </notification> <notification name="WebLaunchAccountHistory"> - Przejść na stronÄ™ [SECOND_LIFE] żeby zobaczyć historiÄ™ konta? - <usetemplate ignoretext="ÅadujÄ…c stronÄ™ historii konta." name="okcancelignore" notext="Anuluj" yestext="Idź na stronÄ™"/> - </notification> - <notification name="ClickOpenF1Help"> - Przejść na stronÄ™ [SECOND_LIFE]? - <usetemplate ignoretext="OdwiedzajÄ…c stronÄ™ [SECOND_LIFE]." name="okcancelignore" notext="Anuluj" yestext="Idź"/> + Przejść na stronÄ™ [http://secondlife.com/account/ Dashboard] żeby zobaczyć historiÄ™ konta? + <usetemplate ignoretext="Uruchom przeglÄ…darkÄ™ internetowÄ… by zobaczyć historiÄ™ konta" name="okcancelignore" notext="Anuluj" yestext="Idź na stronÄ™"/> </notification> <notification name="ConfirmQuit"> Na pewno chcesz skoÅ„czyć? - <usetemplate ignoretext="WyÅ‚Ä…czajÄ…c [APP_NAME]." name="okcancelignore" notext="Kontynuuj" yestext="WyÅ‚Ä…cz"/> + <usetemplate ignoretext="Na pewno chcesz skoÅ„czyć?" name="okcancelignore" notext="Nie koÅ„cz" yestext="WyÅ‚Ä…cz"/> </notification> <notification name="HelpReportAbuseEmailLL"> - Używaj tej opcji do zgÅ‚aszania nadużyć Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards). Zobacz: - -http://secondlife.com/corporate/tos.php -http://secondlife.com/corporate/cs.php - -Wszystkie zgÅ‚oszone nadużycia Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) sÄ… badane i rozwiÄ…zywane. Możesz zobaczyć konkluzjÄ™ zgÅ‚oszenia w Raporcie ZgÅ‚oszeÅ„ pod: + Używaj tej opcji do zgÅ‚aszania nadużyć [http://secondlife.com/corporate/tos.php Warunków Umowy (Terms of Service)] i [http://secondlife.com/corporate/cs.php Standardów SpoÅ‚eczeÅ„stwa (Community Standards)]. -http://secondlife.com/support/incidentreport.php - </notification> - <notification name="HelpReportAbuseEmailEO"> - UWAGA: Ten raport zostanie wysÅ‚any do wÅ‚aÅ›ciciela regionu w którym siÄ™ znajdujesz i nie bÄ™dzie wysÅ‚any do Linden Lab. - -W ramach serwisu dla Rezydentów i goÅ›ci wÅ‚aÅ›ciciel tego regionu postanowiÅ‚ odbierać i rozwiÄ…zywać wszystkie reporty wysÅ‚ane z tego regionu. Linden Lab nie bÄ™dzie analizowaÅ‚ żadnych reportów zgÅ‚oszonych z tego miejsca. - -WÅ‚aÅ›ciciel regionu bÄ™dzie rozpatrywaÅ‚ raporty w oparciu o lokalne prawa tego regionu zdefiniowane w umowie majÄ…tku. (Możesz zobaczyć umowÄ™ wybierajÄ…c opcjÄ™ O PosiadÅ‚oÅ›ci z menu Åšwiat.) - -RozwiÄ…zanie tego raportu odnosi siÄ™ wyÅ‚Ä…cznie do tego regionu; konkluzja tego raportu nie bÄ™dzie miaÅ‚a wpÅ‚ywu na dostÄ™p Rezydentów do innych regionów w [SECOND_LIFE]. WyÅ‚Ä…cznie Linden Lab może caÅ‚kowicie odebrać dostÄ™p do [SECOND_LIFE]. +Wszystkie zgÅ‚oszone nadużycia sÄ… badane i rozwiÄ…zywane. </notification> <notification name="HelpReportAbuseSelectCategory"> Wybierz kategoriÄ™ dla tego raportu o nadużyciu. @@ -2001,9 +1726,9 @@ DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. Jeżeli skÅ‚adasz raport dotyczÄ…cy naruszenia praw autorskich proszÄ™ siÄ™ upewnić, że robisz to poprawnie: -(1) Przypadek Nadużycia. Możesz zÅ‚ożyć raport jeżeli sÄ…dzisz, że Rezydent narusza system przywilejów [SECOND_LIFE], na przykÅ‚ad używajÄ…c CopyBot lub podobnych narzÄ™dzi robiÄ…cych kopie, naruszajÄ…c prawa autorskie. Komisja Nadużyć bada wykrocznia i stosuje akcje dyscyplinarne za zachowania sprzeczne z zasadami Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) [SECOND_LIFE]. Komisja Nadużyć nie zajmuje siÄ™ i nie odpowiada na żądania usuniÄ™cia treÅ›ci ze Å›rodowiska [SECOND_LIFE]. +(1) Przypadek Nadużycia. Możesz zÅ‚ożyć raport jeżeli sÄ…dzisz, że Rezydent narusza system przywilejów [SECOND_LIFE], na przykÅ‚ad używajÄ…c CopyBot lub podobnych narzÄ™dzi robiÄ…cych kopie, naruszajÄ…c prawa autorskie. Komisja Nadużyć bada wykroczenia i stosuje akcje dyscyplinarne za zachowania sprzeczne z zasadami Warunków Umowy [SECOND_LIFE] [http://secondlife.com/corporate/tos.php Terms of Service] i Standardów SpoÅ‚eczeÅ„stwa [http://secondlife.com/corporate/cs.php Community Standards]. Komisja Nadużyć nie zajmuje siÄ™ i nie odpowiada na żądania usuniÄ™cia treÅ›ci ze Å›rodowiska [SECOND_LIFE]. -(2) Przypadek DMCA lub Usuwanie TreÅ›ci. Aby wystÄ…pić z żądaniem o usuniÄ™cie treÅ›ci ze Å›rodowiska [SECOND_LIFE] MUSISZ przedÅ‚ożyć ważne zawiadomienie o nadużyciu zgodne z naszÄ… polisÄ… DMCA pod http://secondlife.com/corporate/dmca.php. +(2) Przypadek DMCA lub Usuwanie TreÅ›ci. Aby wystÄ…pić z żądaniem o usuniÄ™cie treÅ›ci ze Å›rodowiska [SECOND_LIFE] MUSISZ przedÅ‚ożyć ważne zawiadomienie o nadużyciu zgodne z naszÄ… politykÄ… DMCA [http://secondlife.com/corporate/dmca.php DMCA Policy]. Jeżeli chcesz kontynuować dalej zamknij to okno i dokoÅ„cz wysyÅ‚anie raportu. Może być potrzebny wybór kategorii 'CopyBot albo Nadużycie Przywilejów'. @@ -2019,7 +1744,7 @@ Linden Lab Obecnie masz już doÅ‚Ä…czony obiekt do tej części Twojego ciaÅ‚a. Chcesz go zamienić na wybrany obiekt? <form name="form"> - <ignore name="ignore" save_option="true" text="ZamieniajÄ…c istniejÄ…ce dodatki"/> + <ignore name="ignore" save_option="true" text="Obecnie masz już doÅ‚Ä…czony obiekt do tej części Twojego ciaÅ‚a.Chcesz go zamienić na wybrany obiekt?"/> <button ignore="ZamieÅ„ Automatycznie" name="Yes" text="OK"/> <button ignore="Nie Zamieniaj" name="No" text="Anuluj"/> </form> @@ -2029,18 +1754,22 @@ Chcesz go zamienić na wybrany obiekt? Chcesz wyÅ‚Ä…czyć Tryb Pracy przed zakoÅ„czeniem tej tranzakcji? <form name="form"> - <ignore name="ignore" save_option="true" text="PÅ‚acÄ…c osobie lub obiektowi bÄ™dÄ…c w Trybie Pracy"/> + <ignore name="ignore" save_option="true" text="JesteÅ› w Trybie Pracy co oznacza, że nie dostaniesz żadnych obiektów w zamian za tÄ… opÅ‚atÄ™. Chcesz wyÅ‚Ä…czyć Tryb Pracy przed zakoÅ„czeniem tej transakcji?"/> <button ignore="Zawsz wyÅ‚Ä…czaj Tryb Pracy" name="Yes" text="OK"/> <button ignore="Nie wyÅ‚Ä…czaj Trybu Pracy" name="No" text="Anuluj"/> </form> </notification> + <notification name="ConfirmDeleteProtectedCategory"> + Ten folder '[FOLDERNAME]' to folder systemowy. UsuniÄ™cie foldera systemowego spowoduje niestabilność. Czy na pewno chcesz go skasować? + <usetemplate ignoretext="Potwierdź zanim folder systemu zostanie skasowany" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> <notification name="ConfirmEmptyTrash"> - Na pewno chcesz permanentnie usunąć zawartość Åšmietnika? - <usetemplate ignoretext="UsuwajÄ…c zawartość Åšmietnika" name="okcancelignore" notext="Anuluj" yestext="OK"/> + Na pewno chcesz permanentnie usunąć zawartość Kosza? + <usetemplate ignoretext="Potwierdź przed usuniÄ™ciem zawartoÅ›ci Kosza" name="okcancelignore" notext="Anuluj" yestext="OK"/> </notification> <notification name="ConfirmClearBrowserCache"> Na pewno chcesz wyczyÅ›cić bufor przeglÄ…darki? - <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> </notification> <notification name="ConfirmClearCookies"> Na pewno chcesz wyczyÅ›cić ciasteczka? @@ -2051,39 +1780,18 @@ Chcesz wyÅ‚Ä…czyć Tryb Pracy przed zakoÅ„czeniem tej tranzakcji? <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> </notification> <notification name="ConfirmEmptyLostAndFound"> - Na pewno chcesz permanentnie usunąć zawartość Twojego foldera Zgubione i Znalezione? - <usetemplate ignoretext="UsuwajÄ…c szafÄ™ z Twojego foldera Zgubione i Znalezione" name="okcancelignore" notext="Nie" yestext="Tak"/> + Na pewno chcesz permanentnie usunąć zawartość Twojego foldera Zgubione i Odnalezione? + <usetemplate ignoretext="Potwierdź przed usuniÄ™ciem zawartoÅ›ci foldera Zagubione i Odnalezione" name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="CopySLURL"> - NastÄ™pujÄ…cy link SLurl zostaÅ‚ skopiowany do pamiÄ™ci podrÄ™cznej: + NastÄ™pujÄ…cy link SLURL zostaÅ‚ skopiowany do schowka: [SLURL] -Zamieść go na stronie Internetowej żeby umożliwić innym Å‚atwy dostÄ™p do tego miejsca, albo wklej go do panela adresu Twojej przeglÄ…darki żeby go wypróbować. +Zamieść go na stronie internetowej żeby umożliwić innym Å‚atwy dostÄ™p do tego miejsca, albo wklej go do panela adresu Twojej przeglÄ…darki żeby go otworzyć. <form name="form"> - <ignore name="ignore" text="KopiujÄ…c SLurl do pamiÄ™ci podrÄ™cznej"/> + <ignore name="ignore" text="SLurl skopiowany do schowka"/> </form> </notification> - <notification name="GraphicsPreferencesHelp"> - Ten panel kontroluje wymiary i rozdzielczość okna oraz jakość grafiki klienta. Panel Ustawienia > Grafika pozwala na wybór jednego z czterech poziomów jakoÅ›ci grafiki: Niska, Åšrednia, Wysoka i Super. Możesz również dostosować grafikÄ™ do wÅ‚asnych potrzeb wybierajÄ…c opcjÄ™ Zaawansowane i zmieniajÄ…c nastÄ™pujÄ…ce ustawienia: - -Shadery: Opcja ta pozwala wÅ‚Ä…czyć i wyÅ‚Ä…czyć różne rodzaje shaderów pikseli. - -Ustawienia Odbić: OkreÅ›la rodzaje obiektów które mogÄ… odbijać siÄ™ w wodzie. - -Prezentacja Awatarów: OkreÅ›la opcje majÄ…ce wpÅ‚yw na rysowanie awatarów przez klienta. - -GÅ‚Ä™bia Rysowania: OkreÅ›la od jakiej odlegÅ‚oÅ›ci od pozycji kamery obiekty bÄ™dÄ… rysowane w tle. - -Liczba CzÄ…steczek: OkreÅ›la maksymalnÄ… liczbÄ™ czÄ…steczek widocznych jednoczeÅ›nie na ekranie. - -Jakość Post-Procesu: OkreÅ›la rozdzielczość z jakÄ… jest wyÅ›wietlana poÅ›wiata. - -Szczegóły Meszu: OkreÅ›la ilość szczegółów albo liczbÄ™ trójkÄ…tów używanÄ… przy rysowaniu pewnych obiektów. WiÄ™ksza wartość zwalnia prÄ™dkość rysowania ale powoduje, że obiekty wyglÄ…dajÄ… bardziej szczgółowo. - -Ustawienia ÅšwiatÅ‚a: OkreÅ›la jaki rodzaj Å›wiatÅ‚a jest używany do rysowania. - -Szczegóły Terenu: OkreÅ›la ilość szczgółów widocznÄ… w teksturach terenu. - </notification> <notification name="WLSavePresetAlert"> Chcesz zmienić zapisane ustawienia? <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> @@ -2102,152 +1810,6 @@ Szczegóły Terenu: OkreÅ›la ilość szczgółów widocznÄ… w teksturach terenu. Efekt Post-Procesu już istnieje. Chcesz zapisać nowy na jego miejsce? <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> </notification> - <notification name="HelpEditSky"> - Ustaw suwaki żeby stworzyć i zapisać zbiór nieb. - </notification> - <notification name="HelpEditDayCycle"> - Wybierz których nieb używać w przeciÄ…gu dnia. - </notification> - <notification name="EnvSettingsHelpButton"> - Te ustawienia zmieniajÄ… wyglÄ…d Å›rodowiska na Twoim komputerze. Twoja karta graficzna musi posiadać opcjÄ™ shaderów atmosfery aby umożliwić dostÄ™p do wszystkich ustawieÅ„. - -Ustaw suwak "Pora Dnia" żeby zmienić lokalnÄ… porÄ™ dnia w kliencie. - -Ustaw suwak "Chmury" żeby zmienić ilość chmur widocznÄ… na niebie. - -Wybierz kolor w selekcji "Kolor Wody" żeby zmienić kolor wody. - -Ustaw suwak "Zamglenie" żeby zmienić gÄ™stość zamglenia pod wodÄ…. - -Kliknij "Używaj Czasu Regionu" żeby dostosowywać porÄ™ dnia do pory dnia w regionie. - -Kliknij "Zaawansowane Niebo" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ nieba. - -Kliknij "Zaawansowana Woda" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ wody. - </notification> - <notification name="HelpDayCycle"> - Edytor Cyklu Dnia pozwala na kontrolÄ™ nieba podczas cyklu dnia/nocy w [SECOND_LIFE]. Ten cykl jest używany przez suwak Pora Dnia w podstawowym Edytorze Åšrodowiska. - -Edytor Cyklu Dnia ustala klatki odniesienia. SÄ… to punkty (widoczne jako szare plamki na wykresie czasu) które majÄ… przypisane Ustawienia Nieba. W miarÄ™ upÅ‚ywu czasu niebo jest animowane używajÄ…c Å›rednich pomiÄ™dzy klatkami odniesienia. - -Żółta strzaÅ‚ka powyżej linii czasu odpowiada biżącemu widokowi opartemu na Porze Dnia. Kliknij i przeciÄ…gnij strzaÅ‚kÄ™ żeby zobaczyć animacjÄ™ w przeciÄ…gu dnia. Możesz dodawać i usuwać klatki odniesienia używająć przycisków Dodaj i UsuÅ„ po prawej stronie linii czasu. - -DÅ‚ugość Cyklu dyktuje caÅ‚kowitÄ… dÅ‚ugość "dnia". Wybranie maÅ‚ej wartoÅ›ci (na przykÅ‚ad 2 min) oznacza, że Twoja 24-o godzinna linia czasu bÄ™dzie animowana w caÅ‚oÅ›ci w przeciÄ…gu dwóch minut czasu rzeczywistego! Po wybraniu odpowiednich ustawieÅ„ linii czasu i klatek odniesienia użyj przycisków Start i Stop żeby zobaczyć rezultaty. PamiÄ™taj - zawsze możesz używać żółtej strzaÅ‚ki wskażnika czasu powyżej linii czasu żeby zmieniać animacjÄ™ dynamicznie. Użycie przycisku Używaj Czasu Regionu zsynchronizuje TwojÄ… dÅ‚ugość dnia i czas z cyklem Regionu. - -Po zdefiniowaniu Cyklu Dnia możesz zapisać i zaÅ‚adować ustawienia używajÄ…c przycisków Zapisz Test Dnia i ZaÅ‚aduj Test Dnia. Uwaga, obecnie tylko jeden Cykl Dnia jest dozwolony. - </notification> - <notification name="HelpBlueHorizon"> - Ustaw suwaki Czerwony/Zielony/Niebieski (RGB) żeby zmienić kolor nieba. Możesz używać suwaka Intensywność (I) żeby zmieniać ustawienia suwaków wszystkich kolorów (RGB) jednoczeÅ›nie. - </notification> - <notification name="HelpHazeHorizon"> - Horyzont Zamglenia jest jednym z ważniejszych parametrów kontrolujÄ…cych oÅ›wietlenie sceny. Jest efektywnym do symulacji wielu ustawieÅ„ oÅ›wietlenia takich jak rozbyski sÅ‚oÅ„ca i ciemniejsze ustawienia zamkniÄ™tej przesÅ‚ony. - </notification> - <notification name="HelpBlueDensity"> - GÄ™stość BÅ‚Ä™kitu ma wpÅ‚yw na nasycenie koloru nieba i mgÅ‚y. Jeżeli przesuniesz suwak IntensywnoÅ›ci (I) w prawo kolory bÄ™dÄ… jaÅ›niejsze i żywsze. Jeżeli przesuniesz caÅ‚kowicie w lewo kolory bÄ™dÄ… rozmywać siÄ™ aż do przejÅ›cia w biel i czerÅ„. Jeżeli chcesz precyzyjnie kontrolować balans koloru nieba możesz używać suwaków kolorów Czerwony/Zielony/Niebieski (RGB) w celu zmiany nasycenia indywidualnych skÅ‚adników. - </notification> - <notification name="HelpHazeDensity"> - GÄ™stość Zamglenia kontroluje zawartość mÄ™tnego, szarego zamglenia w atmosferze. Jest to przydatne do symulacji scen z dużą iloÅ›ciÄ… dymu i zanieczyszczeÅ„. -Oraz do symulacji mgÅ‚y i zamgleÅ„. - </notification> - <notification name="HelpDensityMult"> - Mnożnik GÄ™stoÅ›ci wpÅ‚ywa na gÄ™stość atmosfery w caÅ‚oÅ›ci. Niskie ustawienie sprawia wrażenie lekkiego powietrza, wyższe ustawienia tworzÄ… bardzo ciężki, zamglony efekt. - </notification> - <notification name="HelpDistanceMult"> - Mnożnik Dystansu wpÅ‚ywa na postrzeganie dystansu. Wartość zero niweluje wpÅ‚yw dystansu na wyglÄ…d terenu i obiektów. -WartoÅ›ci wiÄ™ksze od 1 symulujÄ… wiÄ™kszy dystans tworzÄ…c silniejszy efekt atmosferyczny. - </notification> - <notification name="HelpMaxAltitude"> - Max Wysokość wpÅ‚ywa na obliczanie Å›wiatÅ‚a atmosferycznego. -O póżniejszych porach dnia ta wartość jest przydatna do regulacji percepcji dystansu zachodÄ…cego sÅ‚oÅ„ca. - </notification> - <notification name="HelpSunlightColor"> - Reguluje kolor i intensywność bezpoÅ›redniego Å›wiatÅ‚a w scenie. - </notification> - <notification name="HelpSunAmbient"> - Reguluje kolor i intensywność rozproszonego Å›wiatÅ‚a atmosferycznego w scenie. - </notification> - <notification name="HelpSunGlow"> - Suwak Rozmiar kontroluje wielkość sÅ‚oÅ„ca. -Suwak Ostrość kontroluje ostrość sÅ‚oÅ„ca na niebie. - </notification> - <notification name="HelpSceneGamma"> - Reguluje dystrybucjÄ™ Å›wiatÅ‚a i cienia na ekranie. - </notification> - <notification name="HelpStarBrightness"> - Reguluje blask gwiazd na niebie. - </notification> - <notification name="HelpTimeOfDay"> - Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. -Zbliżone do wysokoÅ›ci. - </notification> - <notification name="HelpEastAngle"> - Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. -Zbliżone do azymutu. - </notification> - <notification name="HelpCloudColor"> - Kontroluje kolor chmur. Generalnie powinny być biaÅ‚awe, ale hej, pobaw siÄ™ jeżeli masz ochotÄ™. - </notification> - <notification name="HelpCloudDetail"> - Kontroluje szczegółowy obraz naÅ‚ożony na górÄ™ głównego obrazu chmur. X i Y kontrolujÄ… jego pozycjÄ™. G (GÄ™stość) kontroluje jak puchate lub postrzÄ™pione sÄ… chmury. - </notification> - <notification name="HelpCloudDensity"> - Suwaki X i Y kontrolujÄ… pozycjÄ™ chmur. -Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. - </notification> - <notification name="HelpCloudCoverage"> - Kontroluje ilość chmur pokrywajÄ…cych niebo. - </notification> - <notification name="HelpCloudScale"> - Kontroluje skalÄ™ obrazu chmur na kopule nieba. - </notification> - <notification name="HelpCloudScrollX"> - Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi X. - </notification> - <notification name="HelpCloudScrollY"> - Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi Y. - </notification> - <notification name="HelpClassicClouds"> - Wybierz tÄ… opcjÄ™ w celu używania dodatkowo starszej, klasycznej wersji chmur [SECOND_LIFE]. - </notification> - <notification name="HelpWaterFogColor"> - Kontroluje kolor podwodnej mgÅ‚y. - </notification> - <notification name="HelpWaterFogDensity"> - Kontroluje gÄ™stość mgÅ‚y i gÅ‚Ä™bie wizji pod wodÄ…. - </notification> - <notification name="HelpUnderWaterFogMod"> - Modyfikuje wpÅ‚yw wykÅ‚adnika gÄ™stoÅ›ci mgÅ‚y na gÅ‚Ä™bie wizji awatara pod wodÄ…. - </notification> - <notification name="HelpWaterGlow"> - Kontroluje emisjÄ™ Å›wiatÅ‚a z powierzchni wody. - </notification> - <notification name="HelpWaterNormalScale"> - Kontroluje skalÄ™ trzech zmarszczeÅ„ które tworzÄ… wodÄ™. - </notification> - <notification name="HelpWaterFresnelScale"> - Kontroluje jak dużo Å›wiatÅ‚a jest odbijane pod różnymi kÄ…tami. - </notification> - <notification name="HelpWaterFresnelOffset"> - Kontroluje jak dużo intensywnoÅ›ci Å›wiatÅ‚a jest odbijane. - </notification> - <notification name="HelpWaterScaleAbove"> - Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od górnej powierzchni wody. - </notification> - <notification name="HelpWaterScaleBelow"> - Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od dolnej powierzchni wody. - </notification> - <notification name="HelpWaterBlurMultiplier"> - Kontroluje jak fale i odbicia sÄ… mieszane. - </notification> - <notification name="HelpWaterNormalMap"> - Kontroluje która mapa normalnych jest używana w wodzie do okreÅ›lania odbić/zaÅ‚amaÅ„. - </notification> - <notification name="HelpWaterWave1"> - Kontroluje gdzie i jak szybko duża wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. - </notification> - <notification name="HelpWaterWave2"> - Kontroluje gdzie i jak szybko maÅ‚a wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. - </notification> <notification name="NewSkyPreset"> Nazwij nowe niebo. <form name="form"> @@ -2275,7 +1837,7 @@ Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. Ustawienie już istnieje! </notification> <notification name="WaterNoEditDefault"> - DomyÅ›le ustawienie nie może być zmienione ani usuniÄ™te. + DomyÅ›lne ustawienie nie może być zmienione ani usuniÄ™te. </notification> <notification name="ChatterBoxSessionStartError"> BÅ‚Ä…d podczas rozpoczynania czatu/IM z [RECIPIENT]. @@ -2293,8 +1855,7 @@ Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="Cannot_Purchase_an_Attachment"> - Rzeczy nie mogÄ… być kupione jeżeli - sÄ… częściÄ… zaÅ‚Ä…cznika. + Rzeczy nie mogÄ… być kupione jeżeli sÄ… częściÄ… zaÅ‚Ä…cznika. </notification> <notification label="ProÅ›ba o ZgodÄ™ na Pobieranie L$" name="DebitPermissionDetails"> AkceptujÄ…c tÄ… proÅ›bÄ™ wyrażasz zgodÄ™ na ciÄ…gÅ‚e pobieranie Lindenów (L$) z Twojego konta. Å»eby cofnąć to pozwolenie wÅ‚aÅ›ciciel obiektu bÄ™dzie musiaÅ‚ usunąć ten obiekt albo zresetowć skrypty obieku. @@ -2302,27 +1863,25 @@ Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. </notification> <notification name="AutoWearNewClothing"> Czy chcesz automatycznie nosić ubranie które tworzysz? - <usetemplate ignoretext="Automatycznie noÅ› nowe ubranie" name="okcancelignore" notext="Nie" yestext="Tak"/> + <usetemplate ignoretext="Załóż ubranie automatycznie bÄ™dÄ…c w trybie Edycji WyglÄ…du" name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="NotAgeVerified"> - Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak weryfikacji Twojego wieku. -Czy chcesz odwiedzić stronÄ™ [SECOND_LIFE] żeby to zmienić? + Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak weryfikacji Twojego wieku. Czy chcesz odwiedzić stronÄ™ [SECOND_LIFE] żeby to zmienić? [_URL] <url name="url" option="0"> https://secondlife.com/account/verification.php </url> - <usetemplate ignoretext="Ostrzegaj o braku weryfikacji wieku" name="okcancelignore" notext="Nie" yestext="Tak"/> + <usetemplate ignoretext="Brak weryfikacji wieku" name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="Cannot enter parcel: no payment info on file"> - Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak danych o Twoim koncie. -Czy chcesz odwiedzić stronÄ™ [SECOND_LIFE] żeby to zmienić? + Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak danych o Twoim koncie. Czy chcesz odwiedzić stronÄ™ [SECOND_LIFE] żeby to zmienić? [_URL] <url name="url" option="0"> https://secondlife.com/account/ </url> - <usetemplate ignoretext="Ostrzegaj o braku danych konta" name="okcancelignore" notext="Nie" yestext="Tak"/> + <usetemplate ignoretext="Brak danych o koncie" name="okcancelignore" notext="Nie" yestext="Tak"/> </notification> <notification name="MissingString"> Zdanie [STRING_NAME] nie znalezione w strings.xml @@ -2371,11 +1930,10 @@ Czy chcesz odwiedzić stronÄ™ [SECOND_LIFE] żeby to zmienić? Plik terrain.raw Å›ciÄ…gniety. </notification> <notification name="GestureMissing"> - Gest [NAME] nie znaleziony w bazie danych. + Gesturka [NAME] nie znaleziony w bazie danych. </notification> <notification name="UnableToLoadGesture"> Åadowanie gestu [NAME] nie powiodÅ‚o siÄ™. -Spróbuj jeszcze raz. </notification> <notification name="LandmarkMissing"> Miejsce (LM) nie znalezione w bazie danych. @@ -2444,7 +2002,7 @@ Wybierz jeden obiekt. WyÅ‚Ä…czanie trybu boskiego, poziom [LEVEL] </notification> <notification name="CopyFailed"> - Kopiowanie siÄ™ nie powiodÅ‚o - nie masz pozwolenia + Nie masz praw do skopiowania wybranych obiektów. </notification> <notification name="InventoryAccepted"> Podarunek od Ciebie zostaÅ‚ przyjÄ™ty przez [NAME]. @@ -2462,12 +2020,14 @@ Wybierz jeden obiekt. Twoja wizytówka zostaÅ‚a odrzucona. </notification> <notification name="TeleportToLandmark"> - JesteÅ› w Głównym Regionie i możesz siÄ™ stÄ…d teleportować do innych miejsc jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Miejsca (LM). -Kliknij dwa razy na miejsce (LM) i wybierz Teleportuj żeby tam siÄ™ przenieść. + JesteÅ› w Głównym Regionie i możesz siÄ™ stÄ…d teleportować do innych miejsc jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu +i wybierajÄ…c folder Zapisane Miejsca (LM). +(Kliknij dwa razy na miejsce (LM) i wybierz 'Teleport' żeby tam siÄ™ przenieść.) </notification> <notification name="TeleportToPerson"> - JesteÅ› w Głównym Regionie i możesz komunikować siÄ™ z innymi Rezydentami jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Wizytówki. -Kliknij dwa razy na wizytówce, wybierz WyÅ›lij IM i napisz wiadomość. + Możesz skontaktować siÄ™ z Rezydentem '[NAME]' poprzez otworzenie panelu Ludzie po prawej stronie ekranu. +Wybierz Rezydenta z listy, nastÄ™pnie kliknij 'IM' na dole panelu. +(Możesz także kliknąć podwójnie na ich imiÄ™ na liÅ›cie, lub prawym przyciskiem i wybrać 'IM'). </notification> <notification name="CantSelectLandFromMultipleRegions"> Nie możesz przekraczać granic serwera wybierajÄ…c obszar. @@ -2490,6 +2050,9 @@ Spróbuj wybrać mniejszy obszar. <notification name="SystemMessage"> [MESSAGE] </notification> + <notification name="PaymentRecived"> + [MESSAGE] + </notification> <notification name="EventNotification"> Zawiadomienie o Imprezie: @@ -2515,7 +2078,19 @@ Spróbuj wybrać mniejszy obszar. </notification> <notification name="NoQuickTime"> WyglÄ…da na to, że QuickTime z Apple nie jest zainstalowany na Twoim komputerze. -Jeżeli chcesz odtwarzać media na tej posiadÅ‚oÅ›ci które używajÄ… QuickTime idź do http://www.apple.com/quicktime i zainstaluj odtwarzacz. +Jeżeli chcesz odtwarzać media na tej posiadÅ‚oÅ›ci które używajÄ… QuickTime idź do [http://www.apple.com/quicktime QuickTime site] i zainstaluj odtwarzacz. + </notification> + <notification name="NoPlugin"> + Nie znaleziono wtyczki mediów dla "[MIME_TYPE]" typu mime. Media tego typu bÄ™dÄ… niedostÄ™pne. + </notification> + <notification name="MediaPluginFailed"> + NastÄ™pujÄ…ce wtyczki mediów nie dziaÅ‚ajÄ…: + [PLUGIN] + +Zainstaluj proszÄ™ wtyczki ponownie lub skontaktuj siÄ™ z dostawcÄ… jeÅ›li nadal problem bÄ™dzie wystÄ™powaÅ‚. + <form name="form"> + <ignore name="ignore" text="Wtyczka mediów nie dziaÅ‚a"/> + </form> </notification> <notification name="OwnedObjectsReturned"> Twoje obiekty z wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do Twojej Szafy. @@ -2524,7 +2099,7 @@ Jeżeli chcesz odtwarzać media na tej posiadÅ‚oÅ›ci które używajÄ… QuickTime Obiekty należące do [FIRST] [LAST] na wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do szafy tej osoby. </notification> <notification name="OtherObjectsReturned2"> - Obiekty z wybranej posiadÅ‚oÅ›ci należącej do Rezydenta '[NAME]' zostaÅ‚y zwrócone do ich wÅ‚aÅ›ciciela. + Obiekty z posiadÅ‚oÅ›ci należącej do Rezydenta'[NAME]' zostaÅ‚y zwrócone do wÅ‚aÅ›ciciela. </notification> <notification name="GroupObjectsReturned"> Obiekty z wybranej posiadÅ‚oÅ›ci przypisane do grupy [GROUPNAME] zostaÅ‚y zwrócone do szafy ich wÅ‚aÅ›cicieli. @@ -2534,6 +2109,10 @@ Nieprzekazywalne obiekty przekazane grupie zostaÅ‚y usuniÄ™te. <notification name="UnOwnedObjectsReturned"> Obiekty z wybranej posiadÅ‚oÅ›ci które nie należą do Ciebie zostaÅ‚y zwrócone do ich wÅ‚aÅ›cicieli. </notification> + <notification name="ServerObjectMessage"> + Wiadomość od [NAME]: +<nolink>[MSG]</nolink> + </notification> <notification name="NotSafe"> Ta posiadÅ‚ość pozwala na uszkodzenia. Możesz doznać tutaj urazu. Jeżeli zginiesz nastÄ…pi teleportacja do Twojego miejsca startu. @@ -2543,15 +2122,13 @@ Możesz doznać tutaj urazu. Jeżeli zginiesz nastÄ…pi teleportacja do Twojego m Nie możesz tutaj latać. </notification> <notification name="PushRestricted"> - Popychanie niedozwolone. -Nie możesz tutaj popychać innych, chyba, że jesteÅ› wÅ‚aÅ›cicielem tej posiadÅ‚oÅ›ci. + Popychanie niedozwolone. Nie możesz tutaj popychać innych, chyba, że jesteÅ› wÅ‚aÅ›cicielem tej posiadÅ‚oÅ›ci. </notification> <notification name="NoVoice"> Ta posiadÅ‚ość nie pozwala na rozmowy. </notification> <notification name="NoBuild"> - Ta posiadÅ‚ość nie pozwala na budowanie. -Nie możesz tworzyć tutaj obiektów. + Ta posiadÅ‚ość nie pozwala na budowanie. Nie możesz tworzyć tutaj obiektów. </notification> <notification name="ScriptsStopped"> Administrator czasowo zatrzymaÅ‚ skrypty w tym regionie. @@ -2561,7 +2138,8 @@ Nie możesz tworzyć tutaj obiektów. </notification> <notification name="NoOutsideScripts"> Ta posiadÅ‚ość nie pozwala na zewnÄ™trzne skrypty. -Å»adne skrypty nie bÄ™dÄ… tutaj dziaÅ‚ać za wyjÄ…tkiem skryptów zleżących do wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. + +Å»adne skrypty nie bÄ™dÄ… tutaj dziaÅ‚ać za wyjÄ…tkiem skryptów należących do wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. </notification> <notification name="ClaimPublicLand"> Tylko publiczne posiadÅ‚oÅ›ci w tym regionie mogÄ… być przejÄ™te. @@ -2577,16 +2155,9 @@ Skorzystaj z [SECOND_LIFE]:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™p <notification name="NoTeenGridAccess"> Twoje konto nie może zostać poÅ‚Ä…czone z podanym regionem Teen Grid. </notification> - <notification name="NoHelpIslandTP"> - Brak możliwoÅ›ci ponownej teleportacji do Help Island. -Odwiedź 'Help Island Public' by powtórzyć szkolenie. - </notification> <notification name="ImproperPaymentStatus"> Nie posiadasz odpowiedniego statusu pÅ‚atniczego by uzyskać dostÄ™p do regionu. </notification> - <notification name="MustGetAgeRegion"> - By odwiedzić ten region, Twoje konto musi zostać poddane weryfikacji wieku. - </notification> <notification name="MustGetAgeParcel"> By móc przebywać na tej posiadÅ‚oÅ›ci wymagana jest weryfikacja Twojego wieku. </notification> @@ -2649,31 +2220,35 @@ Spróbuj ponowanie za kilka minut. Nieważana posiadÅ‚ość. </notification> <notification name="ObjectGiveItem"> - Obiekt [OBJECTFROMNAME] należący do [FIRST] [LAST] daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. + Obiekt [OBJECTFROMNAME] należący do [NAME_SLURL] daÅ‚ Ci [OBJECTTYPE]: +[ITEM_SLURL] <form name="form"> <button name="Keep" text="Zachowaj"/> <button name="Discard" text="Wyrzuć"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="ObjectGiveItemUnknownUser"> - Obiekt [OBJECTFROMNAME] należący do (wÅ‚aÅ›ciciel nieznany) daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. + Obiekt [OBJECTFROMNAME] należący (wÅ‚aÅ›ciciel nieznany) daÅ‚ Ci [OBJECTTYPE]: +[ITEM_SLURL] <form name="form"> <button name="Keep" text="Zachowaj"/> <button name="Discard" text="Wyrzuć"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="UserGiveItem"> - [NAME] daÅ‚ Ci [OBJECTTYPE] '[OBJECTNAME]'. + [NAME_SLURL] daÅ‚ Ci [OBJECTTYPE]: +[ITEM_SLURL] <form name="form"> - <button name="Keep" text="Zachowaj"/> + <button name="Show" text="Pokaż"/> <button name="Discard" text="Wyrzuć"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="GodMessage"> [NAME] + [MESSAGE] </notification> <notification name="JoinGroup"> @@ -2685,7 +2260,7 @@ Spróbuj ponowanie za kilka minut. </form> </notification> <notification name="TeleportOffered"> - [NAME] proponuje Ci teleportacjÄ™ do siebie: + [NAME] proponuje Ci teleportcjÄ™ do siebie: [MESSAGE] <form name="form"> @@ -2693,6 +2268,9 @@ Spróbuj ponowanie za kilka minut. <button name="Cancel" text="Anuluj"/> </form> </notification> + <notification name="TeleportOfferSent"> + Oferta teleportacji wysÅ‚ana do [TO_NAME] + </notification> <notification name="GotoURL"> [MESSAGE] [URL] @@ -2712,6 +2290,9 @@ Spróbuj ponowanie za kilka minut. <button name="Decline" text="Odmów"/> </form> </notification> + <notification name="FriendshipOffered"> + Oferta znajomoÅ›ci dla [TO_NAME] + </notification> <notification name="OfferFriendshipNoMessage"> [NAME] proponuje Ci znajomość. @@ -2727,9 +2308,15 @@ Spróbuj ponowanie za kilka minut. <notification name="FriendshipDeclined"> Twoja propozycja znajomoÅ›ci zostaÅ‚a odrzucona przez [NAME]. </notification> + <notification name="FriendshipAcceptedByMe"> + Propozycja znajomoÅ›ci zostaÅ‚a zaakceptowana. + </notification> + <notification name="FriendshipDeclinedByMe"> + Propozycja znajomoÅ›ci zostaÅ‚a odrzucona. + </notification> <notification name="OfferCallingCard"> - [FIRST] [LAST] daje Ci swojÄ… wizytówkÄ™. -Wizytówka w Twojej Szafie może być używana do komunikowania siÄ™ (IM) z tym Rezydentem. + [FIRST] [LAST] daje Tobie swojÄ… wizytówkÄ™. +Wizytówka bÄ™dzie znajdowaÅ‚a siÄ™ w Szafie i umożliwi szybkie wysÅ‚anie IM do tego Rezydenta. <form name="form"> <button name="Accept" text="Zaakceptuj"/> <button name="Decline" text="Odmów"/> @@ -2740,7 +2327,7 @@ Wizytówka w Twojej Szafie może być używana do komunikowania siÄ™ (IM) z tym NastÄ…pi wylogowanie jeżeli zostaniesz w tym regionie. </notification> <notification name="RegionRestartSeconds"> - Restart regionu za [MINUTES] sek. + Restart regionu za [SECONDS] sec. NastÄ…pi wylogowanie jeżeli zostaniesz w tym regionie. </notification> <notification name="LoadWebPage"> @@ -2761,7 +2348,7 @@ Obiekt: [OBJECTNAME], wÅ‚aÅ›ciciel: [NAME]? [TYPE] [DESC] - nie znaleziono w bazie danych. </notification> <notification name="InvalidWearable"> - Obiekt, który chcesz zaÅ‚ożyć używa narzÄ™dzia nieobecnego w wersji klienta, którÄ… używasz. By go zaÅ‚ożyć Å›ciÄ…gnij najnowszÄ… wersjÄ™ klienta [APP_NAME]. + Obiekt, który chcesz zaÅ‚ożyć używa narzÄ™dzia nieobecnego w wersji klienta, którÄ… używasz. By go zaÅ‚ożyć Å›ciÄ…gnij najnowszÄ… wersjÄ™ [APP_NAME]. </notification> <notification name="ScriptQuestion"> '[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: @@ -2771,14 +2358,14 @@ Zgadzasz siÄ™? <form name="form"> <button name="Yes" text="Tak"/> <button name="No" text="Nie"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="ScriptQuestionCaution"> - '[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: + Obiekt '[OBJECTNAME]', należący do '[NAME]' proponuje Ci: [QUESTIONS] -Jeżeli nie ufasz temu obiektowi lub jego twórcy - odmów. Wybierz Szczegóły żeby otrzymać wiÄ™cej informacji. +Jeżeli nie znasz tego obiektu lub kreatora, odmów. Zgadzasz siÄ™? <form name="form"> @@ -2801,81 +2388,23 @@ Zgadzasz siÄ™? <button name="Ignore" text="Zignoruj"/> </form> </notification> - <notification name="FirstBalanceIncrease"> - Przekazano Ci [AMOUNT]L$. -Obiekty i inni użytkownicy mogÄ… Ci dawać L$. -Twój balans jest wyÅ›wietlony w prawym górnym rogu ekranu. - </notification> - <notification name="FirstBalanceDecrease"> - Pobrano od Ciebie [AMOUNT]L$. -Twój balans jest wyÅ›wietlony w prawym górnym rogu ekranu. - </notification> - <notification name="FirstSit"> - Siedzisz. -Używaj strzaÅ‚ek (albo AWSD) żeby zmieniać widok. -NaciÅ›nij przycisk WstaÅ„ żeby sie podnieść. - </notification> - <notification name="FirstMap"> - Kliknij i przeciÄ…gnij by przsuwać mapÄ™. -Kliknij dwa razy żeby siÄ™ teleportować. -Używaj narzÄ™dzi po prawej stronie żeby znajdować i wyÅ›wietlać różne obiekty. - </notification> - <notification name="FirstBuild"> - Możesz budować nowe obiekty w niektórych miejscach. -Używaj narzÄ™dzi w lewym górnym rogu żeby budować, przyciskaj Ctrl lub Alt żeby szybko zmieniać narzÄ™dzia. -NaciÅ›nij Esc żeby skoÅ„czyć budować. - </notification> - <notification name="FirstLeftClickNoHit"> - Lewy klik żeby używać specjalnych obiektów. -Jeżeli strzaÅ‚ka zmieni siÄ™ na rÄ…czkÄ™ możesz używać tego obiektu. -Prawy klik zawsze pokazuje menu dostÄ™pnych operacji. - </notification> - <notification name="FirstTeleport"> - NastÄ…piÅ‚a teleportacja. -JesteÅ› przy Infohub najbliższej Twojego celu. -Twój cel jest zaznaczony wysokim czerwonym wskaźnikiem. + <notification name="BuyLindenDollarSuccess"> + DziÄ™kujemy za wpÅ‚atÄ™! + +Twój stan konta L$ zostanie zaktualizowany w momencie zakoÅ„czenia transakcji. Jeżeli w ciÄ…gu 20 minut, Twój balans konta nie ulegnie zmianie, transakcja zostaÅ‚a anulowana. W tym przypadku, pobrana kwota zostanie zwrócona na stan konta w US$. + +Status transkacji możesz sprawdzić odwiedzajÄ…c HistoriÄ™ Transakcji swojego konta na [http://secondlife.com/account/ Dashboard] </notification> <notification name="FirstOverrideKeys"> Twoje sterujÄ…ce klawisze zostaÅ‚y przejÄ™te przez obiekt. Użyj strzaÅ‚ek lub AWSD żeby sprawdzić ich dziaÅ‚anie. Niektóre obiekty (np broÅ„) wymagajÄ… trybu panoramicznego. Nacisnij 'M' żeby go wybrać. - </notification> - <notification name="FirstAppearance"> - Edytujesz swój wyglÄ…d. -Używaj strzaÅ‚ek do obracania i zbliżenia. -Po skoÅ„czeniu wybierz 'Zapisz Zmiany' -żeby zapisać Twój wyglÄ…d i wyjść. -Możesz edytować wyglÄ…d jak czÄ™sto chcesz. - </notification> - <notification name="FirstInventory"> - To jest Twoja Szafa, który zawiera obikty, notki, ubrania i inne Twoje rzeczy. -* Å»eby zaÅ‚ożyć obiekt lub strój (folder) przeciÄ…gnij go na siebie. -* Å»eby przenieść obiekt do Å›wiata przeciÄ…gnij go na grunt. -* Å»eby przeczytać notkÄ™ kliknij na niej dwa razy. </notification> <notification name="FirstSandbox"> Ten region to piaskownica. -Obiekty które tu zbudujesz mogÄ… zostać usuniÄ™te jak opuÅ›cisz ten obszar - piaskownice sÄ… regularnie czyszczone, sprawdź informacje na górze ekranu obok nazwy regionu. -Piaskownice spotyka siÄ™ rzadko i sÄ… zawsze oznakowane. - </notification> - <notification name="FirstFlexible"> - To jest elastyczny obiekt. -Obiekty elastyczne nie mogÄ… być fizyczne i muszÄ… być typu fantom. - </notification> - <notification name="FirstDebugMenus"> - Zaawansowane menu zostaÅ‚o wÅ‚Ä…czone. -To menu zawiera funkcje użyteczne dla programistów analizujÄ…cych [SECOND_LIFE]. -To menu jest aktywowane dziÄ™ki kombinacji klawiszy Ctrl+Alt+D (Windows) lub ⌥⌘D (Mac). - </notification> - <notification name="FirstSculptedPrim"> - Edytujesz sculpt. -Skulpty wymagajÄ… specjalnych tekstur które definiujÄ… ich ksztaÅ‚t. -PrzykÅ‚ady tekstur znajdujÄ… siÄ™ w bibliotece szafy. - </notification> - <notification name="FirstMedia"> - Odtwarzasz media. Możesz wybrać automatyczne odtwarzanie w Ustawieniach pod Audio i Video. Odtwarzanie mediów w miejscach którym nie ufasz może być niebezpieczne. +Obiekty które tu zbudujesz mogÄ… zostać usuniÄ™te jak opuÅ›cisz ten obszar - piaskownice sÄ… regularnie czyszczone, sprawdź informacje na górze ekranu obok nazwy regionu. </notification> <notification name="MaxListSelectMessage"> Maksymalnie możesz wybrać [MAX_SELECT] rzeczy @@ -2884,50 +2413,47 @@ z tej listy. <notification name="VoiceInviteP2P"> [NAME] zaprasza CiÄ™ do rozmowy gÅ‚osem. Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. -Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. +Wybierz Zablokuj żeby wyciszyć dzwoniÄ…cÄ… osób <form name="form"> <button name="Accept" text="Zaakceptuj"/> <button name="Decline" text="Odmów"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="AutoUnmuteByIM"> - Wiadomość (IM) zostaÅ‚a wysÅ‚ana do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. + Wiadomość (IM) zostaÅ‚a wysÅ‚ana do [FIRST] [LAST] i blokada zostaÅ‚a automatycznie usuniÄ™ta. </notification> <notification name="AutoUnmuteByMoney"> - PieniÄ…dze zostaÅ‚y przekazane do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. + PieniÄ…dze zostaÅ‚y przekazane do [FIRST] [LAST] i blokada zostaÅ‚a automatycznie usuniÄ™ta. </notification> <notification name="AutoUnmuteByInventory"> - Oferta z szafy dla [FIRST] [LAST] automatycznie usunęła wyciszenie. + Oferta z szafy dla [FIRST] [LAST] i blokada zostaÅ‚a automatycznie usuniÄ™ta. </notification> <notification name="VoiceInviteGroup"> [NAME] zaczyna rozmowÄ™ z grupÄ… [GROUP]. -Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. -Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. +Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. Wybierz Zablokuj żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. <form name="form"> <button name="Accept" text="Zaakceptuj"/> <button name="Decline" text="Odmów"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="VoiceInviteAdHoc"> [NAME] zaczyna konferencjÄ™ gÅ‚osem. -Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. -Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. +Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. Wybierz Zablokuj żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. <form name="form"> <button name="Accept" text="Zaakceptuj"/> <button name="Decline" text="Odmów"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Zablokuj"/> </form> </notification> <notification name="InviteAdHoc"> [NAME] zaprasza CiÄ™ do konferencji poprzez Czat/IM. -Wybierz Zaakceptuj żeby zacząć czat albo Odmów żeby nie przyjąć zaproszenia. -Wybierz Wycisz żeby wyciszyć tÄ… osobÄ™. +Wybierz Zaakceptuj żeby zacząć czat albo Odmów żeby nie przyjąć zaproszenia. Wybierz Zablokuj żeby wyciszyć tÄ… osobÄ™. <form name="form"> <button name="Accept" text="Zaakceptuj"/> <button name="Decline" text="Odmów"/> - <button name="Mute" text="Wycisz"/> + <button name="Mute" text="Block"/> </form> </notification> <notification name="VoiceChannelFull"> @@ -2970,10 +2496,54 @@ Wybierz Wycisz żeby wyciszyć tÄ… osobÄ™. BÅ‚Ä…d podczas Å‚Ä…czenia z rozmowÄ… [VOICE_CHANNEL_NAME]. Spróbuj póżniej. </notification> <notification name="ServerVersionChanged"> - Ten region używa innej wersji symulatora. Kliknij na tÄ… wiadomość żeby uzyskać wiÄ™cej informacji. + Ten region używa innej wersji symulatora. Kliknij na tÄ… wiadomość żeby uzyskać wiÄ™cej informacji: [[URL] View the release notes.] + </notification> + <notification name="UnsupportedCommandSLURL"> + Nie można otworzyć wybranego SLurl. </notification> - <notification name="UnableToOpenCommandURL"> - Wybrany link nie daje siÄ™ otworzyć z tej przeglÄ…darki. + <notification name="BlockedSLURL"> + SLurl zostaÅ‚ otrzymany z niesprawdzonej przeglÄ…darki i zostaÅ‚ zablokowany dla bezpieczeÅ„stwa. + </notification> + <notification name="ThrottledSLURL"> + Wiele SLurlów zostaÅ‚o otrzymanych w krótkim czasie od niesprawdzonej przeglÄ…darki. +ZostanÄ… zablokowane na kilka sekund dla bezpieczeÅ„stwa. + </notification> + <notification name="IMToast"> + [MESSAGE] + <form name="form"> + <button name="respondbutton" text="Odpowiedź"/> + </form> + </notification> + <notification name="ConfirmCloseAll"> + Czy chcesz zamknąć wszystkie wiadomoÅ›ci IM? + <usetemplate ignoretext="Potwierdź, przed zamkniÄ™ciem wszystkich wiadomoÅ›ci prywatnych (IM)." name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="AttachmentSaved"> + ZaÅ‚Ä…cznik zostaÅ‚ zapisany. + </notification> + <notification name="UnableToFindHelpTopic"> + Nie można znależć tematu pomocy dla tego elementu. + </notification> + <notification name="ObjectMediaFailure"> + BÅ‚Ä…d serwera: aktualizacja mediów nie powiodÅ‚a siÄ™. +'[ERROR]' + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TextChatIsMutedByModerator"> + Twój czat zostaÅ‚ wyciszony przez moderatora. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="VoiceIsMutedByModerator"> + Twoja rozmowa gÅ‚osowa zostaÅ‚a wyciszona przez moderatora. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ConfirmClearTeleportHistory"> + Czy na pewno chcesz usunąć historiÄ™ teleportacji? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BottomTrayButtonCanNotBeShown"> + Wybrany przycisk nie może zostać wyÅ›wietlony w tej chwili. +Przycisk zostanie wyÅ›wietlony w przypadku dostatecznej iloÅ›ci przestrzeni. </notification> <global name="UnsupportedCPU"> - PrÄ™dkość Twojego CPU nie speÅ‚nia minimalnych wymagaÅ„. @@ -2981,7 +2551,7 @@ Wybierz Wycisz żeby wyciszyć tÄ… osobÄ™. <global name="UnsupportedGLRequirements"> WyglÄ…da na to, że Twój system nie speÅ‚nia wymagaÅ„ sprzÄ™towych [APP_NAME]. [APP_NAME] wymaga karty graficznej kompatybilnej z OpenGL z multiteksturami. Jeżeli masz takÄ… kartÄ™ zainstaluj najnowsze sterowniki do niej i uaktualnienia systemu operacyjnego. -Jeżeli wciąż masz problemy sprawdź: http://www.secondlife.com/support +Jeżeli wciąż masz problemy sprawdź: [SUPPORT_SITE]. </global> <global name="UnsupportedCPUAmount"> 796 @@ -2995,10 +2565,8 @@ Jeżeli wciąż masz problemy sprawdź: http://www.secondlife.com/support <global name="UnsupportedRAM"> - Pamięć Twojego systemu nie speÅ‚nia minimalnych wymagaÅ„. </global> - <global name="PermYes"> - Tak - </global> - <global name="PermNo"> - Nie + <global name="You can only set your 'Home Location' on your land or at a mainland Infohub."> + JeÅ›li jesteÅ› wÅ‚aÅ›cicielem posiadÅ‚oÅ›ci, możesz ustawić na niej miejsce startu. +W innym przypadku możesz poszukać na mapie miejsca oznaczone jako "Infohub". </global> </notifications> diff --git a/indra/newview/skins/default/xui/pl/panel_active_object_row.xml b/indra/newview/skins/default/xui/pl/panel_active_object_row.xml new file mode 100644 index 0000000000000000000000000000000000000000..57dc8a3dd7f639c144915b9626a3f5a27fdd1659 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_active_object_row.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_activeim_row"> + <string name="unknown_obj"> + Nieznany Obiekt + </string> + <text name="object_name"> + Nienazwany Obiekt + </text> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_adhoc_control_panel.xml b/indra/newview/skins/default/xui/pl/panel_adhoc_control_panel.xml new file mode 100644 index 0000000000000000000000000000000000000000..6cd47c6ce78f41036c63f90a5e2f22868eb085b4 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_adhoc_control_panel.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_im_control_panel"> + <layout_stack name="vertical_stack"> + <layout_panel name="call_btn_panel"> + <button label="DzwoÅ„" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="ZakoÅ„cz Rozmowe" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="PrzeÅ‚Ä…czniki GÅ‚osu" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_audio_device.xml b/indra/newview/skins/default/xui/pl/panel_audio_device.xml index fc3b3776f07374935cbfd5ad575f467ecad9ec7f..fa8dde77eb1f730fb63de6aa97f96d0c0eee535b 100644 --- a/indra/newview/skins/default/xui/pl/panel_audio_device.xml +++ b/indra/newview/skins/default/xui/pl/panel_audio_device.xml @@ -13,7 +13,7 @@ Poziom WejÅ›cia </text> <text_editor name="voice_intro_text1"> - Użyj suwaka by dostosować jak gÅ‚oÅ›no CiÄ™ sÅ‚ychać dla innych Rezydentów. By przetestować poziom wejÅ›cia, zacznij mówić do mikrofonu. + Użyj suwaka by dostosować jak gÅ‚oÅ›no CiÄ™ sÅ‚ychać dla innych Rezydentów. W celu przetestowania poziomu wejÅ›cia, zacznij mówić do mikrofonu. </text_editor> <volume_slider name="mic_volume_slider" tool_tip="By zmienić poziom gÅ‚oÅ›noÅ›ci użyj suwaka" /> diff --git a/indra/newview/skins/default/xui/pl/panel_avatar_list_item.xml b/indra/newview/skins/default/xui/pl/panel_avatar_list_item.xml index 5c362ab772cb5f37d592282803ee57d8850ec923..917610d3e993e0bcb97e9a0a7bf234a1957fd795 100644 --- a/indra/newview/skins/default/xui/pl/panel_avatar_list_item.xml +++ b/indra/newview/skins/default/xui/pl/panel_avatar_list_item.xml @@ -22,4 +22,5 @@ [COUNT]lat </string> <text name="avatar_name" value="Nieznane"/> + <button name="profile_btn" tool_tip="Zobacz profil"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_block_list_sidetray.xml b/indra/newview/skins/default/xui/pl/panel_block_list_sidetray.xml index d7fcb8c966b11230ee26de5a24515f519e09c9dd..122d834bdd4c161550c3db8ff5b4750e2ae4939b 100644 --- a/indra/newview/skins/default/xui/pl/panel_block_list_sidetray.xml +++ b/indra/newview/skins/default/xui/pl/panel_block_list_sidetray.xml @@ -3,8 +3,8 @@ <text name="title_text"> Lista Blokad </text> - <scroll_list name="blocked" tool_tip="Lista zablokowanych obecnie rezydentów"/> - <button label="Zablokuj Rezydenta..." label_selected="Zablokuj Rezydenta..." name="Block resident..." tool_tip="Wybierz rezydenta, którego chcesz zablokować"/> + <scroll_list name="blocked" tool_tip="Lista Zablokowanych Osób"/> + <button label="Zablokuj Rezydenta..." label_selected="Zablokuj Rezydenta..." name="Block resident..." tool_tip="Wybierz Rezydenta aby zablokować"/> <button label="Zablokuj obiekt wedÅ‚ug nazwy..." label_selected="Zablokuj obiekt wedÅ‚ug nazwy..." name="Block object by name..."/> - <button label="Odblokuj" label_selected="Odblokuj" name="Unblock" tool_tip="UsuÅ„ rezydenta lub obiekt z listy blokad"/> + <button label="Odblokuj" label_selected="Odblokuj" name="Unblock" tool_tip="UsuÅ„ Rezydenta lub Obiekt z Listy Zablokowanych"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_bottomtray.xml b/indra/newview/skins/default/xui/pl/panel_bottomtray.xml new file mode 100644 index 0000000000000000000000000000000000000000..e21d8a077d41de16538d404e5adda840a7c2991f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_bottomtray.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="bottom_tray"> + <string name="SpeakBtnToolTip"> + WÅ‚Ä…cza/WyÅ‚Ä…cza mikrofon + </string> + <string name="VoiceControlBtnToolTip"> + Pokazuje/Ukrywa panel kontroli gÅ‚osu + </string> + <layout_stack name="toolbar_stack"> + <layout_panel name="speak_panel"> + <talk_button name="talk"> + <speak_button label="Mów" label_selected="Mów" name="speak_btn"/> + </talk_button> + </layout_panel> + <layout_panel name="gesture_panel"> + <gesture_combo_list label="Gestury" name="Gesture" tool_tip="Pokazuje/Ukrywa gestury"/> + </layout_panel> + <layout_panel name="movement_panel"> + <button label="Ruch" name="movement_btn" tool_tip="Pokaż/Ukryj Ustawienia Ruchu"/> + </layout_panel> + <layout_panel name="cam_panel"> + <button label="Widok" name="camera_btn" tool_tip="Pokaż/Ukryj Ustawienia Kamery"/> + </layout_panel> + <layout_panel name="snapshot_panel"> + <button label="" name="snapshots" tool_tip="Zrób ZdjÄ™cie"/> + </layout_panel> + <layout_panel name="im_well_panel"> + <chiclet_im_well name="im_well"> + <button name="Unread IM messages" tool_tip="Rozmowy"/> + </chiclet_im_well> + </layout_panel> + <layout_panel name="notification_well_panel"> + <chiclet_notification name="notification_well"> + <button name="Unread" tool_tip="OgÅ‚oszenia"/> + </chiclet_notification> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_bottomtray_lite.xml b/indra/newview/skins/default/xui/pl/panel_bottomtray_lite.xml new file mode 100644 index 0000000000000000000000000000000000000000..77d2e86b7e29a0ba44dda61e4164afe7eebf93c3 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_bottomtray_lite.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="bottom_tray_lite"> + <layout_stack name="toolbar_stack_lite"> + <layout_panel name="gesture_panel"> + <gesture_combo_list label="Gest" name="Gest" tool_tip="Pokaż/ukryj gestury"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_classified_info.xml b/indra/newview/skins/default/xui/pl/panel_classified_info.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b275d6dcf2855c178414da10abd391058dbb35e --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_classified_info.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_classified_info"> + <panel.string name="l$_price"> + L$[PRICE] + </panel.string> + <panel.string name="click_through_text_fmt"> + [TELEPORT] teleport, [MAP] map, [PROFILE] profile + </panel.string> + <panel.string name="date_fmt"> + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + </panel.string> + <panel.string name="auto_renew_on"> + Aktywne + </panel.string> + <panel.string name="auto_renew_off"> + WyÅ‚Ä…czone + </panel.string> + <text name="title" value="Reklama"/> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <text_editor name="classified_name" value="[name]"/> + <text name="classified_location_label" value="Miejsce:"/> + <text_editor name="classified_location" value="[loading...]"/> + <text name="content_type_label" value="Rodzaj ZawartoÅ›ci:"/> + <text_editor name="content_type" value="[content type]"/> + <text name="category_label" value="Kategoria:"/> + <text_editor name="category" value="[category]"/> + <text name="creation_date_label" value="Data stworzenia:"/> + <text_editor name="creation_date" tool_tip="Data stworzenia" value="[date]"/> + <text name="price_for_listing_label" value="Cena za wyÅ›wietlenie:"/> + <text_editor name="price_for_listing" tool_tip="Cena za umieszczenie reklamy." value="[price]"/> + <layout_stack name="descr_stack"> + <layout_panel name="clickthrough_layout_panel"> + <text name="click_through_label" value="KlikniÄ™cia:"/> + <text_editor name="click_through_text" tool_tip="Kliknij wedÅ‚ug daty" value="[clicks]"/> + </layout_panel> + <layout_panel name="price_layout_panel"> + <text name="auto_renew_label" value="Automatyczne przedÅ‚użenie:"/> + <text name="auto_renew" value="Aktywne"/> + </layout_panel> + <layout_panel name="descr_layout_panel"> + <text name="classified_desc_label" value="Opis:"/> + <text_editor name="classified_desc" value="[description]"/> + </layout_panel> + </layout_stack> + </panel> + </scroll_container> + <panel name="buttons"> + <button label="Teleportuj" name="teleport_btn"/> + <button label="Mapa" name="show_on_map_btn"/> + <button label="Edytuj" name="edit_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_alpha.xml b/indra/newview/skins/default/xui/pl/panel_edit_alpha.xml new file mode 100644 index 0000000000000000000000000000000000000000..ac2739633ee7725773b8b35930fa961b470b9d9e --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_alpha.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_alpha_panel"> + <panel name="avatar_alpha_color_panel"> + <texture_picker label="Alpha Dolnej Części CiaÅ‚a" name="Lower Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha Górnej Części CiaÅ‚a" name="Upper Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha GÅ‚owy" name="Head Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha Oka" name="Eye Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Alpha WÅ‚osów" name="Hair Alpha" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_classified.xml b/indra/newview/skins/default/xui/pl/panel_edit_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..6395d5c59ae1627add21e76bdda733642474c4ba --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_classified.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Edytuj ReklamÄ™" name="panel_edit_classified"> + <panel.string name="location_notice"> + (zostanie zaktualizowane po zapisaniu) + </panel.string> + <string name="publish_label"> + Publikuj + </string> + <string name="save_label"> + Zapisz + </string> + <text name="title"> + Edytuj ReklamÄ™ + </text> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <panel name="snapshot_panel"> + <icon label="" name="edit_icon" tool_tip="Kliknij by wybrać teksturÄ™"/> + </panel> + <text name="Name:"> + TytuÅ‚: + </text> + <text name="description_label"> + Opis: + </text> + <text name="location_label"> + Lokalizacja: + </text> + <text name="classified_location"> + Å‚adowanie... + </text> + <button label="Ustaw na bieżącÄ… lokalizacjÄ™" name="set_to_curr_location_btn"/> + <text name="category_label" value="Kategoria:"/> + <text name="content_type_label" value="Typ ZawartoÅ›ci:"/> + <icons_combo_box label="Treść Ogólna" name="content_type"> + <icons_combo_box.item label="Moderuj Treść" name="mature_ci" value="Mature"/> + <icons_combo_box.item label="Treść Ogólna" name="pg_ci" value="PG"/> + </icons_combo_box> + <text name="price_for_listing_label" value="Cena za wyÅ›wietlenie:"/> + <spinner label="L$" name="price_for_listing" tool_tip="Cena za umieszczenie reklamy." value="50"/> + <check_box label="Ponawiaj automatycznie co tydzieÅ„." name="auto_renew"/> + </panel> + </scroll_container> + <panel label="bottom_panel" name="bottom_panel"> + <button label="[LABEL]" name="save_changes_btn"/> + <button label="Anuluj" name="cancel_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_eyes.xml b/indra/newview/skins/default/xui/pl/panel_edit_eyes.xml new file mode 100644 index 0000000000000000000000000000000000000000..5e7a3a8fa087d5abc24d1b12446689c496744b98 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_eyes.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_eyes_panel"> + <panel name="avatar_eye_color_panel"> + <texture_picker label="Iris" name="Iris" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="eyes_main_tab" title="Oczy"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_gloves.xml b/indra/newview/skins/default/xui/pl/panel_edit_gloves.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b16506d9c36d3ccdd4db01c3db38e6af5114cd4 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_gloves.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_gloves_panel"> + <panel name="avatar_gloves_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="gloves_main_tab" title="RÄ™kawiczki"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_hair.xml b/indra/newview/skins/default/xui/pl/panel_edit_hair.xml new file mode 100644 index 0000000000000000000000000000000000000000..567ff10506efc6f2aef05cd2d9d16e00f0d24760 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_hair.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_hair_panel"> + <panel name="avatar_hair_color_panel"> + <texture_picker label="Tekstura" name="Texture" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="hair_color_tab" title="Kolor"/> + <accordion_tab name="hair_style_tab" title="Styl"/> + <accordion_tab name="hair_eyebrows_tab" title="Brwi"/> + <accordion_tab name="hair_facial_tab" title="Twarzy"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_jacket.xml b/indra/newview/skins/default/xui/pl/panel_edit_jacket.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4ea9303aaacd3215ce50485c3388c80d1f31cd2 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_jacket.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_jacket_panel"> + <panel name="avatar_jacket_color_panel"> + <texture_picker label="Górny materiaÅ‚" name="Upper Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Dolny materiaÅ‚" name="Lower Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="jacket_main_tab" title="Kurtka"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_pants.xml b/indra/newview/skins/default/xui/pl/panel_edit_pants.xml new file mode 100644 index 0000000000000000000000000000000000000000..247d63c5a30a62a2c212c3fe5a1ff4b485594043 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_pants.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_pants_panel"> + <panel name="avatar_pants_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="pants_main_tab" title="Spodnie"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_pick.xml b/indra/newview/skins/default/xui/pl/panel_edit_pick.xml new file mode 100644 index 0000000000000000000000000000000000000000..22fb00671d4703164401b43c3c0ca70673da4493 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_pick.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Edytuj Ulubione" name="panel_edit_pick"> + <panel.string name="location_notice"> + (aktualizacja nastÄ…pi po zapisaniu) + </panel.string> + <text name="title"> + Edytuj Ulubione + </text> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <icon label="" name="edit_icon" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <text name="Name:"> + TytuÅ‚: + </text> + <text name="description_label"> + Opis: + </text> + <text name="location_label"> + Lokalizacja: + </text> + <text name="pick_location"> + Å‚adowanie... + </text> + <button label="Ustaw na bieżąca lokalizacjÄ™" name="set_to_curr_location_btn"/> + </panel> + </scroll_container> + <panel label="bottom_panel" name="bottom_panel"> + <button label="Zapisz obrazek" name="save_changes_btn"/> + <button label="Anuluj" name="cancel_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_profile.xml b/indra/newview/skins/default/xui/pl/panel_edit_profile.xml index 97fa3118f8fd4c45c57c3f863e1adbfdfc933b7e..edd74157512ff7921b7ba6769382457514422060 100644 --- a/indra/newview/skins/default/xui/pl/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/pl/panel_edit_profile.xml @@ -1,45 +1,51 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<panel name="edit_profile_panel"> - <string name="CaptionTextAcctInfo"> - [ACCTTYPE] [PAYMENTINFO] [AGEVERIFICATION] - </string> - <string name="AcctTypeResident" - value="Rezydent" /> - <string name="AcctTypeTrial" - value="Próbne" /> - <string name="AcctTypeCharterMember" - value="CzÅ‚onek-zalożyciel" /> - <string name="AcctTypeEmployee" - value="Pracownik Linden Lab" /> - <string name="PaymentInfoUsed" - value="Dane Konta Używane" /> - <string name="PaymentInfoOnFile" - value="Dane Konta DostÄ™pne" /> - <string name="NoPaymentInfoOnFile" - value="Brak Danych Konta" /> - <string name="AgeVerified" - value="Wiek Zweryfikowany" /> - <string name="NotAgeVerified" - value="Brak Weryfikacji Wieku" /> - <string name="partner_edit_link_url"> - http://www.secondlife.com/account/partners.php?lang=pl - </string> - <panel name="scroll_content_panel"> - <panel name="data_panel" > - <panel name="lifes_images_panel"> - <panel name="second_life_image_panel"> - <text name="second_life_photo_title_text"> - [SECOND_LIFE]: - </text> - </panel> - </panel> - <text name="title_partner_text" value="Partner:"/> - <panel name="partner_data_panel"> - <text name="partner_text" value="[FIRST] [LAST]"/> - </panel> - <text name="text_box3"> - PracuÅ› Mówi: - </text> - </panel> - </panel> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Edycja profilu" name="edit_profile_panel"> + <string name="CaptionTextAcctInfo"> + [ACCTTYPE] [PAYMENTINFO] [AGEVERIFICATION] + </string> + <string name="RegisterDateFormat"> + [REG_DATE] ([AGE]) + </string> + <string name="AcctTypeResident" value="Rezydent"/> + <string name="AcctTypeTrial" value="Próbne"/> + <string name="AcctTypeCharterMember" value="CzÅ‚onek-zalożyciel"/> + <string name="AcctTypeEmployee" value="Pracownik Linden Lab"/> + <string name="PaymentInfoUsed" value="Dane konta używane"/> + <string name="PaymentInfoOnFile" value="Dane konta dostÄ™pne"/> + <string name="NoPaymentInfoOnFile" value="Brak danych konta"/> + <string name="AgeVerified" value="Wiek zweryfikowany"/> + <string name="NotAgeVerified" value="Brak weryfikacji wieku"/> + <string name="partner_edit_link_url"> + http://www.secondlife.com/account/partners.php?lang=pl + </string> + <string name="no_partner_text" value="Å»adne"/> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <panel name="data_panel"> + <panel name="lifes_images_panel"> + <icon label="" name="2nd_life_edit_icon" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> + <panel name="first_life_image_panel"> + <text name="real_world_photo_title_text" value="Å»ycie#1:"/> + </panel> + <icon label="" name="real_world_edit_icon" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <text name="title_homepage_text"> + WWW: + </text> + <check_box label="Pokaż w wyszukiwarce" name="show_in_search_checkbox"/> + <text name="title_acc_status_text" value="Moje Konto:"/> + <text name="my_account_link" value="[[URL] idź do Dashboard]"/> + <text name="acc_status_text" value="Rezydent. Brak danych konta."/> + <text name="title_partner_text" value="Partner:"/> + <text name="partner_edit_link" value="[[URL] Edytuj]"/> + <panel name="partner_data_panel"> + <text initial_value="(wyszukiwanie)" name="partner_text" value="[FIRST] [LAST]"/> + </panel> + </panel> + </panel> + </scroll_container> + <panel name="profile_me_buttons_panel"> + <button label="Zapisz zmiany" name="save_btn"/> + <button label="Anuluj" name="cancel_btn"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_shape.xml b/indra/newview/skins/default/xui/pl/panel_edit_shape.xml new file mode 100644 index 0000000000000000000000000000000000000000..3cacbd7fdd3675f39066e6d9541653ba16f0ce6f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_shape.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_shape_panel"> + <panel name="avatar_sex_panel"> + <text name="gender_text"> + PÅ‚eć: + </text> + <radio_group name="sex_radio"> + <radio_item label="Kobieta" name="radio"/> + <radio_item label="Mężczyzna" name="radio2"/> + </radio_group> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="shape_body_tab" title="CiaÅ‚o"/> + <accordion_tab name="shape_head_tab" title="GÅ‚owa"/> + <accordion_tab name="shape_eyes_tab" title="Oczy"/> + <accordion_tab name="shape_ears_tab" title="Uszy"/> + <accordion_tab name="shape_nose_tab" title="Nos"/> + <accordion_tab name="shape_mouth_tab" title="Usta"/> + <accordion_tab name="shape_chin_tab" title="Podbródek"/> + <accordion_tab name="shape_torso_tab" title="Tułów"/> + <accordion_tab name="shape_legs_tab" title="Nogi"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_shoes.xml b/indra/newview/skins/default/xui/pl/panel_edit_shoes.xml new file mode 100644 index 0000000000000000000000000000000000000000..09eb1008e8b618e2777b45279ad3091f9b08dd6d --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_shoes.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_shoes_panel"> + <panel name="avatar_shoes_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="shoes_main_tab" title="Buty"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_skin.xml b/indra/newview/skins/default/xui/pl/panel_edit_skin.xml new file mode 100644 index 0000000000000000000000000000000000000000..617aad8650b33787d053d58449420af19acbaaab --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_skin.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_skin_panel"> + <panel name="avatar_skin_color_panel"> + <texture_picker label="Tatuaż na gÅ‚owie" name="Head Tattoos" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Górny tatuaż" name="Upper Tattoos" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <texture_picker label="Dolny tatuaż" name="Lower Tattoos" tool_tip="Kliknij aby wybrać teksturÄ™"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="skin_color_tab" title="Kolor skórki"/> + <accordion_tab name="skin_face_tab" title="Szczegóły twarzy"/> + <accordion_tab name="skin_makeup_tab" title="Makijaż"/> + <accordion_tab name="skin_body_tab" title="Szczegóły budowy ciaÅ‚a"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_skirt.xml b/indra/newview/skins/default/xui/pl/panel_edit_skirt.xml new file mode 100644 index 0000000000000000000000000000000000000000..f89148ffac9e00bbb5581b4c82a3591e9a1fb469 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_skirt.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_skirt_panel"> + <panel name="avatar_skirt_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="skirt_main_tab" title="Spódnica"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_socks.xml b/indra/newview/skins/default/xui/pl/panel_edit_socks.xml new file mode 100644 index 0000000000000000000000000000000000000000..5481c738049bd7f8814ed78f6bdd4c7b29245de6 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_socks.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_socks_panel"> + <panel name="avatar_socks_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="socks_main_tab" title="Skarpetki"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_tattoo.xml b/indra/newview/skins/default/xui/pl/panel_edit_tattoo.xml index 5efa402698d5dbff125cbe3f3226cf14da60683c..b5e18285885886a7a832d1fcfdc64fbd5efdadd1 100644 --- a/indra/newview/skins/default/xui/pl/panel_edit_tattoo.xml +++ b/indra/newview/skins/default/xui/pl/panel_edit_tattoo.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_tattoo_panel"> <panel name="avatar_tattoo_color_panel"> - <texture_picker label="Tatuaż GÅ‚owy" name="Head Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> - <texture_picker label="Tatuaż Górnej Części CiaÅ‚a" name="Upper Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> - <texture_picker label="Tatuaż Dolnej Części CiaÅ‚a" name="Lower Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> + <texture_picker label="Tatuaż gÅ‚owy" name="Head Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> + <texture_picker label="Tatuaż górnej części ciaÅ‚a" name="Upper Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> + <texture_picker label="Tatuaż dolnej części ciaÅ‚a" name="Lower Tattoo" tool_tip="Kliknij by wybrać grafikÄ™"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_underpants.xml b/indra/newview/skins/default/xui/pl/panel_edit_underpants.xml new file mode 100644 index 0000000000000000000000000000000000000000..94034aa8abd3d2d9385480411d857ebac028b82d --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_underpants.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_underpants_panel"> + <panel name="avatar_underpants_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać kolor"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="underpants_main_tab" title="Bielizna"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_undershirt.xml b/indra/newview/skins/default/xui/pl/panel_edit_undershirt.xml new file mode 100644 index 0000000000000000000000000000000000000000..72b72b76de018d27d13aa33715f68698d5ccdb2c --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_undershirt.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="edit_undershirt_panel"> + <panel name="avatar_undershirt_color_panel"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij aby wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij aby wybrać kolor"/> + </panel> + <accordion name="wearable_accordion"> + <accordion_tab name="undershirt_main_tab" title="Podkoszulek"/> + </accordion> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_edit_wearable.xml b/indra/newview/skins/default/xui/pl/panel_edit_wearable.xml new file mode 100644 index 0000000000000000000000000000000000000000..cf17afea3fc02dd04085083fac4c689d7508b0f4 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_wearable.xml @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Ubranie/części ciaÅ‚a" name="panel_edit_wearable"> + <string name="edit_shape_title"> + Edycja ksztaÅ‚tu + </string> + <string name="edit_skin_title"> + Edycja skórki + </string> + <string name="edit_hair_title"> + Edycja wÅ‚osów + </string> + <string name="edit_eyes_title"> + Edycja oczu + </string> + <string name="edit_shirt_title"> + Edycja spódnicy + </string> + <string name="edit_pants_title"> + Edycja spodni + </string> + <string name="edit_shoes_title"> + Edycja butów + </string> + <string name="edit_socks_title"> + Edycja skarpetek + </string> + <string name="edit_jacket_title"> + Edycja kurtki + </string> + <string name="edit_skirt_title"> + Edycja spódnicy + </string> + <string name="edit_gloves_title"> + Edycja rÄ™kawiczek + </string> + <string name="edit_undershirt_title"> + Edycja podkoszulki + </string> + <string name="edit_underpants_title"> + Edycja bielizny + </string> + <string name="edit_alpha_title"> + Edycja maski Alpha + </string> + <string name="edit_tattoo_title"> + Edycja tatuażu + </string> + <string name="shape_desc_text"> + KsztaÅ‚t: + </string> + <string name="skin_desc_text"> + Skórka: + </string> + <string name="hair_desc_text"> + WÅ‚osy: + </string> + <string name="eyes_desc_text"> + Oczy: + </string> + <string name="shirt_desc_text"> + Koszula: + </string> + <string name="pants_desc_text"> + Spodnie: + </string> + <string name="shoes_desc_text"> + Buty: + </string> + <string name="socks_desc_text"> + Skarpetki: + </string> + <string name="jacket_desc_text"> + Kurtka: + </string> + <string name="skirt_skirt_desc_text"> + Spódnica: + </string> + <string name="gloves_desc_text"> + RÄ™kawiczki: + </string> + <string name="undershirt_desc_text"> + Podkoszulek: + </string> + <string name="underpants_desc_text"> + Bielizna: + </string> + <string name="alpha_desc_text"> + Maska Alpha: + </string> + <string name="tattoo_desc_text"> + Tatuaż: + </string> + <text name="edit_wearable_title" value="Edycja KsztaÅ‚tu"/> + <panel label="Koszula" name="wearable_type_panel"> + <text name="description_text" value="KsztaÅ‚t:"/> + </panel> + <panel name="button_panel"> + <button label="Zapisz" name="save_as_button"/> + <button label="Wróć" name="revert_button"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_friends.xml b/indra/newview/skins/default/xui/pl/panel_friends.xml index b6df36f19952fc71aec5e779949ecc2dbe41d98b..fca0dad38037e27d0296dc48756bd3390edcf4e5 100644 --- a/indra/newview/skins/default/xui/pl/panel_friends.xml +++ b/indra/newview/skins/default/xui/pl/panel_friends.xml @@ -1,27 +1,20 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="friends"> <string name="Multiple"> - Znajomi... + Znajomi </string> - <scroll_list name="friend_list" - tool_tip="By wybrać wielu znajomych za jednym razem przetrzymaj klawisz shift lub control"> - <column name="icon_online_status" tool_tip="Status dostÄ™pnoÅ›ci" /> - <column label="ImiÄ™" name="friend_name" tool_tip="ImiÄ™" /> - <column name="icon_visible_online" - tool_tip="Ta osoba może widzieć czy jesteÅ› w Second Life" /> - <column name="icon_visible_map" - tool_tip="Ta osoba może zlokalizować CiÄ™ na mapie" /> - <column name="icon_edit_mine" - tool_tip="Ta osoba może edytować, usunąć lub wziąć Twoje obiekty" /> - <column name="icon_edit_theirs" tool_tip="Możesz edytować obiekty tej osoby" /> + <scroll_list name="friend_list" tool_tip="By wybrać wielu znajomych za jednym razem przetrzymaj klawisz shift lub control"> + <column name="icon_online_status" tool_tip="Status dostÄ™pnoÅ›ci"/> + <column label="ImiÄ™" name="friend_name" tool_tip="ImiÄ™"/> + <column name="icon_visible_online" tool_tip="Ta osoba może widzieć czy jesteÅ› w Second Life"/> + <column name="icon_visible_map" tool_tip="Ta osoba może zlokalizować CiÄ™ na mapie"/> + <column name="icon_edit_mine" tool_tip="Ta osoba może edytować, usunąć lub wziąć Twoje obiekty"/> + <column name="icon_edit_theirs" tool_tip="Możesz edytować obiekty tej osoby"/> </scroll_list> - <button label="Czat/IM" name="im_btn" tool_tip="Rozpocznij sesjÄ™ czatu/IM" /> - <button label="Profil" name="profile_btn" - tool_tip="Pokaż zdjÄ™cia, grupy i inne informacje" /> - <button label="Teleportuj..." name="offer_teleport_btn" - tool_tip="Zaoferuj teleportacjÄ™ do siebie" /> - <button label="ZapÅ‚ać..." name="pay_btn" tool_tip="ZapÅ‚ać L$ tej osobie" /> - <button label="UsuÅ„..." name="remove_btn" - tool_tip="UsuÅ„ tÄ™ osobÄ™ z listy znajomych" /> - <button label="Dodaj..." name="add_btn" tool_tip="Zaproponuj znajomość" /> + <button label="Czat/IM" name="im_btn" tool_tip="Rozpocznij sesjÄ™ czatu/IM"/> + <button label="Profil" name="profile_btn" tool_tip="Pokaż zdjÄ™cia, grupy i inne informacje"/> + <button label="Teleportuj" name="offer_teleport_btn" tool_tip="Zaoferuj teleportacjÄ™ do siebie"/> + <button label="ZapÅ‚ać" name="pay_btn" tool_tip="ZapÅ‚ać L$ tej osobie"/> + <button label="UsuÅ„" name="remove_btn" tool_tip="UsuÅ„ tÄ™ osobÄ™ z listy znajomych"/> + <button label="Dodaj" name="add_btn" tool_tip="Zaoferuj znajomość"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_control_panel.xml b/indra/newview/skins/default/xui/pl/panel_group_control_panel.xml new file mode 100644 index 0000000000000000000000000000000000000000..b57ec8f2e697213f4822be1fe51135a235c6cfcd --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_group_control_panel.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_im_control_panel"> + <layout_stack name="vertical_stack"> + <layout_panel name="group_info_btn_panel"> + <button label="Grupa" name="group_info_btn"/> + </layout_panel> + <layout_panel name="call_btn_panel"> + <button label="DzwoÅ„" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="ZakoÅ„cz RozmowÄ™" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="PrzeÅ‚Ä…czniki GÅ‚osu" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_general.xml b/indra/newview/skins/default/xui/pl/panel_group_general.xml index d09ff72226c48bcb39ede7f935f984604045bc8a..67fa0bf085150cf0e19872357c0fffd221275094 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_general.xml @@ -1,70 +1,55 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Ogólne" name="general_tab"> - <string name="help_text"> - ZakÅ‚adka Ogólne zawiera informacje na temat tej grupy, listÄ™ wÅ‚aÅ›cicieli, widocznych czÅ‚onków, ustawienia grupy oraz opcje czÅ‚onkostwa. - </string> - <string name="group_info_unchanged"> + <panel.string name="help_text"> + ZakÅ‚adka Główne zawiera ogólne informacje na temat tej grupy, ustawieÅ„ dla caÅ‚ej grupy oraz danego czÅ‚onka. + +By otrzymać pomoc i dodatkowe wskazówki przesuÅ„ kursor na przyciski. + </panel.string> + <panel.string name="group_info_unchanged"> Ogólne informacje na temat grupy ulegÅ‚y zmianie. - </string> - <button label="?" label_selected="?" name="help_button"/> - <line_editor label="Wpisz nazwÄ™ grupy tutaj" name="group_name_editor"/> - <text name="group_name"> - Wpisz nazwÄ™ grupy tutaj - </text> - <text name="prepend_founded_by"> - ZaÅ‚ożyciel: - </text> - <text name="founder_name"> - (proszÄ™ czekać) - </text> - <text name="group_charter_label"> - Status Grupy - </text> - <texture_picker label="Insygnia Grupy" name="insignia" tool_tip="Kliknij by wybrać zdjÄ™cie"/> + </panel.string> + <panel.string name="incomplete_member_data_str"> + Wyszukiwanie informacji o czÅ‚onku + </panel.string> + <panel name="group_info_top"> + <texture_picker label="" name="insignia" tool_tip="Kliknij by wybrać obraz"/> + <text name="prepend_founded_by"> + ZaÅ‚ożyciel: + </text> + <name_box initial_value="(przetwarzanie)" name="founder_name"/> + <text name="join_cost_text"> + WstÄ™p wolny + </text> + <button label="DOÅÄ„CZ TERAZ!" name="btn_join"/> + </panel> <text_editor name="charter"> Status Grupy </text_editor> - <button label="DoÅ‚Ä…cz (L$0)" label_selected="DoÅ‚Ä…cz (L$0)" name="join_button"/> - <button label="Szczegóły" label_selected="Szczegóły" name="info_button"/> - <text name="text_owners_and_visible_members"> - WÅ‚aÅ›ciciele i widoczni czÅ‚onkowie - </text> - <text name="text_owners_are_shown_in_bold"> - (WÅ‚aÅ›ciciele wyÅ›wietlajÄ… siÄ™ pogrubionÄ… czcionkÄ…) - </text> <name_list name="visible_members"> - <name_list.columns label="ImiÄ™" name="name"/> + <name_list.columns label="CzÅ‚onek" name="name"/> <name_list.columns label="TytuÅ‚" name="title"/> - <name_list.columns label="Ostatnio w SL" name="online"/> + <name_list.columns label="Status" name="status"/> </name_list> - <text name="text_group_preferences"> - Ustawienia Grupy + <text name="my_group_settngs_label"> + ja </text> + <text name="active_title_label"> + Mój Aktywny TytuÅ‚: + </text> + <combo_box name="active_title" tool_tip="Ustaw tytuÅ‚ który wyÅ›wietla siÄ™ kiedy grupa jest aktywna."/> + <check_box label="Otrzymuj grupowe ogÅ‚oszenia" name="receive_notices" tool_tip="Zaznacz jeżeli chcesz otrzymywać ogÅ‚oszenia z tej grupy. Anuluj z zaznaczenia, jeżeli nie chcesz otrzymywać żadnych ogÅ‚oszeÅ„ z tej grupy."/> + <check_box label="WyÅ›wietl grupÄ™ w profilu" name="list_groups_in_profile" tool_tip="Zaznacz jeżeli chcesz by grupa wyÅ›wietlaÅ‚a siÄ™ w Twoim profilu"/> <panel name="preferences_container"> - <check_box label="WyÅ›wietlaj w wyszukiwarce" name="show_in_group_list" tool_tip="UdostÄ™pnij info o grupie w wyszukiwarce"/> - <check_box label="Wolny WstÄ™p" name="open_enrollement" tool_tip="Sprawdź czy grupa oferuje wolny wstÄ™p i nie wymaga zaproszenia."/> - <check_box label="OpÅ‚ata WstÄ™pu:" name="check_enrollment_fee" tool_tip="Ustaw opÅ‚atÄ™ za przyÅ‚Ä…czenie siÄ™ do grupy."/> - <spinner name="spin_enrollment_fee" tool_tip="Nowi czÅ‚onkowie grupy muszÄ… zapÅ‚acić wymaganÄ… opÅ‚atÄ™ by doÅ‚Ä…czyć do grupy."/> + <text name="group_settngs_label"> + Grupa + </text> + <check_box label="Wolny wstÄ™p" name="open_enrollement" tool_tip="Sprawdź czy grupa oferuje wolny wstÄ™p i nie wymaga zaproszenia."/> + <check_box label="OpÅ‚ata wstÄ™pu" name="check_enrollment_fee" tool_tip="Ustaw opÅ‚atÄ™ za przyÅ‚Ä…czenie siÄ™ do grupy."/> + <spinner label="L$" name="spin_enrollment_fee" tool_tip="Nowi czÅ‚onkowie grupy muszÄ… zapÅ‚acić wymaganÄ… opÅ‚atÄ™ by doÅ‚Ä…czyć do grupy."/> <combo_box name="group_mature_check" tool_tip="Wybierz jeżeli uważasz, iż Twoja grupa klasyfikowana jest jako 'Mature'."> - <combo_box.item name="select_mature" label="- Wybierz Treść -"/> - <combo_box.item name="mature" label="Treść 'Mature'"/> - <combo_box.item name="pg" label="Treść 'PG'"/> + <combo_box.item label="Treść 'PG'" name="pg"/> + <combo_box.item label="Treść 'Mature'" name="mature"/> </combo_box> - <panel name="title_container"> - <text name="active_title_label"> - Mój Aktywny TytuÅ‚ - </text> - <combo_box name="active_title" tool_tip="Ustaw tytuÅ‚ który wyÅ›wietla siÄ™ kiedy grupa jest aktywna."/> - </panel> - <check_box label="Otrzymuj grupowe ogÅ‚oszenia" name="receive_notices" tool_tip="Zaznacz jeżeli chcesz otrzymywać ogÅ‚oszenia z tej grupy. Anuluj z zaznaczenia, jeżeli nie chcesz otrzymywać żadnych ogÅ‚oszeÅ„ z tej grupy."/> - <check_box label="WyÅ›wietl grupÄ™ w profilu" name="list_groups_in_profile" tool_tip="Zaznacz jeżeli chcesz by grupa wyÅ›wietlaÅ‚a siÄ™ w Twoim profilu"/> + <check_box initial_value="true" label="WyÅ›wietlaj w wyszukiwarce" name="show_in_group_list" tool_tip="UdostÄ™pnij info o grupie w wyszukiwarce"/> </panel> - <string name="incomplete_member_data_str"> - Wyszukiwanie informacji o czÅ‚onku - </string> - <string name="confirm_group_create_str"> - Koszt utworzenia tej grupy wynosi L$100. -Czy napewno jesteÅ› PEWNY,że chcesz zapÅ‚acić L$100 by utworzyć grupÄ™? -PamiÄ™taj, jeżeli w ciÄ…gu 48h od utworzenia grupy nikt do niej nie doÅ‚Ä…czy, informacje o grupie zostanÄ… usuniÄ™te z bazy, a nazwa grupy zablokowana do użycia w przyszÅ‚oÅ›ci. - </string> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_info_sidetray.xml b/indra/newview/skins/default/xui/pl/panel_group_info_sidetray.xml new file mode 100644 index 0000000000000000000000000000000000000000..509c2893cf4fa332633089ef0feb9395fade4645 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_group_info_sidetray.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="O Grupie" name="GroupInfo"> + <panel.string name="default_needs_apply_text"> + Nie zapisaÅ‚eÅ› zmian + </panel.string> + <panel.string name="want_apply_text"> + Czy chcesz zachować te zmiany? + </panel.string> + <panel.string name="group_join_btn"> + DoÅ‚Ä…cz (L$[AMOUNT]) + </panel.string> + <panel.string name="group_join_free"> + Darmowe + </panel.string> + <panel name="group_info_top"> + <text name="group_name" value="(Åadowanie...)"/> + <line_editor label="Wpisz nazwÄ™ swojej nowej grupy tutaj" name="group_name_editor"/> + </panel> + <layout_stack name="layout"> + <layout_panel name="group_accordions"> + <accordion name="groups_accordion"> + <accordion_tab name="group_general_tab" title="Ogólne"/> + <accordion_tab name="group_roles_tab" title="Funkcja"/> + <accordion_tab name="group_notices_tab" title="Notki"/> + <accordion_tab name="group_land_tab" title="Posiadlość/MajÄ…tek"/> + </accordion> + </layout_panel> + <layout_panel name="button_row"> + <button label="Czat" name="btn_chat"/> + <button label="Konferencja GÅ‚osowa" name="btn_call" tool_tip="Konferencja GÅ‚osowa"/> + <button label="Zapisz" label_selected="Zapisz" name="btn_apply"/> + <button label="Stwórz nowÄ… GrupÄ™" name="btn_create" tool_tip="Stwórz nowÄ… GrupÄ™"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_invite.xml b/indra/newview/skins/default/xui/pl/panel_group_invite.xml index 12d48279ada05a1a6e6dd287ff6aa4087d1846ca..e520c06944f75b3d3e1238a57d4a764f381b31c4 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_invite.xml @@ -1,23 +1,27 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Zaproszenie do Grupy" name="invite_panel"> + <panel.string name="confirm_invite_owner_str"> + JesteÅ› pewny, że chcesz wybrać nowych wÅ‚aÅ›cieli grupy? Ta decyzja jest ostateczna! + </panel.string> + <panel.string name="loading"> + (Å‚adowanie...) + </panel.string> + <panel.string name="already_in_group"> + Niektórzy Rezydenci, których wybraÅ‚eÅ› już należą do grupy i nie otrzymali zaproszenia. + </panel.string> <text name="help_text"> - Możesz zaprosić kilku Rezydentów -do swojej grupy. Wybierz 'Otwórz -Katalog Osobisty' by rozpocząć. + Możesz zaprosić kilku Rezydentów do swojej grupy. Wybierz 'Otwórz Katalog Osobisty' aby rozpocząć. </text> <button label="Otwórz Katalog Osobisty" name="add_button" tool_tip=""/> - <name_list name="invitee_list" tool_tip="" /> - <button label="UsuÅ„ z Listy" name="remove_button" tool_tip="" /> + <name_list name="invitee_list" tool_tip="Przytrzymaj klawisz Ctrl i kliknij imiÄ™ Rezydenta aby wybrać kilka osób."/> + <button label="UsuÅ„ z Listy" name="remove_button" tool_tip="Usuwa wybranych powyżej Rezydentów z listy zaproszeÅ„."/> <text name="role_text"> Wybierz rolÄ™ dla nowego czÅ‚onka: </text> - <combo_box name="role_name" tool_tip="" /> - <button label="WyÅ›lij Zaproszenia" name="ok_button" /> - <button label="Anuluj" name="cancel_button" /> - <string name="confirm_invite_owner_str"> - JesteÅ› pewny, że chcesz wybrać nowych wÅ‚aÅ›cieli grupy? Ta decyzja jest ostateczna! - </string> - <string name="loading"> - (loading...) + <combo_box name="role_name" tool_tip="Wybierz z listy Role, które możesz przypisać CzÅ‚onkom"/> + <button label="WyÅ›lij Zaproszenia" name="ok_button"/> + <button label="Anuluj" name="cancel_button"/> + <string name="GroupInvitation"> + Zaproszenie do Grupy </string> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_land_money.xml b/indra/newview/skins/default/xui/pl/panel_group_land_money.xml index dbfa8e31224b8af5b9102c64003306e8987b5717..a52b7f7745f45f45262f92707fcdf84225df11ea 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_land_money.xml @@ -1,84 +1,81 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="PosiadÅ‚oÅ›ci i L$" name="land_money_tab"> - <string name="help_text"> - PosiadÅ‚oÅ›ci, które sÄ… wÅ‚asnoÅ›ciÄ… grupy zawierajÄ… dane poszczególnych kontrybucji ich czÅ‚onków. W przypadku kiedy caÅ‚kowita ilość metrów przypisanej danej posiadÅ‚oÅ›ci przez grupÄ™ jest mniejsza lub równa caÅ‚kowitej liczbie kontrybucji dla przypisanej iloÅ›ci metrów pojawia siÄ™ ostrzeżenie. ZakÅ‚adki: Planowanie, Szczegóły oraz Sprzedaże udostÄ™pniajÄ… informacje na temat statusu finansowego grupy. - </string> - <button label="?" name="help_button"/> - <string name="cant_view_group_land_text"> + <panel.string name="help_text"> + Ostrzeżenie pojawia siÄ™ kiedy ÅÄ…czna Powierzchnia PosiadÅ‚oÅ›ci jest mniejsza lub = Kontrybucjom + </panel.string> + <panel.string name="cant_view_group_land_text"> Nie masz pozwolenia na oglÄ…danie PosiadÅ‚oÅ›ci Grupy. - </string> - <string name="cant_view_group_accounting_text"> + </panel.string> + <panel.string name="cant_view_group_accounting_text"> Nie masz dostÄ™pu do konta, finansów Grupy. - </string> - <string name="loading_txt"> + </panel.string> + <panel.string name="loading_txt"> Åadowanie... - </string> - <text name="group_land_heading"> - PosiadÅ‚oÅ›ci Grupy - </text> - <scroll_list name="group_parcel_list"> - <column label="PosiadÅ‚oÅ›ci" name="name"/> - <column label="Region" name="location"/> - <column label="Typ" name="type"/> - <column label="Obszar" name="area"/> - <column label="" name="hidden"/> - </scroll_list> - <button label="Pokaż na Mapie" label_selected="Pokaż na Mapie" name="map_button"/> - <text name="total_contributed_land_label"> - Kontrybucje: - </text> - <text name="total_contributed_land_value"> - [AREA] metrów - </text> - <text name="total_land_in_use_label"> - Używane PosiadÅ‚oÅ›ci: - </text> - <text name="total_land_in_use_value"> - [AREA] metrów - </text> - <text name="land_available_label"> - DostÄ™pne PosiadÅ‚oÅ›ci: - </text> - <text name="land_available_value"> - [AREA] metrów - </text> - <text name="your_contribution_label"> - Twoje Kontrybucje: - </text> - <string name="land_contrib_error"> + </panel.string> + <panel.string name="land_contrib_error"> Nie można ustalić Twoich kontrybucji. - </string> - <text name="your_contribution_units"> - ( m ) - </text> - <text name="your_contribution_max_value"> - ([AMOUNT] maksimum) - </text> - <text name="group_over_limit_text"> - CzÅ‚onkowie Grupy muszÄ… zwiÄ™kszyć kredyt na używanie PosiadÅ‚oÅ›ci. - </text> - <text name="group_money_heading"> - L$ Grupy - </text> + </panel.string> + <panel name="layout_panel_landmoney"> + <scroll_list name="group_parcel_list"> + <scroll_list.columns label="PosiadÅ‚ość" name="name"/> + <scroll_list.columns label="Region" name="location"/> + <scroll_list.columns label="Typ" name="type"/> + <scroll_list.columns label="Obszar" name="area"/> + </scroll_list> + <text name="total_contributed_land_label"> + Kontrybucje: + </text> + <text name="total_contributed_land_value"> + [AREA] m² + </text> + <button label="Mapa" label_selected="Mapa" name="map_button"/> + <text name="total_land_in_use_label"> + Używane PosiadÅ‚oÅ›ci: + </text> + <text name="total_land_in_use_value"> + [AREA] m² + </text> + <text name="land_available_label"> + DostÄ™pne PosiadÅ‚oÅ›ci: + </text> + <text name="land_available_value"> + [AREA] m² + </text> + <text name="your_contribution_label"> + Twoje Kontrybucje: + </text> + <text name="your_contribution_units"> + m² + </text> + <text name="your_contribution_max_value"> + ([AMOUNT] max) + </text> + <text name="group_over_limit_text"> + Należy zwiÄ™szyć kredyt na używanie PosiadÅ‚oÅ›ci. + </text> + <text name="group_money_heading"> + L$ Grupy + </text> + </panel> <tab_container name="group_money_tab_container"> - <panel label="Planowanie" name="group_money_planning_tab"> + <panel label="PLANOWANIE" name="group_money_planning_tab"> <text_editor name="group_money_planning_text"> - Obliczanie... + Åadowanie... </text_editor> </panel> - <panel label="Szczegóły" name="group_money_details_tab"> + <panel label="SZCZEGÓÅY" name="group_money_details_tab"> <text_editor name="group_money_details_text"> - Obliczanie... + Åadowanie... </text_editor> - <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_details_button" tool_tip="Do tyÅ‚u w czasie"/> - <button label="Później >" label_selected="Później >" name="later_details_button" tool_tip="Do przodu w czasie"/> + <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_details_button" tool_tip="WczeÅ›niej"/> + <button label="Później >" label_selected="Później >" name="later_details_button" tool_tip="Później"/> </panel> - <panel label="Sprzedaż" name="group_money_sales_tab"> + <panel label="SPRZEDAÅ»" name="group_money_sales_tab"> <text_editor name="group_money_sales_text"> - Obliczanie... + Åadowanie... </text_editor> - <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_sales_button" tool_tip="Do tyÅ‚u w czasie"/> - <button label="Później >" label_selected="Później >" name="later_sales_button" tool_tip="Do przodu w czasie"/> + <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_sales_button" tool_tip="WczeÅ›niej"/> + <button label="Później >" label_selected="Później >" name="later_sales_button" tool_tip="Później"/> </panel> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_list_item.xml b/indra/newview/skins/default/xui/pl/panel_group_list_item.xml index e8e819e7ceebc427b6ca0dddedc167a91cbc07fe..a8b405697654e9d937ac8dca76474b81fa6cce25 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_list_item.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_list_item.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="group_list_item"> <text name="group_name" value="Nieznana"/> + <button name="profile_btn" tool_tip="Zobacz profil"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_notices.xml b/indra/newview/skins/default/xui/pl/panel_group_notices.xml index 1c19571ec0df3b237591d9c2103df663811cfecf..31882ab0e6fc948cd52aae96605e602aab035a2d 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_notices.xml @@ -1,38 +1,30 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="OgÅ‚oszenia" name="notices_tab"> - <string name="help_text"> + <panel.string name="help_text"> OgÅ‚oszenia to szybka droga do komunikowania siÄ™ ze wszystkmi czÅ‚onkami grupy poprzez wysylanie ich na grupowym kanale. Dodatkowo, do ogÅ‚oszenia można doÅ‚aÅ„czać zaÅ‚Ä…czniki. OgÅ‚oszenia docierajÄ… jedynie do czÅ‚onków grupy, którzy majÄ… zdolność ich otrzymywania. By nie otrzymywać ogÅ‚oszeÅ„, w zakÅ‚adce Ogólne pozostaw niezaznaczonym "Otrzymuj grupowe ogÅ‚oszenia". - </string> - <string name="no_notices_text"> + </panel.string> + <panel.string name="no_notices_text"> Brak przeszÅ‚ych ogÅ‚oszeÅ„ - </string> - <button label="?" label_selected="?" name="help_button" /> - <text name="lbl"> - Archiwum Grupowych OgÅ‚oszeÅ„ - </text> + </panel.string> <text name="lbl2"> - OgÅ‚oszenia przechowywane sÄ… przez 14 dni. + OgÅ‚oszenia przechowywane sÄ… przez 14 dni. Limit dzienny ogÅ‚oszeÅ„ dla grupy wynosi 200. </text> <scroll_list name="notice_list"> - <column label="" name="icon" /> - <column label="Temat" name="subject" /> - <column label="Autor" name="from" /> - <column label="Data" name="date" /> + <scroll_list.columns label="" name="icon"/> + <scroll_list.columns label="Temat" name="subject"/> + <scroll_list.columns label="Autor" name="from"/> + <scroll_list.columns label="Data" name="date"/> </scroll_list> <text name="notice_list_none_found"> - Nie znalezione. + Nie znaleziono </text> - <button label="Stwórz Nowe OgÅ‚oszenie" label_selected="Stwórz Nowe OgÅ‚oszenie" - name="create_new_notice" /> - <button label="OdÅ›wież" label_selected="OdÅ›wież ListÄ™" name="refresh_notices" /> + <button label="Stwórz OgÅ‚oszenie" label_selected="Stwórz Nowe OgÅ‚oszenie" name="create_new_notice" tool_tip="Stwórz OgÅ‚oszenie"/> + <button label="OdÅ›wież" label_selected="OdÅ›wież ListÄ™" name="refresh_notices" tool_tip="Użyj OdÅ›wież by zobaczyć czy nowe ogÅ‚oszenia zostaÅ‚y wysÅ‚ane."/> <panel label="Stwórz Nowe OgÅ‚oszenie" name="panel_create_new_notice"> <text name="lbl"> Stwórz OgÅ‚oszenie </text> - <text name="lbl2"> - Możesz także doÅ‚Ä…czyć pojedynczy zaÅ‚Ä…cznik ze swojej szafy. ZaÅ‚Ä…cznik musi mieć prawo modyfikacyjne do kopiowania oraz transferu. - </text> <text name="lbl3"> Temat: </text> @@ -42,17 +34,19 @@ Limit dzienny ogÅ‚oszeÅ„ dla grupy wynosi 200. <text name="lbl5"> ZaÅ‚Ä…cz: </text> - <button label="UsuÅ„ ZaÅ‚Ä…cznik" label_selected="UsuÅ„ ZaÅ‚Ä…cznik" - name="remove_attachment" /> - <button label="WyÅ›lij" label_selected="WyÅ›lij" name="send_notice" /> - <panel name="drop_target" tool_tip="" /> + <text name="string"> + PrzeciÄ…gnij i upuść zaÅ‚Ä…cznik tutaj aby go dodać: + </text> + <button label="UsuÅ„ zaÅ‚Ä…cznik" label_selected="UsuÅ„ ZaÅ‚Ä…cznik" name="remove_attachment" tool_tip="UsuÅ„ zaÅ‚Ä…cznik z noty"/> + <button label="WyÅ›lij" label_selected="WyÅ›lij" name="send_notice"/> + <group_drop_target name="drop_target" tool_tip="PrzeciÄ…gnij zaÅ‚Ä…cznik ze swojej Szafy na pole docelowe aby wysÅ‚ać go z OgÅ‚oszeniem. Musisz posiadać prawo do kopiowania i transferu zaÅ‚Ä…cznika aby go dodać do ogÅ‚oszenia."/> </panel> - <panel label="Zobacz PrzeszÅ‚e OgÅ‚oszenia" name="panel_view_past_notice"> + <panel label="Zobacz przeszÅ‚e OgÅ‚oszenia" name="panel_view_past_notice"> <text name="lbl"> - OgÅ‚oszenia Zachowane + OgÅ‚oszenia zachowane </text> <text name="lbl2"> - By wysÅ‚ać nowe ogÅ‚oszenie, kliknij Stwórz Nowe OgÅ‚oszenie. + W celu wysÅ‚ania nowego ogÅ‚oszenia kliknij przycisk + </text> <text name="lbl3"> Temat: @@ -60,7 +54,6 @@ Limit dzienny ogÅ‚oszeÅ„ dla grupy wynosi 200. <text name="lbl4"> Treść: </text> - <button label="Otwórz ZaÅ‚Ä…cznik" label_selected="Otwórz ZaÅ‚Ä…cznik" - name="open_attachment" /> + <button label="Otwórz ZaÅ‚Ä…cznik" label_selected="Otwórz ZaÅ‚Ä…cznik" name="open_attachment"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_notify.xml b/indra/newview/skins/default/xui/pl/panel_group_notify.xml new file mode 100644 index 0000000000000000000000000000000000000000..d81c3f68f2b2700ec8071099303404a7221b2f22 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_group_notify.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="instant_message" name="panel_group_notify"> + <panel label="header" name="header"> + <text name="title" value="ImiÄ™ Nadawcy / Nazwa Grupy"/> + </panel> + <text name="attachment" value="ZaÅ‚Ä…cznik"/> + <button label="OK" name="btn_ok"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_roles.xml b/indra/newview/skins/default/xui/pl/panel_group_roles.xml index 6a0cbbd23a47876459dd46058b88dae340ca7bfd..8a422e2586bc7f0e30e87490fa64c265b0e82620 100644 --- a/indra/newview/skins/default/xui/pl/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_roles.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="CzÅ‚onkowie" name="roles_tab"> <panel.string name="default_needs_apply_text"> - ZakÅ‚adka zawiera niezapisane zmiany + Panel zawiera niezapisane zmiany. </panel.string> <panel.string name="want_apply_text"> Czy chcesz zapisać zmiany? @@ -57,7 +57,7 @@ Istnieje wiele Przywilei. </tab_container> <panel name="members_footer"> <text name="static"> - Przypisani CzÅ‚onkowie + Przywileje </text> <scroll_list name="member_assigned_roles"> <scroll_list.columns label="" name="checkbox"/> diff --git a/indra/newview/skins/default/xui/pl/panel_im_control_panel.xml b/indra/newview/skins/default/xui/pl/panel_im_control_panel.xml new file mode 100644 index 0000000000000000000000000000000000000000..ffd75994cb6141f191bed844866f6f5235acea65 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_im_control_panel.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_im_control_panel"> + <layout_stack name="button_stack"> + <layout_panel name="view_profile_btn_panel"> + <button label="Profil" name="view_profile_btn"/> + </layout_panel> + <layout_panel name="add_friend_btn_panel"> + <button label="Poznaj" name="add_friend_btn"/> + </layout_panel> + <layout_panel name="teleport_btn_panel"> + <button label="Teleportuj" name="teleport_btn" tool_tip="Teleportuj"/> + </layout_panel> + <layout_panel name="share_btn_panel"> + <button label="UdostÄ™pnij" name="share_btn"/> + </layout_panel> + <layout_panel name="pay_btn_panel"> + <button label="ZapÅ‚ać" name="pay_btn"/> + </layout_panel> + <layout_panel name="call_btn_panel"> + <button label="DzwoÅ„" name="call_btn"/> + </layout_panel> + <layout_panel name="end_call_btn_panel"> + <button label="ZakoÅ„cz RozmowÄ™" name="end_call_btn"/> + </layout_panel> + <layout_panel name="voice_ctrls_btn_panel"> + <button label="PrzeÅ‚Ä…czniki GÅ‚osu" name="voice_ctrls_btn"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_landmark_info.xml b/indra/newview/skins/default/xui/pl/panel_landmark_info.xml index dc73d08680922c236464eba048a6862b1cc1152f..64479176fa184e3c2f34b6831d48ea1e39fd7908 100644 --- a/indra/newview/skins/default/xui/pl/panel_landmark_info.xml +++ b/indra/newview/skins/default/xui/pl/panel_landmark_info.xml @@ -18,6 +18,7 @@ <string name="acquired_date"> [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] </string> + <button name="back_btn" tool_tip="Cofnij"/> <text name="title" value="Profil Miejsca"/> <scroll_container name="place_scroll"> <panel name="scrolling_panel"> diff --git a/indra/newview/skins/default/xui/pl/panel_landmarks.xml b/indra/newview/skins/default/xui/pl/panel_landmarks.xml new file mode 100644 index 0000000000000000000000000000000000000000..dcc495b5a814ea5539879563dbfac49105d552e7 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_landmarks.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="Landmarks"> + <accordion name="landmarks_accordion"> + <accordion_tab name="tab_favorites" title="Ulubione"/> + <accordion_tab name="tab_landmarks" title="Landmarki"/> + <accordion_tab name="tab_inventory" title="Moja Szafa"/> + <accordion_tab name="tab_library" title="Biblioteka"/> + </accordion> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Pokaż dodatkowe opcje"/> + <button name="add_btn" tool_tip="Dodaj nowy landmark"/> + <dnd_button name="trash_btn" tool_tip="UsuÅ„ zaznaczony landmark"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_login.xml b/indra/newview/skins/default/xui/pl/panel_login.xml index 42088eae28a1e62c1a1bbff8451fef753a9cbc89..6b0061926b6e5d1d813e96fbcb1c8f5483856360 100644 --- a/indra/newview/skins/default/xui/pl/panel_login.xml +++ b/indra/newview/skins/default/xui/pl/panel_login.xml @@ -13,7 +13,7 @@ </text> <line_editor label="ImiÄ™" name="first_name_edit" tool_tip="[SECOND_LIFE] First Name"/> <line_editor label="Nazwisko" name="last_name_edit" tool_tip="[SECOND_LIFE] Last Name"/> - <check_box label="ZapamiÄ™taj hasÅ‚o" name="remember_check"/> + <check_box label="ZapamiÄ™taj HasÅ‚o" name="remember_check"/> <text name="start_location_text"> Rozpocznij w: </text> diff --git a/indra/newview/skins/default/xui/pl/panel_main_inventory.xml b/indra/newview/skins/default/xui/pl/panel_main_inventory.xml index e34fd6967126ce13fedbcb26a05ccc0ecf2d36c3..e0d9def8b32810d4d76371d13664494585a52110 100644 --- a/indra/newview/skins/default/xui/pl/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/pl/panel_main_inventory.xml @@ -1,26 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Rzeczy" name="main inventory panel"> - <panel.string name="Title"> - Rzeczy + <panel.string name="ItemcountFetching"> + Dostarczanie [ITEM_COUNT] obiektów... [FILTER] </panel.string> - <filter_editor label="Filtr" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Wszystkie Obiekty" name="All Items"/> - <inventory_panel label="Ostatnio Dodane Obiekty" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Pokaż dodatkowe opcje"/> - <button name="add_btn" tool_tip="Dodaj nowy obiekt"/> - <dnd_button name="trash_btn" tool_tip="UsuÅ„ wybrany obiekt"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] obiekty [FILTER] + </panel.string> + <text name="ItemcountText"> + Obiekty: + </text> <menu_bar name="Inventory Menu"> <menu label="Plik" name="File"> <menu_item_call label="Otwórz" name="Open"/> <menu label="ZaÅ‚aduj" name="upload"> - <menu_item_call label="Obraz (L$[COST])..." name="Upload Image"/> - <menu_item_call label="DźwiÄ™k (L$[COST])..." name="Upload Sound"/> - <menu_item_call label="AnimacjÄ™ (L$[COST])..." name="Upload Animation"/> - <menu_item_call label="Zbiór Plików (L$[COST] za jeden plik)..." name="Bulk Upload"/> + <menu_item_call label="obraz (L$[COST])..." name="Upload Image"/> + <menu_item_call label="dźwiÄ™k (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="animacjÄ™ (L$[COST])..." name="Upload Animation"/> + <menu_item_call label="zbiór plików (L$[COST] za jeden plik)..." name="Bulk Upload"/> </menu> <menu_item_call label="Nowe Okno" name="New Window"/> <menu_item_call label="Pokaż Filtry" name="Show Filters"/> @@ -30,35 +26,45 @@ <menu_item_call label="Opróżnij Folder Zgubione i Znalezione" name="Empty Lost And Found"/> </menu> <menu label="Stwórz" name="Create"> - <menu_item_call label="Nowy Folder" name="New Folder"/> - <menu_item_call label="Nowy Skrypt" name="New Script"/> - <menu_item_call label="NowÄ… NotÄ™" name="New Note"/> - <menu_item_call label="NowÄ… GesturkÄ™" name="New Gesture"/> + <menu_item_call label="Nowy folder" name="New Folder"/> + <menu_item_call label="Nowy skrypt" name="New Script"/> + <menu_item_call label="Nowa nota" name="New Note"/> + <menu_item_call label="Nowy gest" name="New Gesture"/> <menu label="Nowe Ubranie" name="New Clothes"> - <menu_item_call label="NowÄ… KoszulkÄ™" name="New Shirt"/> - <menu_item_call label="Nowe Spodnie" name="New Pants"/> - <menu_item_call label="Nowe Buty" name="New Shoes"/> - <menu_item_call label="Nowe Skarpetki" name="New Socks"/> - <menu_item_call label="NowÄ… KurtkÄ™" name="New Jacket"/> - <menu_item_call label="NowÄ… SpódnicÄ™" name="New Skirt"/> - <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves"/> - <menu_item_call label="Nowy Podkoszulek" name="New Undershirt"/> - <menu_item_call label="NowÄ… BieliznÄ™" name="New Underpants"/> - <menu_item_call label="Nowe Ubranie Przezroczyste" name="New Alpha"/> - <menu_item_call label="Nowy Tatuaż" name="New Tattoo"/> + <menu_item_call label="NowÄ… kkoszulkÄ™" name="New Shirt"/> + <menu_item_call label="Nowe spodnie" name="New Pants"/> + <menu_item_call label="Nowe buty" name="New Shoes"/> + <menu_item_call label="Nowe skarpetki" name="New Socks"/> + <menu_item_call label="NowÄ… kurtkÄ™" name="New Jacket"/> + <menu_item_call label="NowÄ… spódnicÄ™" name="New Skirt"/> + <menu_item_call label="Nowe rÄ™kawiczki" name="New Gloves"/> + <menu_item_call label="Nowy podkoszulek" name="New Undershirt"/> + <menu_item_call label="NowÄ… bieliznÄ™" name="New Underpants"/> + <menu_item_call label="Nowe ubranie Alpha" name="New Alpha"/> + <menu_item_call label="Nowy tatuaż" name="New Tattoo"/> </menu> <menu label="NowÄ… Część CiaÅ‚a" name="New Body Parts"> - <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape"/> - <menu_item_call label="NowÄ… SkórkÄ™" name="New Skin"/> - <menu_item_call label="Nowe WÅ‚osy" name="New Hair"/> - <menu_item_call label="Nowe Oczy" name="New Eyes"/> + <menu_item_call label="Nowy ksztaÅ‚t" name="New Shape"/> + <menu_item_call label="NowÄ… skórkÄ™" name="New Skin"/> + <menu_item_call label="Nowe wÅ‚osy" name="New Hair"/> + <menu_item_call label="Nowe oczy" name="New Eyes"/> </menu> </menu> <menu label="UporzÄ…dkuj" name="Sort"> - <menu_item_check label="WegÅ‚ug Nazwy" name="By Name"/> - <menu_item_check label="WedÅ‚ug Daty" name="By Date"/> + <menu_item_check label="WegÅ‚ug bazwy" name="By Name"/> + <menu_item_check label="WedÅ‚ug daty" name="By Date"/> <menu_item_check label="Foldery zawsze wedÅ‚ug nazwy" name="Folders Always By Name"/> - <menu_item_check label="Foldery Systemowe od Góry" name="System Folders To Top"/> + <menu_item_check label="Foldery Systemowe od góry" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filtr" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="Wszystkie obiekty" name="All Items"/> + <inventory_panel label="Ostatnio dodane obiekty" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Pokaż dodatkowe opcje"/> + <button name="add_btn" tool_tip="Dodaj nowy obiekt"/> + <dnd_button name="trash_btn" tool_tip="UsuÅ„ wybrany obiekt"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_me.xml b/indra/newview/skins/default/xui/pl/panel_me.xml new file mode 100644 index 0000000000000000000000000000000000000000..72a5f51520c360ef78e7edad4003b5620bdb341a --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_me.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Mój Profil" name="panel_me"> + <tab_container name="tabs"> + <panel label="PROFIL" name="panel_profile"/> + <panel label="ULUBIONE" name="panel_picks"/> + </tab_container> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_media_settings_general.xml b/indra/newview/skins/default/xui/pl/panel_media_settings_general.xml new file mode 100644 index 0000000000000000000000000000000000000000..03b063ddfe230553d781bf45f8818823a22ab149 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_media_settings_general.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Ogólne" name="Media Settings General"> + <text name="home_label"> + Strona Domowa: + </text> + <text name="home_fails_whitelist_label"> + (ta strona nie zostaÅ‚a zaakceptowana przez filtr listy dostÄ™powej) + </text> + <line_editor name="home_url" tool_tip="Strona domowa dla źródla mediów"/> + <text name="preview_label"> + Pokaż + </text> + <text name="current_url_label"> + Obecna Strona: + </text> + <text name="current_url" tool_tip="The current page for this media source" value=""/> + <button label="Zresetuj" name="current_url_reset_btn"/> + <check_box initial_value="false" label="PÄ™tla" name="auto_loop"/> + <check_box initial_value="false" label="Interakcja KlikniÄ™cia" name="first_click_interact"/> + <check_box initial_value="false" label="AutopowiÄ™kszenie" name="auto_zoom"/> + <check_box initial_value="false" label="Automatyczne Odtwarzanie Mediów" name="auto_play"/> + <text name="media_setting_note"> + PamiÄ™taj: Rezydenci mogÄ… zmienić to ustawienie + </text> + <check_box initial_value="false" label="Automatyczne dopasowanie mediów na twarzy lub obiekcie" name="auto_scale"/> + <text name="size_label"> + Rozmiar: + </text> + <text name="X_label"> + X + </text> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_media_settings_permissions.xml b/indra/newview/skins/default/xui/pl/panel_media_settings_permissions.xml index 4d91c3cdc8c636aba5a98300414de560ad1b0cf7..939bcbbb4273eaf49a2bab4f023aa7d9bbed3853 100644 --- a/indra/newview/skins/default/xui/pl/panel_media_settings_permissions.xml +++ b/indra/newview/skins/default/xui/pl/panel_media_settings_permissions.xml @@ -11,10 +11,10 @@ Mini </combo_item> </combo_box> - <check_box initial_value="false" label="Pozwól na NawigacjÄ™ & Interaktywność" name="perms_owner_interact"/> + <check_box initial_value="false" label="Pozwól na nawigacjÄ™ & interaktywność" name="perms_owner_interact"/> <check_box initial_value="false" label="Pokaż Pasek Kontroli" name="perms_owner_control"/> - <check_box initial_value="false" label="Pozwól na NawigacjÄ™ & Interaktywność" name="perms_group_interact"/> + <check_box initial_value="false" label="Pozwól na nawigacjÄ™ & Interaktywność" name="perms_group_interact"/> <check_box initial_value="false" label="Pokaż Pasek Kontroli" name="perms_group_control"/> - <check_box initial_value="false" label="Pozwól na NawigacjÄ™ & Interaktywność" name="perms_anyone_interact"/> + <check_box initial_value="false" label="Pozwól na nawigacjÄ™ & interaktywność" name="perms_anyone_interact"/> <check_box initial_value="false" label="Pokaż Pasek Kontroli" name="perms_anyone_control"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_media_settings_security.xml b/indra/newview/skins/default/xui/pl/panel_media_settings_security.xml new file mode 100644 index 0000000000000000000000000000000000000000..da3142b54efc9b1f7ee5d873e1f2c6c3e2c2f47c --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_media_settings_security.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Ochrona" name="Media Settings Security"> + <check_box initial_value="false" label="DostÄ™p dozwolony tylko dla wybranych URL" name="whitelist_enable"/> + <text name="home_url_fails_some_items_in_whitelist"> + WejÅ›cia na stronÄ™ WWW, które siÄ™ nie powiodÅ‚y sÄ… zaznaczone: + </text> + <button label="Dodaj" name="whitelist_add"/> + <button label="UsuÅ„" name="whitelist_del"/> + <text name="home_url_fails_whitelist"> + UWAGA: WWW wyszczególnione w Ogólne nie przeszÅ‚y BiaÅ‚ej Listy. ZostaÅ‚a ona wyÅ‚Ä…czona dopóki poprawny zapis nie zostanie dodany. + </text> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_my_profile.xml b/indra/newview/skins/default/xui/pl/panel_my_profile.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ca762b8257b93a846cd477f0a627bbb9e79f3c3 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_my_profile.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Profil" name="panel_profile"> + <string name="no_partner_text" value="Å»adne"/> + <string name="no_group_text" value="Å»adne"/> + <string name="RegisterDateFormat"> + [REG_DATE] ([AGE]) + </string> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <panel name="second_life_image_panel"> + <icon label="" name="2nd_life_edit_icon" tool_tip="Kliknij przycisk Edytuj Profil by zmienić zdjÄ™cie"/> + <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> + </panel> + <panel name="first_life_image_panel"> + <icon label="" name="real_world_edit_icon" tool_tip="Kliknij przycisk Edytuj Profil by zmienić zdjÄ™cie"/> + <text name="title_rw_descr_text" value="Å»ycie#1:"/> + </panel> + <text name="title_member_text" value="Urodziny:"/> + <text name="title_acc_status_text" value="Konto:"/> + <text name="title_partner_text" value="Partner:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(przetwarzanie)" name="partner_text"/> + </panel> + <text name="title_groups_text" value="Grupy:"/> + </panel> + </scroll_container> + </layout_panel> + <layout_panel name="profile_me_buttons_panel"> + <button label="Edytuj Profil" name="edit_profile_btn" tool_tip="Edytuj swoje dane"/> + <button label="Edytuj WyglÄ…d" name="edit_appearance_btn" tool_tip="Stwórz/edytuj swój wyglÄ…d: dane fizyczne, ubrania itp."/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_navigation_bar.xml b/indra/newview/skins/default/xui/pl/panel_navigation_bar.xml new file mode 100644 index 0000000000000000000000000000000000000000..b01e686c4193476fddda1f038ecd0c9e369d1112 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_navigation_bar.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="navigation_bar"> + <panel name="navigation_panel"> + <pull_button name="back_btn" tool_tip="Wróć do poprzedniej lokalizacji"/> + <pull_button name="forward_btn" tool_tip="Idź do nastÄ™pnej lokalizacji"/> + <button name="home_btn" tool_tip="Teleportuj do miejsca startu"/> + <location_input label="Lokalizacja" name="location_combo"/> + <search_combo_box label="Szukaj" name="search_combo_box" tool_tip="Szukaj"> + <combo_editor label="Szukaj [SECOND_LIFE]" name="search_combo_editor"/> + </search_combo_box> + </panel> + <favorites_bar name="favorite" tool_tip="PrzeciÄ…gnij swoje landmarki tutaj by szybko dostać siÄ™ do swoich ulubionych miejsc w Second Life!"> + <label name="favorites_bar_label" tool_tip="PrzeciÄ…gnij swoje landmarki tutaj by szybko dostać siÄ™ do swoich ulubionych miejsc w Second Life!"> + Pasek Ulubionych + </label> + <chevron_button name=">>" tool_tip="Pokaż wiÄ™cej Moich Ulubionych"/> + </favorites_bar> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_nearby_chat.xml b/indra/newview/skins/default/xui/pl/panel_nearby_chat.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcecaeabb3812f815c33d4bcd7da304f4207e508 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_nearby_chat.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<!-- All our XML is utf-8 encoded. --> +<panel name="nearby_chat"> + <panel name="chat_caption"> + <text name="sender_name"> + CZAT LOKALNY + </text> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_nearby_chat_bar.xml b/indra/newview/skins/default/xui/pl/panel_nearby_chat_bar.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d1decd9604b7009dcfdefff66cb7872967ee53c --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_nearby_chat_bar.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="chat_bar"> + <string name="min_width"> + 192 + </string> + <string name="max_width"> + 320 + </string> + <line_editor label="Kliknij tutaj aby rozmawiać." name="chat_box" tool_tip="NaciÅ›nij Enter aby mówić, Ctrl + Enter aby krzyknąć"/> + <button name="show_nearby_chat" tool_tip="Pokazuje/ukrywa pobliski Czat"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_nearby_media.xml b/indra/newview/skins/default/xui/pl/panel_nearby_media.xml new file mode 100644 index 0000000000000000000000000000000000000000..a05c0d856fc25a7d242e2fbc1723e31b6dec06ee --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_nearby_media.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="nearby_media"> + <string name="empty_item_text"> + <empty> + </string> + <string name="parcel_media_name"> + StrumieÅ„ Mediów PosiadÅ‚oÅ›ci + </string> + <string name="parcel_audio_name"> + StrumieÅ„ Audio PosiadÅ‚oÅ›ci + </string> + <string name="playing_suffix"> + (odtwarzanie) + </string> + <panel name="minimized_controls"> + <button label="Zatrzymaj" name="all_nearby_media_disable_btn" tool_tip="WyÅ‚Ä…cz wszystkie media w pobliżu"/> + <button label="WÅ‚Ä…cz" name="all_nearby_media_enable_btn" tool_tip="WÅ‚Ä…cz wszystkie media w pobliżu"/> + <button name="open_prefs_btn" tool_tip="Uruchom preferencje medialne"/> + <button label="WiÄ™cej >>" label_selected="Mniej <<" name="more_less_btn" tool_tip="Zaawansowane"/> + </panel> + <panel name="nearby_media_panel"> + <text name="nearby_media"> + Media w pobliżu + </text> + <text name="show"> + Pokaż: + </text> + <combo_box name="show_combo"> + <combo_box.item label="Wszystkie" name="All"/> + <combo_box.item label="Na obecnej Parceli" name="WithinParcel"/> + <combo_box.item label="Poza PosiadÅ‚oÅ›ciÄ…" name="OutsideParcel"/> + <combo_box.item label="Na innych awatarach" name="OnOthers"/> + </combo_box> + <scroll_list name="media_list"> + <scroll_list.columns label="DokÅ‚adność" name="media_proximity"/> + <scroll_list.columns label="Widoczność" name="media_visibility"/> + <scroll_list.columns label="Klasa" name="media_class"/> + <scroll_list.columns label="Nazwa" name="media_name"/> + <scroll_list.columns label="Debugowanie" name="media_debug"/> + </scroll_list> + <panel name="media_controls_panel"> + <layout_stack name="media_controls"> + <layout_panel name="stop"> + <button name="stop_btn" tool_tip="Zatrzymaj wybrane media"/> + </layout_panel> + <layout_panel name="play"> + <button name="play_btn" tool_tip="Odtwarzaj wybrane media"/> + </layout_panel> + <layout_panel name="pause"> + <button name="pause_btn" tool_tip="Zatrzymaj wybrane media"/> + </layout_panel> + <layout_panel name="volume_slider_ctrl"> + <slider_bar initial_value="0.5" name="volume_slider" tool_tip="Regulacja audio dla wybranych mediów"/> + </layout_panel> + <layout_panel name="mute"> + <button name="mute_btn" tool_tip="Wycisz audio wybranych mediów"/> + </layout_panel> + <layout_panel name="zoom"> + <button name="zoom_btn" tool_tip="Przybliż do wybranych mediów"/> + </layout_panel> + <layout_panel name="unzoom"> + <button name="unzoom_btn" tool_tip="Oddal od wybranych mediów"/> + </layout_panel> + </layout_stack> + </panel> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_notes.xml b/indra/newview/skins/default/xui/pl/panel_notes.xml new file mode 100644 index 0000000000000000000000000000000000000000..35cb7e1bce5f23fbd72ca178fa25bf99b4b33824 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_notes.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Notatki & Prywatność" name="panel_notes"> + <layout_stack name="layout"> + <panel name="notes_stack"> + <scroll_container name="profile_scroll"> + <panel name="profile_scroll_panel"> + <text name="status_message" value="Notatki:"/> + <text name="status_message2" value="Pozwól tej osobie na:"/> + <check_box label="Widzenie mojego statusu" name="status_check"/> + <check_box label="Lokalizowanie mnie na mapie" name="map_check"/> + <check_box label="Edytowanie, kasowanie lub zabieranie moich obiektów" name="objects_check"/> + </panel> + </scroll_container> + </panel> + <panel name="notes_buttons_panel"> + <button label="Dodaj do znajomych" name="add_friend" tool_tip="Zaoferuj znajomość Rezydentowi"/> + <button label="IM" name="im" tool_tip="Otwórz wiadomoÅ›ci IM"/> + <button label="DzwoÅ„" name="call" tool_tip="ZadzwoÅ„ do Rezydenta"/> + <button label="Mapa" name="show_on_map_btn" tool_tip="Pokaż Rezydenta na mapie"/> + <button label="Teleportuj" name="teleport" tool_tip="Teleportuj"/> + </panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_online_status.xml b/indra/newview/skins/default/xui/pl/panel_online_status.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdc489f375ec6eabd344b633f4fb6eb00c3ccef3 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_online_status.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="friend_online_status" name="friend_online_status"/> diff --git a/indra/newview/skins/default/xui/pl/panel_online_status_toast.xml b/indra/newview/skins/default/xui/pl/panel_online_status_toast.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdc489f375ec6eabd344b633f4fb6eb00c3ccef3 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_online_status_toast.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="friend_online_status" name="friend_online_status"/> diff --git a/indra/newview/skins/default/xui/pl/panel_outfits_inventory.xml b/indra/newview/skins/default/xui/pl/panel_outfits_inventory.xml index 162df37e5257183caf0f195cbbce028da9650f04..5e7fd46754f05e2018b9c5b248be091fe6f33cbc 100644 --- a/indra/newview/skins/default/xui/pl/panel_outfits_inventory.xml +++ b/indra/newview/skins/default/xui/pl/panel_outfits_inventory.xml @@ -1,7 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="Outfits"> - <accordion name="outfits_accordion"> - <accordion_tab name="tab_cof" title="Aktualne Ubranie"/> - <accordion_tab name="tab_outfits" title="Moje Ubrania"/> - </accordion> +<panel label="Rzeczy" name="Outfits"> + <tab_container name="appearance_tabs"> + <inventory_panel label="MOJE UBRANIA" name="outfitslist_tab"/> + <inventory_panel label="ZAÅOÅ»ONE" name="cof_tab"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Pokaż opcje dodatkowe"/> + <dnd_button name="trash_btn" tool_tip="UsuÅ„ zaznaczony obiekt"/> + <button label="Zapisz Ubranie" name="make_outfit_btn" tool_tip="Zapisz wyglÄ…d jako ubranie"/> + <button label="Ubierz" name="wear_btn" tool_tip="Ubierz wybrany obiekt"/> + <button label="M" name="look_edit_btn"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_outfits_inventory_gear_default.xml b/indra/newview/skins/default/xui/pl/panel_outfits_inventory_gear_default.xml new file mode 100644 index 0000000000000000000000000000000000000000..5b77c390ca086677d9b596a3de48c60bef534b63 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_outfits_inventory_gear_default.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="menu_gear_default"> + <menu_item_call label="ZastÄ…p Obecne Ubranie" name="wear"/> + <menu_item_call label="Dodaj do Obecnego Ubrania" name="add"/> + <menu_item_call label="UsuÅ„ z Obecnego Ubrania" name="remove"/> + <menu_item_call label="ZmieÅ„ nazwÄ™" name="rename"/> + <menu_item_call label="UsuÅ„ Link" name="remove_link"/> + <menu_item_call label="UsuÅ„ Ubranie" name="delete"/> +</menu> diff --git a/indra/newview/skins/default/xui/pl/panel_people.xml b/indra/newview/skins/default/xui/pl/panel_people.xml index ff65cd2abbdef4417c6ef96549bbc8d8e23f0c0c..5ea5356c60c62b75de522460b9cbd1d95d613f32 100644 --- a/indra/newview/skins/default/xui/pl/panel_people.xml +++ b/indra/newview/skins/default/xui/pl/panel_people.xml @@ -3,17 +3,18 @@ <panel label="Ludzie" name="people_panel"> <string name="no_people" value="Brak ludzi"/> <string name="no_one_near" value="Nikogo w pobliżu"/> - <string name="no_friends_online" value="Brak dostÄ™pnych przyjaciół"/> - <string name="no_friends" value="Brak przyjaciół"/> - <string name="no_groups" value="Brak grup"/> + <string name="no_friends_online" value="Brak dostÄ™pnych Znajomych"/> + <string name="no_friends" value="Brak Znajomych"/> <string name="people_filter_label" value="Filtruj Ludzi"/> <string name="groups_filter_label" value="Filtruj Grupy"/> + <string name="no_filtered_groups_msg" value="[secondlife:///app/search/groups Może spróbuj odnaleźć GrupÄ™ korzystajÄ…c z Szukaj?]"/> + <string name="no_groups_msg" value="[secondlife:///app/search/groups Spróbuj wyszukać grupy aby do nich doÅ‚Ä…czyć.]"/> <filter_editor label="Filtr" name="filter_input"/> <tab_container name="tabs"> <panel label="W POBLIÅ»U" name="nearby_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="nearby_view_sort_btn" tool_tip="Opcje"/> - <button name="add_friend_btn" tool_tip="Dodaj wybranych Rezydentów do swojej listy znajomych"/> + <button name="add_friend_btn" tool_tip="Dodaj wybranego Rezydenta do Znajomych"/> </panel> </panel> <panel label="ZNAJOMI" name="friends_panel"> @@ -26,6 +27,10 @@ <button name="add_btn" tool_tip="Zaproponuj znajomość"/> <button name="del_btn" tool_tip="UsuÅ„ wybranÄ… osobÄ™ ze swojej listy znajomych"/> </panel> + <text name="no_friends_msg"> + By dodać nowÄ… znajomość skorzystaj ze strony [secondlife:///app/search/people ogólne wyszukiwanie] lub kliknij prawym przyciskiem myszki na Rezydenta by wysÅ‚ać mu zaproszenie. +Jeżeli szukasz ludzi, z którymi można siÄ™ spotkać, kliknij tutaj [secondlife:///app/worldmap skorzystaj z mapy]. + </text> </panel> <panel label="GRUPY" name="groups_panel"> <panel label="bottom_panel" name="bottom_panel"> @@ -37,17 +42,18 @@ <panel label="OSTATNIE" name="recent_panel"> <panel label="bottom_panel" name="bottom_panel"> <button name="recent_viewsort_btn" tool_tip="Opcje"/> - <button name="add_friend_btn" tool_tip="Zaproponuj znajomość"/> + <button name="add_friend_btn" tool_tip="Dodaj wybranego Rezydenta do Znajomych"/> </panel> </panel> </tab_container> <panel name="button_bar"> - <button label="Profil" name="view_profile_btn" tool_tip="Pokaż grafiki, grupy oraz inne informacje dostÄ™pne o Rezydentach"/> + <button label="Profil" name="view_profile_btn" tool_tip="Pokaż zdjÄ™cie, grupy i inne informacje o Rezydencie"/> <button label="IM" name="im_btn" tool_tip="Rozpocznij rozmowÄ™ prywatnÄ… (IM)"/> <button label="ZadzwoÅ„" name="call_btn" tool_tip="ZadzwoÅ„ do tego Rezydenta"/> <button label="Podziel siÄ™" name="share_btn"/> <button label="Teleportuj" name="teleport_btn" tool_tip="Zaproponuj teleportacjÄ™"/> <button label="Profil grupy" name="group_info_btn" tool_tip="Pokaż informacje o grupie"/> <button label="Konferencja Grupowa" name="chat_btn" tool_tip="Rozpocznij konferencÄ™"/> + <button label="Rozmowa GÅ‚osowa" name="group_call_btn" tool_tip="Rozmowa GÅ‚osowa w tej Grupie"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_pick_info.xml b/indra/newview/skins/default/xui/pl/panel_pick_info.xml new file mode 100644 index 0000000000000000000000000000000000000000..0454ecc430fb5ebfb568dc4d5583a5583de7c9de --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_pick_info.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_pick_info"> + <text name="title" value="Info o Ulubionych"/> + <scroll_container name="profile_scroll"> + <panel name="scroll_content_panel"> + <text name="pick_name" value="[name]"/> + <text name="pick_location" value="[loading...]"/> + <text name="pick_desc" value="[description]"/> + </panel> + </scroll_container> + <panel name="buttons"> + <button label="Teleportuj" name="teleport_btn"/> + <button label="Mapa" name="show_on_map_btn"/> + <button label="Edytuj" name="edit_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_place_profile.xml b/indra/newview/skins/default/xui/pl/panel_place_profile.xml new file mode 100644 index 0000000000000000000000000000000000000000..3714a141db89182bd7df7ee5a06b23a7050da8a9 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_place_profile.xml @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="place_profile"> + <string name="on" value="WÅ‚Ä…cz"/> + <string name="off" value="WyÅ‚Ä…cz"/> + <string name="anyone" value="Każdy"/> + <string name="available" value="dostÄ™pny"/> + <string name="allocated" value="przydzielony"/> + <string name="title_place" value="Profil Miejsca"/> + <string name="title_teleport_history" value="Historia teleportacji"/> + <string name="not_available" value="(brak)"/> + <string name="unknown" value="(nieznany)"/> + <string name="public" value="(publiczny)"/> + <string name="none_text" value="(żaden)"/> + <string name="sale_pending_text" value="(Sprzedaż w Toku Realizacji)"/> + <string name="group_owned_text" value="(WÅ‚asność Grupy)"/> + <string name="price_text" value="L$"/> + <string name="area_text" value="m²"/> + <string name="all_residents_text" value="Każdemu"/> + <string name="group_text" value="Grupie"/> + <string name="can_resell"> + PosiadÅ‚ość zakupiona w tym regionie może być odsprzedana. + </string> + <string name="can_not_resell"> + PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. + </string> + <string name="can_change"> + PosiadÅ‚ość zakupiona w tym regionie może być Å‚Ä…czona/dzielona. + </string> + <string name="can_not_change"> + PosiadÅ‚ość zakupiona w tym regionie nie może być Å‚Ä…czona/dzielona. + </string> + <string name="server_update_text"> + Informacje o tym miejscu nie bÄ™dÄ… dostÄ™pne bez aktualizacji serwera. + </string> + <string name="server_error_text"> + Informacje o tym miejscu sÄ… obecnie niedostÄ™pne, spróbuj później. + </string> + <string name="server_forbidden_text"> + DostÄ™p do informacji o tym miejscu jest ograniczony. Zweryfikuj swoje przywileje z wÅ‚aÅ›cicielem posiadÅ‚oÅ›ci. + </string> + <string name="acquired_date"> + [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] + </string> + <button name="back_btn" tool_tip="Cofnij"/> + <text name="title" value="Profil Miejsca"/> + <scroll_container name="place_scroll"> + <panel name="scrolling_panel"> + <text name="owner_label" value="WÅ‚aÅ›ciciel:"/> + <text name="maturity_value" value="nieznany"/> + <accordion name="advanced_info_accordion"> + <accordion_tab name="parcel_characteristics_tab" title="PosiadÅ‚ość"> + <panel name="parcel_characteristics_panel"> + <text name="rating_label" value="Rodzaj:"/> + <text name="rating_value" value="nieznane"/> + <text name="voice_label" value="Komunikacja GÅ‚osowa:"/> + <text name="voice_value" value="WÅ‚Ä…czone"/> + <text name="fly_label" value="Lataj:"/> + <text name="fly_value" value="WÅ‚Ä…czone"/> + <text name="push_label" value="PopchniÄ™cia:"/> + <text name="push_value" value="WyÅ‚Ä…czone"/> + <text name="build_label" value="Budowanie:"/> + <text name="build_value" value="WÅ‚Ä…czone"/> + <text name="scripts_label" value="Skrypty:"/> + <text name="scripts_value" value="WÅ‚Ä…czone"/> + <text name="damage_label" value="Zniszczenia:"/> + <text name="damage_value" value="WyÅ‚Ä…czone"/> + <button label="O PosiadÅ‚oÅ›ci" name="about_land_btn"/> + </panel> + </accordion_tab> + <accordion_tab name="region_information_tab" title="Region"> + <panel name="region_information_panel"> + <text name="region_name_label" value="Region:"/> + <text name="region_name" value="Mooseland"/> + <text name="region_type_label" value="Typ:"/> + <text name="region_type" value="Moose"/> + <text name="region_rating_label" value="Rodzaj:"/> + <text name="region_rating" value="Adult"/> + <text name="region_owner_label" value="WÅ‚aÅ›ciciel:"/> + <text name="region_owner" value="moose Van Moose"/> + <text name="region_group_label" value="Grupa:"/> + <text name="region_group"> + The Mighty Moose of mooseville soundvillemoose + </text> + <button label="Region/MajÄ…tek" name="region_info_btn"/> + </panel> + </accordion_tab> + <accordion_tab name="estate_information_tab" title="MajÄ…tek"> + <panel name="estate_information_panel"> + <text name="estate_name_label" value="MajÄ…tek:"/> + <text name="estate_rating_label" value="Rodzaj:"/> + <text name="estate_owner_label" value="WÅ‚aÅ›ciciel:"/> + <text name="covenant_label" value="Umowa:"/> + </panel> + </accordion_tab> + <accordion_tab name="sales_tab" title="Na Sprzedaż"> + <panel name="sales_panel"> + <text name="sales_price_label" value="Cena:"/> + <text name="area_label" value="Powierzchnia:"/> + <text name="traffic_label" value="Ruch:"/> + <text name="primitives_label" value="Primy:"/> + <text name="parcel_scripts_label" value="Skrypty:"/> + <text name="terraform_limits_label" value="Ograniczenia terraformingu:"/> + <text name="subdivide_label" value="Podziel/ZÅ‚Ä…cz:"/> + <text name="resale_label" value="Możliwość sprzedaży:"/> + <text name="sale_to_label" value="Na sprzedaż:"/> + </panel> + </accordion_tab> + </accordion> + </panel> + </scroll_container> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_places.xml b/indra/newview/skins/default/xui/pl/panel_places.xml new file mode 100644 index 0000000000000000000000000000000000000000..c7f3f00d98861c27ffd6b0486a759d105ced6ad3 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_places.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Miejsca" name="places panel"> + <string name="landmarks_tab_title" value="MOJE LANDMARKI"/> + <string name="teleport_history_tab_title" value="HISTORIA TELEPORTÓW"/> + <filter_editor label="Filtruj Moje Miejsca" name="Filter"/> + <panel name="button_panel"> + <button label="Teleportuj" name="teleport_btn" tool_tip="Teleportuj do wybranego miejsca"/> + <button label="Mapa" name="map_btn"/> + <button label="Edytuj" name="edit_btn" tool_tip="Edytuj informacje landmarka"/> + <button label="â–¼" name="overflow_btn" tool_tip="Pokaż opcje dodatkowe"/> + <button label="Zamknij" name="close_btn"/> + <button label="Anuluj" name="cancel_btn"/> + <button label="Zapisz" name="save_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/pl/panel_preferences_advanced.xml index c3bd66274b9cb6e3da74b029ed44a77c09bf1bc0..9905bbbc18323422599a0201d6ff01f74d232f2e 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_advanced.xml @@ -1,48 +1,32 @@ <?xml version="1.0" encoding="utf-8"?> -<panel name="advanced"> - <panel.string name="resolution_format"> - [RES_X] x [RES_Y] - </panel.string> +<panel label="Zaawansowane" name="advanced"> <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> - <check_box label="Czat Chmurkowy" name="bubble_text_chat"/> - <color_swatch name="background" tool_tip="Wybierz kolor czatu w chmurce"/> - <slider label="Intensywność" name="bubble_chat_opacity"/> - <text name="AspectRatioLabel1" tool_tip="width / height"> - Proporcje - </text> - <combo_box name="aspect_ratio" tool_tip="width / height"> - <combo_box.item label="4:3 (Standardowy CRT)" name="item1"/> - <combo_box.item label="5:4 (1280x1024 LCD)" name="item2"/> - <combo_box.item label="8:5 (Panoramiczny)" name="item3"/> - <combo_box.item label="16:9 (Panoramiczny)" name="item4"/> - </combo_box> - <check_box label="Automatyczne Wykrywanie" name="aspect_auto_detect"/> - <text name="heading1"> - Kamery: - </text> - <slider label="KÄ…t Widoku" name="camera_fov"/> + <panel.string name="middle_mouse"> + Åšrodkowy klawisz myszki + </panel.string> + <slider label="KÄ…t widoku" name="camera_fov"/> <slider label="OdlegÅ‚ość" name="camera_offset_scale"/> <text name="heading2"> - Automatyczne pozycjonowanie dla: + Automatyczna pozycja dla: </text> <check_box label="Buduj/Edytuj" name="edit_camera_movement" tool_tip="Używaj automatycznego pozycjonowania kamery aktywujÄ…c i deaktywujÄ…c tryb edycji"/> <check_box label="WyglÄ…d" name="appearance_camera_movement" tool_tip="Używaj automatycznego pozycjonowania kamery podczas trybu edycji"/> - <text name="heading3"> - Awatary: - </text> <check_box label="Pokaż w trybie widoku panoramicznego" name="first_person_avatar_visible"/> <check_box label="Aktywacja klawiszy strzaÅ‚ek do poruszania awatarem" name="arrow_keys_move_avatar_check"/> <check_box label="kliknij-kliknij-przytrzymaj, aby uruchomić" name="tap_tap_hold_to_run"/> <check_box label="Poruszaj ustami awatara kiedy używana jest komunikacja gÅ‚osowa" name="enable_lip_sync"/> - <check_box label="Pokaż bÅ‚Ä™dy skryptów" name="show_script_errors"/> + <check_box label="Czat Chmurkowy" name="bubble_text_chat"/> + <slider label="Intensywność" name="bubble_chat_opacity"/> + <color_swatch name="background" tool_tip="Wybierz kolor czatu w chmurce"/> + <check_box label="Pokaż bÅ‚Ä™dy skryptu w:" name="show_script_errors"/> <radio_group name="show_location"> - <radio_item label="W czacie" name="0"/> - <radio_item label="W oknie" name="1"/> + <radio_item label="Czat Lokalny" name="0"/> + <radio_item label="Osobne okno:" name="1"/> </radio_group> - <check_box label="Uruchom tryb mówienia przez mikrofon podczas nasiÅ›niÄ™cia przycisku Mów:" name="push_to_talk_toggle_check" tool_tip="Jeżeli jesteÅ› w trybie mówienia, w celu aktywacji lub deaktywacji swojego mikrofonu wybierz i wyÅ‚Ä…cz przycisk Mów tylko raz. Jeżeli nie jesteÅ› w trybie mówienia, mikrofon przesyÅ‚a Twój gÅ‚os tylko w momencie aktywacji peÅ‚nej przycisku Mów."/> + <check_box label="WÅ‚Ä…cz/WyÅ‚Ä…cz gÅ‚os:" name="push_to_talk_toggle_check" tool_tip="Jeżeli jesteÅ› w trybie mówienia, w celu aktywacji lub deaktywacji swojego mikrofonu wybierz i wyÅ‚Ä…cz przycisk Mów tylko raz. Jeżeli nie jesteÅ› w trybie mówienia, mikrofon przesyÅ‚a Twój gÅ‚os tylko w momencie aktywacji peÅ‚nej przycisku Mów."/> <line_editor label="NaciÅ›nij Mów by rozpocząć komunikacjÄ™ gÅ‚osowÄ…" name="modifier_combo"/> <button label="wybierz Klawisz" name="set_voice_hotkey_button"/> - <button label="Åšrodkowy Przycisk Myszki" name="set_voice_middlemouse_button"/> + <button label="Åšrodkowy Przycisk Myszki" name="set_voice_middlemouse_button" tool_tip="Zresetuj do Å›rodkowego przycisku myszy"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_alerts.xml b/indra/newview/skins/default/xui/pl/panel_preferences_alerts.xml index 7195c30f20ff6e43bbd8ddd226babd2f0664ec15..e843342aa2b5372a14c7e77abddf4aaeccfd007e 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_alerts.xml @@ -4,11 +4,11 @@ Powiadom mnie: </text> <check_box label="Kiedy wydajÄ™ lub otrzymujÄ™ L$" name="notify_money_change_checkbox"/> - <check_box label="Kiedy moi znajomi siÄ™ logujÄ… lub wylogowujÄ…" name="friends_online_notify_checkbox"/> + <check_box label="Kiedy moi Znajomi zalogowujÄ… siÄ™ i wylogowujÄ…" name="friends_online_notify_checkbox"/> <text name="show_label"> - Zawsze pokazuj te powiadomienia: + Zawsze pokazuj: </text> <text name="dont_show_label"> - Nigdy nie pokazuj tych powiadomieÅ„: + Nie pokazuj: </text> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml b/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml index 5599c216860a53693e04351706b0f1f4630b0187..ae13cf662f615a223453e7e90016a9cb9297bf92 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml @@ -1,10 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Czat/IM" name="chat"> + <text name="font_size"> + Rozmiar czcionki: + </text> <radio_group name="chat_font_size"> - <radio_item label="MaÅ‚a" name="radio"/> - <radio_item label="Åšrednia" name="radio2"/> - <radio_item label="Duża" name="radio3"/> + <radio_item label="MaÅ‚a" name="radio" value="0"/> + <radio_item label="Åšrednia" name="radio2" value="1"/> + <radio_item label="Duża" name="radio3" value="2"/> </radio_group> + <text name="font_colors"> + Kolor czcionki: + </text> <color_swatch label="Ty" name="user"/> <text name="text_box1"> Ja @@ -39,4 +45,14 @@ </text> <check_box initial_value="true" label="Używaj animacji podczas pisania" name="play_typing_animation"/> <check_box label="WysyÅ‚aj wszystkie wiadomoÅ›ci (IM) na mojÄ… skrzynkÄ™ pocztowÄ… kiedy jestem niedostÄ™pny" name="send_im_to_email"/> + <text name="show_ims_in_label"> + Pokaż wiadomoÅ›ci (IM) w: + </text> + <text name="requires_restart_label"> + (restart wymagany) + </text> + <radio_group name="chat_window" tool_tip="Pokaż wiadomoÅ›ci IM osobno lub razem (restart wymagany)"> + <radio_item label="Osobne okna" name="radio" value="0"/> + <radio_item label="Etykiety" name="radio2" value="1"/> + </radio_group> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_general.xml b/indra/newview/skins/default/xui/pl/panel_preferences_general.xml index 97b4975f296401145a7ba2a7aae782b02e50f86c..e7134f23c339a0a13d194bffe95a2e5e081a8cc3 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_general.xml @@ -1,91 +1,67 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Ogólne" name="general_panel"> - <combo_box name="start_location_combo"> - <combo_box.item name="MyHome" tool_tip="DomyÅ›lnie loguj mnie do mojego miejsca startu." label="Mój Start"/> - <combo_box.item name="MyLastLocation" tool_tip="DomyÅ›lnie loguj mnie do ostatnio odwiedzonego miejsca." label="Ostatnie Miejsce"/> - </combo_box> - <check_box label="Pokaż Miejsce Startu podczas Logowania" name="show_location_checkbox"/> - <combo_box name="fade_out_combobox"> - <combo_box.item name="Never" label="Nigdy"/> - <combo_box.item name="Show Temporarily" label="Tymczasowo"/> - <combo_box.item name="Always" label="Zawsze"/> - </combo_box> - <check_box label="Używaj MaÅ‚ych Imion Awatarów" name="small_avatar_names_checkbox"/> - <check_box label="Nie WyÅ›wietlaj Mojego Imienia" name="show_my_name_checkbox"/> - <text name="group_titles_textbox"> - TytuÅ‚y Grupowe: - </text> - <check_box label="Nie WyÅ›wietlaj Å»adnych Tytułów Grupowych" name="show_all_title_checkbox"/> - <check_box label="Nie WyÅ›wietlaj Mojego TytuÅ‚u Grupowego" name="show_my_title_checkbox"/> - <color_swatch label="" name="effect_color_swatch" tool_tip="Selekcja koloru"/> - <text name="UI Size:"> - Wymiar Interfejsu (UI): + <text name="language_textbox"> + JÄ™zyk: </text> - <slider name="ui_scale_slider"/> - <check_box label="Używaj Skali Nizależnej od RozdzielczoÅ›ci" name="ui_auto_scale"/> - <spinner label="Zasypiaj w:" name="afk_timeout_spinner"/> - <check_box label="Powiadamiaj o Wydatkach i Zarobkach (L$)" name="notify_money_change_checkbox"/> - <text name="maturity_desired_label"> - Treść: + <combo_box name="language_combobox"> + <combo_box.item label="DomyÅ›lny" name="System Default Language"/> + <combo_box.item label="English (Angielski)" name="English"/> + <combo_box.item label="Dansk (DuÅ„ski) - Beta" name="Danish"/> + <combo_box.item label="Deutsch (Niemiecki) - Beta" name="Deutsch(German)"/> + <combo_box.item label="Español (HiszpaÅ„ski) - Beta" name="Spanish"/> + <combo_box.item label="Français (Francuski) - Beta" name="French"/> + <combo_box.item label="Italiano (WÅ‚oski) - Beta" name="Italian"/> + <combo_box.item label="Nederlands (Niderlandzki) - Beta" name="Dutch"/> + <combo_box.item label="Polski - Beta" name="Polish"/> + <combo_box.item label="Portugués (Portugalski) - Beta" name="Portugese"/> + <combo_box.item label="日本語 (JapoÅ„ski) - Beta" name="(Japanese)"/> + </combo_box> + <text name="language_textbox2"> + (Restart wymagany) </text> <text name="maturity_desired_prompt"> ChcÄ™ uzyskać dostÄ™p do miejsc zakwalifikowanych jako: </text> + <text name="maturity_desired_textbox"/> <combo_box name="maturity_desired_combobox"> - <combo_box.item name="Desired_Adult" label="'PG', 'Mature' oraz 'Adult'"/> - <combo_box.item name="Desired_Mature" label="'PG' i 'Mature'"/> - <combo_box.item name="Desired_PG" label="'PG'"/> + <combo_box.item label="'PG', 'Mature' oraz 'Adult'" name="Desired_Adult"/> + <combo_box.item label="'PG' i 'Mature'" name="Desired_Mature"/> + <combo_box.item label="'PG'" name="Desired_PG"/> </combo_box> - <text name="maturity_desired_textbox"> - 'PG' - </text> <text name="start_location_textbox"> Miejsce Startu: </text> - <text name="show_names_textbox"> + <combo_box name="start_location_combo"> + <combo_box.item label="Ostatnie Miejsce" name="MyLastLocation" tool_tip="DomyÅ›lnie loguj mnie do ostatnio odwiedzonego miejsca."/> + <combo_box.item label="Mój Start" name="MyHome" tool_tip="DomyÅ›lnie loguj mnie do mojego miejsca startu."/> + </combo_box> + <check_box initial_value="true" label="Pokaż przy zalogowaniu" name="show_location_checkbox"/> + <text name="name_tags_textbox"> Imiona: </text> + <radio_group name="Name_Tag_Preference"> + <radio_item label="WyÅ‚Ä…cz" name="radio" value="0"/> + <radio_item label="WÅ‚Ä…cz" name="radio2" value="1"/> + <radio_item label="Pokaż w skrócie" name="radio3" value="2"/> + </radio_group> + <check_box label="WyÅ›wietl moje imiÄ™:" name="show_my_name_checkbox1"/> + <check_box initial_value="true" label="Używaj MaÅ‚ych Imion Awatarów" name="small_avatar_names_checkbox"/> + <check_box label="WyÅ›wietl TytuÅ‚ Grupowy" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> - Kolor dla Moich Efektów: - </text> - <text name="seconds_textbox"> - sekund - </text> - <text name="crash_report_textbox"> - ZgÅ‚aszanie BÅ‚Ä™dów: - </text> - <text name="language_textbox"> - JÄ™zyk: + Kolor moich efektów: </text> - <text name="language_textbox2"> - (Restart wymagany) + <text name="title_afk_text"> + Zasypiaj w czasie: </text> - <string name="region_name_prompt"> - <Wpisz Region> - </string> - <combo_box name="crash_behavior_combobox"> - <combo_box.item name="Askbeforesending" label="Pytaj przed wysÅ‚aniem"/> - <combo_box.item name="Alwayssend" label="Zawsze wysyÅ‚aj"/> - <combo_box.item name="Neversend" label="Nigdy nie wysyÅ‚aj"/> - </combo_box> - <combo_box name="language_combobox"> - <combo_box.item name="System Default Language" label="DomyÅ›lny"/> - <combo_box.item name="English" label="English (Angielski)"/> - <combo_box.item name="Danish" label="Dansk (DuÅ„ski) - Beta"/> - <combo_box.item name="Deutsch(German)" label="Deutsch (Niemiecki) - Beta"/> - <combo_box.item name="Spanish" label="Español (HiszpaÅ„ski) - Beta"/> - <combo_box.item name="French" label="Français (Francuski) - Beta"/> - <combo_box.item name="Italian" label="Italiano (WÅ‚oski) - Beta"/> - <combo_box.item name="Hungarian" label="Magyar (WÄ™gierski) - Beta"/> - <combo_box.item name="Dutch" label="Nederlands (Niderlandzki) - Beta"/> - <combo_box.item name="Polish" label="Polski - Beta"/> - <combo_box.item name="Portugese" label="Portugués (Portugalski) - Beta"/> - <combo_box.item name="Russian" label="РуÑÑкий (Rosyjski) - Beta"/> - <combo_box.item name="Turkish" label="Türkçe (Turecki) - Beta"/> - <combo_box.item name="Ukrainian" label="УкраїнÑька (UkraiÅ„ski) - Beta"/> - <combo_box.item name="Chinese" label="ä¸æ–‡ (简体) (ChiÅ„ski) - Beta"/> - <combo_box.item name="(Japanese)" label="日本語 (JapoÅ„ski) - Beta"/> - <combo_box.item name="(Korean)" label="í•œêµì–´ (KoreaÅ„ski) - Beta"/> + <color_swatch label="" name="effect_color_swatch" tool_tip="Selekcja koloru"/> + <combo_box label="Czas Trybu Oddalenia:" name="afk"> + <combo_box.item label="2 minuty" name="item0"/> + <combo_box.item label="5 minut" name="item1"/> + <combo_box.item label="10 minut" name="item2"/> + <combo_box.item label="30 minut" name="item3"/> + <combo_box.item label="nigdy" name="item4"/> </combo_box> - <check_box label="JÄ™zyk znany publicznie" name="language_is_public" tool_tip="Pozwala obiektom w Å›wiecie poznać Twój wybór jÄ™zyk."/> + <text name="text_box3"> + Odpowiedź w trybie pracy: + </text> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml index ddd4c736d67b6e78509a4d7b462ced799a9c770e..bc08e025dd6287cbc3eb7cd720c387c659124a2a 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml @@ -1,42 +1,18 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Grafika" name="Display panel"> - <button label="?" name="GraphicsPreferencesHelpButton" /> - <check_box label="Uruchom Second Life w oknie" name="windowed mode" /> - <text_editor name="FullScreenInfo"> - WyÅ‚Ä…czone = klient uruchamiany w trybie peÅ‚noekranowym. - </text_editor> - <text name="WindowSizeLabel"> - Wymiary Okna: + <text name="UI Size:"> + UI rozmiar: </text> - <combo_box name="windowsize combo"> - <combo_box.item name="640x480" label="640x480" /> - <combo_box.item name="800x600" label="800x600" /> - <combo_box.item name="720x480" label="720x480 (NTSC)" /> - <combo_box.item name="768x576" label="768x576 (PAL)" /> - <combo_box.item name="1024x768" label="1024x768" /> - </combo_box> - <text name="DisplayResLabel"> - Rozdzielczość: - </text> - <text name="AspectRatioLabel1" tool_tip="width / height"> - Proporcje: - </text> - <combo_box name="aspect_ratio" tool_tip="width / height"> - <combo_box.item name="4:3(StandardCRT)" label="4:3 (Standardowy CRT)" /> - <combo_box.item name="5:4(1280x1024LCD)" label="5:4 (1280x1024 LCD)" /> - <combo_box.item name="8:5(Widescreen)" label="8:5 (Panoramiczny)" /> - <combo_box.item name="16:9(Widescreen)" label="16:9 (Panoramiczny)" /> - </combo_box> - <check_box label="Detekcja proporcji" name="aspect_auto_detect" /> - <text name="HigherText"> - Jakość i - </text> - <text name="QualityText"> - PrÄ™dkość: + <text name="QualitySpeed"> + Jakość i prÄ™dkość: </text> <text name="FasterText"> PrÄ™dkość </text> + <text name="BetterText"> + Lepiej + </text> + <slider label="" name="QualityPerformanceSelection"/> <text name="ShadersPrefText"> Niska </text> @@ -49,99 +25,82 @@ <text name="ShadersPrefText4"> Super </text> - <text name="HigherText2"> - Wyższa - </text> - <text name="QualityText2"> - Jakość - </text> - <slider label="" name="QualityPerformanceSelection" /> - <check_box label="Zaawansowane" name="CustomSettings" /> - <panel name="CustomGraphics Panel"> - <text name="ShadersText"> - Shadery: - </text> - <check_box label="Mapowanie WypukÅ‚oÅ›ci i PoÅ‚ysk" name="BumpShiny" /> - <check_box label="Podstawowe Shadery" name="BasicShaders" - tool_tip="WyÅ‚Ä…czenie tej opcji może naprawić bÅ‚Ä™dy niektórych sterowników graficznych." /> - <check_box label="Shadery Atmosfery" name="WindLightUseAtmosShaders" /> - <check_box label="Odbicia w Wodzie" name="Reflections" /> - <text name="ReflectionDetailText"> - Ustawienia Odbić: - </text> - <radio_group name="ReflectionDetailRadio"> - <radio_item name="0" label="Teren i Drzewa" /> - <radio_item name="1" label="Obiekty Statyczne" /> - <radio_item name="2" label="Awatary i Obiekty" /> - <radio_item name="3" label="Wszystko" /> - </radio_group> - <text name="AvatarRenderingText"> - Prezentacja Awatarów: - </text> - <check_box label="Impostoryzacja Awatarowa" name="AvatarImpostors" /> - <check_box label="Skinning" name="AvatarVertexProgram" /> - <check_box label="Ubranie Awatarów" name="AvatarCloth" /> - <text name="DrawDistanceMeterText1"> - m - </text> - <text name="DrawDistanceMeterText2"> - m - </text> - <slider label="GÅ‚Ä™bia Rysowania:" name="DrawDistance" /> - <slider label="Liczba CzÄ…steczek:" name="MaxParticleCount" /> - <slider label="Jakość Post-Procesu:" name="RenderPostProcess" /> - <text name="MeshDetailText"> - Szczegóły Meszu: - </text> - <slider label=" Obiekty:" name="ObjectMeshDetail" /> - <slider label=" Elastyczne:" name="FlexibleMeshDetail" /> - <slider label=" Drzewa:" name="TreeMeshDetail" /> - <slider label=" Awatary:" name="AvatarMeshDetail" /> - <slider label=" Teren:" name="TerrainMeshDetail" /> - <slider label=" Niebo:" name="SkyMeshDetail" /> - <text name="PostProcessText"> - MaÅ‚o - </text> - <text name="ObjectMeshDetailText"> - MaÅ‚o - </text> - <text name="FlexibleMeshDetailText"> - MaÅ‚o - </text> - <text name="TreeMeshDetailText"> - MaÅ‚o - </text> - <text name="AvatarMeshDetailText"> - MaÅ‚o - </text> - <text name="TerrainMeshDetailText"> - MaÅ‚o - </text> - <text name="SkyMeshDetailText"> - MaÅ‚o - </text> - <text name="LightingDetailText"> - Ustawienia ÅšwiatÅ‚a: - </text> - <radio_group name="LightingDetailRadio"> - <radio_item name="SunMoon" label="Tylko SÅ‚oÅ„ce i Księżyc" /> - <radio_item name="LocalLights" label="Tylko Bliskie ÅšwiatÅ‚a" /> - </radio_group> - <text name="TerrainDetailText"> - Szczgóły Terenu: - </text> - <radio_group name="TerrainDetailRadio"> - <radio_item name="0" label="MaÅ‚o" /> - <radio_item name="2" label="Dużo" /> - </radio_group> + <panel label="CustomGraphics" name="CustomGraphics Panel"> + <text name="ShadersText"> + Cieniowanie pixeli (shadery): + </text> + <check_box initial_value="true" label="Mapowanie WypukÅ‚oÅ›ci i PoÅ‚ysk" name="BumpShiny"/> + <check_box initial_value="true" label="Podstawowe Shadery" name="BasicShaders" tool_tip="WyÅ‚Ä…czenie tej opcji może naprawić bÅ‚Ä™dy niektórych sterowników graficznych."/> + <check_box initial_value="true" label="Shadery Atmosfery" name="WindLightUseAtmosShaders"/> + <check_box initial_value="true" label="Refleksy w wodzie" name="Reflections"/> + <text name="ReflectionDetailText"> + Ustawienia refleksów: + </text> + <radio_group name="ReflectionDetailRadio"> + <radio_item label="Teren i drzewa" name="0"/> + <radio_item label="Obiekty Statyczne" name="1"/> + <radio_item label="Awatary i Obiekty" name="2"/> + <radio_item label="Wszystko" name="3"/> + </radio_group> + <text name="AvatarRenderingText"> + Rendering awatarów + </text> + <check_box initial_value="true" label="Impostoryzacja Awatarowa" name="AvatarImpostors"/> + <check_box initial_value="true" label="Rendering awatara przez GPU" name="AvatarVertexProgram"/> + <check_box initial_value="true" label="Oddzielne warstwy ubraÅ„" name="AvatarCloth"/> + <slider label="Pole widzenia:" name="DrawDistance"/> + <text name="DrawDistanceMeterText2"> + m + </text> + <slider label="Liczba czÄ…steczek:" name="MaxParticleCount"/> + <slider label="Jakość Post-Procesu:" name="RenderPostProcess"/> + <text name="MeshDetailText"> + Szczególy obiektów: + </text> + <slider label=" Przedmioty:" name="ObjectMeshDetail"/> + <slider label=" Obiekty elastyczne:" name="FlexibleMeshDetail"/> + <slider label=" Drzewa:" name="TreeMeshDetail"/> + <slider label=" Awatary:" name="AvatarMeshDetail"/> + <slider label=" Teren:" name="TerrainMeshDetail"/> + <slider label=" Niebo:" name="SkyMeshDetail"/> + <text name="PostProcessText"> + MaÅ‚o + </text> + <text name="ObjectMeshDetailText"> + MaÅ‚o + </text> + <text name="FlexibleMeshDetailText"> + MaÅ‚o + </text> + <text name="TreeMeshDetailText"> + MaÅ‚o + </text> + <text name="AvatarMeshDetailText"> + MaÅ‚o + </text> + <text name="TerrainMeshDetailText"> + MaÅ‚o + </text> + <text name="SkyMeshDetailText"> + MaÅ‚o + </text> + <text name="LightingDetailText"> + Ustawienia Å›wiateÅ‚: + </text> + <radio_group name="LightingDetailRadio"> + <radio_item label="Tylko SÅ‚oÅ„ce i Księżyc" name="SunMoon" value="0"/> + <radio_item label="Tylko Bliskie ÅšwiatÅ‚a" name="LocalLights" value="1"/> + </radio_group> + <text name="TerrainDetailText"> + Szczegóły terenu: + </text> + <radio_group name="TerrainDetailRadio"> + <radio_item label="Niska" name="0"/> + <radio_item label="Wysoka" name="2"/> + </radio_group> </panel> - <button label="Ustawienia DomyÅ›lne" name="Defaults" /> - <button label="Ustawnia SprzÄ™towe" label_selected="Ustawienia SprzÄ™towe" - name="GraphicsHardwareButton" /> - <panel.string name="resolution_format"> - [RES_X] x [RES_Y] - </panel.string> - <panel.string name="aspect_ratio_text"> - [NUM]:[DEN] - </panel.string> + <button label="Zastosuj" label_selected="Zastosuj" name="Apply"/> + <button label="Zresetuj" name="Defaults"/> + <button label="Zaawansowane" name="Advanced"/> + <button label="SprzÄ™t" label_selected="SprzÄ™t" name="GraphicsHardwareButton"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_privacy.xml b/indra/newview/skins/default/xui/pl/panel_preferences_privacy.xml index d72f13fabd6ac0495404d45b3feb3895f15f0547..9504019f79126ee0b70b65b4928446a4d29b02f7 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_privacy.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_privacy.xml @@ -3,7 +3,7 @@ <panel.string name="log_in_to_change"> Zaloguj siÄ™ ponownie, aby zmienić </panel.string> - <button label="Wyczyść HistoriÄ™" name="clear_cache"/> + <button label="Wyczyść HistoriÄ™" name="clear_cache" tool_tip="Wyczyść obraz zapisu, ostatniej lokalizacji, historii teleportów, stron i bufor danych tekstur"/> <text name="cache_size_label_l"> (Miejsca, obrazy, przeglÄ…darka internetowa, wyszukiwarka historii) </text> @@ -11,7 +11,6 @@ <check_box label="Możliwość wysyÅ‚ania wiadomoÅ›ci prywatnej (IM) oraz rozmowy gÅ‚osowej tylko dla znajomych i grup do których należę" name="voice_call_friends_only_check"/> <check_box label="WyÅ‚Ä…cz mikrofon po zakoÅ„czeniu rozmowy gÅ‚osowej" name="auto_disengage_mic_check"/> <check_box label="Akceptuj Ciasteczka" name="cookies_enabled"/> - <check_box label="Zezwól na Automatyczne Uruchomianie Mediów Strumieniowych" name="autoplay_enabled"/> <text name="Logs:"> Logi: </text> @@ -19,7 +18,7 @@ <check_box label="Zapisuj logi wiadomoÅ›ci prywatnych (IM) na moim komputerze" name="log_instant_messages"/> <check_box label="Pokazuj czas" name="show_timestamps_check_im"/> <text name="log_path_desc"> - Pokazuj miejsce logu + Lokalizacja zapisu: </text> <button label="PrzeglÄ…daj" label_selected="PrzeglÄ…daj" name="log_path_button"/> <button label="Lista Zablokowanych" name="block_list"/> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml b/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml index 1e2289b49632e6d3c020be5fc1618adcd39bae40..f74f4f233326c21fb4b1f4803899eb98e6ceaaed 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml @@ -1,31 +1,50 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Joystick i Kamera" name="Input panel"> - <text name=" Mouselook Options:"> - Widok Panoramiczny: +<panel label="Ustawienia" name="Input panel"> + <button label="Ustawienia Joysticka" name="joystick_setup_button"/> + <text name="Mouselook:"> + Widok panoramiczny: </text> - <text name=" Mouse Sensitivity:"> - CzuÅ‚ość Myszki: + <text name=" Mouse Sensitivity"> + CzuÅ‚ość Myszki </text> - <slider_bar name="mouse_sensitivity"/> - <check_box label="ZamieÅ„ klawisze myszy" name="invert_mouse"/> - <text name=" Auto Fly Options:"> - Automatczne Latanie: + <slider name="mouse_sensitivity"/> + <check_box label="ZmieÅ„ klawisze myszki" name="invert_mouse"/> + <text name="Network:"> + Sieć: </text> - <check_box label="Lataj/LÄ…duj UżywajÄ…c Klawiszy PgUp/PgDn" name="automatic_fly"/> - <text name=" Camera Options:"> - Ustawienia Kamery: + <text name="Maximum bandwidth"> + Maksymalna przepustowość </text> - <text name="camera_fov_label"> - KÄ…t Widoku Kamery: + <text name="text_box2"> + kbps </text> - <text name="Camera Follow Distance:"> - Dystans Kamery: + <check_box label="Port dedykowany dla aplikacji" name="connection_port_enabled"/> + <spinner label="Numer Portu:" name="connection_port"/> + <text name="cache_size_label_l"> + Rozmiar bufora danych </text> - <check_box label="Edycja - Automatyczny Ruch Kamery" name="edit_camera_movement" tool_tip="Używaj automatycznego ustawienia kamery podczas wÅ‚Ä…czania i wyÅ‚Ä…czania trybu edycji"/> - <check_box label="WyglÄ…d - Automatyczny Ruch Kamery" name="appearance_camera_movement" tool_tip="Używaj automatycznego ustawienia kamery w trybu edycji"/> - <text name="text2"> - WyÅ›wietlanie Awatara: + <text name="text_box5"> + MB </text> - <check_box label="Awatar Widoczny w Trybie Panoramicznym" name="first_person_avatar_visible"/> - <button label="Ustawienia Joysticka" name="joystick_setup_button"/> + <text name="Cache location"> + Lokalizacja bufora danych: + </text> + <button label="Ustaw" label_selected="Ustaw" name="set_cache"/> + <button label="Zresetuj" label_selected="Zresetuj" name="reset_cache"/> + <text name="Web:"> + Internet: + </text> + <radio_group name="use_external_browser"> + <radio_item label="Użyj zewnÄ™trznej przeglÄ…darki (IE, Firefox, Safari)" name="external" tool_tip="Używaj zewnÄ™trznej przeglÄ…darki. Nie jest to rekomendowane w trybie peÅ‚noekranowym." value="1"/> + <radio_item label="Używaj wbudowanej przeglÄ…darki." name="internal" tool_tip="Używaj wbudowanej przeglÄ…darki. Ta przeglÄ…darka otworzy nowe okno w [APP_NAME]." value=""/> + </radio_group> + <check_box initial_value="prawda" label="Zezwalaj na wtyczki" name="browser_plugins_enabled"/> + <check_box initial_value="prawda" label="Akceptuj ciasteczka z Internetu" name="cookies_enabled"/> + <check_box initial_value="prawda" label="Zezwalaj na Javascript" name="browser_javascript_enabled"/> + <check_box initial_value="false" label="Używaj Serwera Proxy" name="web_proxy_enabled"/> + <text name="Proxy location"> + Lokalizacja Proxy: + </text> + <line_editor name="web_proxy_editor" tool_tip="Nazwa lub IP proxy, którego chcesz użyć"/> + <spinner label="Numer portu:" name="web_proxy_port"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_sound.xml b/indra/newview/skins/default/xui/pl/panel_preferences_sound.xml index f9b5d221a548a752c7bc44cd9edac4a8db0537fc..b69efeb77e36cd346c094a2064f52e204b8834be 100644 --- a/indra/newview/skins/default/xui/pl/panel_preferences_sound.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_sound.xml @@ -1,14 +1,21 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="DźwiÄ™ki" name="Preference Media panel"> <slider label="Główny" name="System Volume"/> - <check_box initial_value="true" label="Wycisz podczas minimalizacji" name="mute_when_minimized"/> - <slider label="Otoczenie" name="Wind Volume"/> + <check_box initial_value="true" label="Wycisz dzwiÄ™k podczas minimalizacji okna" name="mute_when_minimized"/> <slider label="Interfejs" name="UI Volume"/> + <slider label="Otoczenie" name="Wind Volume"/> + <slider label="Efekty dźwiÄ™kowe" name="SFX Volume"/> + <slider label="Muzyka strumieniowa" name="Music Volume"/> + <check_box label="Odtwarzaj media audio" name="music_enabled"/> <slider label="Media" name="Media Volume"/> - <slider label="Efekty DźwiÄ™kowe" name="SFX Volume"/> - <slider label="Muzyka Strumieniowa" name="Music Volume"/> - <check_box label="GÅ‚os" name="enable_voice_check"/> - <slider label="GÅ‚os" name="Voice Volume"/> + <check_box label="Odtwarzaj media" name="enable_media"/> + <slider label="Komunikacja GÅ‚osowa" name="Voice Volume"/> + <check_box label="Pozwól na rozmowy gÅ‚osowe" name="enable_voice_check"/> + <check_box label="Automatycznie odtwarzaj media" name="media_auto_play_btn" tool_tip="Zaznacz tÄ™ funkcjÄ™ by uruchomić automatyczne uruchamianie mediów" value="prawda"/> + <check_box label="Uruchom media zaÅ‚Ä…czone do innych awatarów" name="media_show_on_others_btn" tool_tip="Odznacz tÄ™ funkcjÄ™ by ukryć media zaÅ‚Ä…czone to awatarów w publiżu" value="prawda"/> + <text name="voice_chat_settings"> + Ustawienia Komunikacji GÅ‚osowej + </text> <text name="Listen from"> Odtwarzaj z: </text> diff --git a/indra/newview/skins/default/xui/pl/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/pl/panel_prim_media_controls.xml new file mode 100644 index 0000000000000000000000000000000000000000..f10ce5ea4d05908627e6287e741e624a427a2dc1 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_prim_media_controls.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="MediaControlsPanel"> + <string name="min_width"> + 300 + </string> + <string name="min_height"> + 75 + </string> + <string name="zoom_medium_padding"> + 1.1 + </string> + <string name="top_world_view_avoid_zone"> + 50 + </string> + <layout_stack name="progress_indicator_area"> + <panel name="media_progress_indicator"> + <progress_bar name="media_progress_bar" tool_tip="Wczytywanie mediów"/> + </panel> + </layout_stack> + <layout_stack name="media_controls"> + <layout_panel name="back"> + <button name="back_btn" tool_tip="Przejdź do poprzedniego"/> + </layout_panel> + <layout_panel name="fwd"> + <button name="fwd_btn" tool_tip="Przejdź do nastÄ™pnego"/> + </layout_panel> + <layout_panel name="home"> + <button name="home_btn" tool_tip="Strona Domowa"/> + </layout_panel> + <layout_panel name="media_stop"> + <button name="media_stop_btn" tool_tip="Zatrzymaj media"/> + </layout_panel> + <layout_panel name="reload"> + <button name="reload_btn" tool_tip="OdÅ›wież"/> + </layout_panel> + <layout_panel name="stop"> + <button name="stop_btn" tool_tip="Zatrzymaj wczytywanie"/> + </layout_panel> + <layout_panel name="play"> + <button name="play_btn" tool_tip="Odtwarzaj Media"/> + </layout_panel> + <layout_panel name="pause"> + <button name="pause_btn" tool_tip="Wstrzymaj media"/> + </layout_panel> + <layout_panel name="media_address"> + <line_editor name="media_address_url" tool_tip="URL Mediów"/> + <layout_stack name="media_address_url_icons"> + <layout_panel> + <icon name="media_whitelist_flag" tool_tip="BiaÅ‚a Lista aktywna"/> + </layout_panel> + <layout_panel> + <icon name="media_secure_lock_flag" tool_tip="Zabezpiecz przeglÄ…danie"/> + </layout_panel> + </layout_stack> + </layout_panel> + <layout_panel name="media_play_position"> + <slider_bar initial_value="0.5" name="media_play_slider" tool_tip="PostÄ™p odtwarzania filmu"/> + </layout_panel> + <layout_panel name="skip_back"> + <button name="skip_back_btn" tool_tip="PrzewiÅ„ do tyÅ‚u"/> + </layout_panel> + <layout_panel name="skip_forward"> + <button name="skip_forward_btn" tool_tip="PrzewiÅ„ do przodu"/> + </layout_panel> + <layout_panel name="media_volume"> + <button name="media_mute_button" tool_tip="Wycisz Media"/> + <slider name="volume_slider" tool_tip="GÅ‚oÅ›ność Mediów"/> + </layout_panel> + <layout_panel name="zoom_frame"> + <button name="zoom_frame_btn" tool_tip="Przybliż do mediów"/> + </layout_panel> + <layout_panel name="close"> + <button name="close_btn" tool_tip="Oddal"/> + </layout_panel> + <layout_panel name="new_window"> + <button name="new_window_btn" tool_tip="Otwórz URL w przeglÄ…darce"/> + </layout_panel> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_profile.xml b/indra/newview/skins/default/xui/pl/panel_profile.xml index 1ff115e0b591df65a9bc95e8fdf3c1d4763e7c66..766ed948227baecd965da328c91e74b295fe52fd 100644 --- a/indra/newview/skins/default/xui/pl/panel_profile.xml +++ b/indra/newview/skins/default/xui/pl/panel_profile.xml @@ -1,37 +1,41 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Profil" name="panel_profile"> <string name="no_partner_text" value="Brak"/> + <string name="no_group_text" value="Å»adne"/> <string name="RegisterDateFormat"> [REG_DATE] ([AGE]) </string> - <scroll_container name="profile_scroll"> - <panel name="scroll_content_panel"> - <panel name="second_life_image_panel"> - <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> - </panel> - <panel name="first_life_image_panel"> - <text name="title_rw_descr_text" value=":"/> - </panel> - <text name="me_homepage_text"> - Strona Domowa: - </text> - <text name="title_member_text" value="CzÅ‚onek od:"/> - <text name="title_acc_status_text" value="Status Konta:"/> - <text name="acc_status_text" value="Rezydent. Brak Danych Konta"/> - <text name="title_partner_text" value="Partner:"/> - <text name="title_groups_text" value="Groupy:"/> - </panel> - </scroll_container> - <panel name="profile_buttons_panel"> - <button label="Dodaj Znajomość" name="add_friend" tool_tip="Dodaj tego Rezydenta do znajomych"/> - <button label="IM" name="im" tool_tip="Rozpocznij rozmowÄ™ prywatnÄ…"/> - <button label="ZadzwoÅ„" name="call" tool_tip="ZadzwoÅ„ do tego Rezydenta"/> - <button label="Mapa" name="show_on_map_btn" tool_tip="Pokaż tego Rezydenta na mapie"/> - <button label="Teleportuj" name="teleport" tool_tip="Zaoferuj TeleportacjÄ™"/> - <button label="â–¼" name="overflow_btn" tool_tip="ZapÅ‚ać lub wyÅ›lij obiekt temu Rezydentowi"/> - </panel> - <panel name="profile_me_buttons_panel"> - <button label="Edytuj Profil" name="edit_profile_btn"/> - <button label="Edytuj WyglÄ…d" name="edit_appearance_btn"/> - </panel> + <layout_stack name="layout"> + <layout_panel name="profile_stack"> + <scroll_container name="profile_scroll"> + <panel name="profile_scroll_panel"> + <panel name="second_life_image_panel"> + <text name="title_sl_descr_text" value="[SECOND_LIFE]:"/> + </panel> + <panel name="first_life_image_panel"> + <text name="title_rw_descr_text" value="Å»ycie#1:"/> + </panel> + <text name="title_member_text" value="Urodziny:"/> + <text name="title_acc_status_text" value="Konto:"/> + <text name="title_partner_text" value="Partner:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(przetwarzanie)" name="partner_text"/> + </panel> + <text name="title_groups_text" value="Grupy:"/> + </panel> + </scroll_container> + </layout_panel> + <layout_panel name="profile_buttons_panel"> + <button label="Poznaj" name="add_friend" tool_tip="Zaoferuj znajomość Rezydentowi"/> + <button label="IM" name="im" tool_tip="Rozpocznij sesjÄ™ czatu (IM)"/> + <button label="DzwoÅ„" name="call" tool_tip="ZadzwoÅ„"/> + <button label="Mapa" name="show_on_map_btn" tool_tip="Pokaż Rezydenta na mapie"/> + <button label="Teleportuj" name="teleport" tool_tip="Teleportuj"/> + <button label="â–¼" name="overflow_btn" tool_tip="ZapÅ‚ać lub udostÄ™pnij obiekty Rezydentowi"/> + </layout_panel> + <layout_panel name="profile_me_buttons_panel"> + <button label="Edytuj Profil" name="edit_profile_btn" tool_tip="Edytuj swoje dane"/> + <button label="Edytuj WyglÄ…d" name="edit_appearance_btn" tool_tip="Stwórz/edytuj swój wyglÄ…d: dane fizyczne, ubranie..."/> + </layout_panel> + </layout_stack> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_profile_view.xml b/indra/newview/skins/default/xui/pl/panel_profile_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..637b278ef2f8a0067f735f74281dfdf4ab4f9c85 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_profile_view.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="panel_target_profile"> + <string name="status_online"> + Obecnie w SL + </string> + <string name="status_offline"> + Nieaktywny + </string> + <text_editor name="user_name" value="(Åadowanie...)"/> + <text name="status" value="Obecnie w SL"/> + <tab_container name="tabs"> + <panel label="PROFIL" name="panel_profile"/> + <panel label="ULUBIONE" name="panel_picks"/> + <panel label="NOTATKI & PRYWATNOŚĆ" name="panel_notes"/> + </tab_container> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_region_covenant.xml b/indra/newview/skins/default/xui/pl/panel_region_covenant.xml index 31b410c931d4d8ea47a999b8c5b827135b756909..2b37dd96b724d0fa0ead8ef7ade73376e512e38e 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_covenant.xml @@ -31,7 +31,7 @@ wszystkich posiadÅ‚oÅ›ciach majÄ…tku. </text> <text bottom_delta="-36" name="covenant_instructions"> - PrzeciÄ…gnij oraz wrzuć notkÄ™ by zmienić umowÄ™ dla tego majÄ…tku. + PrzeciÄ…gnij oraz wrzuć notÄ™ by zmienić umowÄ™ dla tego majÄ…tku. </text> <text name="region_section_lbl"> Region @@ -58,13 +58,13 @@ wszystkich posiadÅ‚oÅ›ciach majÄ…tku. Odsprzedaj: </text> <text left="115" name="resellable_clause" width="350"> - PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. + PosiadÅ‚ość kupiona w tym Regionie nie może być odsprzedana. </text> <text name="changeable_lbl"> Podziel: </text> <text left="115" name="changeable_clause" width="350"> - PosiadÅ‚ość zakupiona w tym regionie nie może być + PosiadÅ‚ość kupiona w tym Regionie nie może być Å‚Ä…czona/dzielona. </text> <string name="can_resell"> diff --git a/indra/newview/skins/default/xui/pl/panel_region_debug.xml b/indra/newview/skins/default/xui/pl/panel_region_debug.xml index fe7b554a13c32adf9625ce6cd0edeade9ff7ef33..c5b08383dcccacab734e57b820fbe839d421094f 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_debug.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_debug.xml @@ -6,15 +6,15 @@ <text name="region_text"> brak danych </text> - <check_box label="Zablokuj Skrypty" name="disable_scripts_check" tool_tip="Zablokuj wszystkie skrypty w tym Regionie"/> + <check_box label="Zablokuj skrypty" name="disable_scripts_check" tool_tip="Zablokuj wszystkie skrypty w tym Regionie"/> <button label="?" name="disable_scripts_help"/> - <check_box label="Zablokuj Kolizje" name="disable_collisions_check" tool_tip="Zablokuj kolizje obiektów (nie Awatarów) w tym Regionie"/> + <check_box label="Zablokuj kolizje" name="disable_collisions_check" tool_tip="Zablokuj kolizje obiektów (nie awatarów) w tym Regionie"/> <button label="?" name="disable_collisions_help"/> - <check_box label="Zablokuj FizykÄ™" name="disable_physics_check" tool_tip="Zablokuj wpÅ‚yw fizyki w tym Regionie"/> + <check_box label="Zablokuj fizykÄ™" name="disable_physics_check" tool_tip="Zablokuj wpÅ‚yw fizyki w tym Regionie"/> <button label="?" name="disable_physics_help"/> <button label="Zastosuj" name="apply_btn"/> <text name="objret_text_lbl"> - Zwrot Obiektu + Zwrot obiektu </text> <text name="resident_text_lbl"> Rezydent: @@ -22,19 +22,19 @@ <line_editor name="target_avatar_name"> (brak) </line_editor> - <button label="Wybierz..." name="choose_avatar_btn"/> + <button label="Wybierz" name="choose_avatar_btn"/> <text name="options_text_lbl"> Opcje: </text> - <check_box label="OdeÅ›lij wyÅ‚Ä…cznie obiekty ze skryptami" name="return_scripts" tool_tip="OdeÅ›lij wyÅ‚Ä…cznie obiekty ze skryptami."/> + <check_box label="Ze skryptami" name="return_scripts" tool_tip="OdeÅ›lij wyÅ‚Ä…cznie obiekty ze skryptami"/> <check_box label="OdeÅ›lij wyÅ‚Ä…cznie obiekty które sÄ… na posiadÅ‚oÅ›ciach innych osób" name="return_other_land" tool_tip="OdeÅ›lij wyÅ‚Ä…cznie obiekty które sÄ… na posiadÅ‚oÅ›ciach innych osób"/> - <check_box label="OdeÅ›lij obiekty z wszystkich regionów w tym majÄ…tku" name="return_estate_wide" tool_tip="OdeÅ›lij obiekty z wszystkich regionów w tym majÄ…tku"/> + <check_box label="W każdym regionie tego majÄ…tku" name="return_estate_wide" tool_tip="OdeÅ›lij obiekty z wszystkich regionów w tym majÄ…tku"/> <button label="OdeÅ›lij" name="return_btn"/> - <button label="Znajdź Główne Kolizje..." name="top_colliders_btn" tool_tip="Lista obiektów doÅ›wiadczajÄ…cych najwiÄ™cej potencjalnych kolizji"/> + <button label="Znajdź główne kolizje..." name="top_colliders_btn" tool_tip="Lista obiektów doÅ›wiadczajÄ…cych najwiÄ™cej potencjalnych kolizji"/> <button label="?" name="top_colliders_help"/> - <button label="Główne Skrypty..." name="top_scripts_btn" tool_tip="Lista obiektów najdÅ‚użej wykonujÄ…cych skrypty"/> + <button label="Główne skrypty..." name="top_scripts_btn" tool_tip="Lista obiektów najdÅ‚użej wykonujÄ…cych skrypty"/> <button label="?" name="top_scripts_help"/> <button label="Restart Regionu" name="restart_btn" tool_tip="Odliczanie i restart Regionu za dwie minuty"/> <button label="?" name="restart_help"/> - <button label="Opóźnij Restart" name="cancel_restart_btn" tool_tip="Opóźnij restart Regionu o godzinÄ™"/> + <button label="Opóźnij restart" name="cancel_restart_btn" tool_tip="Opóźnij restart Regionu o godzinÄ™"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_region_estate.xml b/indra/newview/skins/default/xui/pl/panel_region_estate.xml index 4275f3f6473c42be117e1f4415baf2c10a40b32c..a79627473877e365f688c891916881407456334b 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_estate.xml @@ -1,8 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="MajÄ…tek" name="Estate"> <text name="estate_help_text"> - Zmiany ustawieÅ„ na tej zakÅ‚adce odnoszÄ… siÄ™ -do wszystkich Regionów w tym MajÄ…tku. + Zmiany w tej zakÅ‚adce bÄ™dÄ… odczuwalne w caÅ‚ym Regionie. </text> <text name="estate_text"> MajÄ…tek: @@ -11,24 +10,24 @@ do wszystkich Regionów w tym MajÄ…tku. (brak danych) </text> <text name="owner_text"> - WÅ‚aÅ›ciciel: + WÅ‚aÅ›ciciel MajÄ…tku: </text> <text name="estate_owner"> (brak danych) </text> - <check_box label="Używaj Czasu Åšwiatowego" name="use_global_time_check"/> + <check_box label="Używaj czasu Å›wiatowego" name="use_global_time_check"/> <button label="?" name="use_global_time_help"/> <check_box label="StaÅ‚e SÅ‚oÅ„ce" name="fixed_sun_check"/> <button label="?" name="fixed_sun_help"/> - <slider label="Pora Doby" name="sun_hour_slider"/> - <check_box label="DostÄ™p Publiczny" name="externally_visible_check"/> + <slider label="Pora doby" name="sun_hour_slider"/> + <check_box label="DostÄ™p publiczny" name="externally_visible_check"/> <button label="?" name="externally_visible_help"/> <text name="Only Allow"> - DostÄ™p Ograniczony do: + Ogranicz dostÄ™p dla kont zweryfikowanych przez: </text> - <check_box label="Rezydenci z danymi o koncie" name="limit_payment" tool_tip="Zablokuj niepożądanych Rezydentów."/> - <check_box label="DoroÅ›li ze sprawdzonym wiekiem" name="limit_age_verified" tool_tip="Zablokuj Rezydentów którzy nie zweryfikowali swojego wieku. Dodatkowe informacje pod support.secondlife.com."/> - <check_box label="Rozmowy Dozwolone" name="voice_chat_check"/> + <check_box label="Rezydenci z danymi o koncie" name="limit_payment" tool_tip="Zbanuj niezidentyfikowanych Rezydentów"/> + <check_box label="Rezydenci, którzy dokonali weryfikacji wieku" name="limit_age_verified" tool_tip="Zbanuj Rezydentów, którzy nie zweryfikowali swojego wieku. Odwiedź stronÄ™ [SUPPORT_SITE] po wiÄ™cej informacji."/> + <check_box label="Rozmowy dozwolone" name="voice_chat_check"/> <button label="?" name="voice_chat_help"/> <check_box label="Teleportacja Dozwolona" name="allow_direct_teleport"/> <button label="?" name="allow_direct_teleport_help"/> @@ -41,7 +40,7 @@ do wszystkich Regionów w tym MajÄ…tku. </string> <button label="?" name="abuse_email_address_help"/> <button label="Zastosuj" name="apply_btn"/> - <button label="Wyrzuć Awatara z MajÄ…tku..." name="kick_user_from_estate_btn"/> + <button label="Wyrzuć Rezydenta z MajÄ…tku..." name="kick_user_from_estate_btn"/> <button label="WyÅ›lij Wiadomość do MajÄ…tku..." name="message_estate_btn"/> <text name="estate_manager_label"> ZarzÄ…dcy MajÄ…tku: diff --git a/indra/newview/skins/default/xui/pl/panel_region_general.xml b/indra/newview/skins/default/xui/pl/panel_region_general.xml index 20296dac71e304719f0ede5bebce43e24553ecf9..1410a2a88293772505e3107ec77e16dd13b06151 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_general.xml @@ -18,36 +18,26 @@ <text name="region_type"> nieznany </text> - <check_box label="Zablokuj Zmiany Terenu" name="block_terraform_check"/> - <button label="?" name="terraform_help"/> - <check_box label="Zablokuj Latanie" name="block_fly_check"/> - <button label="?" name="fly_help"/> - <check_box label="Uszkodzenia Dozwolone" name="allow_damage_check"/> - <button label="?" name="damage_help"/> - <check_box label="Zablokuj Popychanie" name="restrict_pushobject"/> - <button label="?" name="restrict_pushobject_help"/> - <check_box label="Odsprzedaż Dozwolona" name="allow_land_resell_check"/> - <button label="?" name="land_resell_help"/> - <check_box label="ÅÄ…czenie/Dzielenie Dozwolone" name="allow_parcel_changes_check"/> - <button label="?" name="parcel_changes_help"/> - <check_box label="Zablokuj Wyszukiwanie" name="block_parcel_search_check" tool_tip="Pozwól na wyÅ›wietlanie nazwy regionu i posiadÅ‚oÅ›ci w wynikach wyszukiwania"/> - <button label="?" name="parcel_search_help"/> + <check_box label="Zablokuj zmiany terenu" name="block_terraform_check"/> + <check_box label="Zablokuj latanie" name="block_fly_check"/> + <check_box label="Uszkodzenia dozwolone" name="allow_damage_check"/> + <check_box label="Zablokuj popychanie" name="restrict_pushobject"/> + <check_box label="Odsprzedaż dozwolona" name="allow_land_resell_check"/> + <check_box label="ÅÄ…czenie/Dzielenie dozwolone" name="allow_parcel_changes_check"/> + <check_box label="Zablokuj wyszukiwanie" name="block_parcel_search_check" tool_tip="Pozwól na wyÅ›wietlanie nazwy regionu i posiadÅ‚oÅ›ci w wynikach wyszukiwania"/> <spinner label="Limit GoÅ›ci" name="agent_limit_spin"/> - <button label="?" name="agent_limit_help"/> - <spinner label="Ekstra Obiekty" name="object_bonus_spin"/> - <button label="?" name="object_bonus_help"/> - <text label="Ograniczenia Wieku" name="access_text"> + <spinner label="Ekstra obiekty" name="object_bonus_spin"/> + <text label="Ograniczenia wieku" name="access_text"> Rodzaj: </text> - <combo_box label="'Mature'" name="access_combo"> - <combo_box.item label="'Adult'" name="Adult"/> - <combo_box.item label="'Mature'" name="Mature"/> - <combo_box.item label="'PG'" name="PG"/> - </combo_box> - <button label="?" name="access_help"/> + <icons_combo_box label="'Mature'" name="access_combo"> + <icons_combo_box.item label="'Adult'" name="Adult" value="42"/> + <icons_combo_box.item label="'Mature'" name="Mature" value="21"/> + <icons_combo_box.item label="'PG'" name="PG" value="13"/> + </icons_combo_box> <button label="Zastosuj" name="apply_btn"/> - <button label="Wyrzuć Awatara..." name="kick_btn"/> - <button label="Wyrzuć Wszystkich..." name="kick_all_btn"/> - <button label="WyÅ›lij Wiadomość do Regionu..." name="im_btn"/> - <button label="ObsÅ‚uga Teleportera..." name="manage_telehub_btn"/> + <button label="Teleportuj do Miejsca Startu jednego Rezydenta..." name="kick_btn"/> + <button label="Teleportuj do Miejsca Startu wszystkich Rezydentów..." name="kick_all_btn"/> + <button label="WyÅ›lij wiadomość do Regionu..." name="im_btn"/> + <button label="ObsÅ‚uga teleportera..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_region_general_layout.xml b/indra/newview/skins/default/xui/pl/panel_region_general_layout.xml new file mode 100644 index 0000000000000000000000000000000000000000..ffa8f1e18ad7cc8b683f67e04473977c06f75fa9 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_region_general_layout.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Region" name="General"> + <text name="region_text_lbl"> + Region: + </text> + <text name="region_text"> + nieznany + </text> + <text name="version_channel_text_lbl"> + Wersja: + </text> + <text name="version_channel_text"> + nieznany + </text> + <text name="region_type_lbl"> + Typ: + </text> + <text name="region_type"> + nieznany + </text> + <check_box label="Zablokuj zmiany terenu" name="block_terraform_check"/> + <check_box label="Zablokuj latanie" name="block_fly_check"/> + <check_box label="Uszkodzenia dozwolone" name="allow_damage_check"/> + <check_box label="Zablokuj popychanie" name="restrict_pushobject"/> + <check_box label="Odsprzedaż dozwolona" name="allow_land_resell_check"/> + <check_box label="ÅÄ…czenie/Dzielenie dozwolone" name="allow_parcel_changes_check"/> + <check_box label="Zablokuj wyszukiwanie" name="block_parcel_search_check" tool_tip="Pozwól na wyÅ›wietlanie nazwy Regionu i PosiadÅ‚oÅ›ci w wynikach wyszukiwania"/> + <spinner label="Limit GoÅ›ci" name="agent_limit_spin"/> + <spinner label="Ekstra obiekty" name="object_bonus_spin"/> + <text label="Restrykcje wieku" name="access_text"> + Rodzaj: + </text> + <combo_box label="Moderuj" name="access_combo"> + <combo_box.item label="Adult" name="Adult"/> + <combo_box.item label="Moderuj" name="Mature"/> + <combo_box.item label="Ogólne" name="PG"/> + </combo_box> + <button label="Zastosuj" name="apply_btn"/> + <button label="Teleportuj do Miejsca Startu jednego Rezydenta..." name="kick_btn"/> + <button label="Teleportuj do Miejsca Startu wszystkich Rezydentów..." name="kick_all_btn"/> + <button label="WyÅ›lij wiadomość do Regionu..." name="im_btn"/> + <button label="ObsÅ‚uga teleportera..." name="manage_telehub_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_region_terrain.xml b/indra/newview/skins/default/xui/pl/panel_region_terrain.xml index b206616e348ae739a801b2f85c8652a569f23b69..917ae917740d4bf7092405897a86f668c4769958 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_terrain.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_terrain.xml @@ -6,22 +6,22 @@ <text name="region_text"> brak danych </text> - <spinner label="Poziom Wody" name="water_height_spin" /> + <spinner label="Poziom wody" name="water_height_spin" /> <button label="?" name="water_height_help" /> - <spinner label="Górny Limit Terenu" name="terrain_raise_spin" /> + <spinner label="Górny limit terenu" name="terrain_raise_spin" /> <button label="?" name="terrain_raise_help" /> - <spinner label="Dolny Limit Terenu" name="terrain_lower_spin" /> + <spinner label="Dolny limit terenu" name="terrain_lower_spin" /> <button label="?" name="terrain_lower_help" /> <check_box label="Używaj SÅ‚oÅ„ca MajÄ…tku" name="use_estate_sun_check" /> <button label="?" name="use_estate_sun_help" /> <check_box label="StaÅ‚e SÅ‚oÅ„ce" name="fixed_sun_check" /> <button label="?" name="fixed_sun_help" /> - <slider label="Pora Doby" name="sun_hour_slider" /> + <slider label="Pora doby" name="sun_hour_slider" /> <button label="Zastosuj" name="apply_btn" /> - <button label="Zapisz Surowy Teren..." name="download_raw_btn" + <button label="Zapisz surowy teren..." name="download_raw_btn" tool_tip="DostÄ™pne tylko dla WÅ‚aÅ›cicieli MajÄ…tku, nie dla ZarzÄ…dców" /> <button label="?" name="download_raw_help" /> - <button label="ZaÅ‚aduj Surowy Teren..." name="upload_raw_btn" + <button label="ZaÅ‚aduj surowy teren..." name="upload_raw_btn" tool_tip="DostÄ™pne tylko dla WÅ‚aÅ›cicieli MajÄ…tku, nie dla ZarzÄ…dców" /> <button label="?" name="upload_raw_help" /> <button label="Ustal Teren" name="bake_terrain_btn" diff --git a/indra/newview/skins/default/xui/pl/panel_region_texture.xml b/indra/newview/skins/default/xui/pl/panel_region_texture.xml index d24579fc7579f0d5fe353c27b17ae6225719b680..156f3db63f6c102f5039fe03c38be4b106265091 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_texture.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Tekstury Gruntu" name="Textures"> <text name="region_text_lbl"> Region: @@ -25,33 +25,33 @@ Zakres Poziomów dla Tekstury </text> <text name="height_text_lbl6"> - PoÅ‚udnie-Zachód + Północny-Zachód </text> <text name="height_text_lbl7"> - Północ-Zachód + Północny-Wschód </text> <text name="height_text_lbl8"> - PoÅ‚udnie-Wschód + PoÅ‚udniowy-Zachód </text> <text name="height_text_lbl9"> - Północ-Wschód - </text> - <spinner label="Dół" name="height_start_spin_0" /> - <spinner label="Dół" name="height_start_spin_1" /> - <spinner label="Dół" name="height_start_spin_2" /> - <spinner label="Dół" name="height_start_spin_3" /> - <spinner label="Góra" name="height_range_spin_0" /> - <spinner label="Góra" name="height_range_spin_1" /> - <spinner label="Góra" name="height_range_spin_2" /> - <spinner label="Góra" name="height_range_spin_3" /> + PoÅ‚udniowy-Wschód + </text> + <spinner label="Dół" name="height_start_spin_0"/> + <spinner label="Dół" name="height_start_spin_1"/> + <spinner label="Dół" name="height_start_spin_2"/> + <spinner label="Dół" name="height_start_spin_3"/> + <spinner label="Góra" name="height_range_spin_0"/> + <spinner label="Góra" name="height_range_spin_1"/> + <spinner label="Góra" name="height_range_spin_2"/> + <spinner label="Góra" name="height_range_spin_3"/> <text name="height_text_lbl10"> WartoÅ›ci reprezentujÄ… zakresy zlewania powyższych tekstur. </text> <text name="height_text_lbl11"> - Wartość DÓÅ, wyrażona w metrach, to MAKSYMALNY poziom dla tekstury #1, + Wartość DÓÅ, wyrażona w metrach, to MAKSYMALNY poziom dla tekstury #1, a wartość GÓRA to MINIMALNY poziom dla tekstury #4. </text> <text name="height_text_lbl12"> a wartość GÓRA to MINIMALNY poziom dla tekstury #4. </text> - <button label="Zastosuj" name="apply_btn" /> + <button label="Zastosuj" name="apply_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_script_limits_my_avatar.xml b/indra/newview/skins/default/xui/pl/panel_script_limits_my_avatar.xml new file mode 100644 index 0000000000000000000000000000000000000000..e1863517a240d4e62dd1d1222f1f665452c3bac1 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_script_limits_my_avatar.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="MÓJ AWATAR" name="script_limits_my_avatar_panel"> + <text name="script_memory"> + Zużycie Skryptów przez Awatara + </text> + <text name="loading_text"> + Åadowanie... + </text> + <scroll_list name="scripts_list"> + <scroll_list.columns label="Rozmiar (kb)" name="size"/> + <scroll_list.columns label="URL" name="urls"/> + <scroll_list.columns label="Nazwa Obiektu" name="name"/> + <scroll_list.columns label="Lokalizacja" name="location"/> + </scroll_list> + <button label="OdÅ›wież listÄ™" name="refresh_list_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_script_limits_region_memory.xml b/indra/newview/skins/default/xui/pl/panel_script_limits_region_memory.xml new file mode 100644 index 0000000000000000000000000000000000000000..1419a9c9f6184764581a70372f9582098783f22a --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_script_limits_region_memory.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="PAMIĘĆ REGIONU" name="script_limits_region_memory_panel"> + <text name="script_memory"> + Pamięć Skryptu Parceli + </text> + <text name="loading_text"> + Åadowanie... + </text> + <scroll_list name="scripts_list"> + <scroll_list.columns label="Rozmiar (kb)" name="size"/> + <scroll_list.columns label="URL" name="urls"/> + <scroll_list.columns label="Nazwa Obiektu" name="name"/> + <scroll_list.columns label="WÅ‚aÅ›ciciel" name="owner"/> + <scroll_list.columns label="Parcela" name="parcel"/> + <scroll_list.columns label="Lokalizacja" name="location"/> + </scroll_list> + <button label="OdÅ›wież listÄ™" name="refresh_list_btn"/> + <button label="Pokaż" name="highlight_btn"/> + <button label="Zwróć" name="return_btn"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_side_tray.xml b/indra/newview/skins/default/xui/pl/panel_side_tray.xml index 369097cd0b5881f44366f32bdaea2b51f74e0c13..f34fd0e108d80ee2569ccaab4bf078e8aca190d6 100644 --- a/indra/newview/skins/default/xui/pl/panel_side_tray.xml +++ b/indra/newview/skins/default/xui/pl/panel_side_tray.xml @@ -2,25 +2,28 @@ <!-- Side tray cannot show background because it is always partially on screen to hold tab buttons. --> <side_tray name="sidebar"> + <sidetray_tab description="PrzeÅ‚Ä…cz Panel Boczny" name="sidebar_openclose" tab_title="PrzeÅ‚Ä…cz Panel Boczny"/> <sidetray_tab description="Miejsce Startu." name="sidebar_home" tab_title="Home"> <panel label="miejsce startu" name="panel_home"/> </sidetray_tab> + <sidetray_tab description="Edytuj swój publiczny profil oraz ulubione zakÅ‚adki." name="sidebar_me" tab_title="My Profile"> + <panel_container name="panel_container"> + <panel label="Ja" name="panel_me"/> + </panel_container> + </sidetray_tab> <sidetray_tab description="Znajdź swoich znajomych, kontakty oraz Rezydentów w pobliżu Ciebie." name="sidebar_people" tab_title="People"> <panel_container name="panel_container"> - <panel label="Info o Grupie" name="panel_group_info_sidetray"/> + <panel label="Grupa" name="panel_group_info_sidetray"/> <panel label="Zablokowani Rezydenci & Obiekty" name="panel_block_list_sidetray"/> </panel_container> </sidetray_tab> <sidetray_tab description="Znajdź i odwiedź miejsca, w których byÅ‚eÅ› wczeÅ›niej." label="Miejsca" name="sidebar_places" tab_title="Places"> <panel label="Miejsca" name="panel_places"/> </sidetray_tab> - <sidetray_tab description="Edytuj swój publiczny profil oraz ulubione zakÅ‚adki." name="sidebar_me" tab_title="My Profile"> - <panel label="Ja" name="panel_me"/> + <sidetray_tab description="PrzeglÄ…daj SzafÄ™." name="sidebar_inventory" tab_title="My Inventory"> + <panel label="Edytuj SzafÄ™" name="sidepanel_inventory"/> </sidetray_tab> <sidetray_tab description="ZmieÅ„ swój obecny wyglÄ…d i ubranie." name="sidebar_appearance" tab_title="My Appearance"> <panel label="Edytuj WyglÄ…d" name="sidepanel_appearance"/> </sidetray_tab> - <sidetray_tab description="PrzeglÄ…daj SzafÄ™." name="sidebar_inventory" tab_title="My Inventory"> - <panel label="Edytuj SzafÄ™" name="sidepanel_inventory"/> - </sidetray_tab> </side_tray> diff --git a/indra/newview/skins/default/xui/pl/panel_side_tray_tab_caption.xml b/indra/newview/skins/default/xui/pl/panel_side_tray_tab_caption.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ae9c1cf618853fd92b5324c5359754d232f6e7c --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_side_tray_tab_caption.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="sidetray_tab_panel"> + <text name="sidetray_tab_title" value="Schowek"/> + <button name="show_help" tool_tip="Pomoc"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_stand_stop_flying.xml b/indra/newview/skins/default/xui/pl/panel_stand_stop_flying.xml index e47a15b67a27b51ac86c9bba659649947e0f9fbc..0f99f3911cea1ced9202e8d340fe7e8fce524760 100644 --- a/indra/newview/skins/default/xui/pl/panel_stand_stop_flying.xml +++ b/indra/newview/skins/default/xui/pl/panel_stand_stop_flying.xml @@ -2,5 +2,5 @@ <!-- Width and height of this panel should be synchronized with "panel_modes" in the floater_moveview.xml--> <panel name="panel_stand_stop_flying"> <button label="WstaÅ„" name="stand_btn" tool_tip="Kliknij tutaj by wstać."/> - <button label="Zatrzymaj Latanie" name="stop_fly_btn" tool_tip="Zatrzymaj Latanie"/> + <button label="Zatrzymaj latanie" name="stop_fly_btn" tool_tip="Zatrzymaj latanie"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_status_bar.xml b/indra/newview/skins/default/xui/pl/panel_status_bar.xml index 9226e67dff0a6a78f5d44c25bbe7918483221cc3..cd2ae14f6ccd75a0e9a8e768ce634b80f4d493f7 100644 --- a/indra/newview/skins/default/xui/pl/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/pl/panel_status_bar.xml @@ -1,39 +1,31 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="status"> - <text name="ParcelNameText" tool_tip="Nazwa posiadÅ‚oÅ›ci w której siÄ™ znajdujesz. Po wiÄ™cej informacji kliknij O PosiadÅ‚oÅ›ci."> - Nazwa PosiadÅ‚oÅ›ci - </text> - <text name="BalanceText" tool_tip="Stan Konta"> - Åadowanie... - </text> - <button label="" label_selected="" name="buycurrency" tool_tip="Kup $L" /> - <text name="TimeText" tool_tip="Obecny Czas (Pacyficzny)"> - 12:00 AM - </text> - <string name="StatBarDaysOfWeek"> + <panel.string name="StatBarDaysOfWeek"> Niedziela:PoniedziaÅ‚ek:Wtorek:Åšroda:Czwartek:PiÄ…tek:Sobota - </string> - <string name="StatBarMonthsOfYear"> + </panel.string> + <panel.string name="StatBarMonthsOfYear"> StyczeÅ„:Luty:Marzec:KwiecieÅ„:Maj:Czerwiec:Lipiec:StyczeÅ„:WrzesieÅ„:Październik:Listopad:GrudzieÅ„ - </string> - <button label="" label_selected="" name="scriptout" tool_tip="BÅ‚Ä™dy i Ostrzeżenia Skryptów" /> - <button label="" label_selected="" name="health" tool_tip="Stan" /> - <text name="HealthText" tool_tip="Stan"> - 100% - </text> - <button label="" label_selected="" name="no_fly" tool_tip="Latanie jest niedozwolone" /> - <button label="" label_selected="" name="no_build" tool_tip="Budowanie/rezzowanie jest niedozwolone" /> - <button label="" label_selected="" name="no_scripts" tool_tip="Używanie skryptów jest niedozwolone" /> - <button label="" label_selected="" name="restrictpush" tool_tip="PochniÄ™cia sÄ… niedozwolone" /> - <button label="" label_selected="" name="status_no_voice" tool_tip="Używanie komunikacji gÅ‚osowej jest niedozwolone" /> - <button label="" label_selected="" name="buyland" tool_tip="Kup tÄ… posiadÅ‚ość" /> - <button label="" name="menubar_search_bevel_bg" /> - <line_editor label="Szukaj" name="search_editor" tool_tip="Szukaj w [SECOND_LIFE]" /> - <button label="" label_selected="" name="search_btn" tool_tip="Szukaj w [SECOND_LIFE]" /> - <string name="packet_loss_tooltip"> - Utracone Pakiety - </string> - <string name="bandwidth_tooltip"> + </panel.string> + <panel.string name="packet_loss_tooltip"> + Utracone pakiety + </panel.string> + <panel.string name="bandwidth_tooltip"> Przepustowość - </string> + </panel.string> + <panel.string name="time"> + [hour12, datetime, slt]:[min, datetime, slt] [ampm, datetime, slt] [timezone,datetime, slt] + </panel.string> + <panel.string name="timeTooltip"> + [weekday, datetime, slt], [day, datetime, slt] [month, datetime, slt] [year, datetime, slt] + </panel.string> + <panel.string name="buycurrencylabel"> + L$ [AMT] + </panel.string> + <button label="" label_selected="" name="buycurrency" tool_tip="Bilans"/> + <button label="Kup" name="buyL" tool_tip="Kliknij aby kupić L$"/> + <text name="TimeText" tool_tip="Obecny Czas (Pacyficzny)"> + 24:00 AM PST + </text> + <button name="media_toggle_btn" tool_tip="Start/Stop Wszystkie Media (Muzyka, Video, WWW)"/> + <button name="volume_btn" tool_tip="Regulacja GÅ‚oÅ›noÅ›ci"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_teleport_history.xml b/indra/newview/skins/default/xui/pl/panel_teleport_history.xml index d88d98f104b584e02d515a387fa099bbee4bdd1f..d143843eaf8ebcd7df3be6db48d10cf28454fc64 100644 --- a/indra/newview/skins/default/xui/pl/panel_teleport_history.xml +++ b/indra/newview/skins/default/xui/pl/panel_teleport_history.xml @@ -4,6 +4,7 @@ <accordion_tab name="today" title="Dzisiaj"/> <accordion_tab name="yesterday" title="Wczoraj"/> <accordion_tab name="2_days_ago" title="2 dni temu"/> + 5 <accordion_tab name="3_days_ago" title="3 dni temu"/> <accordion_tab name="4_days_ago" title="4 dni temu"/> <accordion_tab name="5_days_ago" title="5 dni temu"/> @@ -11,4 +12,7 @@ <accordion_tab name="1_month_and_older" title="1 miesiÄ…c i wiÄ™cej"/> <accordion_tab name="6_months_and_older" title="6 miesiÄ™cy i wiÄ™cej"/> </accordion> + <panel name="bottom_panel"> + <button name="gear_btn" tool_tip="Pokaż dodatkowe opcje"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_teleport_history_item.xml b/indra/newview/skins/default/xui/pl/panel_teleport_history_item.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0fe28c4cec72745a2a6a7b37dd4e45c0416e199 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_teleport_history_item.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="teleport_history_item"> + <button name="profile_btn" tool_tip="Pokaż info o obiekcie"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/panel_world_map.xml b/indra/newview/skins/default/xui/pl/panel_world_map.xml index 70479fe20906ee4d2c2b0ea7c3a6cf5a232af9e1..849b01a1cef5d2e3b3183296a6f9e4305c008eac 100644 --- a/indra/newview/skins/default/xui/pl/panel_world_map.xml +++ b/indra/newview/skins/default/xui/pl/panel_world_map.xml @@ -4,7 +4,7 @@ Åadowanie... </panel.string> <panel.string name="InvalidLocation"> - NiewÅ‚aÅ›ciwa Lokalizacja + NiewÅ‚aÅ›ciwa lokalizacja </panel.string> <panel.string name="world_map_north"> N diff --git a/indra/newview/skins/default/xui/pl/role_actions.xml b/indra/newview/skins/default/xui/pl/role_actions.xml index 5711eacf2f286baa1b7623fda21c9d43862a1d1a..ccfa5f222ed91e0c3570619aed5dec949219af1c 100644 --- a/indra/newview/skins/default/xui/pl/role_actions.xml +++ b/indra/newview/skins/default/xui/pl/role_actions.xml @@ -1,197 +1,76 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <role_actions> - <action_set - description="Przywileje pozwajajÄ…ce na dodawanie i usuwanie CzÅ‚onków oraz pozwalajÄ… nowym CzÅ‚onkom na dodawanie siÄ™ bez zaproszenia." - name="Membership"> - <action description="Zapraszanie do Grupy" - longdescription="Zapraszanie nowych Ludzi do Grupy używajÄ…c 'ZaproÅ› NowÄ… OsobÄ™...' pod CzÅ‚onkowie > CzÅ‚onkowie." - name="member invite" /> - <action description="Usuwanie z Grupy" - longdescription="Usuwanie CzÅ‚onków z Grupy używajÄ…c 'UsuÅ„ z Grupy' pod CzÅ‚onkowie > CzÅ‚onkowie. WÅ‚aÅ›ciciel może usunąć każdego za wyjÄ…tkiem innego WÅ‚aÅ›ciciela. Jeżeli nie jesteÅ› WÅ‚aÅ›cicielem możesz tylko usuwać CzÅ‚onków w Funkcji Każdy i tylko wtedy kiedy nie majÄ… żadnej innej Funkcji. Aby odebrać CzÅ‚onkowi FunkcjÄ™ musisz mieć Przywilej 'Odbieranie Funkcji'." - name="member eject" /> - <action - description="Selekcja opcji 'Wolne Zapisy' i wybór 'OpÅ‚aty WstÄ™pnej'" - longdescription="Selekcja opcji 'Wolne Zapisy' (pozwola nowym CzÅ‚onkom na dodawanie sie bez zaproszenia) i wybiór 'OpÅ‚aty WstÄ™pnej' w Ustawieniach Grupy w sekcji Ogólne." - name="member options" /> + <action_set description="Przywileje pozwajajÄ…ce na dodawanie i usuwanie CzÅ‚onków oraz pozwalajÄ… nowym CzÅ‚onkom na dodawanie siÄ™ bez zaproszenia." name="Membership"> + <action description="Zapraszanie do Grupy" longdescription="Zapraszanie nowych Ludzi do Grupy używajÄ…c przycisku 'ZaproÅ›' w sekcji Ról > CzÅ‚onkowie" name="member invite"/> + <action description="Usuwanie z Grupy" longdescription="Usuwanie CzÅ‚onków z Grupy używajÄ…c 'UsuÅ„ z Grupy'; pod CzÅ‚onkowie > CzÅ‚onkowie. WÅ‚aÅ›ciciel może usunąć każdego za wyjÄ…tkiem innego WÅ‚aÅ›ciciela. Jeżeli nie jesteÅ› WÅ‚aÅ›cicielem możesz tylko usuwać CzÅ‚onków w Funkcji Każdy i tylko wtedy kiedy nie majÄ… żadnej innej Funkcji. Aby odebrać CzÅ‚onkowi FunkcjÄ™ musisz mieć Przywilej 'Odbieranie Funkcji'." name="member eject"/> + <action description="Selekcja opcji 'Wolne Zapisy' i wybór 'OpÅ‚aty WstÄ™pnej'" longdescription="Selekcja opcji 'Wolne Zapisy' (pozwala nowym CzÅ‚onkom na dodawanie siÄ™ bez zaproszenia) i wybór 'OpÅ‚aty WstÄ™pnej' w Ustawieniach Grupy w sekcji Ogólne." name="member options"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na dodawanie, usuwanie i edycjÄ™ Funkcji w Grupie, oraz na nadawanie i odbieranie Funkcji, oraz na przypisywanie Przywilejów do Funkcji." - name="Roles"> - <action description="Dodawanie Funkcji" - longdescription="Dodawanie nowych Funkcji pod CzÅ‚onkowie > Funkcje." - name="role create" /> - <action description="Usuwanie Funkcji" - longdescription="Usuwanie Funkcji pod CzÅ‚onkowie > Funkcje." - name="role delete" /> - <action description="Zmiany nazw Funkcji, Tytułów i Opisów" - longdescription="Zmiany nazw Funkcji, Tytułów i Opisów w dolnej części CzÅ‚onkowie > Funkcje po wybraniu Funkcje." - name="role properties" /> - <action description="Przypisywanie CzÅ‚onków do posiadanych Funkcji" - longdescription="Przypisywanie CzÅ‚onków do Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. CzÅ‚onek z tym Przywilejem może dodawać CzÅ‚onków do Funkcji które sam już posiada." - name="role assign member limited" /> - <action description="Przypisywanie CzÅ‚onków do wszystkich Funkcji" - longdescription="Przypisywanie CzÅ‚onków do wszystkich Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może przypisać siebie i innych CzÅ‚onków nie bÄ™dÄ…cych WÅ‚aÅ›cicielami do Funkcji dajÄ…cych wiÄ™cej Przywilejów niż posiadane obecnie potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci WÅ‚aÅ›ciciela. Udzielaj tego Przywileju z rozwagÄ…." - name="role assign member" /> - <action description="Odbieranie Funkcji" - longdescription="Odbieranie Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. Funkcja WÅ‚aÅ›ciciela nie może być odebrana." - name="role remove member" /> - <action description="Dodawanie i Usuwanie Przywilejów z Funkcji" - longdescription="Dodawanie i Usuwanie Przywilejów z Funkcji w sekcji Przwileje pod CzÅ‚onkowie > Funkcje. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może przypisać sobie i innychm CzÅ‚onkom nie bÄ™dÄ…cym WÅ‚aÅ›cicielami wszystkie Przywileje potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci WÅ‚aÅ›ciciela. Udzielaj tego Przywileju z rozwagÄ…." - name="role change actions" /> + <action_set description="Przywileje pozwalajÄ…ce na dodawanie, usuwanie i edycjÄ™ Funkcji w Grupie, oraz na nadawanie i odbieranie Funkcji, oraz na przypisywanie Przywilejów do Funkcji." name="Roles"> + <action description="Dodawanie Funkcji" longdescription="Dodawanie nowych Funkcji pod CzÅ‚onkowie > Funkcje." name="role create"/> + <action description="Usuwanie Funkcji" longdescription="UsuÅ„ Funkcje w zakÅ‚adce Funkcje > Funkcje" name="role delete"/> + <action description="Zmiany nazw Funkcji, Tytułów i Opisów i widoczność CzÅ‚onków w Informacjach o Grupie" longdescription="Zmiany nazw Funkcji, Tytułów i Opisów i wybór czy CzÅ‚onkowie z danÄ… RolÄ… sÄ… widoczni Informacji o Grupie w dolnej części sekcji Funkcji > Funkcje po wybraniu Funkcje." name="role properties"/> + <action description="Przypisywanie CzÅ‚onków do posiadanych Funkcji" longdescription="Przypisywanie CzÅ‚onków do Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. CzÅ‚onek z tym Przywilejem może dodawać CzÅ‚onków do Funkcji które sam już posiada." name="role assign member limited"/> + <action description="Przypisywanie CzÅ‚onków do wszystkich Funkcji" longdescription="Przypisywanie CzÅ‚onków do wszystkich Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może przypisać siebie i innych CzÅ‚onków nie bÄ™dÄ…cych WÅ‚aÅ›cicielami do Funkcji dajÄ…cych wiÄ™cej Przywilejów niż posiadane obecnie potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci WÅ‚aÅ›ciciela. Udzielaj tego Przywileju z rozwagÄ…." name="role assign member"/> + <action description="Odbieranie Funkcji" longdescription="Odbieranie Funkcji w sekcji Przypisane Funkcje pod CzÅ‚onkowie > CzÅ‚onkowie. Funkcja WÅ‚aÅ›ciciela nie może być odebrana." name="role remove member"/> + <action description="Dodawanie i Usuwanie Przywilejów z Funkcji" longdescription="Dodawanie i Usuwanie Przywilejów z Funkcji w sekcji Przwileje pod CzÅ‚onkowie > Funkcje. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może przypisać sobie i innym CzÅ‚onkom nie bÄ™dÄ…cym WÅ‚aÅ›cicielami wszystkie Przywileje potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci WÅ‚aÅ›ciciela. Udzielaj tego Przywileju z rozwagÄ…." name="role change actions"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na edycjÄ™ atrybutów Grupy takich jak widoczność w wyszukiwarce, status i insygnia." - name="Group Identity"> - <action - description="Zmiany Statusu Grupy, Insygniów, 'Widoczność w Wyszukiwarce' i widoczność CzÅ‚onków w Informacjach o Grupie." - longdescription="Zmiany Statusu Grupy, Insygniów, 'Widoczność w Wyszukiwarce' i widoczność CzÅ‚onków w Informacjach o Grupie. DostÄ™p poprzez ustawienia Ogólne." - name="group change identity" /> + <action_set description="Przywileje pozwalajÄ…ce na edycjÄ™ atrybutów Grupy takich jak widoczność w wyszukiwarce, status i insygnia." name="Group Identity"> + <action description="Zmiany Statusu Grupy, Insygniów, 'Widoczność w Wyszukiwarce' i widoczność CzÅ‚onków w Informacjach o Grupie." longdescription="Zmiany Statusu Grupy, Insygniów, i Widoczność w Wyszukiwarce. DostÄ™p poprzez ustawienia Ogólne." name="group change identity"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na przypisywanie, modyfikacje i sprzedaż PosiadÅ‚oÅ›ci Grupy. Aby zobaczyć okno O PosiadloÅ›ci wybierz grunt prawym klawiszem myszki i wybierz 'O PosiadloÅ›ci' albo wybierz O PosiadÅ‚oÅ›ci w głównym menu." - name="Parcel Management"> - <action description="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy" - longdescription="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy. DostÄ™p poprzez O PosiadloÅ›ci > ustawienia Ogólne." - name="land deed" /> - <action description="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab" - longdescription="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może porzucać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne oddajÄ…c PosiadÅ‚oÅ›ci za darmo do Linden Labs! Udzielaj tego Przywileju z rozwagÄ…." - name="land release" /> - <action description="Sprzedaż PosiadÅ‚oÅ›ci" - longdescription="Sprzedaż PosiadÅ‚oÅ›ci. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może sprzedawać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne! Udzielaj tego Przywileju z rozwagÄ…." - name="land set sale info" /> - <action description="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci" - longdescription="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci. DostÄ™p poprzez wybranie gruntu prawym klawiszem myszki, 'Edycja Terenu', i przesuwanie myszkÄ… po gruncie wybierajÄ…c obszar. Aby podzielić wybierz obszar i naciÅ›nij 'Podziel...'. Aby poÅ‚Ä…czyć wybierz dwie albo wiÄ™cej sÄ…siadujÄ…ce PosiadÅ‚oÅ›ci i naciÅ›nij 'PoÅ‚Ä…cz...'." - name="land divide join" /> + <action_set description="Przywileje pozwalajÄ…ce na przypisywanie, modyfikacje i sprzedaż PosiadÅ‚oÅ›ci Grupy. Aby zobaczyć okno O PosiadÅ‚oÅ›ci wybierz grunt prawym klawiszem myszki i wybierz 'O PosiadÅ‚oÅ›ci' albo wybierz ikonÄ™ 'i' w głównym menu." name="Parcel Management"> + <action description="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy" longdescription="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy. DostÄ™p poprzez O PosiadloÅ›ci > ustawienia Ogólne." name="land deed"/> + <action description="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab" longdescription="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może porzucać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne oddajÄ…c PosiadÅ‚oÅ›ci za darmo do Linden Labs! Udzielaj tego Przywileju z rozwagÄ…." name="land release"/> + <action description="Sprzedaż PosiadÅ‚oÅ›ci" longdescription="Sprzedaż PosiadÅ‚oÅ›ci. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może sprzedawać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne! Udzielaj tego Przywileju z rozwagÄ…." name="land set sale info"/> + <action description="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci" longdescription="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci. DostÄ™p poprzez wybranie gruntu prawym klawiszem myszki, 'Edycja Terenu', i przesuwanie myszkÄ… po gruncie wybierajÄ…c obszar. Aby podzielić wybierz obszar i naciÅ›nij 'Podziel'. Aby poÅ‚Ä…czyć wybierz dwie albo wiÄ™cej sÄ…siadujÄ…ce PosiadÅ‚oÅ›ci i naciÅ›nij 'PoÅ‚Ä…cz'." name="land divide join"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na zmianÄ™ nazwy PosiadÅ‚oÅ›ci, widoczność w wyszukiwarce, widoczność w wyszukiwarce, wybór miejsce lÄ…dowania i zmianÄ™ ustawieÅ„ teleportacji (TP)." - name="Parcel Identity"> - <action - description="Selekcja opcji 'Pokazuj w szukaniu miejsc' i wybór kategorii" - longdescription="Selekcja opcji 'Pokazuj w szukaniu miejsc' i wybór kategorii PosiadÅ‚oÅ›ci pod O PosiadÅ‚oÅ›ci > Opcje." - name="land find places" /> - <action - description="Zmiany nazwy PosiadÅ‚oÅ›ci, opisu i selekcja 'Widoczność w Wyszukiwarce'" - longdescription="Zmiany nazwy PosiadÅ‚oÅ›ci, opisu i selekcja 'Widoczność w Wyszukiwarce'. DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." - name="land change identity" /> - <action description="Wybór miejsca lÄ…dowania i ustawienia teleportacji (TP)" - longdescription="Na PosiadÅ‚oÅ›ci Grupy CzÅ‚onek w Funkcji z tym Przywilejem może wybrać miejsce gdzie teleportujÄ…ce siÄ™ osoby bÄ™dÄ… ladować oraz może ustalić dodatkowe parametry teleportacji (TP). DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." - name="land set landing point" /> + <action_set description="Przywileje pozwalajÄ…ce na zmianÄ™ nazwy PosiadÅ‚oÅ›ci, widoczność w wyszukiwarce, widoczność w wyszukiwarce, wybór miejsce lÄ…dowania i zmianÄ™ ustawieÅ„ teleportacji (TP)." name="Parcel Identity"> + <action description="Selekcja opcji 'Pokazuj w szukaniu miejsc' i wybór kategorii" longdescription="Selekcja opcji 'Pokazuj w szukaniu miejsc' i wybór kategorii PosiadÅ‚oÅ›ci pod O PosiadÅ‚oÅ›ci > Opcje." name="land find places"/> + <action description="Zmiany nazwy PosiadÅ‚oÅ›ci, opisu i selekcja 'Widoczność w Wyszukiwarce'" longdescription="Zmiany nazwy PosiadÅ‚oÅ›ci, opisu i selekcja 'Widoczność w Wyszukiwarce'. DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." name="land change identity"/> + <action description="Wybór miejsca lÄ…dowania i ustawienia teleportacji (TP)" longdescription="Na PosiadÅ‚oÅ›ci Grupy CzÅ‚onek w Funkcji z tym Przywilejem może wybrać miejsce gdzie teleportujÄ…ce siÄ™ osoby bÄ™dÄ… ladować oraz może ustalić dodatkowe parametry teleportacji (TP). DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." name="land set landing point"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na zmianÄ™ opcji PosiadÅ‚oÅ›ci takich jak 'Tworzenie Obiektów', 'Edycja Terenu' i zmianÄ™ ustawieÅ„ muzyki & mediów." - name="Parcel Settings"> - <action description="Zmiany ustawieÅ„ muzyki & mediów" - longdescription="Zmiany ustawieÅ„ muzyki & mediów pod O PosiadÅ‚oÅ›ci > Media." - name="land change media" /> - <action description="Selekcja opcji 'Edycja Terenu'" - longdescription="Selekcja opcji 'Edycja Terenu'. *UWAGA* O PosiadÅ‚oÅ›ci > Opcje > Edycja Terenu pozwala każdemu na formowanie gruntów Twojej PosiadÅ‚oÅ›ci oraz na przemieszczanie roÅ›lin z Linden Labs. Udzielaj tego Przywileju z rozwagÄ…. Selekcja opcji Edycji Terenu jest dostÄ™pna poprzez O PosiadÅ‚oÅ›ci > Opcje." - name="land edit" /> - <action description="Dodatkowe ustawienia O PosiadÅ‚oÅ›ci > Opcje" - longdescription="Selekcja opcji 'BezpieczeÅ„stwo (brak uszkodzeÅ„)', 'Latanie', opcje dla innych Rezydentów: 'Tworzenie Obiektów', 'Edycja Terenu', 'ZapamiÄ™tywanie Miejsca (LM)', 'Skrypty' na PosiadÅ‚oÅ›ciach Grupy pod O PosiadÅ‚oÅ›ci > Opcje." - name="land options" /> + <action_set description="Przywileje pozwalajÄ…ce na zmianÄ™ opcji PosiadÅ‚oÅ›ci takich jak 'Tworzenie Obiektów', 'Edycja Terenu' i zmianÄ™ ustawieÅ„ muzyki & mediów." name="Parcel Settings"> + <action description="Zmiany ustawieÅ„ muzyki & mediów" longdescription="Zmiany ustawieÅ„ muzyki & mediów pod O PosiadÅ‚oÅ›ci > Media." name="land change media"/> + <action description="Selekcja opcji 'Edycja Terenu'" longdescription="Selekcja opcji 'Edycja Terenu'. *UWAGA* O PosiadÅ‚oÅ›ci > Opcje > Edycja Terenu pozwala każdemu na formowanie gruntów Twojej PosiadÅ‚oÅ›ci oraz na przemieszczanie roÅ›lin z Linden Labs. Udzielaj tego Przywileju z rozwagÄ…. Selekcja opcji Edycji Terenu jest dostÄ™pna poprzez O PosiadÅ‚oÅ›ci > Opcje." name="land edit"/> + <action description="Dodatkowe ustawienia O PosiadÅ‚oÅ›ci > Opcje" longdescription="Selekcja opcji 'BezpieczeÅ„stwo (brak uszkodzeÅ„)' 'Latanie', opcje dla innych Rezydentów: 'Tworzenie Obiektów'; 'Edycja Terenu', 'ZapamiÄ™tywanie Miejsca (LM)', i 'Skrypty' na PosiadÅ‚oÅ›ciach Grupy pod O PosiadÅ‚oÅ›ci > Opcje." name="land options"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce CzÅ‚onkom na omijanie ograniczeÅ„ na PosiadÅ‚oÅ›ciach Grupy." - name="Parcel Powers"> - <action description="Pozwól na EdycjÄ™ Terenu" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze edytować teren na PosiadÅ‚oÅ›ciach Grupy." - name="land allow edit land" /> - <action description="Pozwól na Latanie" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze latać na PosiadÅ‚oÅ›ciach Grupy." - name="land allow fly" /> - <action description="Pozwól na Tworzenie Obiektów" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze tworzyć obiekty na PosiadÅ‚oÅ›ciach Grupy." - name="land allow create" /> - <action description="Pozwól na ZapamiÄ™tywanie Miejsc (LM)" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze zapamiÄ™tywać miejsca (LM) na PosiadÅ‚oÅ›ciach Grupy." - name="land allow landmark" /> - <action description="Pozwól na wybór Miejsca Startu na PosiadÅ‚oÅ›ciach Grupy" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze wybrać Miejsce Startu na PosiadÅ‚oÅ›ciach Grupy." - name="land allow set home" /> + <action_set description="Przywileje pozwalajÄ…ce CzÅ‚onkom na omijanie ograniczeÅ„ na PosiadÅ‚oÅ›ciach Grupy." name="Parcel Powers"> + <action description="Pozwól na EdycjÄ™ Terenu" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze edytować teren na PosiadÅ‚oÅ›ciach Grupy." name="land allow edit land"/> + <action description="Pozwól na Latanie" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze latać na PosiadÅ‚oÅ›ciach Grupy." name="land allow fly"/> + <action description="Pozwól na Tworzenie Obiektów" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze tworzyć obiekty na PosiadÅ‚oÅ›ciach Grupy." name="land allow create"/> + <action description="Pozwól na ZapamiÄ™tywanie Miejsc (LM)" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze zapamiÄ™tywać miejsca (LM) na PosiadÅ‚oÅ›ciach Grupy." name="land allow landmark"/> + <action description="Pozwól na wybór Miejsca Startu na PosiadÅ‚oÅ›ciach Grupy" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… używać menu Åšwiat > ZapamiÄ™taj Miejsce > Miejsce Startu na PosiadÅ‚oÅ›ci przypisanej Grupie." name="land allow set home"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na dawanie i odbieranie dostÄ™pu do PosiadÅ‚oÅ›ci Grupy zawierajÄ…ce możliwoÅ›ci unieruchomiania i wyrzucania Rezydentów." - name="Parcel Access"> - <action description="ZarzÄ…dzanie ListÄ… DostÄ™pu do PosiadÅ‚oÅ›ci" - longdescription="ZarzÄ…dzanie ListÄ… DostÄ™pu do PosiadÅ‚oÅ›ci pod O PosiadÅ‚oÅ›ci > DostÄ™p." - name="land manage allowed" /> - <action description="ZarzÄ…dzanie ListÄ… UsuniÄ™tych z PosiadÅ‚oÅ›ci (Bany)" - longdescription="ZarzÄ…dzanie ListÄ… UsuniÄ™tych z PosiadÅ‚oÅ›ci (Bany) pod O PosiadloÅ›ci > Usuwanie." - name="land manage banned" /> - <action description="Selekcja opcji 'WstÄ™p PÅ‚atny...'" - longdescription="Selekcja opcji 'WstÄ™p PÅ‚atny...' pod O PosiadÅ‚oÅ›ci > DostÄ™p." - name="land manage passes" /> - <action description="Wyrzucanie i unieruchamianie Rezydentów na PosiadÅ‚oÅ›ciach" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wpÅ‚ywać na niepożądanych na PosiadÅ‚oÅ›ciach Grupy Rezydentów wybierajÄ…c ich prawym klawiszem myszki i wybierajÄ…c WiÄ™cej > 'Wyrzuć...' albo 'Unieruchom...'." - name="land admin" /> + <action_set description="Przywileje pozwalajÄ…ce na dawanie i odbieranie dostÄ™pu do PosiadÅ‚oÅ›ci Grupy zawierajÄ…ce możliwoÅ›ci unieruchomiania i wyrzucania Rezydentów." name="Parcel Access"> + <action description="ZarzÄ…dzanie ListÄ… DostÄ™pu do PosiadÅ‚oÅ›ci" longdescription="ZarzÄ…dzanie ListÄ… DostÄ™pu do PosiadÅ‚oÅ›ci pod O PosiadÅ‚oÅ›ci > DostÄ™p." name="land manage allowed"/> + <action description="ZarzÄ…dzanie ListÄ… UsuniÄ™tych z PosiadÅ‚oÅ›ci (Bany)" longdescription="ZarzÄ…dzanie ListÄ… DostÄ™pu do PosiadÅ‚oÅ›ci pod O PosiadÅ‚oÅ›ci > DostÄ™p." name="land manage banned"/> + <action description="Selekcja opcji 'WstÄ™p PÅ‚atny'" longdescription="Selekcja opcji 'WstÄ™p PÅ‚atny'; pod O PosiadÅ‚oÅ›ci > DostÄ™p." name="land manage passes"/> + <action description="Wyrzucanie i unieruchamianie Rezydentów na PosiadÅ‚oÅ›ciach" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wpÅ‚ywać na niepożądanych na PosiadÅ‚oÅ›ciach Grupy Rezydentów wybierajÄ…c ich prawym klawiszem myszki i wybierajÄ…c ';Wyrzuć' albo 'Unieruchom'." name="land admin"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na odsyÅ‚anie obiektów i przemieszczanie roÅ›lin z Linden Lab. Użyteczne przy porzÄ…dkowaniu i przemieszczaniu roÅ›linnoÅ›ci. *UWAGA* OdsyÅ‚anie obiektów jest nieodwracalne." - name="Parcel Content"> - <action description="OdsyÅ‚anie obiektów należących do Grupy" - longdescription="OdsyÅ‚anie obiektów należących do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." - name="land return group owned" /> - <action description="OdsyÅ‚anie obiektów przypisanych do Grupy" - longdescription="OdsyÅ‚anie obiektów przypisanych do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." - name="land return group set" /> - <action description="OdsyÅ‚anie obiektów nie przypisanych do Grupy" - longdescription="OdsyÅ‚anie obiektów nie przypisanych do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." - name="land return non group" /> - <action description="Ogrodnictwo używajÄ…c roÅ›lin z Linden Lab" - longdescription="Ogrodnictwo pozwala na umieszczanie i przemieszczanie drzew, roÅ›lin i trawy z Linden Lab. Te obiekty znajdujÄ… siÄ™ w Twojej Szafie pod Zbiór > Obiekty, mogÄ… też być stworzone używajÄ…c przycisku Buduj." - name="land gardening" /> + <action_set description="Przywileje pozwalajÄ…ce na odsyÅ‚anie obiektów i przemieszczanie roÅ›lin z Linden Lab. Użyteczne przy porzÄ…dkowaniu i przemieszczaniu roÅ›linnoÅ›ci. *UWAGA* OdsyÅ‚anie obiektów jest nieodwracalne." name="Parcel Content"> + <action description="OdsyÅ‚anie obiektów należących do Grupy" longdescription="OdsyÅ‚anie obiektów należących do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." name="land return group owned"/> + <action description="OdsyÅ‚anie obiektów przypisanych do Grupy" longdescription="OdsyÅ‚anie obiektów przypisanych do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." name="land return group set"/> + <action description="OdsyÅ‚anie obiektów nie przypisanych do Grupy" longdescription="OdsyÅ‚anie obiektów nie przypisanych do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." name="land return non group"/> + <action description="Ogrodnictwo używajÄ…c roÅ›lin z Linden Lab" longdescription="Możliwość przemieszczenia roÅ›lin z Linden Lab. Obiekty te mogÄ… zostać odnalezione w Twojej Szafie, w folderze Biblioteka > Folderze Obiektów lub mogÄ… zostać stworzone dziÄ™ki aktywacji NarzÄ™dzi Edycji." name="land gardening"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na przypisywanie, modyfikacje i sprzedaż obiektów należących do Grupy. DostÄ™p poprzez NarzÄ™dzia Edycji > Ogólne. Wybierz obiekt prawym klawiszem myszki i wybierz Edycja żeby zobaczyć ustawienia." - name="Object Management"> - <action description="Przypisywanie obiektów do Grupy" - longdescription="Przypisywanie obiektów do Grupy pod NarzÄ™dzia Edycji > Ogólne." - name="object deed" /> - <action - description="Manipulowanie (wklejanie, kopiowanie, modyfikacja) obiektami należącymi do Grupy" - longdescription="Manipulowanie (wklejanie, kopiowanie, modyfikacja) obiektami należącymi do Grupy pod NarzÄ™dzia Edycji > Ogólne." - name="object manipulate" /> - <action description="Sprzedaż obiektów należących do Grupy" - longdescription="Sprzedaż obiektów należących do Grupy pod NarzÄ™dzia Edycji > Ogólne." - name="object set sale" /> + <action_set description="Przywileje pozwalajÄ…ce na odsyÅ‚anie obiektów i przemieszczenia roÅ›lin z Linden Lab. Użyteczne przy porzÄ…dkowaniu i przemieszczenia roÅ›linnoÅ›ci. *UWAGA* OdsyÅ‚anie obiektów jest nieodwracalne." name="Object Management"> + <action description="Przypisywanie obiektów do Grupy" longdescription="Przypisywanie obiektów do Grupy w NarzÄ™dziach Edycji > Ogólne" name="object deed"/> + <action description="Manipulowanie (wklejanie, kopiowanie, modyfikacja) obiektami należącymi do Grupy" longdescription="Manipulowanie (wklejanie, kopiowanie, modyfikacja) obiektami należącymi do Grupy w NarzÄ™dziach Edycji > Ogólne" name="object manipulate"/> + <action description="Sprzedaż obiektów należących do Grupy" longdescription="Sprzedaż obiektów należących do Grupy pod NarzÄ™dzia Edycji > Ogólne." name="object set sale"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na wybór opÅ‚at grupowych, otrzymywanie dochodu i ograniczanie dostÄ™pu do historii konta grupy." - name="Accounting"> - <action description="OpÅ‚aty grupowe i dochód grupowy" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem bÄ™dÄ… automatycznie wnosić opÅ‚aty grupowe i bÄ™dÄ… otrzymywać dochód grupowy. Tzn. bÄ™dÄ… codziennie otrzymywać część dochodu ze sprzedaży PosiadÅ‚oÅ›ci Grupy oraz bÄ™dÄ… partycypować w kosztach ogÅ‚oszeÅ„ itp." - name="accounting accountable" /> + <action_set description="Przywileje pozwalajÄ…ce na wybór opÅ‚at grupowych, otrzymywanie dochodu i ograniczanie dostÄ™pu do historii konta grupy." name="Accounting"> + <action description="OpÅ‚aty grupowe i dochód grupowy" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem bÄ™dÄ… automatycznie wnosić opÅ‚aty grupowe i bÄ™dÄ… otrzymywać dochód grupowy. Tzn. bÄ™dÄ… codziennie otrzymywać część dochodu ze sprzedaży PosiadÅ‚oÅ›ci Grupy oraz bÄ™dÄ… partycypować w kosztach ogÅ‚oszeÅ„ itp." name="accounting accountable"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na wysyÅ‚anie, odbieranie i czytanie Notek Grupy." - name="Notices"> - <action description="WysyÅ‚anie Notek" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wysyÅ‚ać Notki wybierajÄ…c O Grupie > Notek." - name="notices send" /> - <action description="Odbieranie Notek i dostÄ™p do dawniejszych Notek" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… odbierać nowe i czytać dawniejsze Notki wybierajÄ…c O Grupie > Notki." - name="notices receive" /> + <action_set description="Przywileje pozwalajÄ…ce na wysyÅ‚anie, odbieranie i czytanie Notek Grupy." name="Notices"> + <action description="WysyÅ‚anie Notek" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wysyÅ‚ać Notki wybierajÄ…c O Grupie > Notek." name="notices send"/> + <action description="Odbieranie Notek i dostÄ™p do dawniejszych Notek" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… odbierać nowe i czytać dawniejsze Notki wybierajÄ…c O Grupie > Notki." name="notices receive"/> </action_set> - <action_set - description="Przywileje pozwalajÄ…ce na zgÅ‚aszanie Propozycji, gÅ‚osowanie nad Propozycjami i Å›ledzenie historii gÅ‚osowania." - name="Proposals"> - <action description="ZgÅ‚aszanie Propozycji" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zgÅ‚aszać Propozycje do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." - name="proposal start" /> - <action description="GÅ‚osowanie nad Propozycjami" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… gÅ‚osować nad Propozycjami zgÅ‚oszonymi do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." - name="proposal vote" /> + <action_set description="Przywileje pozwalajÄ…ce na zgÅ‚aszanie Propozycji, gÅ‚osowanie nad Propozycjami i Å›ledzenie historii gÅ‚osowania." name="Proposals"> + <action description="ZgÅ‚aszanie Propozycji" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zgÅ‚aszać Propozycje do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." name="proposal start"/> + <action description="GÅ‚osowanie nad Propozycjami" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… gÅ‚osować nad Propozycjami zgÅ‚oszonymi do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." name="proposal vote"/> </action_set> <action_set description="Przywileje kontrolujÄ…ce czat i rozmowy grupowe." name="Chat"> - <action description="DostÄ™p do Czatu Grupowego" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w czacie i rozmowach grupowych." - name="join group chat" /> - <action description="DostÄ™p do Rozmów Grupowych" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w rozmowach grupowych. UWAGA: DostÄ™p do Czatu Grupowego jest wymagany dla rozmów grupowych." - name="join voice chat" /> - <action description="Moderator Czatu Grupowego" - longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… kontrolować dostÄ™p do czatu i rozmów grupowych." - name="moderate group chat" /> + <action description="DostÄ™p do Czatu Grupowego" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w czacie i rozmowach grupowych." name="join group chat"/> + <action description="DostÄ™p do Rozmów Grupowych" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w rozmowach grupowych. UWAGA: DostÄ™p do Czatu Grupowego jest wymagany dla rozmów grupowych." name="join voice chat"/> + <action description="Moderator Czatu Grupowego" longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… kontrolować dostÄ™p do czatu i rozmów grupowych." name="moderate group chat"/> </action_set> </role_actions> diff --git a/indra/newview/skins/default/xui/pl/sidepanel_appearance.xml b/indra/newview/skins/default/xui/pl/sidepanel_appearance.xml new file mode 100644 index 0000000000000000000000000000000000000000..ecbf262777b77952f1f3e6874305c5e354b349a9 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/sidepanel_appearance.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Ubrania" name="appearance panel"> + <string name="No Outfit" value="Bez Ubrania"/> + <panel name="panel_currentlook"> + <text name="currentlook_title"> + (niezapisane) + </text> + </panel> + <filter_editor label="PrzeglÄ…daj Ubrania" name="Filter"/> +</panel> diff --git a/indra/newview/skins/default/xui/pl/sidepanel_inventory.xml b/indra/newview/skins/default/xui/pl/sidepanel_inventory.xml new file mode 100644 index 0000000000000000000000000000000000000000..d7a813b1b713572825c514a98efd69d3ada412fc --- /dev/null +++ b/indra/newview/skins/default/xui/pl/sidepanel_inventory.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Rzeczy" name="objects panel"> + <panel label="" name="sidepanel__inventory_panel"> + <panel name="button_panel"> + <button label="Profil" name="info_btn"/> + <button label="Ubierz" name="wear_btn"/> + <button label="Odtwarzaj" name="play_btn"/> + <button label="Teleportuj" name="teleport_btn"/> + </panel> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/sidepanel_item_info.xml b/indra/newview/skins/default/xui/pl/sidepanel_item_info.xml index b70c76f652b6b8dca7cc3b3e2b81d0104ba3557f..3b038a71028a4f8b06f0b24c588250f9982b5528 100644 --- a/indra/newview/skins/default/xui/pl/sidepanel_item_info.xml +++ b/indra/newview/skins/default/xui/pl/sidepanel_item_info.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="item properties" title="WÅ‚aÅ›ciwoÅ›ci Obiektu w Szafie"> +<panel name="item properties" title="Profil Obiektu"> <panel.string name="unknown"> (nieznany) </panel.string> @@ -15,7 +15,8 @@ <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> - <text name="title" value="WÅ‚aÅ›ciwoÅ›ci Obiektu"/> + <text name="title" value="Profil Obiektu"/> + <text name="where" value="(Szafa)"/> <panel label=""> <text name="LabelItemNameTitle"> Nazwa: @@ -37,34 +38,36 @@ <text name="LabelAcquiredDate"> Wed May 24 12:50:46 2006 </text> - <text name="OwnerLabel"> - Ty: - </text> - <check_box label="Edytuj" name="CheckOwnerModify"/> - <check_box label="Kopiuj" name="CheckOwnerCopy"/> - <check_box label="Oddawaj" name="CheckOwnerTransfer"/> - <text name="AnyoneLabel"> - Każdemu: - </text> - <check_box label="Kopiuj" name="CheckEveryoneCopy"/> - <text name="GroupLabel"> - Groupa: - </text> - <check_box label="Podziel siÄ™" name="CheckShareWithGroup"/> - <text name="NextOwnerLabel"> - NastÄ™pny wÅ‚aÅ›ciciel: - </text> - <check_box label="Edytuje" name="CheckNextOwnerModify"/> - <check_box label="Kopiuje" name="CheckNextOwnerCopy"/> - <check_box label="Oddaje" name="CheckNextOwnerTransfer"/> + <panel name="perms_inv"> + <text name="perm_modify"> + Ty możesz: + </text> + <check_box label="Zmienia" name="CheckOwnerModify"/> + <check_box label="Kopiuje" name="CheckOwnerCopy"/> + <check_box label="Sprzedaje/Oddaje" name="CheckOwnerTransfer"/> + <text name="AnyoneLabel"> + Każdy: + </text> + <check_box label="Kopiuje" name="CheckEveryoneCopy"/> + <text name="GroupLabel"> + Grupa: + </text> + <check_box label="UdostÄ™pnij" name="CheckShareWithGroup" tool_tip="Pozwól wszystkim czÅ‚onkom ustawionej grupy na dzielenie prawa do modyfikacji dla tego obiektu. Musisz Przypisać aby aktywować ograniczenia wynikajÄ…ce z roli."/> + <text name="NextOwnerLabel"> + NastÄ™pny WÅ‚aÅ›ciciel: + </text> + <check_box label="Modyfikuje" name="CheckNextOwnerModify"/> + <check_box label="Kopiuje" name="CheckNextOwnerCopy"/> + <check_box label="Sprzedaje/Oddaje" name="CheckNextOwnerTransfer" tool_tip="NastÄ™pny wÅ‚aÅ›ciciel może oddać lub sprzedać ten obiekt"/> + </panel> <check_box label="Na Sprzedaż" name="CheckPurchase"/> <combo_box name="combobox sale copy"> <combo_box.item label="Kopia" name="Copy"/> <combo_box.item label="OriginaÅ‚" name="Original"/> </combo_box> - <spinner label="Cena:" name="Edit Cost"/> - <text name="CurrencySymbol"> - L$ - </text> + <spinner label="Cena: L$" name="Edit Cost"/> + </panel> + <panel name="button_panel"> + <button label="Anuluj" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pl/sidepanel_task_info.xml b/indra/newview/skins/default/xui/pl/sidepanel_task_info.xml new file mode 100644 index 0000000000000000000000000000000000000000..17cd13f970fd096914a152ccb5406db6449b1bf8 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/sidepanel_task_info.xml @@ -0,0 +1,129 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="object properties" title="Profil Obiektu"> + <panel.string name="text deed continued"> + Przypisz + </panel.string> + <panel.string name="text deed"> + Przypisz + </panel.string> + <panel.string name="text modify info 1"> + Możesz modyfikować ten obiekt + </panel.string> + <panel.string name="text modify info 2"> + Możesz modyfikować te obiekty + </panel.string> + <panel.string name="text modify info 3"> + Nie możesz modyfikować tego obiektu + </panel.string> + <panel.string name="text modify info 4"> + Nie możesz modyfikować tych obiektów + </panel.string> + <panel.string name="text modify warning"> + Ten obiekt ma części zgrupowane + </panel.string> + <panel.string name="Cost Default"> + Cena: L$ + </panel.string> + <panel.string name="Cost Total"> + Cena caÅ‚kowita: L$ + </panel.string> + <panel.string name="Cost Per Unit"> + Cena za jednostkÄ™: L$ + </panel.string> + <panel.string name="Cost Mixed"> + Cena mieszana + </panel.string> + <panel.string name="Sale Mixed"> + Sprzedaż mieszana + </panel.string> + <text name="title" value="Profil Obiektu"/> + <text name="where" value="(w Å›wiecie)"/> + <panel label="" name="properties_panel"> + <text name="Name:"> + Nazwa: + </text> + <text name="Description:"> + Opis: + </text> + <text name="CreatorNameLabel"> + Twórca: + </text> + <text name="Creator Name"> + Erica Linden + </text> + <text name="Owner:"> + WÅ‚aÅ›ciciel: + </text> + <text name="Owner Name"> + Erica Linden + </text> + <text name="Group_label"> + Grupa: + </text> + <button name="button set group" tool_tip="Wybierz grupÄ™ by udostÄ™pnić jej prawa do tego obiektu"/> + <name_box initial_value="Åadowanie..." name="Group Name Proxy"/> + <button label="Przypisz" label_selected="Przypisz" name="button deed" tool_tip="Opcja przepisania udostÄ™pnia obiektowi takie same prawa jak zostaÅ‚y zaznaczone dla nastÄ™pnego wÅ‚aÅ›ciciela. Obiekty udostÄ™pnione grupie mogÄ… zostać przepisane dla grupy przez oficera grupy."/> + <text name="label click action"> + Kliknij by: + </text> + <combo_box name="clickaction"> + <combo_box.item label="Dotknij (domyÅ›lne)" name="Touch/grab(default)"/> + <combo_box.item label="UsiÄ…dź na obiekcie" name="Sitonobject"/> + <combo_box.item label="Kup obiekt" name="Buyobject"/> + <combo_box.item label="ZapÅ‚ać obiektowi" name="Payobject"/> + <combo_box.item label="Otwórz" name="Open"/> + </combo_box> + <panel name="perms_inv"> + <text name="perm_modify"> + Możesz modyfikować ten obiekt + </text> + <text name="Anyone can:"> + Każdy: + </text> + <check_box label="Kopiuj" name="checkbox allow everyone copy"/> + <check_box label="PrzesuÅ„" name="checkbox allow everyone move"/> + <text name="GroupLabel"> + Groupie: + </text> + <check_box label="UdostÄ™pnij" name="checkbox share with group" tool_tip="UdostÄ™pnij prawa do modyfikacji tego obiektu wszystkim czÅ‚onkom, którzy posiadajÄ… przywilej modyfikacji obiektów grupy. By ograniczyć, przypisz obiekt do grupy."/> + <text name="NextOwnerLabel"> + NastÄ™pny WÅ‚aÅ›ciciel: + </text> + <check_box label="Modyfikuj" name="checkbox next owner can modify"/> + <check_box label="Kopiuj" name="checkbox next owner can copy"/> + <check_box label="Oddaj" name="checkbox next owner can transfer" tool_tip="NastÄ™pny wÅ‚aÅ›ciciel może sprzedać lub oddać ten obiekt"/> + </panel> + <check_box label="Na Sprzedaż" name="checkbox for sale"/> + <combo_box name="sale type"> + <combo_box.item label="Kopiuj" name="Copy"/> + <combo_box.item label="Treść" name="Contents"/> + <combo_box.item label="OryginaÅ‚" name="Original"/> + </combo_box> + <spinner label="Cena: L$" name="Edit Cost"/> + <check_box label="Pokaż w wyszukiwarce" name="search_check" tool_tip="UdostÄ™pnij widzialność tego obiektu w wyszukiwarce"/> + <text name="B:"> + B: + </text> + <text name="O:"> + O: + </text> + <text name="G:"> + G: + </text> + <text name="E:"> + E: + </text> + <text name="N:"> + N: + </text> + <text name="F:"> + F: + </text> + </panel> + <panel name="button_panel"> + <button label="Otwórz" name="open_btn"/> + <button label="ZapÅ‚ać" name="pay_btn"/> + <button label="Kup" name="buy_btn"/> + <button label="Szczegóły" name="details_btn"/> + </panel> +</panel> diff --git a/indra/newview/skins/default/xui/pl/strings.xml b/indra/newview/skins/default/xui/pl/strings.xml index e8dcfac02d090f49f1d932e5637a36ad095778d2..c72f783a5189840a5b01f7efdf7bfa69882578c6 100644 --- a/indra/newview/skins/default/xui/pl/strings.xml +++ b/indra/newview/skins/default/xui/pl/strings.xml @@ -1,9 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. It is only for those strings which do not belong in a floater. - For example, the strings used in avatar chat bubbles, and strings + For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> + <string name="CAPITALIZED_APP_NAME"> + SECOND LIFE + </string> <string name="SUPPORT_SITE"> Portal Pomocy Second Life </string> @@ -11,7 +14,22 @@ Wykrywanie dysku twardego... </string> <string name="StartupLoading"> - Åadowanie + Åadowanie [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Czyszczenie bufora danych... + </string> + <string name="StartupInitializingTextureCache"> + Inicjowanie bufora danych tekstur... + </string> + <string name="StartupInitializingVFS"> + Inicjowanie VFS... + </string> + <string name="ProgressRestoring"> + Przywracanie... + </string> + <string name="ProgressChangingResolution"> + Zmiana rozdzielczoÅ›ci... </string> <string name="LoginInProgress"> Trwa logowanie. [APP_NAME] ProszÄ™ czekać. @@ -73,12 +91,33 @@ <string name="LoginFailedNoNetwork"> BÅ‚Ä…d sieci: Brak poÅ‚Ä…czenia z sieciÄ…, sprawdź status swojego poÅ‚Ä…czenia internetowego. </string> + <string name="LoginFailed"> + Logowanie nie powiodÅ‚o siÄ™. + </string> <string name="Quit"> WyÅ‚Ä…cz Program </string> <string name="AgentLostConnection"> Ten region może mieć problemy. Sprawdź podÅ‚Ä…czenie do Internetu. </string> + <string name="SavingSettings"> + Zachowanie ustawieÅ„... + </string> + <string name="LoggingOut"> + Trwa wylogowanie... + </string> + <string name="ShuttingDown"> + Zamykanie... + </string> + <string name="YouHaveBeenDisconnected"> + NastÄ…piÅ‚o rozÅ‚Ä…czenie z regionem. + </string> + <string name="SentToInvalidRegion"> + Region jest niedostÄ™pny. + </string> + <string name="TestingDisconnect"> + NastÄ…piÅ‚o rozÅ‚Ä…czenie testowania klienta + </string> <string name="TooltipPerson"> Osoba </string> @@ -131,7 +170,25 @@ Kliknij by zobaczyć szczegóły tego miejsca </string> <string name="TooltipAgentUrl"> - Kliknij by zobaczyć profil tego rezydenta + Kliknij aby zobaczyc profil Rezydenta + </string> + <string name="TooltipAgentMute"> + Kliknij aby wyciszyc tego Rezydenta + </string> + <string name="TooltipAgentUnmute"> + Kliknij aby cofnąć zablokowanie tego Rezydenta + </string> + <string name="TooltipAgentIM"> + Kliknij aby wysÅ‚ać wiadomość IM do tego Rezydenta + </string> + <string name="TooltipAgentPay"> + Kliknij aby zapÅ‚acić temu Rezydentowi + </string> + <string name="TooltipAgentOfferTeleport"> + Kliknij aby oferować teleport temu Rezydentowi + </string> + <string name="TooltipAgentRequestFriend"> + Kliknij aby wysÅ‚ać temu Rezydentowi zaproszenie do Znajomych </string> <string name="TooltipGroupUrl"> Kliknij by zobaczyć opis tej grupy @@ -158,14 +215,33 @@ Kliknij by uruchomić secondlife:// command </string> <string name="CurrentURL" value=" Obecny Adres: [CurrentURL]"/> + <string name="TooltipPrice" value="L$[PRICE]-"/> <string name="SLurlLabelTeleport"> Teleportuj do </string> <string name="SLurlLabelShowOnMap"> Pokaż na Mapie </string> + <string name="SLappAgentMute"> + Zablokuj + </string> + <string name="SLappAgentUnmute"> + Cofnij zablokowanie + </string> + <string name="SLappAgentIM"> + IM + </string> + <string name="SLappAgentPay"> + ZapÅ‚ać + </string> + <string name="SLappAgentOfferTeleport"> + Teleportuj do + </string> + <string name="SLappAgentRequestFriend"> + Oferta znajomoÅ›ci + </string> <string name="BUTTON_CLOSE_DARWIN"> - Zamknij (⌘W) + Zamknij (⌘W) </string> <string name="BUTTON_CLOSE_WIN"> Zamknij (Ctrl+W) @@ -182,9 +258,6 @@ <string name="BUTTON_DOCK"> PrzyÅ‚Ä…cz </string> - <string name="BUTTON_UNDOCK"> - OdÅ‚Ä…cz - </string> <string name="BUTTON_HELP"> Pokaż Pomoc </string> @@ -209,9 +282,6 @@ <string name="AvatarNameWaiting"> (Å‚adowanie) </string> - <string name="AvatarNameHippos"> - (hippos) - </string> <string name="GroupNameNone"> (brak danych) </string> @@ -320,6 +390,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link folderu + </string> <string name="AvatarAway"> Åšpi </string> @@ -572,6 +645,9 @@ <string name="hang_up"> PoÅ‚Ä…czenie rozmowy utracone. </string> + <string name="reconnect_nearby"> + PrzeÅ‚Ä…czanie do pobliskich rozmów gÅ‚osowych + </string> <string name="ScriptQuestionCautionChatGranted"> '[OBJECTNAME]', wÅ‚aÅ›ciciel: '[OWNERNAME]', poÅ‚ożenie: [REGIONNAME] [REGIONPOS], pozwala Ci na: [PERMISSIONS]. </string> @@ -734,6 +810,9 @@ <string name="invalid"> niewÅ‚aÅ›ciwa funkcja </string> + <string name="NewWearable"> + Nowa [WEARABLE_ITEM] + </string> <string name="next"> NastÄ™pne </string> @@ -764,11 +843,8 @@ <string name="TeleportOffer"> Oferta teleportacji </string> - <string name="StartUpNotification"> - [%d] nowe zawiadomienie zostaÅ‚o wysÅ‚ane kiedy byÅ‚eÅ› w trybie oddalenia... - </string> <string name="StartUpNotifications"> - [%d] nowe zawiadomienia zostaÅ‚y wysÅ‚ane kiedy byÅ‚eÅ› w trybie oddalenia... + Nowe zawiadomienia zostaÅ‚y wysÅ‚ane kiedy byÅ‚eÅ› w trybie oddalenia... </string> <string name="OverflowInfoChannelString"> Masz jeszcze [%d] powiadomieÅ„ @@ -804,11 +880,13 @@ Wybierz ESC by powrócić do trybu widoku normalne </string> <string name="InventoryNoMatchingItems"> - Brak wyników w szafie dla wpisanego sÅ‚owa. + Obiektu nie znaleziono w Szafie. Spróbuj [secondlife:///app/search/groups "Search"]. + </string> + <string name="FavoritesNoMatchingItems"> + PrzeciÄ…gnij landmark tutaj aby dodać go do swoich ulubionych. </string> <string name="InventoryNoTexture"> - Nie posiadasz kopi -tej tekstury w swojej szafie + Nie posiadasz kopii tej tekstury w Twojej Szafie. </string> <string name="no_transfer" value=" (brak oddawania)"/> <string name="no_modify" value=" (brak modyfikowania)"/> @@ -823,6 +901,7 @@ tej tekstury w swojej szafie Brak zawartoÅ›ci </string> <string name="WornOnAttachmentPoint" value=" (zaÅ‚ożony na [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (aktywne)"/> <string name="Chat" value=" Czat :"/> <string name="Sound" value=" DźwiÄ™k :"/> <string name="Wait" value=" --- Zaczekaj :"/> @@ -916,6 +995,9 @@ tej tekstury w swojej szafie <string name="InvFolder My Outfits"> Moje Ubranie </string> + <string name="InvFolder Accessories"> + Akcesoria + </string> <string name="InvFolder Friends"> Znajomi </string> @@ -1266,11 +1348,164 @@ tej tekstury w swojej szafie wszystkie majÄ…tki, które nadzorujesz dla [OWNER] </string> <string name="RegionInfoAllowedResidents"> - Rezydenci majÄ…cy dostÄ™p: ([ALLOWEDAGENTS], max [MAXACCESS]) + Dozwoleni Rezydenci: ([ALLOWEDAGENTS], maks. [MAXACCESS]) </string> <string name="RegionInfoAllowedGroups"> Grupy majÄ…ce dostÄ™p: ([ALLOWEDGROUPS], max [MAXACCESS]) </string> + <string name="ScriptLimitsParcelScriptMemory"> + Pamięć Skryptów Parceli + </string> + <string name="ScriptLimitsParcelsOwned"> + Parcele: [PARCELS] + </string> + <string name="ScriptLimitsMemoryUsed"> + Pamięć wykorzystana: [COUNT] kb z [MAX] kb; [AVAILABLE] kb pozostaÅ‚o + </string> + <string name="ScriptLimitsMemoryUsedSimple"> + Pamięć wykorzystana: [COUNT] kb + </string> + <string name="ScriptLimitsParcelScriptURLs"> + Skrypty URL Parceli + </string> + <string name="ScriptLimitsURLsUsed"> + URL: [COUNT] z [MAX]; [AVAILABLE] dostÄ™pne + </string> + <string name="ScriptLimitsURLsUsedSimple"> + URL: [COUNT] + </string> + <string name="ScriptLimitsRequestError"> + BÅ‚Ä…d wyszukiwania informacji + </string> + <string name="ScriptLimitsRequestNoParcelSelected"> + PosiadÅ‚ość nie zostaÅ‚a wybrana + </string> + <string name="ScriptLimitsRequestWrongRegion"> + BÅ‚Ä…d: informacja o skrypcie jest dostÄ™pna tylko w obecnym regionie. + </string> + <string name="ScriptLimitsRequestWaiting"> + Wyszukiwanie informacji... + </string> + <string name="ScriptLimitsRequestDontOwnParcel"> + Nie masz pozwolenia na sprawdzenie parceli. + </string> + <string name="SITTING_ON"> + UsiÄ…dź na + </string> + <string name="ATTACH_CHEST"> + Klatka piersiowa + </string> + <string name="ATTACH_HEAD"> + GÅ‚owa + </string> + <string name="ATTACH_LSHOULDER"> + Lewe RamiÄ™ + </string> + <string name="ATTACH_RSHOULDER"> + RamiÄ™ Prawe + </string> + <string name="ATTACH_LHAND"> + RÄ™ka Lewa + </string> + <string name="ATTACH_RHAND"> + Prawa RÄ™ka + </string> + <string name="ATTACH_LFOOT"> + Lewa Stopa + </string> + <string name="ATTACH_RFOOT"> + Stopa Prawa + </string> + <string name="ATTACH_BACK"> + Plecy + </string> + <string name="ATTACH_PELVIS"> + Miednica + </string> + <string name="ATTACH_MOUTH"> + Usta + </string> + <string name="ATTACH_CHIN"> + Podbródek + </string> + <string name="ATTACH_LEAR"> + Ucho Lewe + </string> + <string name="ATTACH_REAR"> + Prawe Ucho + </string> + <string name="ATTACH_LEYE"> + Lewe Oko + </string> + <string name="ATTACH_REYE"> + Prawe Oko + </string> + <string name="ATTACH_NOSE"> + Nos + </string> + <string name="ATTACH_RUARM"> + RamiÄ™ P Górne + </string> + <string name="ATTACH_RLARM"> + Prawe dolne ramiÄ™ + </string> + <string name="ATTACH_LUARM"> + RamiÄ™ L Górne + </string> + <string name="ATTACH_LLARM"> + Lewe dolne ramiÄ™ + </string> + <string name="ATTACH_RHIP"> + Biodro prawe + </string> + <string name="ATTACH_RULEG"> + P Górna Noga + </string> + <string name="ATTACH_RLLEG"> + Noga P Dolna + </string> + <string name="ATTACH_LHIP"> + Biodro Lewe + </string> + <string name="ATTACH_LULEG"> + L Górna Noga + </string> + <string name="ATTACH_LLLEG"> + Noga L Dolna + </string> + <string name="ATTACH_BELLY"> + Brzuch + </string> + <string name="ATTACH_RPEC"> + Prawa klatka + </string> + <string name="ATTACH_LPEC"> + Lewa klatka + </string> + <string name="ATTACH_HUD_CENTER_2"> + HUD Åšrodek 2 + </string> + <string name="ATTACH_HUD_TOP_RIGHT"> + HUD P Górny + </string> + <string name="ATTACH_HUD_TOP_CENTER"> + HUD Åšrodek Górny + </string> + <string name="ATTACH_HUD_TOP_LEFT"> + HUD L Góra + </string> + <string name="ATTACH_HUD_CENTER_1"> + HUD Åšrodek 1 + </string> + <string name="ATTACH_HUD_BOTTOM_LEFT"> + HUD Dolna L Strona + </string> + <string name="ATTACH_HUD_BOTTOM"> + HUD Dolny + </string> + <string name="ATTACH_HUD_BOTTOM_RIGHT"> + HUD Dolna P Strona + </string> <string name="CursorPos"> Linia [LINE], Kolumna [COLUMN] </string> @@ -1280,11 +1515,17 @@ tej tekstury w swojej szafie <string name="PanelContentsNewScript"> Nowy Skrypt </string> + <string name="PanelContentsTooltip"> + Zawartość obiektu + </string> + <string name="BusyModeResponseDefault"> + Rezydent, do którego wysÅ‚aÅ‚eÅ› wiadomość prywatnÄ… znajduje siÄ™ w trybie pracy. Oznacza to, iż Twoja wiadomość zostanie zapisana do przeglÄ…dniÄ™cia poźniej. + </string> <string name="MuteByName"> (wedÅ‚ug nazwy) </string> <string name="MuteAgent"> - (rezydenta) + (Rezydent) </string> <string name="MuteObject"> (obiekt) @@ -1315,6 +1556,15 @@ tej tekstury w swojej szafie <string name="ClassifiedUpdateAfterPublish"> (zostanie zaktualizowane po publikacji) </string> + <string name="NoPicksClassifiedsText"> + Nie dodaÅ‚eÅ› nic do Ulubionych i Reklam. Kliknij na poniższy przycisk Dodaj aby dodać miejsce do Ulubionych lub Reklamy. + </string> + <string name="NoAvatarPicksClassifiedsText"> + Użytkownik nie posiada Ulubionych lub Reklam + </string> + <string name="PicksClassifiedsLoadingText"> + Åadowanie... + </string> <string name="MultiPreviewTitle"> PodglÄ…d </string> @@ -1385,22 +1635,36 @@ tej tekstury w swojej szafie Anuluj </string> <string name="UploadingCosts"> - Koszty zaÅ‚adowania [%s] + ZaÅ‚adowanie [NAME] kosztuje [AMOUNT]L$ + </string> + <string name="BuyingCosts"> + Cena zakupu tego wynosi L$ [AMOUNT] </string> <string name="UnknownFileExtension"> Nieznane rozszerzenie dla pliku [.%s] Expected .wav, .tga, .bmp, .jpg, .jpeg, or .bvh </string> + <string name="MuteObject2"> + Zablokuj + </string> <string name="AddLandmarkNavBarMenu"> Dodaj Ulubione Miejsce... </string> <string name="EditLandmarkNavBarMenu"> Edytuj Ulubione Miejce... </string> - <string name="accel-mac-control">⌃</string> - <string name="accel-mac-command">⌘</string> - <string name="accel-mac-option">⌥</string> - <string name="accel-mac-shift">⇧</string> + <string name="accel-mac-control"> + ⌃ + </string> + <string name="accel-mac-command"> + ⌘ + </string> + <string name="accel-mac-option"> + ⌥ + </string> + <string name="accel-mac-shift"> + ⇧ + </string> <string name="accel-win-control"> Ctrl+ </string> @@ -1638,43 +1902,25 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. CieÅ„ o godzinie 5 </string> <string name="All White"> - Wszystko BiaÅ‚e + Wszystko biaÅ‚e </string> <string name="Anime Eyes"> - Animuj Oczy + Animuj oczy </string> <string name="Arced"> Obrócony </string> <string name="Arm Length"> - DÅ‚ugość Ramienia + DÅ‚ugość ramienia </string> <string name="Attached"> DoÅ‚Ä…czone </string> <string name="Attached Earlobes"> - PÅ‚atki Uszu DoÅ‚Ä…czone - </string> - <string name="Back Bangs"> - Tylnie Pasemka - </string> - <string name="Back Bangs Down"> - Tylnie Pasemka w Dół - </string> - <string name="Back Bangs Up"> - Tylnie Pasemka do Góry + PÅ‚atki uszu doÅ‚Ä…czone </string> <string name="Back Fringe"> - Tylnia Grzywka - </string> - <string name="Back Hair"> - Back Hair - </string> - <string name="Back Hair Down"> - Back Hair Down - </string> - <string name="Back Hair Up"> - Back Hair Up + Tylnia grzywka </string> <string name="Baggy"> Wypchane @@ -1682,12 +1928,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Bangs"> Pasemka </string> - <string name="Bangs Down"> - Pasemka w Dół - </string> - <string name="Bangs Up"> - Pasemka do Góry - </string> <string name="Beady Eyes"> Oczy ZaÅ‚zawione </string> @@ -1700,17 +1940,14 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Big Butt"> Duży PoÅ›ladek </string> - <string name="Big Eyeball"> - Duża GaÅ‚ka Oczna - </string> <string name="Big Hair Back"> - Duże WÅ‚osy: z TyÅ‚u + Duże WÅ‚osy: z tyÅ‚u </string> <string name="Big Hair Front"> - Duże WÅ‚osy: z Przodu + Duże WÅ‚osy: z przodu </string> <string name="Big Hair Top"> - Duże WÅ‚osy: z Góry + Duże WÅ‚osy: z góry </string> <string name="Big Head"> Duża GÅ‚owa @@ -1728,22 +1965,22 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Blond </string> <string name="Blonde Hair"> - WÅ‚osy Koloru Blond + WÅ‚osy Blond </string> <string name="Blush"> Rumieniec </string> <string name="Blush Color"> - Kolor RumieÅ„ca + Kolor rumieÅ„ca </string> <string name="Blush Opacity"> - Intensywność RumieÅ„ca + Intensywność rumieÅ„ca </string> <string name="Body Definition"> - Detale CiaÅ‚a + Detale ciaÅ‚a </string> <string name="Body Fat"> - Zawartość Tkanki TÅ‚uszczowej + Zawartość tkanki tÅ‚uszczowej </string> <string name="Body Freckles"> Piegi @@ -1761,13 +1998,13 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Bow Legged </string> <string name="Breast Buoyancy"> - JÄ™drność Piersi + JÄ™drność piersi </string> <string name="Breast Cleavage"> - OdstÄ™p MiÄ™dzy Piersiami + OdstÄ™p miÄ™dzy piersiami </string> <string name="Breast Size"> - Rozmiar Piersi + Rozmiar piersi </string> <string name="Bridge Width"> Szerokość @@ -1776,7 +2013,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Szerokie </string> <string name="Brow Size"> - Rozmiar CzoÅ‚a + Rozmiar czoÅ‚a </string> <string name="Bug Eyes"> Bug Eyes @@ -1812,34 +2049,34 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Chaplin </string> <string name="Cheek Bones"> - KoÅ›ci Policzkowe + KoÅ›ci policzkowe </string> <string name="Chest Size"> - Rozmiar Klatki Piersiowej + Rozmiar klatki piersiowej </string> <string name="Chin Angle"> - KÄ…t Podbródka + KÄ…t podbródka </string> <string name="Chin Cleft"> - DoÅ‚ek w Podbródku + DoÅ‚ek w podbródku </string> <string name="Chin Curtains"> - ZasÅ‚oniÄ™cie Podbródka + ZasÅ‚oniÄ™cie podbródka </string> <string name="Chin Depth"> - DÅ‚ugość Podbródka + DÅ‚ugość podbródka </string> <string name="Chin Heavy"> - Ciężar Podbródka + Ciężar podbródka </string> <string name="Chin In"> - Podbródek WewnÄ…trz + Podbródek wewnÄ…trz </string> <string name="Chin Out"> - Podbródek ZewnÄ™trzny + Podbródek zewnÄ™trzny </string> <string name="Chin-Neck"> - Podwójny Podbródek + Podwójny podbródek </string> <string name="Clear"> Wyczyść @@ -1854,32 +2091,29 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. ZamkniÄ™te </string> <string name="Closed Back"> - ZamkniÄ™te z TyÅ‚u + ZamkniÄ™te z tyÅ‚u </string> <string name="Closed Front"> - ZamkniÄ™te z Przodu + ZamkniÄ™te z przodu </string> <string name="Closed Left"> - Lewe Oko ZamkniÄ™te + Lewe Oko zamkniÄ™te </string> <string name="Closed Right"> - Prawe Oko ZamkniÄ™te + Prawe Oko zamkniÄ™te </string> <string name="Coin Purse"> Coin Purse </string> <string name="Collar Back"> - KoÅ‚nierz z TyÅ‚u + KoÅ‚nierz z tyÅ‚u </string> <string name="Collar Front"> - KoÅ‚nierz z Przodu + KoÅ‚nierz z przodu </string> <string name="Corner Down"> Corner Down </string> - <string name="Corner Normal"> - Corner Normal - </string> <string name="Corner Up"> Corner Up </string> @@ -1887,10 +2121,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Pognieciony </string> <string name="Crooked Nose"> - Skrzywienie Nosa - </string> - <string name="Cropped Hair"> - PrzyciÄ™te WÅ‚osy + Skrzywienie nosa </string> <string name="Cuff Flare"> Cuff Flare @@ -1899,7 +2130,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Ciemne </string> <string name="Dark Green"> - Ciemne Zielone + Ciemne zielone </string> <string name="Darker"> Ciemniejsze @@ -1910,17 +2141,11 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Default Heels"> DomyÅ›lne Buty na Obcasie </string> - <string name="Default Toe"> - DomyÅ›lny Palec - </string> <string name="Dense"> GÄ™stość </string> - <string name="Dense hair"> - GÄ™ste WÅ‚osy - </string> <string name="Double Chin"> - Podwójny Podbródek + Podwójny podbródek </string> <string name="Downturned"> Downturned @@ -1929,61 +2154,58 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Duffle Bag </string> <string name="Ear Angle"> - Odstawanie Uszu + Odstawanie uszu </string> <string name="Ear Size"> - Rozmiar Uszu + Rozmiar uszu </string> <string name="Ear Tips"> - WierzchoÅ‚ki Uszu + WierzchoÅ‚ki uszu </string> <string name="Egg Head"> - Jajowata GÅ‚owa + Jajowata gÅ‚owa </string> <string name="Eye Bags"> - Woreczek Åzowy + Woreczek Å‚zowy </string> <string name="Eye Color"> - Kolor Oczu + Kolor oczu </string> <string name="Eye Depth"> - GÅ‚Ä™bokość Osadzenia Oczu + GÅ‚Ä™bokość osadzenia oczu </string> <string name="Eye Lightness"> - Ustawienie JasnoÅ›ci Oczu + Ustawienie jasnoÅ›ci oczu </string> <string name="Eye Opening"> - Oczy Otwarte + Oczy otwarte </string> <string name="Eye Pop"> - Różnica w WielkoÅ›ci Oczu + Różnica w wielkoÅ›ci oczu </string> <string name="Eye Size"> - Rozmiar Oczu + Rozmiar oczu </string> <string name="Eye Spacing"> - Rozstaw Oczu - </string> - <string name="Eyeball Size"> - Wielkość GaÅ‚ki Ocznej + Rozstaw oczu </string> <string name="Eyebrow Arc"> - Åuk Brwiowy + Åuk brwiowy </string> <string name="Eyebrow Density"> - GÄ™stość Brwi + GÄ™stość brwi </string> <string name="Eyebrow Height"> - Wysokość Brwi + Wysokość brwi </string> <string name="Eyebrow Points"> - KsztaÅ‚t Brwi + KsztaÅ‚t brwi </string> <string name="Eyebrow Size"> - Rozmiar Brwi + Rozmiar brwi </string> <string name="Eyelash Length"> - DÅ‚ugość RzÄ™s + DÅ‚ugość rzÄ™s </string> <string name="Eyeliner"> Eyeliner @@ -1991,68 +2213,20 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Eyeliner Color"> Kolor Eyeliner'a </string> - <string name="Eyes Back"> - Eyes Back - </string> <string name="Eyes Bugged"> Eyes Bugged </string> - <string name="Eyes Forward"> - Eyes Forward - </string> - <string name="Eyes Long Head"> - Eyes Long Head - </string> - <string name="Eyes Shear Left Up"> - Eyes Shear Left Up - </string> - <string name="Eyes Shear Right Up"> - Eyes Shear Right Up - </string> - <string name="Eyes Short Head"> - Eyes Short Head - </string> - <string name="Eyes Spread"> - Rozmieszczenie Oczu - </string> - <string name="Eyes Sunken"> - Eyes Sunken - </string> - <string name="Eyes Together"> - Oczy Razem - </string> <string name="Face Shear"> - UsuniÄ™cie Twarzy + UsuniÄ™cie twarzy </string> <string name="Facial Definition"> - Detale Twarzy + Detale twarzy </string> <string name="Far Set Eyes"> Far Set Eyes </string> - <string name="Fat"> - Grubość - </string> - <string name="Fat Head"> - Gruba GÅ‚owa - </string> <string name="Fat Lips"> - Grube Usta - </string> - <string name="Fat Lower"> - Fat Lower - </string> - <string name="Fat Lower Lip"> - Fat Lower Lip - </string> - <string name="Fat Torso"> - Gruby Tułów - </string> - <string name="Fat Upper"> - Fat Upper - </string> - <string name="Fat Upper Lip"> - Fat Upper Lip + Grube usta </string> <string name="Female"> Kobieta @@ -2064,64 +2238,49 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Palce </string> <string name="Flared Cuffs"> - Flared Cuffs + Rozszerzane rÄ™kawy </string> <string name="Flat"> PÅ‚askość </string> <string name="Flat Butt"> - PÅ‚askie PoÅ›ladki + PÅ‚askie poÅ›ladki </string> <string name="Flat Head"> - PÅ‚aska GÅ‚owa + PÅ‚aska gÅ‚owa </string> <string name="Flat Toe"> - PÅ‚aski Palec + PÅ‚aski palec </string> <string name="Foot Size"> - Rozmiar Stopy + Rozmiar stopy </string> <string name="Forehead Angle"> - KsztaÅ‚t CzoÅ‚a + KsztaÅ‚t czoÅ‚a </string> <string name="Forehead Heavy"> - Ciężar CzoÅ‚a + Ciężar czoÅ‚a </string> <string name="Freckles"> Piegi </string> - <string name="Front Bangs Down"> - Przednie Pasemka w Dół - </string> - <string name="Front Bangs Up"> - Przednie Pasemka do Góry - </string> <string name="Front Fringe"> Przednia Grzywka </string> - <string name="Front Hair"> - Front Hair - </string> - <string name="Front Hair Down"> - Front Hair Down - </string> - <string name="Front Hair Up"> - Przednie WÅ‚osy do Góry - </string> <string name="Full Back"> - GÄ™stość WÅ‚osów po Bokach + GÄ™stość wÅ‚osów po bokach </string> <string name="Full Eyeliner"> - GÄ™sty Eyeliner + GÄ™sta kredka do oczu </string> <string name="Full Front"> - GÄ™sty Przód + GÄ™sty przód </string> <string name="Full Hair Sides"> - GÄ™ste WÅ‚osy po Bokach + GÄ™ste wÅ‚osy po bokach </string> <string name="Full Sides"> - GÄ™ste Boki + GÄ™ste boki </string> <string name="Glossy"> BÅ‚yszczÄ…ce @@ -2130,64 +2289,64 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. RÄ™kawiczki </string> <string name="Glove Length"> - DÅ‚ugość RÄ™kawiczek + DÅ‚ugość rÄ™kawiczek </string> <string name="Hair"> WÅ‚osy </string> <string name="Hair Back"> - WÅ‚osy: z TyÅ‚u + WÅ‚osy: z tyÅ‚u </string> <string name="Hair Front"> - WÅ‚osy: z Przodu + WÅ‚osy: z przodu </string> <string name="Hair Sides"> - Hair: Boki + WÅ‚osy: boki </string> <string name="Hair Sweep"> - Kierunek Zaczesania + Kierunek zaczesania </string> <string name="Hair Thickess"> - Grubość WÅ‚osów + Grubość wÅ‚osów </string> <string name="Hair Thickness"> - Grubość WÅ‚osów + Grubość wÅ‚osów </string> <string name="Hair Tilt"> - PrzesuniÄ™cie Fryzury + Przes. fryzury </string> <string name="Hair Tilted Left"> - PrzesuniÄ™cie Fryzury w Lewo + Przes. fryzury L </string> <string name="Hair Tilted Right"> - PrzesuniÄ™cie Fryzury w Prawo + Przes. fryzury P </string> <string name="Hair Volume"> - WÅ‚osy: ObjÄ™tość + WÅ‚osy: objÄ™tość </string> <string name="Hand Size"> - Rozmiar DÅ‚oni + Rozmiar dÅ‚oni </string> <string name="Handlebars"> Handlebars </string> <string name="Head Length"> - DÅ‚ugość GÅ‚owy + DÅ‚ugość gÅ‚owy </string> <string name="Head Shape"> - KsztaÅ‚t GÅ‚owy + KsztaÅ‚t gÅ‚owy </string> <string name="Head Size"> - Rozmiar GÅ‚owy + Rozmiar gÅ‚owy </string> <string name="Head Stretch"> - RozciÄ…gniÄ™cie GÅ‚owy + RozciÄ…gniÄ™cie gÅ‚owy </string> <string name="Heel Height"> - Wysokość Obcasa + Wysokość obcasa </string> <string name="Heel Shape"> - Ksztalt Obcasa + Ksztalt obcasa </string> <string name="Height"> Wysokość @@ -2196,7 +2355,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Wysoka </string> <string name="High Heels"> - Wysokie Obcasy + Wysokie obcasy </string> <string name="High Jaw"> High Jaw @@ -2211,34 +2370,34 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Wyżej </string> <string name="Hip Length"> - DÅ‚ugość Bioder + DÅ‚ugość bioder </string> <string name="Hip Width"> - Szerokość Bioder + Szerokość bioder </string> <string name="In"> W </string> <string name="In Shdw Color"> - WewnÄ™trzny Kolor Cienia + WewnÄ™trzny kolor cienia </string> <string name="In Shdw Opacity"> - WewnÄ™trzna Intensywność Cienia + WewnÄ™trzna intensywność cienia </string> <string name="Inner Eye Corner"> - WenwÄ™trzny Bok Oka + WenwÄ™trzny bok oka </string> <string name="Inner Eye Shadow"> - WewnÄ™trzny CieÅ„ Oka + WewnÄ™trzny cieÅ„ oka </string> <string name="Inner Shadow"> - WewnÄ™trzny CieÅ„ + WewnÄ™trzny cieÅ„ </string> <string name="Jacket Length"> - DÅ‚ugość Kurtki + DÅ‚ugość kurtki </string> <string name="Jacket Wrinkles"> - Zmarszczki na Kurtce + Zmarszczki na kurtce </string> <string name="Jaw Angle"> Jaw Angle @@ -2256,7 +2415,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Jowls </string> <string name="Knee Angle"> - KÄ…t Kolana + KÄ…t kolana </string> <string name="Knock Kneed"> Knock Kneed @@ -2265,22 +2424,22 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Duże </string> <string name="Large Hands"> - Duże DÅ‚onie + Duże dÅ‚onie </string> <string name="Left Part"> Left Part </string> <string name="Leg Length"> - DÅ‚ugość Nogi + DÅ‚ugość nogi </string> <string name="Leg Muscles"> - Umięśnione Nogi + Umięśnione nogi </string> <string name="Less"> Mniej </string> <string name="Less Body Fat"> - Mniejsza ZawartoÅ›ci Tkanki TÅ‚uszczowej + Mniejsza zawartoÅ›ci tkanki tÅ‚uszczowej </string> <string name="Less Curtains"> Less Curtains @@ -2289,7 +2448,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Mniej Piegów </string> <string name="Less Full"> - Less Full + Mniej PeÅ‚ne </string> <string name="Less Gravity"> Mniej Ciężaru @@ -2298,25 +2457,25 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Less Love </string> <string name="Less Muscles"> - Mniej Mięśni + Mniej mięśni </string> <string name="Less Muscular"> - Mniej Umięśnienia + Mniej umięśnienia </string> <string name="Less Rosy"> Less Rosy </string> <string name="Less Round"> - Mniej ZaaokrÄ…glone + Mniej zaaokrÄ…glone </string> <string name="Less Saddle"> Less Saddle </string> <string name="Less Square"> - Mniej Kwadratowe + Mniej kwadratowe </string> <string name="Less Volume"> - Mniej ObjÄ™toÅ›ci + Mniej objÄ™toÅ›ci </string> <string name="Less soul"> Less soul @@ -2325,25 +2484,25 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Lżejsze </string> <string name="Lip Cleft"> - Szerokość Rozszczepienia Górnej Wargi + Szerokość Rozszczepienia górnej wargi </string> <string name="Lip Cleft Depth"> - GÅ‚Ä™bokość Rozszczepienia Górnej Wargi + GÅ‚Ä™bokość rozszczepienia górnej wargi </string> <string name="Lip Fullness"> - PeÅ‚ność Ust + PeÅ‚ne usta </string> <string name="Lip Pinkness"> - Róż Ust + Róż ust </string> <string name="Lip Ratio"> - Proporcje Ust + Proporcje ust </string> <string name="Lip Thickness"> - Grubość Ust + Grubość ust </string> <string name="Lip Width"> - Szerokość Ust + Szerokość ust </string> <string name="Lipgloss"> PoÅ‚ysk @@ -2352,46 +2511,43 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Szminka </string> <string name="Lipstick Color"> - Kolor Szminki + Kolor szminki </string> <string name="Long"> Dlugość </string> <string name="Long Head"> - DÅ‚uga GÅ‚owa + DÅ‚uga gÅ‚owa </string> <string name="Long Hips"> - DÅ‚ugie Biodra + DÅ‚ugie biodra </string> <string name="Long Legs"> - DÅ‚ugie Nogi + DÅ‚ugie nogi </string> <string name="Long Neck"> - DÅ‚ugi Kark + DÅ‚ugi kark </string> <string name="Long Pigtails"> - DÅ‚ugi Warkocz + DÅ‚ugi warkocz </string> <string name="Long Ponytail"> - DÅ‚ugi Kucyk + DÅ‚ugi kucyk </string> <string name="Long Torso"> - DÅ‚ugi Tułów + DÅ‚ugi tułów </string> <string name="Long arms"> - Dlugie Ramiona - </string> - <string name="Longcuffs"> - DÅ‚ugie RÄ™kawy + Dlugie ramiona </string> <string name="Loose Pants"> - Luźne Spodnie + Luźne spodnie </string> <string name="Loose Shirt"> - Luźna Koszulka + Luźna koszulka </string> <string name="Loose Sleeves"> - Luźne RÄ™kawy + Luźne rÄ™kawy </string> <string name="Love Handles"> Love Handles @@ -2400,16 +2556,16 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Nisko </string> <string name="Low Heels"> - Niskie Obcasy + Niskie obcasy </string> <string name="Low Jaw"> - Niska SzczÄ™ka + Niska szczÄ™ka </string> <string name="Low Platforms"> Low Platforms </string> <string name="Low and Loose"> - Niskie i Luźne + Niskie i luźne </string> <string name="Lower"> Niżej @@ -2424,7 +2580,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Mężczyzna </string> <string name="Middle Part"> - Część Åšrodkowa + Część Å›rodkowa </string> <string name="More"> WiÄ™cej @@ -2433,7 +2589,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. More Blush </string> <string name="More Body Fat"> - WiÄ™cej ZawartoÅ›ci Tkanki TÅ‚uszczowej + WiÄ™cej zawartoÅ›ci tkanki tÅ‚uszczowej </string> <string name="More Curtains"> More Curtains @@ -2442,34 +2598,34 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. More Eyeshadow </string> <string name="More Freckles"> - WiÄ™cej Piegów + WiÄ™cej piegów </string> <string name="More Full"> More Full </string> <string name="More Gravity"> - WiÄ™cej Ciężaru + WiÄ™cej ciężaru </string> <string name="More Lipstick"> - WiÄ™cej Szminki + WiÄ™cej szminki </string> <string name="More Love"> More Love </string> <string name="More Lower Lip"> - WiÄ™cej Dolnej Wargi + WiÄ™cej dolnej wargi </string> <string name="More Muscles"> - WiÄ™cej Mięśni + WiÄ™cej mięśni </string> <string name="More Muscular"> - WiÄ™cej Umięśnienia + WiÄ™cej umięśnienia </string> <string name="More Rosy"> More Rosy </string> <string name="More Round"> - WiÄ™cej ZaokrÄ…glenia + WiÄ™cej zaokrÄ…glenia </string> <string name="More Saddle"> More Saddle @@ -2478,16 +2634,16 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. More Sloped </string> <string name="More Square"> - WiÄ™cej Kwadratowy + WiÄ™cej kwadratowy </string> <string name="More Upper Lip"> - WiÄ™cej Górnej Wargi + WiÄ™cej górnej wargi </string> <string name="More Vertical"> More Vertical </string> <string name="More Volume"> - WiÄ™cej ObjÄ™toÅ›ci + WiÄ™cej objÄ™toÅ›ci </string> <string name="More soul"> More soul @@ -2511,10 +2667,10 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Mutton Chops </string> <string name="Nail Polish"> - Lakier na Paznokciach + Lakier na paznokciach </string> <string name="Nail Polish Color"> - Kolor Lakieru na Paznokciach + Kolor lakieru na paznokciach </string> <string name="Narrow"> WÄ…skie @@ -2532,10 +2688,10 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Naturalne </string> <string name="Neck Length"> - DÅ‚ugość Karku + DÅ‚ugość karku </string> <string name="Neck Thickness"> - Grubość Karku + Grubość karku </string> <string name="No Blush"> No Blush @@ -2544,70 +2700,64 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Brak Eyeliner's </string> <string name="No Eyeshadow"> - Brak Cienia pod PowiekÄ… - </string> - <string name="No Heels"> - Brak Obcasów + Brak cienia pod powiekÄ… </string> <string name="No Lipgloss"> - Brak PoÅ‚ysku + Brak poÅ‚ysku </string> <string name="No Lipstick"> - Brak Szminki + Brak szminki </string> <string name="No Part"> No Part </string> <string name="No Polish"> - Brak Lakieru + Brak lakieru </string> <string name="No Red"> - Brak Czerwieni + Brak czerwieni </string> <string name="No Spikes"> - Brak Szpiców + Brak szpiców </string> <string name="No White"> - Brak BiaÅ‚ego + Brak biaÅ‚ego </string> <string name="No Wrinkles"> - Brak Zmarszczek + Brak zmarszczek </string> <string name="Normal Lower"> - Dół Normalny + Dół normalny </string> <string name="Normal Upper"> - Góra Normalna + Góra normalna </string> <string name="Nose Left"> - Nos w StronÄ™ LewÄ… + Nos w stronÄ™ lewÄ… </string> <string name="Nose Right"> - Nos w StronÄ™ PrawÄ… + Nos w stronÄ™ prawÄ… </string> <string name="Nose Size"> - Rozmiar Nosa + Rozmiar nosa </string> <string name="Nose Thickness"> - Grubość Nosa + Grubość nosa </string> <string name="Nose Tip Angle"> - KÄ…t Czubka Nosa + KÄ…t czubka nosa </string> <string name="Nose Tip Shape"> - KsztaÅ‚t Czubka Nosa + KsztaÅ‚t czubka nosa </string> <string name="Nose Width"> - Szerokość Nosa + Szerokość nosa </string> <string name="Nostril Division"> - Przegroda Nosa + Przegroda nosa </string> <string name="Nostril Width"> - Wielkość Dziurek w Nosie - </string> - <string name="Old"> - Stare + Wielkość dziurek w nosie </string> <string name="Opaque"> Intensywność @@ -2616,16 +2766,16 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Otwarte </string> <string name="Open Back"> - Otwarte z TyÅ‚u + Otwarte z tyÅ‚u </string> <string name="Open Front"> - Otwarte z Przodu + Otwarte z przodu </string> <string name="Open Left"> - Otwarte z Lewej + Otwarte z lewej </string> <string name="Open Right"> - Otwarte z Prawej + Otwarte z prawej </string> <string name="Orange"> PomaraÅ„czowe @@ -2634,19 +2784,19 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. ZewnÄ™trznie </string> <string name="Out Shdw Color"> - ZewnÄ™trzny Kolor Cienia + ZewnÄ™trzny kolor cienia </string> <string name="Out Shdw Opacity"> - ZewnÄ™trzna Grubość Cienia + ZewnÄ™trzna grubość cienia </string> <string name="Outer Eye Corner"> - ZewnÄ™trzny Bok Oka + ZewnÄ™trzny bok oka </string> <string name="Outer Eye Shadow"> - ZewnÄ™trzny CieÅ„ Oka + ZewnÄ™trzny cieÅ„ oka </string> <string name="Outer Shadow"> - ZewnÄ™trzny CieÅ„ + ZewnÄ™trzny cieÅ„ </string> <string name="Overbite"> Overbite @@ -2655,25 +2805,25 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Package </string> <string name="Painted Nails"> - Pomalowane Paznokcie + Pomalowane paznokcie </string> <string name="Pale"> Pale </string> <string name="Pants Crotch"> - Krocze Spodni + Krocze spodni </string> <string name="Pants Fit"> Pants Fit </string> <string name="Pants Length"> - DÅ‚ugość Spodni + DÅ‚ugość spodni </string> <string name="Pants Waist"> - Talia Spodni + Talia spodni </string> <string name="Pants Wrinkles"> - Zmarszczki Spodni + Zmarszczki spodni </string> <string name="Part"> Część @@ -2682,7 +2832,7 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Part Bangs </string> <string name="Pectorals"> - Mięśnie Klatki Piersiowej + Mięśnie klatki piersiowej </string> <string name="Pigment"> Pigment @@ -2708,9 +2858,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Pointy Heels"> Pointy Heels </string> - <string name="Pointy Toe"> - Pointy Toe - </string> <string name="Ponytail"> Kucyk </string> @@ -2735,27 +2882,18 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Red Hair"> Czerwone WÅ‚osy </string> - <string name="Red Skin"> - Czerwona Skóra - </string> <string name="Regular"> Regularne </string> - <string name="Regular Muscles"> - Regularne Mięśnie - </string> <string name="Right Part"> - Prawa Cześć + Prawa część </string> <string name="Rosy Complexion"> - Kompleksowość Różu + Kompleksowość różu </string> <string name="Round"> ZaokrÄ…glenie </string> - <string name="Round Forehead"> - ZaokrÄ…glenie na Czole - </string> <string name="Ruddiness"> Rudowatość </string> @@ -2768,62 +2906,44 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Saddle Bags"> Saddle Bags </string> - <string name="Saddlebags"> - Saddlebags - </string> - <string name="Scrawny"> - Scrawny - </string> <string name="Scrawny Leg"> Scrawny Leg </string> <string name="Separate"> Odzielne </string> - <string name="Shading"> - Cieniowanie - </string> - <string name="Shadow hair"> - Cieniowane WÅ‚osy - </string> <string name="Shallow"> PÅ‚ytkie </string> <string name="Shear Back"> - Tylne UsuniÄ™cie WÅ‚osów + Tylne usuniÄ™cie wÅ‚osów </string> <string name="Shear Face"> - UsuniÄ™cie Twarzy + UsuniÄ™cie twarzy </string> <string name="Shear Front"> - Przednie UsuniÄ™cie WÅ‚osów - </string> - <string name="Shear Left"> - UsuniÄ™cie z Lewej Strony + Przednie usuniÄ™cie wÅ‚osów </string> <string name="Shear Left Up"> - UsuniÄ™cie od Lewej Strony do Góry - </string> - <string name="Shear Right"> - UsuniÄ™cie z Prawej Strony + UsuniÄ™cie od lewej strony do góry </string> <string name="Shear Right Up"> - UsuniÄ™cie od Prawej Strony do Góry + UsuniÄ™cie od prawej strony do góry </string> <string name="Sheared Back"> - Tylnie UsuniÄ™cie WÅ‚osów + Tylnie usuniÄ™cie wÅ‚osów </string> <string name="Sheared Front"> - Przednie UsuniÄ™cie WÅ‚osów + Przednie usuniÄ™cie wÅ‚osów </string> <string name="Shift Left"> - PrzesuÅ„ w Lewo + PrzesuÅ„ w lewo </string> <string name="Shift Mouth"> - PrzesuÅ„ Usta + PrzesuÅ„ usta </string> <string name="Shift Right"> - PrzesuÅ„ w Prawo + PrzesuÅ„ w prawo </string> <string name="Shirt Bottom"> Dolna Część Koszulki @@ -2832,22 +2952,22 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Shirt Fit </string> <string name="Shirt Wrinkles"> - Zmarszczki na Koszulce + Zmarszczki na koszulce </string> <string name="Shoe Height"> - Wysokość Buta + Wysokość buta </string> <string name="Short"> Krótkie </string> <string name="Short Arms"> - Krótkie Ramiona + Krótkie ramiona </string> <string name="Short Legs"> - Krótkie Nogi + Krótkie nogi </string> <string name="Short Neck"> - Krótki Kark + Krótki kark </string> <string name="Short Pigtails"> Short Pigtails @@ -2859,25 +2979,16 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Krótkie Baczki </string> <string name="Short Torso"> - Krótki Tułów + Krótki tułów </string> <string name="Short hips"> - Krótkie Biodra + Krótkie biodra </string> <string name="Shoulders"> Ramiona </string> - <string name="Side Bangs"> - Boczne Pasemka - </string> - <string name="Side Bangs Down"> - Boczne Pasemka w Dół - </string> - <string name="Side Bangs Up"> - Boczne Pasemka do Góry - </string> <string name="Side Fringe"> - Boczna Grzywka + Boczna grzywka </string> <string name="Sideburns"> Baczki @@ -2891,9 +3002,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Sides Hair Up"> Boczne WÅ‚osy do Góry </string> - <string name="Skinny"> - SmukÅ‚ość - </string> <string name="Skinny Neck"> SmukÅ‚y Kark </string> @@ -2901,16 +3009,16 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Skirt Fit </string> <string name="Skirt Length"> - DÅ‚ugość Spódnicy + DÅ‚ugość spódnicy </string> <string name="Slanted Forehead"> - UkoÅ›ne CzoÅ‚o + UkoÅ›ne czoÅ‚o </string> <string name="Sleeve Length"> - DÅ‚ugość RÄ™kawów + DÅ‚ugość rÄ™kawów </string> <string name="Sleeve Looseness"> - Luźność RÄ™kawów + Luźność rÄ™kawów </string> <string name="Slit Back"> Slit: Back @@ -2928,22 +3036,19 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. MaÅ‚e </string> <string name="Small Hands"> - MaÅ‚e DÅ‚onie + MaÅ‚e dÅ‚onie </string> <string name="Small Head"> - MaÅ‚a GÅ‚owa + MaÅ‚a gÅ‚owa </string> <string name="Smooth"> GÅ‚adkie </string> <string name="Smooth Hair"> - GÅ‚adkie WÅ‚osy + GÅ‚adkie wÅ‚osy </string> <string name="Socks Length"> - DÅ‚ugość Skarpetek - </string> - <string name="Some"> - Some + DÅ‚ugość skarpetek </string> <string name="Soulpatch"> Soulpatch @@ -2958,16 +3063,13 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Kwadratowe </string> <string name="Square Toe"> - Kwadratowy Palec + Kwadratowy palec </string> <string name="Squash Head"> - ÅšciÅ›niÄ™ta GÅ‚owa - </string> - <string name="Squash/Stretch Head"> - ÅšciÅ›niÄ™ta/RozciÄ…gniÄ™ta GÅ‚owa + ÅšciÅ›niÄ™ta gÅ‚owa </string> <string name="Stretch Head"> - RozciÄ…gniÄ™ta GÅ‚owa + RozciÄ…gniÄ™ta gÅ‚owa </string> <string name="Sunken"> Sunken @@ -2984,18 +3086,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Sweep Forward"> Sweep Forward </string> - <string name="Swept Back"> - Swept Back - </string> - <string name="Swept Back Hair"> - Swept Back Hair - </string> - <string name="Swept Forward"> - Swept Forward - </string> - <string name="Swept Forward Hair"> - Swept Forward Hair - </string> <string name="Tall"> Wysokość </string> @@ -3006,67 +3096,58 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Taper Front </string> <string name="Thick Heels"> - Grube Obcasy + Grube obcasy </string> <string name="Thick Neck"> - Gruby Kark + Gruby kark </string> <string name="Thick Toe"> - Gruby Palec - </string> - <string name="Thickness"> - Grubość + Gruby palec </string> <string name="Thin"> WÄ…ski </string> <string name="Thin Eyebrows"> - WÄ…skie Brwi + WÄ…skie brwi </string> <string name="Thin Lips"> - WÄ…skie Usta + WÄ…skie usta </string> <string name="Thin Nose"> - WÄ…ski Nos + WÄ…ski nos </string> <string name="Tight Chin"> - ObcisÅ‚y Podbródek + ObcisÅ‚y podbródek </string> <string name="Tight Cuffs"> - ObcisÅ‚e RÄ™kawy + ObcisÅ‚e rÄ™kawy </string> <string name="Tight Pants"> - ObciesÅ‚e Spodnie + ObciesÅ‚e spodnie </string> <string name="Tight Shirt"> - ObcisÅ‚y Podkoszulek + ObcisÅ‚y podkoszulek </string> <string name="Tight Skirt"> - Tight Skirt + WÄ…ska spódnica </string> <string name="Tight Sleeves"> - ObcisÅ‚e RÄ™kawy - </string> - <string name="Tilt Left"> - PrzesuÅ„ w Lewo - </string> - <string name="Tilt Right"> - PrzesuÅ„ w Prawo + ObcisÅ‚e rÄ™kawy </string> <string name="Toe Shape"> - KsztaÅ‚t Palca + KsztaÅ‚t palca </string> <string name="Toe Thickness"> - Grubość Palca + Grubość palca </string> <string name="Torso Length"> - DÅ‚ugość TuÅ‚owia + DÅ‚ugość tuÅ‚owia </string> <string name="Torso Muscles"> - Mięśnie TuÅ‚owia + Mięśnie tuÅ‚owia </string> <string name="Torso Scrawny"> - Wychudzony Tułów + Wychudzony tułów </string> <string name="Unattached"> NieprzyÅ‚Ä…czone @@ -3081,43 +3162,43 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. Nienaturalne </string> <string name="Upper Bridge"> - Górny Mostek + Górny mostek </string> <string name="Upper Cheeks"> - Górne Policzki + Górne policzki </string> <string name="Upper Chin Cleft"> - Roszczepienie Górnego Podbródka + Roszczepienie górnego podbródka </string> <string name="Upper Eyelid Fold"> - Górna Powieka + Górna powieka </string> <string name="Upturned"> Zadarta </string> <string name="Very Red"> - Bardzo Czerwona + Bardzo czerwona </string> <string name="Waist Height"> - Wysokość Tali + Wysokość talii </string> <string name="Well-Fed"> Well-Fed </string> <string name="White Hair"> - BiaÅ‚e WÅ‚osy + BiaÅ‚e wÅ‚osy </string> <string name="Wide"> Szerokie </string> <string name="Wide Back"> - Szeroki TyÅ‚ + Szeroki tyÅ‚ </string> <string name="Wide Front"> - Szeroki Przód + Szeroki przód </string> <string name="Wide Lips"> - Szerokie Usta + Szerokie usta </string> <string name="Wild"> Dzikość @@ -3194,6 +3275,21 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="IM_moderator_label"> (Moderator) </string> + <string name="started_call"> + RozpoczÄ™ta rozmowa gÅ‚osowa + </string> + <string name="joined_call"> + DoÅ‚Ä…czyÅ‚ do rozmowy gÅ‚osowej + </string> + <string name="ringing-im"> + Rozmowa gÅ‚osowa... + </string> + <string name="connected-im"> + PoÅ‚Ä…czono, kliknij ZakoÅ„cz Rozmowe aby siÄ™ rozÅ‚Ä…czyć + </string> + <string name="hang_up-im"> + Rozmowa gÅ‚osowa zakoÅ„czona + </string> <string name="only_user_message"> JesteÅ› jedynÄ… osobÄ… w tej konferencji. </string> @@ -3203,6 +3299,12 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="invite_message"> Kliknij na [BUTTON NAME] przycisk by zaakceptować/doÅ‚Ä…czyć do tej rozmowy. </string> + <string name="muted_message"> + ZablokowaÅ‚eÅ› tego Rezydenta. WysÅ‚anie wiadomoÅ›ci automatycznie odblokuje go. + </string> + <string name="generic"> + BÅ‚Ä…d zapytania, proszÄ™ spróbować później + </string> <string name="generic_request_error"> BÅ‚Ä…d. Spróbuj ponownie za kilka minut. </string> @@ -3221,19 +3323,153 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="not_a_mod_error"> Nie jesteÅ› moderatorem konferencji. </string> + <string name="muted"> + Moderator grupy wyÅ‚Ä…czyÅ‚ czat. + </string> <string name="muted_error"> Moderator wyciszyÅ‚ CiÄ™. </string> <string name="add_session_event"> Nie można dodać nikogo do czatu z [RECIPIENT]. </string> + <string name="message"> + Nie można wysÅ‚ać Twojej wiadomoÅ›ci do sesji czatu z [RECIPIENT]. + </string> <string name="message_session_event"> Nie można wysÅ‚ać Twojej wiadomoÅ›ci do sesji czatu z [RECIPIENT]. </string> + <string name="mute"> + BÅ‚Ä…d poczas moderacji. + </string> + <string name="removed"> + ZostaÅ‚eÅ› usuniÄ™ty z grupy + </string> <string name="removed_from_group"> UsuniÄ™to CiÄ™ z grupy. </string> <string name="close_on_no_ability"> Nie posiadasz praw by uczestniczyć w tej konferencji. </string> + <string name="unread_chat_single"> + [SOURCES] powiedziaÅ‚/a coÅ› nowego + </string> + <string name="unread_chat_multiple"> + [SOURCES] powiedziaÅ‚/a coÅ› nowego + </string> + <string name="paid_you_ldollars"> + [NAME] zapÅ‚aciÅ‚ Ci L$[AMOUNT] + </string> + <string name="you_paid_ldollars"> + ZapÅ‚acono [NAME] [AMOUNT]L$ [REASON]. + </string> + <string name="you_paid_ldollars_no_reason"> + ZapÅ‚acono [NAME] [AMOUNT]L$. + </string> + <string name="you_paid_ldollars_no_name"> + ZapÅ‚acono [AMOUNT]L$ [REASON]. + </string> + <string name="for a parcel of land"> + za posiadÅ‚ość + </string> + <string name="for a land access pass"> + za przepustkÄ™ na PosiadÅ‚ość + </string> + <string name="for deeding land"> + dla przypisania PosiadÅ‚oÅ›ci + </string> + <string name="to create a group"> + aby stworzyć grupÄ™ + </string> + <string name="to join a group"> + aby doÅ‚Ä…czyć do grupy + </string> + <string name="to upload"> + aby pobrać + </string> + <string name="giving"> + Dajesz L$ [AMOUNT] + </string> + <string name="uploading_costs"> + Åadowanie kosztuje [AMOUNT]L$ + </string> + <string name="this_costs"> + To kosztuje [AMOUNT]L$ + </string> + <string name="buying_selected_land"> + Kupno wybranej PosiadÅ‚oÅ›ci [AMOUNT]L$ + </string> + <string name="this_object_costs"> + Ten obiekt kosztuje [AMOUNT]L$ + </string> + <string name="group_role_everyone"> + Każdy + </string> + <string name="group_role_officers"> + Oficerowie + </string> + <string name="group_role_owners"> + WÅ‚aÅ›ciciele + </string> + <string name="uploading_abuse_report"> + Pobieranie... + +Raport o Nadużyciu + </string> + <string name="New Shape"> + Nowy ksztalt + </string> + <string name="New Skin"> + Nowa skórka + </string> + <string name="New Hair"> + Nowe wÅ‚osy + </string> + <string name="New Eyes"> + Nowe oczy + </string> + <string name="New Shirt"> + Nowa koszula + </string> + <string name="New Pants"> + Nowe spodnie + </string> + <string name="New Shoes"> + Nowe buty + </string> + <string name="New Socks"> + Nowe skarpetki + </string> + <string name="New Jacket"> + Nowa kurtka + </string> + <string name="New Gloves"> + Nowe rÄ™kawiczki + </string> + <string name="New Undershirt"> + Nowy podkoszulek + </string> + <string name="New Underpants"> + Nowa bielizna + </string> + <string name="New Skirt"> + Nowa spódnica + </string> + <string name="New Alpha"> + Nowa Alpha + </string> + <string name="New Tattoo"> + Nowy tatuaż + </string> + <string name="Invalid Wearable"> + Nieaktualne ubranie/część ciaÅ‚a + </string> + <string name="New Script"> + Nowy skrypt + </string> + <string name="New Folder"> + Nowy folder + </string> + <string name="Contents"> + Zawartość + </string> </strings> diff --git a/indra/newview/skins/default/xui/pl/teleport_strings.xml b/indra/newview/skins/default/xui/pl/teleport_strings.xml index 906978effec30bab79750050d1d4801e5e680540..6c4723dd7ec919c175a96200054fdd4c1140a7a5 100644 --- a/indra/newview/skins/default/xui/pl/teleport_strings.xml +++ b/indra/newview/skins/default/xui/pl/teleport_strings.xml @@ -62,6 +62,9 @@ Spróbuj jeszcze raz za kilka minut. <message name="completing"> Finalizowanie teleportacji. </message> + <message name="completed_from"> + Teleportacja zakoÅ„czona z [T_SLURL] + </message> <message name="resolving"> Namierzanie celu. </message> diff --git a/indra/newview/skins/default/xui/pt/floater_about.xml b/indra/newview/skins/default/xui/pt/floater_about.xml index 39548dc4978cff77921fdf84bdaceac881aaa0dc..f1f6ff9aea581b2c2756acbb8684e8968c95f1cc 100644 --- a/indra/newview/skins/default/xui/pt/floater_about.xml +++ b/indra/newview/skins/default/xui/pt/floater_about.xml @@ -38,7 +38,7 @@ Versão Vivox: [VIVOX_VERSION] </floater.string> <tab_container name="about_tab"> <panel label="Info" name="support_panel"> - <button label="Copiar para área de transferência" name="copy_btn"/> + <button label="Copiar" name="copy_btn"/> </panel> <panel label="Créditos" name="credits_panel"> <text_editor name="credits_editor"> 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 ebb9bfc32db04f0e7894ff7016137736b8730661..252969609a568ba6b7809a664db33b28c84af083 100644 --- a/indra/newview/skins/default/xui/pt/floater_about_land.xml +++ b/indra/newview/skins/default/xui/pt/floater_about_land.xml @@ -1,5 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floaterland" title="SOBRE O TERRENO"> + <floater.string name="maturity_icon_general"> + "Parcel_PG_Dark + </floater.string> + <floater.string name="maturity_icon_moderate"> + "Parcel_M_Dark" + </floater.string> + <floater.string name="maturity_icon_adult"> + "Parcel_R_Dark" + </floater.string> <floater.string name="Minutes"> [MINUTES] minutos </floater.string> @@ -15,7 +24,7 @@ <tab_container name="landtab"> <panel label="GERAL" name="land_general_panel"> <panel.string name="new users only"> - Somente novos usuários + Somente novos residentes </panel.string> <panel.string name="anyone"> Qualquer um @@ -84,9 +93,9 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <text name="GroupText"> Leyla Linden </text> - <button label="Ajustar..." label_selected="Ajustar..." name="Set..."/> + <button label="Ajustar" name="Set..."/> <check_box label="Permitir posse para o grupo" name="check deed" tool_tip="O gerente do grupo pode acionar essa terra ao grupo, então esta será mantida pelo gestor da ilha"/> - <button label="Passar..." label_selected="Passar..." name="Deed..." tool_tip="Você só pode delegar esta terra se você for um gerente selecionado pelo grupo."/> + <button label="Passar" name="Deed..." tool_tip="Você só pode delegar esta terra se você for um gerente selecionado pelo grupo."/> <check_box label="Proprietário faz contribuição com delegação" name="check contrib" tool_tip="Quando a terra é delegada ao grupo, o proprietário anterior contribui alocando terra suficiente para mantê-la."/> <text name="For Sale:"> À Venda: @@ -97,7 +106,7 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <text name="For Sale: Price L$[PRICE]."> Preço: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> - <button label="Vender Terra..." label_selected="Vender Terra..." name="Sell Land..."/> + <button label="Vender Terra" name="Sell Land..."/> <text name="For sale to"> À venda para: [BUYER] </text> @@ -109,7 +118,7 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se </text> <button label="Cancelar venda do terreno" label_selected="Cancelar venda do terreno" left="275" name="Cancel Land Sale" width="165"/> <text name="Claimed:"> - Reclamado: + Posse em: </text> <text name="DateClaimText"> Ter Ago 15 13:47:25 2006 @@ -126,28 +135,28 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <text name="DwellText"> 0 </text> - <button label="Comprar Terra..." label_selected="Comprar Terra..." left="130" name="Buy Land..." width="125"/> + <button label="Comprar terreno..." label_selected="Comprar terreno..." left="130" name="Buy Land..." width="125"/> <button label="Dados do script" name="Scripts..."/> - <button label="Comprar para o Grupo..." label_selected="Comprar para o Grupo..." name="Buy For Group..."/> - <button label="Comprar Passe..." label_selected="Comprar Passe..." left="130" name="Buy Pass..." tool_tip="Um passe concede a você acesso temporário a esta terra." width="125"/> - <button label="Abandonar Terra.." label_selected="Abandonar Terra.." name="Abandon Land..."/> - <button label="Reclamar Terra..." label_selected="Reclamar Terra..." name="Reclaim Land..."/> - <button label="Venda Linden..." label_selected="Venda Linden..." name="Linden Sale..." tool_tip="A terra precisa ser possuÃda, estar com o conteúdo configurado e não estar pronta para leilão."/> + <button label="Comprar para o Grupo" name="Buy For Group..."/> + <button label="Comprar passe..." label_selected="Comprar passe..." left="130" name="Buy Pass..." tool_tip="Um passe concede a você acesso temporário a este terreno." width="125"/> + <button label="Abandonar terreno..." label_selected="Abandonar terreno..." name="Abandon Land..."/> + <button label="Pedir terreno" name="Reclaim Land..."/> + <button label="Venda Linden" name="Linden Sale..." tool_tip="O terreno precisa ser possuÃdo, estar com o conteúdo configurado e não estar pronto para leilão."/> </panel> <panel label="CONTRATO" name="land_covenant_panel"> <panel.string name="can_resell"> - Terra comprada nesta região pode ser revendida. + Terrenos comprados nesta região podem ser revendidos. </panel.string> <panel.string name="can_not_resell"> - Terra comprada nesta região não pode ser revendida. + Terrenos comprados nesta região não podem ser revendidos. </panel.string> <panel.string name="can_change"> - Terra comprada nesta região pode ser compartilhada -ou sub-dividida. + Terrenos comprados nesta região podem ser compartilhados +ou sub-divididos. </panel.string> <panel.string name="can_not_change"> - Terra comprada nesta região não pode ser compartilhada -ou sub-dividida. + Terrenos comprados nesta região não podem ser compartilhados +ou sub-divididos. </panel.string> <text name="estate_section_lbl"> Propriedade: @@ -206,7 +215,7 @@ ou sub-dividida. [COUNT] de [MAX] ([DELETED] serão deletados) </panel.string> <text name="parcel_object_bonus"> - Fator de Bonus para Objetos na Região: [BONUS] + Fator de bônus para objetos na região: [BONUS] </text> <text name="Simulator primitive usage:"> Uso de prims: @@ -215,13 +224,13 @@ ou sub-dividida. [COUNT] de [MAX] ([AVAILABLE] disponÃveis) </text> <text name="Primitives parcel supports:" width="200"> - Primitivas suportadas pelo lote: + Prims suportadas pelo lote: </text> <text left="214" name="object_contrib_text" width="152"> [COUNT] </text> <text name="Primitives on parcel:"> - Primitivas no Lote: + Prims no Lote: </text> <text left="214" name="total_objects_text" width="48"> [COUNT] @@ -233,7 +242,7 @@ ou sub-dividida. [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowOwner" right="-135" width="60"/> - <button label="Retornar..." label_selected="Retornar..." name="ReturnOwner..." right="-10" tool_tip="Retornar os objetos aos seus donos." width="119"/> + <button label="Retornar" name="ReturnOwner..." right="-10" tool_tip="Retornar os objetos aos seus donos." width="119"/> <text left="14" name="Set to group:" width="180"> Configurados ao grupo: </text> @@ -241,15 +250,15 @@ ou sub-dividida. [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowGroup" right="-135" width="60"/> - <button label="Retornar..." label_selected="Retornar..." name="ReturnGroup..." right="-10" tool_tip="Retornar os objetos para seus donos." width="119"/> + <button label="Retornar" name="ReturnGroup..." right="-10" tool_tip="Retornar os objetos para seus donos." width="119"/> <text left="14" name="Owned by others:" width="128"> - Propriedade de Outros: + Propriedade de outros: </text> <text left="214" name="other_objects_text" width="48"> [COUNT] </text> <button label="Mostrar" label_selected="Mostrar" name="ShowOther" right="-135" width="60"/> - <button label="Retornar..." label_selected="Retornar..." name="ReturnOther..." right="-10" tool_tip="Retornar os objetos aos seus donos." width="119"/> + <button label="Retornar" name="ReturnOther..." right="-10" tool_tip="Retornar os objetos aos seus donos." width="119"/> <text left="14" name="Selected / sat upon:" width="193"> Selecionado/Sentado: </text> @@ -257,13 +266,13 @@ ou sub-dividida. [COUNT] </text> <text left="4" name="Autoreturn" width="412"> - Devolver objetos de outros residentes automaticamente (digite 0 para desligar) + Devolver objetos de outros residentes (p/ desligar tecle 0) </text> <line_editor name="clean other time" right="-10"/> <text name="Object Owners:"> - Donos dos Objetos: + Donos dos objetos: </text> - <button label="Atualizar Lista" label_selected="Atualizar Lista" left="118" name="Refresh List" tool_tip="Refresh Object List"/> + <button label="Atualizar lista" label_selected="Atualizar lista" left="118" name="Refresh List" tool_tip="Refresh Object List"/> <button label="Retornar objetos..." label_selected="Retornar objetos..." left="230" name="Return objects..."/> <name_list name="owner list"> <name_list.columns label="Tipo" name="type"/> @@ -284,57 +293,57 @@ Apenas lotes maiores podem ser listados na busca. Esta opção está desabilitada porque você não pode modificar as opções deste lote. </panel.string> <panel.string name="mature_check_mature"> - Conteúdo Mature + Conteúdo Adulto </panel.string> <panel.string name="mature_check_adult"> - Conteúdo Adult + Conteúdo Adulto </panel.string> <panel.string name="mature_check_mature_tooltip"> - A informação do seu lote ou seu conteúdo são considerados mature. + A informação do seu lote ou seu conteúdo são considerados adulto. </panel.string> <panel.string name="mature_check_adult_tooltip"> - A informação do seu lote ou seu conteúdo são considerados adult. + A informação do seu lote ou seu conteúdo são considerados adulto. </panel.string> <panel.string name="landing_point_none"> (nenhum) </panel.string> <panel.string name="push_restrict_text"> - Sem Empurrar + Sem empurrar </panel.string> <panel.string name="push_restrict_region_text"> - Sem Empurrar (Imposição na Região) + Sem empurrar (imposição na região) </panel.string> <text name="allow_label"> Autorizar outros residentes a: </text> <check_box label="Editar Terreno" name="edit land check" tool_tip="Se ativado, qualquer um pode modificar a forma da sua terra. É melhor deixar esta opção desativada, uma vez que você sempre pode editar seu próprio terreno."/> <check_box label="Voar" name="check fly" tool_tip="Se ativado, os Residentes podem voar na sua terra. Se desativado, eles podem voar apenas para dentro e por cima de sua terra."/> - <text left="172" name="allow_label2"> - Criar Objetos: + <text name="allow_label2"> + Criar objetos: </text> <check_box label="Residentes" name="edit objects check"/> <check_box label="Grupo" name="edit group objects check"/> - <text left="172" name="allow_label3"> - Entrada do Objeto: + <text name="allow_label3"> + Entrada do objeto: </text> <check_box label="Residentes" name="all object entry check"/> <check_box label="Grupo" name="group object entry check"/> - <text left="172" name="allow_label4"> - Executar Scripts: + <text name="allow_label4"> + Executar scripts: </text> <check_box label="Residentes" name="check other scripts"/> <check_box label="Grupo" name="check group scripts"/> <text name="land_options_label"> - Opções de Terra: + Opções de terra: </text> <check_box label="Salvo (sem dano)" name="check safe" tool_tip="Se ativado, ajusta o terreno para Seguro, desabilitando combate com danos. Se não ativado, o combate com danos é habilitado."/> <check_box label="Sem Empurrar" name="PushRestrictCheck" tool_tip="Evita scripts que empurram. A ativação dessa opção pode ser útil para prevenir comportamentos desordeiros na sua terra."/> <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 left="265" name="land category with adult" width="155"> - <combo_box.item label="Qualquer Categoria" name="item0"/> + <combo_box.item label="Qualquer categoria" name="item0"/> <combo_box.item label="Locação Linden" name="item1"/> - <combo_box.item label="Adult" name="item2"/> - <combo_box.item label="Artes e Cultura" name="item3"/> + <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"/> @@ -346,9 +355,9 @@ Apenas lotes maiores podem ser listados na busca. <combo_box.item label="Outros" name="item12"/> </combo_box> <combo_box left="265" name="land category" width="155"> - <combo_box.item label="Qualquer Categoria" name="item0"/> + <combo_box.item label="Qualquer categoria" name="item0"/> <combo_box.item label="Locação Linden" name="item1"/> - <combo_box.item label="Artes e Cultura" name="item3"/> + <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"/> @@ -359,7 +368,7 @@ Apenas lotes maiores podem ser listados na busca. <combo_box.item label="Compras" name="item11"/> <combo_box.item label="Outros" name="item12"/> </combo_box> - <check_box label="Conteúdo Mature" name="MatureCheck" tool_tip=""/> + <check_box label="Conteúdo adulto" name="MatureCheck" tool_tip=""/> <text name="Snapshot:"> Foto: </text> @@ -370,11 +379,11 @@ Apenas lotes maiores podem ser listados na busca. <button label="Definir" label_selected="Definir" name="Set" tool_tip="Define o ponto de aterrissagem aonde o visitante chega. Define para o ponto em que seu avatar se encontra neste lote."/> <button label="Limpar" label_selected="Limpar" name="Clear" tool_tip="Limpar o ponto de aterrissagem."/> <text name="Teleport Routing: "> - Rota de Tele-transporte: + Rota de Teletransporte: </text> - <combo_box left="140" name="landing type" tool_tip="Rota de Teletransporte -- Selecione como tratar os tele-transportes no seu lote." width="160"> + <combo_box left="140" name="landing type" tool_tip="Rota de Teletransporte -- Selecione como tratar os teletransportes no seu lote." width="160"> <combo_box.item label="Bloqueado" name="Blocked"/> - <combo_box.item label="Ponto de Aterrissagem" name="LandingPoint"/> + <combo_box.item label="Ponto de aterrissagem" name="LandingPoint"/> <combo_box.item label="Qualquer lugar" name="Anywhere"/> </combo_box> </panel> @@ -388,7 +397,7 @@ Apenas lotes maiores podem ser listados na busca. </text> <line_editor left="97" name="media_url"/> <button label="Definir..." label_selected="Definir..." name="set_media_url"/> - <check_box label="Esconder a URL da MÃdia" left="97" name="hide_media_url" tool_tip="Ativando esta opção, a URL da mÃdia se ocultará para quaisquer visualizadores não autorizados a ver esta informação do lote. Notar que isto não está disponÃvel para tipos HTML."/> + <check_box label="Esconder a URL da mÃdia" left="97" name="hide_media_url" tool_tip="Ativando esta opção, a URL da mÃdia se ocultará para quaisquer visualizadores não autorizados a ver esta informação do lote. Notar que isto não está disponÃvel para tipos HTML."/> <text name="Description:"> Descrição: </text> @@ -426,26 +435,29 @@ 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] + </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 + Acesso a este lote </text> <check_box label="Acesso para público categoria [MATURITY]" name="public_access"/> <text name="Only Allow"> Restringir acesso a contas confirmardas por: </text> <check_box label="Dados de pagamento fornecidos [ESTATE_PAYMENT_LIMIT]" name="limit_payment" tool_tip="Banir residentes sem identificação."/> - <check_box label="Idade confirmada: [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Banir residentes que não comprovaram a idade. Consulte o [SUPPORT_SITE] para saber mais."/> - <check_box label="Permitir Acesso do Grupo: [GROUP]" name="GroupCheck" tool_tip="Definir grupo na aba Geral."/> + <check_box label="Idade comprovada: [ESTATE_AGE_LIMIT]" name="limit_age_verified" tool_tip="Banir residentes que não comprovaram a idade. Consulte o [SUPPORT_SITE] para saber mais."/> + <check_box label="Permitir acesso do grupo: [GROUP]" name="GroupCheck" tool_tip="Definir grupo na aba Geral."/> <check_box label="Vender passes para:" name="PassCheck" tool_tip="Permite acesso temporário a este terreno"/> <combo_box name="pass_combo"> <combo_box.item label="Qualquer um" name="Anyone"/> <combo_box.item label="Grupo" name="Group"/> </combo_box> <spinner label="Preço em L$:" name="PriceSpin"/> - <spinner label="Horas de Acesso:" name="HoursSpin"/> + <spinner label="Horas de acesso:" name="HoursSpin"/> <panel name="Allowed_layout_panel"> <name_list name="AccessList" tool_tip="(Total [LISTED], máx de [MAX])"/> </panel> diff --git a/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml b/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml index 9f34111d8a89de05b53a148b25b4089414b0cc7b..8823d04b624616ec23ad91ca4ba43a8215fd3588 100644 --- a/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml @@ -7,20 +7,20 @@ Definindo permissões em [NAME] </floater.string> <floater.string name="start_text"> - Iniciando solicitação de mudança de permissão... + Solicitando mudança de permissão... </floater.string> <floater.string name="done_text"> Solicitação de mudança de permissão concluÃda. </floater.string> <check_box label="Animação" name="check_animation"/> <icon name="icon_animation" tool_tip="Animação"/> - <check_box label="Partes do Corpo" name="check_bodypart"/> + <check_box label="Partes do corpo" name="check_bodypart"/> <icon name="icon_bodypart" tool_tip="Partes do corpo"/> <check_box label="Roupas" name="check_clothing"/> <icon name="icon_clothing" tool_tip="Vestuário"/> <check_box label="Gestos" name="check_gesture"/> <icon name="icon_gesture" tool_tip="Gestos"/> - <check_box label="Notecards" name="check_notecard"/> + <check_box label="Anotações" name="check_notecard"/> <icon name="icon_notecard" tool_tip="Anotações"/> <check_box label="Objetos" name="check_object"/> <icon name="icon_object" tool_tip="Objects"/> @@ -30,7 +30,7 @@ <icon name="icon_sound" tool_tip="Sons"/> <check_box label="Texturas" name="check_texture"/> <icon name="icon_texture" tool_tip="Texturas"/> - <button label="√ Tudo" label_selected="Todas" name="check_all"/> + <button label="Tudo" label_selected="Todas" name="check_all"/> <button label="Limpar" label_selected="Nenhuma" name="check_none"/> <text name="newperms"> Novas autorizações de conteúdo diff --git a/indra/newview/skins/default/xui/pt/floater_buy_currency.xml b/indra/newview/skins/default/xui/pt/floater_buy_currency.xml index 1d0b3c4cd9b5114aeffecf2013017b43e612ef95..a737212b50c4d0815489e9c4782b074747a5966f 100644 --- a/indra/newview/skins/default/xui/pt/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/pt/floater_buy_currency.xml @@ -37,7 +37,7 @@ Calculando... </text> <text name="buy_action"> - [NAME] L$ [PRICE] + [ACTION] </text> <text name="total_label"> Saldo resultante: diff --git a/indra/newview/skins/default/xui/pt/floater_buy_land.xml b/indra/newview/skins/default/xui/pt/floater_buy_land.xml index 9500ba94e575bf87175d2d4aad4de94d110bfe8b..73b483acf26924c09061f2a307df72431ded382d 100644 --- a/indra/newview/skins/default/xui/pt/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/pt/floater_buy_land.xml @@ -40,7 +40,8 @@ A área selecionada não tem terras públicas. </floater.string> <floater.string name="not_owned_by_you"> - Está selecionada uma terra pertencente a outro usuário. Tente selecionar uma área menor. + Terrenos de outros residentes foram selecionados. +Tente selecionar uma área menor. </floater.string> <floater.string name="processing"> Processando sua compra... diff --git a/indra/newview/skins/default/xui/pt/floater_camera.xml b/indra/newview/skins/default/xui/pt/floater_camera.xml index 5114b19336296473cf4fa2ead136d10ef030803a..7989ce66bc32e9ce35ff2b31852ffec6a18f50ca 100644 --- a/indra/newview/skins/default/xui/pt/floater_camera.xml +++ b/indra/newview/skins/default/xui/pt/floater_camera.xml @@ -9,6 +9,18 @@ <floater.string name="move_tooltip"> Mover a Câmera para Cima e para Baixo, para a Esquerda e para a Direita </floater.string> + <floater.string name="orbit_mode_title"> + Órbita + </floater.string> + <floater.string name="pan_mode_title"> + Pan + </floater.string> + <floater.string name="avatar_view_mode_title"> + Predefinições + </floater.string> + <floater.string name="free_mode_title"> + Visualizar objeto + </floater.string> <panel name="controls"> <joystick_track name="cam_track_stick" tool_tip="Move a câmera para cima e para baixo, direita e esquerda"/> <panel name="zoom" tool_tip="Aproximar a Câmera in direção ao Foco"> @@ -25,7 +37,7 @@ <panel name="buttons"> <button label="" name="orbit_btn" tool_tip="Câmera orbital"/> <button label="" name="pan_btn" tool_tip="Câmera Pan"/> - <button label="" name="avatarview_btn" tool_tip="ver como o avatar"/> + <button label="" name="avatarview_btn" tool_tip="Predefinições"/> <button label="" name="freecamera_btn" tool_tip="Visualizar objeto"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pt/floater_customize.xml b/indra/newview/skins/default/xui/pt/floater_customize.xml index 318c73e52d84577b094251cb11506a6b1328859d..2a367cb24a5505b9c3fc2affbd3ec0058a23080c 100644 --- a/indra/newview/skins/default/xui/pt/floater_customize.xml +++ b/indra/newview/skins/default/xui/pt/floater_customize.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="APARÊNCIA" width="546"> <tab_container name="customize tab container" tab_min_width="115" width="544"> - <text label="Partes de corpo" name="body_parts_placeholder"> + <text label="Corpo" name="body_parts_placeholder"> Partes do corpo </text> <panel label="Forma" name="Shape"> @@ -43,15 +43,15 @@ <text name="Item Action Label"> Forma: </text> - <button label="Criar Nova Forma" label_selected="Criar Nova Forma" name="Create New"/> + <button label="Nova" label_selected="Nova" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> </panel> <panel label="Pele" name="Skin"> - <button label="Cor de Pele" label_selected="Cor de Pele" name="Skin Color" width="115"/> - <button label="Detalhes Faciais" label_selected="Detalhes Faciais" name="Face Detail" width="115"/> - <button label="Maquiagem" label_selected="Maquiagem" name="Makeup" width="115"/> - <button label="Detalhes do Corpo" label_selected="Detalhes do Corpo" name="Body Detail" width="115"/> + <button label="Cor de pele" label_selected="Cor de pele" name="Skin Color" width="115"/> + <button label="Detalhes faciais" label_selected="Detalhes faciais" name="Face Detail" width="115"/> + <button label="Maquilagem" label_selected="Maquilagem" name="Makeup" width="115"/> + <button label="Detalhes do corpo" label_selected="Detalhes do corpo" name="Body Detail" width="115"/> <text name="title"> [DESC] </text> @@ -79,7 +79,7 @@ <texture_picker label="Tattoo: cabeça" name="Head Tattoos" tool_tip="Clique para escolher um desenho" width="86"/> <texture_picker label="Tattoo: superior" name="Upper Tattoos" tool_tip="Clique para escolher um desenho" width="86"/> <texture_picker label="Tattoo: inferior" name="Lower Tattoos" tool_tip="Clique para escolher um desenho" width="86"/> - <button label="Criar Nova Pele" label_selected="Criar Nova Pele" name="Create New"/> + <button label="Novo" label_selected="Novo" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -114,7 +114,7 @@ Cabelo: </text> <texture_picker label="Texture" name="Texture" tool_tip="Clique para escolher uma imagem"/> - <button label="Criar Novo Cabelo" label_selected="Criar Novo Cabelo" name="Create New"/> + <button label="Criar novo cabelo" label_selected="Criar novo cabelo" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -145,7 +145,7 @@ Olhos: </text> <texture_picker label="Ãris" name="Iris" tool_tip="Clique para escolher uma imagem"/> - <button label="Criar Novos Olhos" label_selected="Criar Novos Olhos" name="Create New"/> + <button label="Criar novos olhos" label_selected="Criar novos olhos" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -157,7 +157,7 @@ <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Selecionar a cor"/> <button label="Remover" label_selected="Remover" name="Take Off"/> - <button label="Criar Nova Camisa" label_selected="Criar Nova Camisa" name="Create New"/> + <button label="Criar nova camisa" label_selected="Criar nova camisa" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -190,7 +190,7 @@ <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Selecionar a cor"/> <button label="Remover" label_selected="Remover" name="Take Off"/> - <button label="Criar Novas Calças" label_selected="Criar Novas Calças" name="Create New"/> + <button label="Criar novas calças" label_selected="Criar novas calças" name="Create New"/> <button label="Salvar" label_selected="Salvar" name="Save"/> <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -238,7 +238,7 @@ <text name="not worn instructions"> Para obter novos olhos, arraste um tipo de olhos do inventário para o seu avatar. Ou crie olhos novos. </text> - <button label="Criar Novos Sapatos" label_selected="Criar Novos Sapatos" name="Create New" width="166"/> + <button label="Criar novos sapatos" label_selected="Criar novos sapatos" name="Create New" width="166"/> <text name="no modify instructions"> Você não tem permissão para modificar esta vestimenta. </text> @@ -271,7 +271,7 @@ <text name="not worn instructions"> Para obter meias novas, arraste um par do inventário para o seu avatar. Ou crie meias novas. </text> - <button label="Criar Novas Meias" label_selected="Criar Novas Meias" name="Create New"/> + <button label="Criar novas meias" label_selected="Criar novas meias" name="Create New"/> <text name="no modify instructions"> Você não tem permissão para modificar essa vestimenta. </text> @@ -304,14 +304,14 @@ <text name="not worn instructions"> Para por uma jaqueta nova, arraste uma do inventário para o seu avatar. Ou crie uma jaqueta nova. </text> - <button label="Criar Nova Jaqueta" label_selected="Criar Nova Jaqueta" name="Create New"/> + <button label="Criar nova jaqueta" label_selected="Criar nova jaqueta" name="Create New"/> <text name="no modify instructions"> Você não tem permissão para modificar esta vestimenta. </text> <text name="Item Action Label"> Jaqueta: </text> - <texture_picker label="Tecido Superior" name="Upper Fabric" tool_tip="Clique para escolher uma imagem." width="84"/> + <texture_picker label="Tecido superior" name="Upper Fabric" tool_tip="Clique para escolher uma imagem." width="84"/> <texture_picker label="Tecido Inferior" name="Lower Fabric" tool_tip="Clique para escolher uma imagem." width="84"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Selecionar a cor"/> <button label="Remover" label_selected="Remover" name="Take Off"/> @@ -338,7 +338,7 @@ <text name="not worn instructions"> Para obter luvas novas, arraste um par do inventário para o seu avatar. Ou crie luvas novas. </text> - <button label="Criar Novas Luvas" label_selected="Criar Novas Luvas" name="Create New"/> + <button label="Criar novas luvas" label_selected="Criar novas luvas" name="Create New"/> <text name="no modify instructions"> Você não tem permissão para modificar essa vestimenta. </text> @@ -371,7 +371,7 @@ <text name="not worn instructions"> Para obter uma camiseta nova, arraste uma do inventário para o seu avatar. Ou crie uma camiseta nova. </text> - <button label="Criar Nova Camiseta" label_selected="Criar Nova Camiseta" name="Create New"/> + <button label="Criar nova camiseta" label_selected="Criar nova camiseta" name="Create New"/> <text name="no modify instructions"> Você não ter permissão para modificar essa vestimenta. </text> @@ -404,12 +404,12 @@ <text name="not worn instructions"> Para obter roupa de baixo nova, arraste um modelo do inventário para o seu avatar. Ou crie uma roupa de baixo nova. </text> - <button label="Criar Novas Roupas de Baixo" label_selected="Criar Novas Roupas de Baixo" name="Create New" width="180"/> + <button label="Criar novas" label_selected="Criar novas" name="Create New" width="180"/> <text name="no modify instructions"> Você não tem permissão para modificar essa vestimenta. </text> <text name="Item Action Label"> - Roupas de Baixo: + Roupas de baixo: </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Selecionar a cor"/> @@ -437,7 +437,7 @@ <text name="not worn instructions"> Para obter um saia nova, arraste uma saia do inventário para o seu avatar. Ou crie uma saia nova. </text> - <button label="Criar Nova Saia" label_selected="Criar Nova Saia" name="Create New"/> + <button label="Criar nova saia" label_selected="Criar nova saia" name="Create New"/> <text name="no modify instructions"> Você não tem permissão para modificar esta vestimenta. </text> diff --git a/indra/newview/skins/default/xui/pt/floater_event.xml b/indra/newview/skins/default/xui/pt/floater_event.xml index 4b2489654a2990d237a740e3726ede10ef21d31e..1cd4dcbda4f85a285e7888f9d5ba39d377e6bb81 100644 --- a/indra/newview/skins/default/xui/pt/floater_event.xml +++ b/indra/newview/skins/default/xui/pt/floater_event.xml @@ -9,6 +9,18 @@ <floater.string name="dont_notify"> Não avisar </floater.string> + <floater.string name="moderate"> + Moderado + </floater.string> + <floater.string name="adult"> + Adulto + </floater.string> + <floater.string name="general"> + Público geral + </floater.string> + <floater.string name="unknown"> + Desconhecido + </floater.string> <layout_stack name="layout"> <layout_panel name="profile_stack"> <text name="event_name"> @@ -21,12 +33,21 @@ Organização: </text> <text initial_value="(pesquisando)" name="event_runby"/> + <text name="event_date_label"> + Data: + </text> <text name="event_date"> 10/10/2010 </text> + <text name="event_duration_label"> + Duração: + </text> <text name="event_duration"> 1 hora </text> + <text name="event_covercharge_label"> + Cover: + </text> <text name="event_cover"> Grátis </text> @@ -36,6 +57,9 @@ <text name="event_location" value="LoteExemplo, Nome extenso (145, 228, 26)"/> <text name="rating_label" value="Classificação:"/> <text name="rating_value" value="(Desconhecido)"/> + <expandable_text name="event_desc"> + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </expandable_text> </layout_panel> <layout_panel name="button_panel"> <button name="create_event_btn" tool_tip="Criar evento"/> diff --git a/indra/newview/skins/default/xui/pt/floater_god_tools.xml b/indra/newview/skins/default/xui/pt/floater_god_tools.xml index 93b2f3e90d61c8c70e817f87a9b6194121046a23..2e63d862815cb9bf0705763cad05d3457d9d6491 100644 --- a/indra/newview/skins/default/xui/pt/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/pt/floater_god_tools.xml @@ -2,7 +2,7 @@ <floater name="godtools floater" title="FERRAMENTAS DE DEUS"> <tab_container name="GodTools Tabs"> <panel label="Grade" name="grid"> - <button label="Desconectar todos os usuários" label_selected="Desconectar todos os usuários" name="Kick all users"/> + <button label="Chutar todos" label_selected="Chutar todos" name="Kick all users"/> <button label="Limpar os cachês de visibilidade do mapa da região." label_selected="Limpar os cachês de visibilidade do mapa da região." name="Flush This Region's Map Visibility Caches"/> </panel> <panel label="Região" name="region"> diff --git a/indra/newview/skins/default/xui/pt/floater_im.xml b/indra/newview/skins/default/xui/pt/floater_im.xml index f6057c48f1989334f0a111fd3ccc0738904e8e9c..c81d0dd7ef37d079c0641a4044a9cc20a11d28a0 100644 --- a/indra/newview/skins/default/xui/pt/floater_im.xml +++ b/indra/newview/skins/default/xui/pt/floater_im.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <multi_floater name="im_floater" title="Mensagem Instantânea"> <string name="only_user_message"> - Você é o único usuário desta sessão. + Você é o único residente nesta sessão </string> <string name="offline_message"> [FIRST] [LAST] está offline. @@ -31,7 +31,7 @@ Um moderador do grupo desabilitou seu bate-papo em texto. </string> <string name="add_session_event"> - Não foi possÃvel adicionar usuários na sessão de bate-papo com [RECIPIENT]. + Não foi possÃvel adicionar residentes ao bate-papo com [RECIPIENT]. </string> <string name="message_session_event"> Não foi possÃvel enviar sua mensagem na sessão de bate- papo com [RECIPIENT]. diff --git a/indra/newview/skins/default/xui/pt/floater_moveview.xml b/indra/newview/skins/default/xui/pt/floater_moveview.xml index f67a16bb46fe9ac06c5a46ecd6a38134477ad9ec..9c025700764ad3ccc5185dbe71ae459c9719da13 100644 --- a/indra/newview/skins/default/xui/pt/floater_moveview.xml +++ b/indra/newview/skins/default/xui/pt/floater_moveview.xml @@ -18,6 +18,15 @@ <string name="fly_back_tooltip"> Voar para trás (flecha para baixo ou S) </string> + <string name="walk_title"> + Andar + </string> + <string name="run_title"> + Correr + </string> + <string name="fly_title"> + Voar + </string> <panel name="panel_actions"> <button label="" label_selected="" name="turn left btn" tool_tip="Virar à esquerda (flecha ESQ ou A)"/> <button label="" label_selected="" name="turn right btn" tool_tip="Virar à direita (flecha DIR ou D)"/> @@ -30,6 +39,5 @@ <button label="" name="mode_walk_btn" tool_tip="Modo caminhar"/> <button label="" name="mode_run_btn" tool_tip="Modo correr"/> <button label="" name="mode_fly_btn" tool_tip="Modo voar"/> - <button label="Parar de voar" name="stop_fly_btn" tool_tip="Parar de voar"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pt/floater_preferences.xml b/indra/newview/skins/default/xui/pt/floater_preferences.xml index 803f2f87b86da9b4d522e4ea7f12a6bf3306eddd..2736900d5f21cf113be043957d6f6d21ce2d0cbd 100644 --- a/indra/newview/skins/default/xui/pt/floater_preferences.xml +++ b/indra/newview/skins/default/xui/pt/floater_preferences.xml @@ -3,7 +3,7 @@ <button label="OK" label_selected="OK" name="OK"/> <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> <tab_container name="pref core" tab_width="128" width="628"> - <panel label="Público geral" name="general"/> + <panel label="Geral" name="general"/> <panel label="VÃdeo" name="display"/> <panel label="Privacidade" name="im"/> <panel label="Som e mÃdia" name="audio"/> diff --git a/indra/newview/skins/default/xui/pt/floater_publish_classified.xml b/indra/newview/skins/default/xui/pt/floater_publish_classified.xml new file mode 100644 index 0000000000000000000000000000000000000000..988f8f2ce114b78c33c75575003b1bda8e9cef51 --- /dev/null +++ b/indra/newview/skins/default/xui/pt/floater_publish_classified.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="publish_classified" title="Publicando anúncio"> + <text name="explanation_text"> + Seu anúncio será publicado por uma semana a partir da data de publicação. + +Lembre-se, o pagamento do anúncio não é reembolsável + </text> + <spinner label="Preço do anúncio:" name="price_for_listing" tool_tip="Preço do anúncio." value="50"/> + <text name="l$_text" value="L$"/> + <text name="more_info_text"> + Mais informações (link para ajuda com anúncios) + </text> + <button label="Publicar" name="publish_btn"/> + <button label="Cancelar" name="cancel_btn"/> +</floater> diff --git a/indra/newview/skins/default/xui/pt/floater_snapshot.xml b/indra/newview/skins/default/xui/pt/floater_snapshot.xml index a3934a666744e8da79db7ca600c0ba9ee68922d2..bb852cb11a4850861cb78658889a075a18489b72 100644 --- a/indra/newview/skins/default/xui/pt/floater_snapshot.xml +++ b/indra/newview/skins/default/xui/pt/floater_snapshot.xml @@ -3,7 +3,7 @@ <text name="type_label"> Destino da foto </text> - <radio_group label="Tipo de Foto" name="snapshot_type_radio"> + <radio_group label="Tipo de foto" name="snapshot_type_radio"> <radio_item label="Email" name="postcard"/> <radio_item label="Meu inventário (L$[AMOUNT])" name="texture"/> <radio_item label="Salvar no meu PC" name="local"/> @@ -28,21 +28,21 @@ Formato </text> <combo_box label="Resolução" name="postcard_size_combo"> - <combo_box.item label="Janela Atual" name="CurrentWindow"/> + <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="Customizado" name="Custom"/> </combo_box> <combo_box label="Resolução" name="texture_size_combo"> - <combo_box.item label="Janela Atual" name="CurrentWindow"/> + <combo_box.item label="Janela atual" name="CurrentWindow"/> <combo_box.item label="Pequeno (128x128)" name="Small(128x128)"/> <combo_box.item label="Médio (256x256)" name="Medium(256x256)"/> <combo_box.item label="Grande (512x512)" name="Large(512x512)"/> <combo_box.item label="Customizado" name="Custom"/> </combo_box> <combo_box label="Resolução" name="local_size_combo"> - <combo_box.item label="Janela Atual" name="CurrentWindow"/> + <combo_box.item label="Janela atual" name="CurrentWindow"/> <combo_box.item label="320x240" name="320x240"/> <combo_box.item label="640x480" name="640x480"/> <combo_box.item label="800x600" name="800x600"/> @@ -63,10 +63,10 @@ <text name="layer_type_label"> Capturar: </text> - <combo_box label="Camadas da Imagem" name="layer_types"> + <combo_box label="Camadas da imagem" name="layer_types"> <combo_box.item label="Cores" name="Colors"/> <combo_box.item label="Formato" name="Depth"/> - <combo_box.item label="Decoração do Objeto" name="ObjectMattes"/> + <combo_box.item label="Decoração do objeto" name="ObjectMattes"/> </combo_box> <check_box label="Interface" name="ui_check"/> <check_box bottom_delta="-17" label="HUDs" name="hud_check"/> diff --git a/indra/newview/skins/default/xui/pt/floater_tools.xml b/indra/newview/skins/default/xui/pt/floater_tools.xml index fb44c5c3bf53b310ceae45de7e3928e327e6ff4f..958a166dfcc956ffcd412a1b1d9f9d4a4def1064 100644 --- a/indra/newview/skins/default/xui/pt/floater_tools.xml +++ b/indra/newview/skins/default/xui/pt/floater_tools.xml @@ -63,7 +63,7 @@ <radio_item label="Stretch (Ctrl+Shift)" name="radio stretch"/> <radio_item label="Face selecionada" name="radio select face"/> </radio_group> - <check_box label="Editar item linkado" name="checkbox edit linked parts"/> + <check_box label="Editar partes linkadas" name="checkbox edit linked parts"/> <text name="RenderingCost" tool_tip="Mostra o cálculo do custo de renderização do objeto"> þ: [COUNT] </text> @@ -91,7 +91,7 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Anel"/> <button label="" label_selected="" name="ToolTree" tool_tip="Ãrvore"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Grama"/> - <check_box label="Ficar com ferramenta selecionado" name="checkbox sticky"/> + <check_box label="Ficar com ferramenta selecionada" name="checkbox sticky"/> <check_box label="Copiar seleção" name="checkbox copy selection"/> <check_box initial_value="true" label="Copiar parte central" name="checkbox copy centers"/> <check_box label="Girar cópia" name="checkbox copy rotates"/> diff --git a/indra/newview/skins/default/xui/pt/floater_tos.xml b/indra/newview/skins/default/xui/pt/floater_tos.xml index 2fbbbde9e45e6ebef1b7c41e8935e688cfc08b9d..3603545ee71e937e810bf9412cf1184d3f6b624f 100644 --- a/indra/newview/skins/default/xui/pt/floater_tos.xml +++ b/indra/newview/skins/default/xui/pt/floater_tos.xml @@ -2,9 +2,9 @@ <floater name="modal container" title=" "> <button label="Continuar" label_selected="Continuar" name="Continue"/> <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> - <check_box label="Eu concordo com os Termos do Serviço" name="agree_chk"/> + <check_box label="Concordo com os Termos de Serviço e com a PolÃtica de Privacidade" name="agree_chk"/> <text name="tos_heading"> - Leia com atenção os Termos do Serviço. Para continuar a entrar no [SECOND_LIFE], é preciso aceitar o contrato. + Leia com atenção os Termos do Serviço e a PolÃtica de Privacidade. Para continuar a entrar no [SECOND_LIFE], é preciso aceitar esses termos. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/pt/floater_voice_controls.xml b/indra/newview/skins/default/xui/pt/floater_voice_controls.xml index 6ab10db96f9fc0d97a389a2cd94b01b9df79f8f2..5ef8479b7a0555c89ebaad7ace35c68958169e3a 100644 --- a/indra/newview/skins/default/xui/pt/floater_voice_controls.xml +++ b/indra/newview/skins/default/xui/pt/floater_voice_controls.xml @@ -17,7 +17,7 @@ </string> <layout_stack name="my_call_stack"> <layout_panel name="my_panel"> - <text name="user_text" value="Mya Avatar:"/> + <text name="user_text" value="Meu avatar:"/> </layout_panel> <layout_panel name="leave_call_btn_panel"> <button label="Desligar" name="leave_call_btn"/> diff --git a/indra/newview/skins/default/xui/pt/floater_water.xml b/indra/newview/skins/default/xui/pt/floater_water.xml index 36b995d4fd41e0959ec0fcdc69ccf22ce9cd3647..b4613e089094212f4564010c3a64d9b3172ce93d 100644 --- a/indra/newview/skins/default/xui/pt/floater_water.xml +++ b/indra/newview/skins/default/xui/pt/floater_water.xml @@ -8,7 +8,7 @@ <button label="Salvar" label_selected="Salvar" name="WaterSavePreset"/> <button label="Deletar" label_selected="Deletar" name="WaterDeletePreset"/> <tab_container name="Water Tabs"> - <panel label="Configurações" name="Settings"> + <panel label="DEFINIÇÕES" name="Settings"> <text name="BHText"> Cor da névoa da Ãgua </text> @@ -56,7 +56,7 @@ </text> <button label="?" left="640" name="WaterBlurMultiplierHelp"/> </panel> - <panel label="Imagem" name="Waves"> + <panel label="IMAGEM" name="Waves"> <text name="BHText"> Direção da Onda Maior </text> diff --git a/indra/newview/skins/default/xui/pt/floater_windlight_options.xml b/indra/newview/skins/default/xui/pt/floater_windlight_options.xml index 951e37a1a653502eb10fe857d7f9fa183da298f0..22632a4ef8779df26455bbadf14f64000d14a5ef 100644 --- a/indra/newview/skins/default/xui/pt/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/pt/floater_windlight_options.xml @@ -5,11 +5,11 @@ </text> <combo_box left_delta="130" name="WLPresetsCombo"/> <button label="Novo" label_selected="Novo" name="WLNewPreset"/> - <button label="Salvar" label_selected="Salvar" name="WLSavePreset" left_delta="72"/> - <button label="Deletar" label_selected="Deletar" name="WLDeletePreset" left_delta="72"/> - <button label="Editor de Ciclos do Dia" label_selected="Editor de Ciclos do Dia" name="WLDayCycleMenuButton" width="150" left_delta="84" /> + <button label="Salvar" label_selected="Salvar" left_delta="72" name="WLSavePreset"/> + <button label="Deletar" label_selected="Deletar" left_delta="72" name="WLDeletePreset"/> + <button label="Editor de Ciclos do Dia" label_selected="Editor de Ciclos do Dia" left_delta="84" name="WLDayCycleMenuButton" width="150"/> <tab_container name="WindLight Tabs"> - <panel label="Atmosfera" name="Atmosphere"> + <panel label="ATMOSFERA" name="Atmosphere"> <text name="BHText"> Horizonte Azul </text> @@ -53,17 +53,17 @@ <text name="DensMultText"> Multiplicador de Densidade </text> - <button label="?" name="WLDensityMultHelp" left="635"/> + <button label="?" left="635" name="WLDensityMultHelp"/> <text name="WLDistanceMultText"> Multiplicador de Distância </text> - <button label="?" name="WLDistanceMultHelp" left="635"/> + <button label="?" left="635" name="WLDistanceMultHelp"/> <text name="MaxAltText"> Altitude Máxima </text> - <button label="?" name="WLMaxAltitudeHelp" left="635"/> + <button label="?" left="635" name="WLMaxAltitudeHelp"/> </panel> - <panel label="Iluminação" name="Lighting"> + <panel label="ILUMINAÇÃO" name="Lighting"> <text name="SLCText"> Cor do Sol/Lua </text> @@ -119,7 +119,7 @@ </text> <button label="?" name="WLStarBrightnessHelp"/> </panel> - <panel label="Nuvens" name="Clouds"> + <panel label="NUVENS" name="Clouds"> <text name="WLCloudColorText"> Cor da Nuvem </text> @@ -157,10 +157,10 @@ Escala da Nuvem </text> <button label="?" name="WLCloudScaleHelp"/> - <text name="WLCloudDetailText" font="SansSerifSmall"> + <text font="SansSerifSmall" name="WLCloudDetailText"> Detalhe da Nuvem (XY/Densidade) </text> - <button label="?" name="WLCloudDetailHelp" left="421"/> + <button label="?" left="421" name="WLCloudDetailHelp"/> <text name="BHText8"> X </text> @@ -181,7 +181,7 @@ <button label="?" name="WLCloudScrollYHelp"/> <check_box label="Travar" name="WLCloudLockY"/> <check_box label="Desenhar Nuvens Clássicas" name="DrawClassicClouds"/> - <button label="?" name="WLClassicCloudsHelp" left="645"/> + <button label="?" left="645" name="WLClassicCloudsHelp"/> </panel> </tab_container> </floater> diff --git a/indra/newview/skins/default/xui/pt/floater_world_map.xml b/indra/newview/skins/default/xui/pt/floater_world_map.xml index 95bb8990717a55f6c794a410a19d5cc1f7862e23..115192203f066ad8d48fc0b37e4524bc4951319e 100644 --- a/indra/newview/skins/default/xui/pt/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pt/floater_world_map.xml @@ -5,8 +5,7 @@ Legenda </text> </panel> - <panel - name="layout_panel_2"> + <panel name="layout_panel_2"> <button font="SansSerifSmall" label="Mostra minha localização" label_selected="Mostra minha localização" left_delta="91" name="Show My Location" tool_tip="Centrar o mapa na localização do meu avatar" width="135"/> <text name="me_label"> Eu @@ -24,60 +23,56 @@ Venda de terreno </text> <text name="by_owner_label"> - pelo dono + o proprietário </text> <text name="auction_label"> leilão de terrenos </text> - <button label="Ir para Casa" label_selected="Ir para casa" name="Go Home" tool_tip="Teletransportar para minha casa"/> + <button label="Ir para Casa" label_selected="Ir para casa" name="Go Home" tool_tip="Teletransportar para meu inÃcio"/> <text name="Home_label"> - Casa + InÃcio </text> <text name="events_label"> Eventos: </text> <check_box label="PG" name="event_chk"/> <text name="pg_label"> - Geral + Público geral </text> - <check_box initial_value="true" label="Mature" name="event_mature_chk"/> + <check_box initial_value="verdadeiro" label="Mature" name="event_mature_chk"/> <text name="mature_label"> Moderado </text> <check_box label="Adult" name="event_adult_chk"/> <text name="adult_label"> - Público adulto + Adulto </text> </panel> - <panel - name="layout_panel_3"> + <panel name="layout_panel_3"> <text name="find_on_map_label"> Localizar no mapa </text> </panel> - <panel - name="layout_panel_4"> - <combo_box label="Amigos Conectados" name="friend combo" tool_tip="Mostrar amigos no mapa"> + <panel name="layout_panel_4"> + <combo_box label="Amigos online" name="friend combo" tool_tip="Mostrar amigos no mapa"> <combo_box.item label="Amigos conectados" name="item1"/> </combo_box> <combo_box label="Meus marcos" name="landmark combo" tool_tip="Mostrar marco no mapa"> <combo_box.item label="Meus marcos" name="item1"/> </combo_box> - <search_editor label="Regiões por nome" name="location" tool_tip="Digite o nome de uma Região"/> - <button label="Buscar" name="DoSearch" tool_tip="Procurar por região"/> - <button name="Clear" tool_tip="Limpara linhas e redefinir mapa"/> - <button font="SansSerifSmall" label="Teletransporte" label_selected="Teletransporte" name="Teleport" tool_tip="Teletransportar para a posição selecionada"/> + <search_editor label="Regiões por nome" name="location" tool_tip="Digite o nome da região"/> + <button label="Buscar" name="DoSearch" tool_tip="Buscar região"/> + <button name="Clear" tool_tip="Limpar linhas e redefinir mapa"/> + <button font="SansSerifSmall" label="Teletransportar" label_selected="Teletransporte" name="Teleport" tool_tip="Teletransportar para o lugar selecionado"/> <button font="SansSerifSmall" label="Copiar SLurl" name="copy_slurl" tool_tip="Copia a localização atual como um SLurl para usar na web."/> - <button font="SansSerifSmall" label="Mostrar seleção" label_selected="Mostrar Destino" left_delta="91" name="Show Destination" tool_tip="Centralizar mapa na posição selecionada" width="135"/> + <button font="SansSerifSmall" label="Mostrar seleção" label_selected="Mostrar Destino" left_delta="91" name="Show Destination" tool_tip="Centrar mapa no local selecionado" width="135"/> </panel> - <panel - name="layout_panel_5"> + <panel name="layout_panel_5"> <text name="zoom_label"> Zoom </text> </panel> - <panel - name="layout_panel_6"> + <panel name="layout_panel_6"> <slider label="Zoom" name="zoom slider"/> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pt/menu_inventory.xml b/indra/newview/skins/default/xui/pt/menu_inventory.xml index 8b565b9645b0f80393b61177c0a5932e16164f19..2691ac81b34453bfc37e58203c6e3ea33c7b64fd 100644 --- a/indra/newview/skins/default/xui/pt/menu_inventory.xml +++ b/indra/newview/skins/default/xui/pt/menu_inventory.xml @@ -6,21 +6,21 @@ <menu_item_call label="Propriedades" name="Task Properties"/> <menu_item_call label="Renomear" name="Task Rename"/> <menu_item_call label="Apagar" name="Task Remove"/> - <menu_item_call label="Limpar Lixeira" name="Empty Trash"/> - <menu_item_call label="Limpar Achados e perdidos" name="Empty Lost And Found"/> - <menu_item_call label="Nova Pasta" name="New Folder"/> - <menu_item_call label="Novo Script" name="New Script"/> + <menu_item_call label="Limpar lixeira" name="Empty Trash"/> + <menu_item_call label="Limpar Achados & perdidos" name="Empty Lost And Found"/> + <menu_item_call label="Nova pasta" name="New Folder"/> + <menu_item_call label="Novo script" name="New Script"/> <menu_item_call label="Nova anotação" name="New Note"/> - <menu_item_call label="Novo Gesto" name="New Gesture"/> + <menu_item_call label="Novo gesto" name="New Gesture"/> <menu label="Novas roupas" name="New Clothes"> - <menu_item_call label="Nova Camisa" name="New Shirt"/> - <menu_item_call label="Nova Calça" name="New Pants"/> - <menu_item_call label="Novos Calçados" name="New Shoes"/> - <menu_item_call label="Novas Meias" name="New Socks"/> - <menu_item_call label="Nova Jaqueta" name="New Jacket"/> - <menu_item_call label="Nova Saia" name="New Skirt"/> - <menu_item_call label="Novas Luvas" name="New Gloves"/> - <menu_item_call label="Nova Anágua" name="New Undershirt"/> + <menu_item_call label="Nova camisa" name="New Shirt"/> + <menu_item_call label="Nova calça" name="New Pants"/> + <menu_item_call label="Novos calçados" name="New Shoes"/> + <menu_item_call label="Novas meias" name="New Socks"/> + <menu_item_call label="Nova jaqueta" name="New Jacket"/> + <menu_item_call label="Nova saia" name="New Skirt"/> + <menu_item_call label="Novas luvas" name="New Gloves"/> + <menu_item_call label="Nova anágua" name="New Undershirt"/> <menu_item_call label="Nova roupa de baixo" name="New Underpants"/> <menu_item_call label="Nova máscara alfa" name="New Alpha Mask"/> <menu_item_call label="Nova tatuagem" name="New Tattoo"/> @@ -53,29 +53,29 @@ <menu_item_call label="Abrir" name="Open"/> <menu_item_call label="Propriedades" name="Properties"/> <menu_item_call label="Renomear" name="Rename"/> - <menu_item_call label="Copy Asset UUID" name="Copy Asset UUID"/> + <menu_item_call label="Copiar item UUID" name="Copy Asset UUID"/> <menu_item_call label="Copiar" name="Copy"/> <menu_item_call label="Colar" name="Paste"/> <menu_item_call label="Colar como link" name="Paste As Link"/> <menu_item_call label="Apagar" name="Delete"/> <menu_item_call label="Excluir pasta do sistema" name="Delete System Folder"/> - <menu_item_call label="Iniciar conversa em conferência" name="Conference Chat Folder"/> - <menu_item_call label="Executar" name="Sound Play"/> + <menu_item_call label="Pasta conversa em conferência" name="Conference Chat Folder"/> + <menu_item_call label="Executar som" name="Sound Play"/> <menu_item_call label="Sobre o marco" name="About Landmark"/> - <menu_item_call label="Tocar inworld" name="Animation Play"/> - <menu_item_call label="Executar localmente" name="Animation Audition"/> - <menu_item_call label="Mandar Mensagem Instantânea" name="Send Instant Message"/> + <menu_item_call label="Executar animação" name="Animation Play"/> + <menu_item_call label="Executar áudio" name="Animation Audition"/> + <menu_item_call label="Mandar MI" name="Send Instant Message"/> <menu_item_call label="Oferecer teletransporte..." name="Offer Teleport..."/> - <menu_item_call label="Iniciar conversa em conferência" name="Conference Chat"/> + <menu_item_call label="Bate-papo em conferência" name="Conference Chat"/> <menu_item_call label="Ativar" name="Activate"/> <menu_item_call label="Desativar" name="Deactivate"/> <menu_item_call label="Salvar como" name="Save As"/> - <menu_item_call label="Retirar de você" name="Detach From Yourself"/> - <menu_item_call label="Vestir" name="Object Wear"/> + <menu_item_call label="Retirar de si mesmo" name="Detach From Yourself"/> + <menu_item_call label="Vestir objeto" name="Object Wear"/> <menu label="Anexar a" name="Attach To"/> <menu label="Anexar ao HUD" name="Attach To HUD"/> <menu_item_call label="Editar" name="Wearable Edit"/> <menu_item_call label="Vestir" name="Wearable Wear"/> - <menu_item_call label="Retirar" name="Take Off"/> + <menu_item_call label="Tirar" name="Take Off"/> <menu_item_call label="--Sem opções--" name="--no options--"/> </menu> diff --git a/indra/newview/skins/default/xui/pt/menu_inventory_add.xml b/indra/newview/skins/default/xui/pt/menu_inventory_add.xml index 81898c63bff9931ae667df359a5da17a3029284a..fc40384891dad3671b8752f3a06103a1bc39664e 100644 --- a/indra/newview/skins/default/xui/pt/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/pt/menu_inventory_add.xml @@ -24,7 +24,7 @@ <menu_item_call label="Nova tatuagem" name="New Tattoo"/> </menu> <menu label="Nova parte do corpo" name="New Body Parts"> - <menu_item_call label="Nova silhueta" name="New Shape"/> + <menu_item_call label="Nova forma" name="New Shape"/> <menu_item_call label="Nova pele" name="New Skin"/> <menu_item_call label="Novo cabelo" name="New Hair"/> <menu_item_call label="Novos olhos" name="New Eyes"/> diff --git a/indra/newview/skins/default/xui/pt/menu_mini_map.xml b/indra/newview/skins/default/xui/pt/menu_mini_map.xml index f7b86b8f22329321cd88b25f598684271c09fdad..380bd8cf11ce645f864ca6c0a576d231f8be151a 100644 --- a/indra/newview/skins/default/xui/pt/menu_mini_map.xml +++ b/indra/newview/skins/default/xui/pt/menu_mini_map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<menu name="popup"> +<menu name="Popup"> <menu_item_call label="Zoom Perto" name="Zoom Close"/> <menu_item_call label="Zoom Médio" name="Zoom Medium"/> <menu_item_call label="Zoom Longe" name="Zoom Far"/> diff --git a/indra/newview/skins/default/xui/pt/menu_object.xml b/indra/newview/skins/default/xui/pt/menu_object.xml index 5121c9d0484056c5dac77b190c27559b15a1c11d..a5969cacc39824b5eab3770b0f2c14685faed81c 100644 --- a/indra/newview/skins/default/xui/pt/menu_object.xml +++ b/indra/newview/skins/default/xui/pt/menu_object.xml @@ -5,6 +5,7 @@ <menu_item_call label="Construir" name="Build"/> <menu_item_call label="Abrir" name="Open"/> <menu_item_call label="Sentar aqui" name="Object Sit"/> + <menu_item_call label="Ficar de pé" name="Object Stand Up"/> <menu_item_call label="Perfil do objeto" name="Object Inspect"/> <menu_item_call label="Mais zoom" name="Zoom In"/> <context_menu label="Colocar no(a)" name="Put On"> diff --git a/indra/newview/skins/default/xui/pt/menu_profile_overflow.xml b/indra/newview/skins/default/xui/pt/menu_profile_overflow.xml index 2635182290851d7973706e3396d1849bb429e319..d41ecbd75582571bfc0ad7d92e7747ca58a03d9f 100644 --- a/indra/newview/skins/default/xui/pt/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/pt/menu_profile_overflow.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <toggleable_menu name="profile_overflow_menu"> + <menu_item_call label="Mapa" name="show_on_map"/> <menu_item_call label="Pagar" name="pay"/> <menu_item_call label="Compartilhar" name="share"/> <menu_item_call label="Bloquear" name="block"/> diff --git a/indra/newview/skins/default/xui/pt/menu_teleport_history_item.xml b/indra/newview/skins/default/xui/pt/menu_teleport_history_item.xml index b4216b7ddcd5489ad3375cfa9288c3226f93d4e4..ec1e7a0950288a3ad0252f19826f2f10fb83e2eb 100644 --- a/indra/newview/skins/default/xui/pt/menu_teleport_history_item.xml +++ b/indra/newview/skins/default/xui/pt/menu_teleport_history_item.xml @@ -2,5 +2,5 @@ <context_menu name="Teleport History Item Context Menu"> <menu_item_call label="Teletransportar" name="Teleport"/> <menu_item_call label="Mais informações" name="More Information"/> - <menu_item_call label="Copiar para área de transferência" name="CopyToClipboard"/> + <menu_item_call label="Copiar" name="CopyToClipboard"/> </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 2b83386cad6530e832395edf3266a3c86b38620c..45f7ca1424dae0165009ccaf35bef1c4df569e13 100644 --- a/indra/newview/skins/default/xui/pt/menu_viewer.xml +++ b/indra/newview/skins/default/xui/pt/menu_viewer.xml @@ -80,7 +80,7 @@ <menu_item_call label="Link" name="Link"/> <menu_item_call label="Desconectar links" name="Unlink"/> <menu_item_check label="Edit Linked Parts" name="Edit Linked Parts"/> - <menu_item_call label="Focus on Selection" name="Focus on Selection"/> + <menu_item_call label="Enfocar seleção" name="Focus on Selection"/> <menu_item_call label="Ampliar seleção" name="Zoom to Selection"/> <menu label="Objeto:" name="Object"> <menu_item_call label="Comprar" name="Menu Object Buy"/> @@ -92,29 +92,29 @@ <menu label="Scripts" name="Scripts"> <menu_item_call label="Recompilar scripts (LSL)" name="Mono"/> <menu_item_call label="Recompilar scripts (LSL)" name="LSL"/> - <menu_item_call label="Reset Scripts" name="Reset Scripts"/> + <menu_item_call label="Resetar scripts" name="Reset Scripts"/> <menu_item_call label="Scripts em modo execução" name="Set Scripts to Running"/> <menu_item_call label="Scripts em modo não execução" name="Set Scripts to Not Running"/> </menu> <menu label="Opções" name="Options"> - <menu_item_call label="Set Default Upload Permissions" name="perm prefs"/> + <menu_item_call label="Definir permissões padrão de upload" name="perm prefs"/> <menu_item_check label="Mostrar permissões avançadas" name="DebugPermissions"/> <menu_item_check label="Só selecionar meus objetos" name="Select Only My Objects"/> - <menu_item_check label="Só selecionar meus objetos" name="Select Only Movable Objects"/> + <menu_item_check label="Só selecionar objetos móveis" name="Select Only Movable Objects"/> <menu_item_check label="Selecionar contornando" name="Select By Surrounding"/> <menu_item_check label="Mostrar seleção oculta" name="Show Hidden Selection"/> - <menu_item_check label="Show Light Radius for Selection" name="Show Light Radius for Selection"/> - <menu_item_check label="Show Selection Beam" name="Show Selection Beam"/> - <menu_item_check label="Mostrar na grade" name="Snap to Grid"/> - <menu_item_call label="Snap Object XY to Grid" name="Snap Object XY to Grid"/> + <menu_item_check label="Mostrar alcance de luz da seleção" name="Show Light Radius for Selection"/> + <menu_item_check label="Mostrar raio de seleção" name="Show Selection Beam"/> + <menu_item_check label="Encaixar em grade" name="Snap to Grid"/> + <menu_item_call label="Encaixar objeto XY em grade" name="Snap Object XY to Grid"/> <menu_item_call label="Usar seleção em grade" name="Use Selection for Grid"/> <menu_item_call label="Opções de grade" name="Grid Options"/> </menu> <menu label="Selecionar partes conectadas" name="Select Linked Parts"> - <menu_item_call label="Select Next Part" name="Select Next Part"/> - <menu_item_call label="Select Previous Part" name="Select Previous Part"/> - <menu_item_call label="Include Next Part" name="Include Next Part"/> - <menu_item_call label="Include Previous Part" name="Include Previous Part"/> + <menu_item_call label="Selecionar próxima parte" name="Select Next Part"/> + <menu_item_call label="Selecionar parte anterior" name="Select Previous Part"/> + <menu_item_call label="Incluir próxima parte" name="Include Next Part"/> + <menu_item_call label="Incluir parte anterior" name="Include Previous Part"/> </menu> </menu> <menu label="Ajuda" name="Help"> @@ -133,9 +133,9 @@ <menu_item_check label="Compactar fotos para HD" name="QuietSnapshotsToDisk"/> <menu_item_check label="Compactar fotos para HD" name="CompressSnapshotsToDisk"/> <menu label="Ferramentas de desempenho" name="Performance Tools"> - <menu_item_call label="Lag Meter" name="Lag Meter"/> + <menu_item_call label="Medidor de lag" name="Lag Meter"/> <menu_item_check label="Barra de estatÃsticas" name="Statistics Bar"/> - <menu_item_check label="Show Avatar Rendering Cost" name="Avatar Rendering Cost"/> + <menu_item_check label="Carga de renderização de avatar" name="Avatar Rendering Cost"/> </menu> <menu label="Realces e visibilidade" name="Highlighting and Visibility"> <menu_item_check label="Efeito baliza piscando" name="Cheesy Beacon"/> @@ -166,13 +166,13 @@ <menu_item_check label="Selecionado" name="Selected"/> <menu_item_check label="Realçado" name="Highlighted"/> <menu_item_check label="Texturas dinâmicas" name="Dynamic Textures"/> - <menu_item_check label="Foot Shadows" name="Foot Shadows"/> - <menu_item_check label="Fog" name="Fog"/> - <menu_item_check label="Flexible Objects" name="Flexible Objects"/> + <menu_item_check label="Sombras nos pés" name="Foot Shadows"/> + <menu_item_check label="Neblina" name="Fog"/> + <menu_item_check label="Objetos flexÃveis" name="Flexible Objects"/> </menu> <menu_item_check label="Executar diversas instâncias" name="Run Multiple Threads"/> <menu_item_call label="Limpar cache de grupo" name="ClearGroupCache"/> - <menu_item_check label="Mouse Smoothing" name="Mouse Smoothing"/> + <menu_item_check label="Smoothing de mouse" name="Mouse Smoothing"/> <menu label="Atalhos" name="Shortcuts"> <menu_item_call label="Imagem (L$[COST])..." name="Upload Image"/> <menu_item_check label="Busca" name="Search"/> @@ -205,7 +205,7 @@ <menu label="Desenvolver" name="Develop"> <menu label="Painéis" name="Consoles"> <menu_item_check label="Painel de textura" name="Texture Console"/> - <menu_item_check label="Debug Console" name="Debug Console"/> + <menu_item_check label="Console de depuração" name="Debug Console"/> <menu_item_call label="Painel de avisos" name="Notifications"/> <menu_item_check label="Painel de tamanho de textura" name="Texture Size"/> <menu_item_check label="Painel de texturas" name="Texture Category"/> @@ -218,7 +218,7 @@ </menu> <menu label="Show Info" name="Display Info"> <menu_item_check label="Mostrar hora" name="Show Time"/> - <menu_item_check label="Show Render Info" name="Show Render Info"/> + <menu_item_check label="Dados de renderização" name="Show Render Info"/> <menu_item_check label="Mostrar cor sob o cursor" name="Show Color Under Cursor"/> <menu_item_check label="Mostrar mudanças a objetos" name="Show Updates"/> </menu> @@ -239,7 +239,7 @@ </menu> <menu label="Rendering" name="Rendering"> <menu_item_check label="Axes" name="Axes"/> - <menu_item_check label="Contornos" name="Wireframe"/> + <menu_item_check label="Wireframe" name="Wireframe"/> <menu_item_check label="Global Illumination" name="Global Illumination"/> <menu_item_check label="Texturas de animação" name="Animation Textures"/> <menu_item_check label="Desativar texturas" name="Disable Textures"/> @@ -247,11 +247,11 @@ <menu_item_check label="Render Attached Particles" name="Render Attached Particles"/> <menu_item_check label="Objetos iridescentes" name="Hover Glow Objects"/> </menu> - <menu label="Network" name="Network"> + <menu label="Rede" name="Network"> <menu_item_check label="Pausar avatar" name="AgentPause"/> <menu_item_call label="Drop a Packet" name="Drop a Packet"/> </menu> - <menu_item_call label="Bumps, Pushes & Hits" name="Bumps, Pushes &amp; Hits"/> + <menu_item_call label="Empurrões, trombadas e tapas" name="Bumps, Pushes &amp; Hits"/> <menu label="Mundo" name="World"> <menu_item_check label="Impor sobre sol regional" name="Sim Sun Override"/> <menu_item_check label="Efeito baliza piscando" name="Cheesy Beacon"/> @@ -261,15 +261,15 @@ <menu label="Interface" name="UI"> <menu_item_call label="Teste de navegador web" name="Web Browser Test"/> <menu_item_call label="Print Selected Object Info" name="Print Selected Object Info"/> - <menu_item_call label="Memory Stats" name="Memory Stats"/> + <menu_item_call label="Dados de memória" name="Memory Stats"/> <menu_item_check label="Double-Click Auto-Pilot" name="Double-ClickAuto-Pilot"/> <menu_item_check label="Debug Clicks" name="Debug Clicks"/> <menu_item_check label="Debug Mouse Events" name="Debug Mouse Events"/> </menu> <menu label="XUI" name="XUI"> <menu_item_call label="Recarregar cores" name="Reload Color Settings"/> - <menu_item_call label="Show Font Test" name="Show Font Test"/> - <menu_item_call label="Load from XML" name="Load from XML"/> + <menu_item_call label="Teste de fonte" name="Show Font Test"/> + <menu_item_call label="Carregar de XML" name="Load from XML"/> <menu_item_call label="Salvar para XML" name="Save to XML"/> <menu_item_check label="Mostrar nomes XUI" name="Show XUI Names"/> <menu_item_call label="Enviar MIs de teste" name="Send Test IMs"/> diff --git a/indra/newview/skins/default/xui/pt/notifications.xml b/indra/newview/skins/default/xui/pt/notifications.xml index 60113bcf0bb3dbb7566fcc3ef68e03eecf0e2cba..5f91ff09e5600faec5767b9a6647b2bf301fbe36 100644 --- a/indra/newview/skins/default/xui/pt/notifications.xml +++ b/indra/newview/skins/default/xui/pt/notifications.xml @@ -106,7 +106,7 @@ Por favor, selecione apenas um objeto e tente novamente. </notification> <notification name="FriendsAndGroupsOnly"> Residentes que não são amigos não veem que você decidiu ignorar ligações e MIs deles. - <usetemplate name="okbutton" yestext="Sim"/> + <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="GrantModifyRights"> Conceder direitos de modificação a outros residentes vai autorizá-los a mudar, apagar ou pegar TODOS os seus objetos. Seja MUITO cuidadoso ao conceder esta autorização. @@ -442,7 +442,6 @@ O objeto pode estar fora de alcance ou ter sido deletado. <notification name="UnsupportedHardware"> Sabe de uma coisa? Seu computador não tem os requisitos mÃnimos do [APP_NAME]. Talvez o desempenho seja um pouco sofrÃvel. O suporte não pode atender pedidos de assistência técnicas em sistemas não suportados. -MINSPECS Consultar [_URL] para mais informações? <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=pt @@ -1283,19 +1282,19 @@ Salvar na pasta Aplicativos? </notification> <notification name="GroupLeaveConfirmMember"> Você é atualmente um membro do grupo [GROUP]. -Deixar este grupo? - <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Deixar"/> +Sair do grupo? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sair"/> </notification> <notification name="ConfirmKick"> - Você quer REALMENTE expulsar todos os usuários deste grid? - <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar todos os usuários"/> + Tem CERTEZA de que deseja expulsar todos os residentes do grid? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Chutar todos"/> </notification> <notification name="MuteLinden"> Desculpe, nenhum Linden pode ser bloqueado. <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="CannotStartAuctionAlreadyForSale"> - Você não pode começar um leilão com um lote que já foi colocado à venda. Desabilite a venda da terra se você tem certeza que deseja iniciar um leilão. + Você não pode começar um leilão com um lote que já foi colocado à venda. Desabilite a venda se você tem certeza que deseja fazer um leilão. </notification> <notification label="Falha ao bloquear objeto por nome" name="MuteByNameFailed"> Você já bloqueou este residente. @@ -1328,7 +1327,7 @@ O bate-papo e MIs não serão exibidos. MIs enviadas para você receberão sua <usetemplate name="okbutton" yestext="OK"/> </notification> <notification name="KickUser"> - Expulsar este usuário com qual mensagem? + Chutar este residente com qual mensagem? <form name="form"> <input name="message"> Um administrador desligou você. @@ -1348,7 +1347,7 @@ O bate-papo e MIs não serão exibidos. MIs enviadas para você receberão sua </form> </notification> <notification name="FreezeUser"> - Paralise este usuário com qual mensagem? + Congelar este residente com qual mensagem? <form name="form"> <input name="message"> Você foi congelado. Você não pode se mover ou conversar. Um administrador irá contatá-lo via mensagem instantânea (MI). @@ -1358,7 +1357,7 @@ O bate-papo e MIs não serão exibidos. MIs enviadas para você receberão sua </form> </notification> <notification name="UnFreezeUser"> - Liberar este usuário com qual mensagem? + Descongelar este residente com qual mensagem? <form name="form"> <input name="message"> Você não está mais congelado. @@ -1378,7 +1377,7 @@ O bate-papo e MIs não serão exibidos. MIs enviadas para você receberão sua </form> </notification> <notification name="OfferTeleportFromGod"> - God user convocou para a sua localização? + Convocar residente à sua localização com poderes de deus? <form name="form"> <input name="message"> Junte-se a mim em [REGION] @@ -1408,11 +1407,11 @@ O bate-papo e MIs não serão exibidos. MIs enviadas para você receberão sua </form> </notification> <notification label="Mudar propriedade Linden" name="ChangeLindenEstate"> - Você está prestes a mudar uma propriedade pertencente a Linden (continente, teen grid, orientação, etc.) + Você está prestes a modificar uma propriedade da Linden (continente, teen, grid, orientação, etc) -Isto é EXTREMAMENTE PERIGOSO porque pode fundamentalmente afetar a experiência do usuário. No continente, vai mudar milhares de regiões e fazer o spaceserver soluçar. +Esta ação é EXTREMAMENTE PERIGOSA -- ela pode afetar a experiência dos residentes. No continente, isso vai mudar milhares de regiões e deixar o spaceserver sobrecarregado. -Proceder? +Deseja prosseguir? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Mudar Propriedade"/> </notification> <notification label="Mudar o acesso à propriedade Linden" name="ChangeLindenAccess"> @@ -2399,14 +2398,6 @@ Deixar? <button name="Ignore" text="Ignorar"/> </form> </notification> - <notification name="ScriptToast"> - [FIRST] [LAST], '[TITLE]' está pedindo dados de usuário. - <form name="form"> - <button name="Open" text="Abrir diálogo"/> - <button name="Ignore" text="Ignorar"/> - <button name="Block" text="Bloquear"/> - </form> - </notification> <notification name="BuyLindenDollarSuccess"> Obrigado e volte sempre! @@ -2533,7 +2524,7 @@ Para sua segurança, os SLurls serão bloqueados por alguns instantes. </notification> <notification name="ConfirmCloseAll"> Tem certeza de que quer fechar todas as MIs? - <usetemplate name="okcancelignore" notext="Cancelar" yestext="OK"/> + <usetemplate ignoretext="Confirmar antes de fechar todas as MIs" name="okcancelignore" notext="Cancelar" yestext="OK"/> </notification> <notification name="AttachmentSaved"> Anexo salvo. diff --git a/indra/newview/skins/default/xui/pt/panel_classified_info.xml b/indra/newview/skins/default/xui/pt/panel_classified_info.xml index 8441cd99139567ebd1edc9a327f32a8fb949b808..191c005b1a5287cae7217b7a21e3a90c63677d1a 100644 --- a/indra/newview/skins/default/xui/pt/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/pt/panel_classified_info.xml @@ -3,16 +3,46 @@ <panel.string name="l$_price"> L$ [PRICE] </panel.string> + <panel.string name="click_through_text_fmt"> + [TELEPORT] teletransporte, [MAP] mapa, [PROFILE] perfil + </panel.string> + <panel.string name="date_fmt"> + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + </panel.string> + <panel.string name="auto_renew_on"> + Ativado + </panel.string> + <panel.string name="auto_renew_off"> + Desativado + </panel.string> <text name="title" value="Dados do anúncio"/> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <text_editor name="classified_name" value="[nome]"/> - <text_editor name="classified_location" value="[carregando...]"/> + <text_editor name="classified_name" value="[name]"/> + <text name="classified_location_label" value="Localização:"/> + <text_editor name="classified_location" value="[loading...]"/> + <text name="content_type_label" value="Tipo de conteúdo:"/> <text_editor name="content_type" value="[content type]"/> + <text name="category_label" value="Categoria:"/> <text_editor name="category" value="[category]"/> - <check_box label="Renovar automaticamente todas as semanas" name="auto_renew"/> - <text_editor name="price_for_listing" tool_tip="Preço do anúncio."/> - <text_editor name="classified_desc" value="[descrição]"/> + <text name="creation_date_label" value="Data de criação"/> + <text_editor name="creation_date" tool_tip="Data de criação" value="[date]"/> + <text name="price_for_listing_label" value="Preço do anúncio:"/> + <text_editor name="price_for_listing" tool_tip="Preço do anúncio." value="[price]"/> + <layout_stack name="descr_stack"> + <layout_panel name="clickthrough_layout_panel"> + <text name="click_through_label" value="Cliques:"/> + <text_editor name="click_through_text" tool_tip="Dados de click-through" value="[clicks]"/> + </layout_panel> + <layout_panel name="price_layout_panel"> + <text name="auto_renew_label" value="Renovação automática:"/> + <text name="auto_renew" value="Ativado"/> + </layout_panel> + <layout_panel name="descr_layout_panel"> + <text name="classified_desc_label" value="Descrição:"/> + <text_editor name="classified_desc" value="[description]"/> + </layout_panel> + </layout_stack> </panel> </scroll_container> <panel name="buttons"> diff --git a/indra/newview/skins/default/xui/pt/panel_edit_classified.xml b/indra/newview/skins/default/xui/pt/panel_edit_classified.xml index a754c5f070122b2eb6100017f40054b246071854..f6fb22359964f4a0d939c7005b35cf02354baceb 100644 --- a/indra/newview/skins/default/xui/pt/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/pt/panel_edit_classified.xml @@ -3,12 +3,20 @@ <panel.string name="location_notice"> (salvar para atualizar) </panel.string> + <string name="publish_label"> + Publicar + </string> + <string name="save_label"> + Salvar + </string> <text name="title"> Editar anúncio </text> <scroll_container name="profile_scroll"> <panel name="scroll_content_panel"> - <icon label="" name="edit_icon" tool_tip="Selecione uma imagem"/> + <panel name="snapshot_panel"> + <icon label="" name="edit_icon" tool_tip="Selecione uma imagem"/> + </panel> <text name="Name:"> Cargo: </text> @@ -22,12 +30,19 @@ Carregando... </text> <button label="Usar configuração local" name="set_to_curr_location_btn"/> + <text name="category_label" value="Categoria:"/> + <text name="content_type_label" value="Tipo de conteúdo:"/> + <icons_combo_box label="Público geral" name="content_type"> + <icons_combo_box.item label="Moderado" name="mature_ci" value="Adulto"/> + <icons_combo_box.item label="Público geral" name="pg_ci" value="Adequado para menores"/> + </icons_combo_box> + <text name="price_for_listing_label" value="Preço do anúncio:"/> <spinner label="L$" name="price_for_listing" tool_tip="Preço do anúncio" value="50"/> <check_box label="Renovação automática semanal" name="auto_renew"/> </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Salvar" name="save_changes_btn"/> + <button label="[LABEL]" name="save_changes_btn"/> <button label="Cancelar" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_edit_pick.xml b/indra/newview/skins/default/xui/pt/panel_edit_pick.xml index f56533652d8694f16738316258b48bec3f25dbd1..96a294bc28ebe820534e4b1c4d33c0f214bf1636 100644 --- a/indra/newview/skins/default/xui/pt/panel_edit_pick.xml +++ b/indra/newview/skins/default/xui/pt/panel_edit_pick.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Editar destaques" name="panel_edit_pick"> + <panel.string name="location_notice"> + (salvar para atualizar) + </panel.string> <text name="title"> Editar destaques </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Salvar [WHAT]" name="save_changes_btn"/> + <button label="Salvar destaque" name="save_changes_btn"/> <button label="Cancelar" name="cancel_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_edit_tattoo.xml b/indra/newview/skins/default/xui/pt/panel_edit_tattoo.xml index c11d8001718ec0a2528fc5dcb7dd58ba67a624e4..23cde50acc3e65f7ebcf9a30809c0cd08157b216 100644 --- a/indra/newview/skins/default/xui/pt/panel_edit_tattoo.xml +++ b/indra/newview/skins/default/xui/pt/panel_edit_tattoo.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="edit_tattoo_panel"> <panel name="avatar_tattoo_color_panel"> - <texture_picker label="Tatoo de cabeça" name="Head Tattoo" tool_tip="Clique para escolher uma foto"/> - <texture_picker label="Tatoo da parte superior do corpo" name="Upper Tattoo" tool_tip="Clique para escolher uma foto"/> - <texture_picker label="Tatoo da parte inferior do corpo" name="Lower Tattoo" tool_tip="Clique para escolher uma foto"/> + <texture_picker label="Tatuagem de cabeça" name="Head Tattoo" tool_tip="Clique para escolher uma foto"/> + <texture_picker label="Tatuagem superior" name="Upper Tattoo" tool_tip="Selecione uma foto"/> + <texture_picker label="Tatuagem inferior" name="Lower Tattoo" tool_tip="Selecione uma foto"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_group_general.xml b/indra/newview/skins/default/xui/pt/panel_group_general.xml index 85488f43af33935067603fdb750e5d6d011b7f73..0b65b4aadeec84a09f2f4f65dabd88261e9916f9 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_general.xml @@ -46,7 +46,7 @@ Para obter mais ajuda, passe o mouse sobre as opções. <check_box label="Qualquer um pode entrar" name="open_enrollement" tool_tip="Controla a entrada de novos membros, com ou sem convite."/> <check_box label="Taxa de inscrição" name="check_enrollment_fee" tool_tip="Controla a cobrança de uma taxa de associação ao grupo."/> <spinner label="L$" left_delta="120" name="spin_enrollment_fee" tool_tip="Se a opção 'Taxa de associação' estiver marcada, novos membros precisam pagar o valor definido para entrar no grupo." width="60"/> - <combo_box name="group_mature_check" tool_tip="Define se a informação do seu grupo é considerada mature." width="170"> + <combo_box name="group_mature_check" tool_tip="Define se os dados do seu grupo são conteúdo moderado." width="170"> <combo_box.item label="Conteúdo PG" name="pg"/> <combo_box.item label="Conteúdo Mature" name="mature"/> </combo_box> diff --git a/indra/newview/skins/default/xui/pt/panel_group_notices.xml b/indra/newview/skins/default/xui/pt/panel_group_notices.xml index 2abc8bc7c8690a3a8a97f63ca47e9edb58a93100..4b5a00c761c70f21dcd7771bb5eb551565e60690 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_notices.xml @@ -19,10 +19,10 @@ Cada grupo pode enviar no máximo 200 avisos/dia Nenhum resultado foi encontrado. </text> <button label="Criar um novo aviso" label_selected="Criar nova notÃcia" name="create_new_notice" tool_tip="Criar um novo aviso"/> - <button label="Atualizar" label_selected="Atualizar Lista" name="refresh_notices" tool_tip="Atualizar lista de avisos"/> + <button label="Atualizar" label_selected="Atualizar lista" name="refresh_notices" tool_tip="Atualizar lista de avisos"/> <panel label="Criar nova notÃcia" name="panel_create_new_notice"> <text name="lbl"> - Criar uma notÃcia + Criar notÃcia </text> <text left="20" name="lbl3"> Assunto: @@ -43,7 +43,7 @@ Cada grupo pode enviar no máximo 200 avisos/dia <button label="Enviar" label_selected="Enviar" name="send_notice"/> <group_drop_target name="drop_target" tool_tip="Arrastar um item do inventário para a caixa para enviá-lo com o aviso. É preciso ter autorização de cópia e transferência do item para anexá-lo ao aviso."/> </panel> - <panel label="Visualizar NotÃcia Anterior" name="panel_view_past_notice"> + <panel label="Visualizar notÃcia anterior" name="panel_view_past_notice"> <text name="lbl"> NotÃcia arquivada </text> diff --git a/indra/newview/skins/default/xui/pt/panel_groups.xml b/indra/newview/skins/default/xui/pt/panel_groups.xml index aaea1178a639a5d9ea56c1f63d1cda77ba4da59c..0aea0d53dd90f4cf57cee63672b94686eacc68bd 100644 --- a/indra/newview/skins/default/xui/pt/panel_groups.xml +++ b/indra/newview/skins/default/xui/pt/panel_groups.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="groups"> <text name="groupdesc" width="268"> - Seu grupo ativo atual es'ta mostrado em negrito. + Seu grupo ativo atual está em negrito. </text> <text name="groupcount" width="300"> - Você pertence a [COUNT] grupos (de no máximo [MAX]). + Você pertence a [COUNT] grupos (máximo [MAX]). </text> - <button width="86" label="MI/Chamada" name="IM" tool_tip="Abrir sessão de Mensagem Instantânea"/> + <button width="86" label="MI/Ligação" name="IM" tool_tip="Abrir sessão de Mensagem Instantânea"/> <button width="86" label="Informações" name="Info"/> <button width="86" label="Ativar" name="Activate"/> - <button width="86" label="Deixar" name="Leave"/> + <button width="86" label="Sair" name="Leave"/> <button width="86" label="Criar..." name="Create"/> <button width="86" label="Buscar..." name="Search..."/> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_im_control_panel.xml b/indra/newview/skins/default/xui/pt/panel_im_control_panel.xml index 11e1ba0039dded15de87f4eb19c61f250251bfb4..2535340f4cacbfcc8ec4db59751ac022b62d5fc3 100644 --- a/indra/newview/skins/default/xui/pt/panel_im_control_panel.xml +++ b/indra/newview/skins/default/xui/pt/panel_im_control_panel.xml @@ -13,7 +13,7 @@ <layout_panel name="share_btn_panel"> <button label="Compartilhar" name="share_btn"/> </layout_panel> - <layout_panel name="share_btn_panel"> + <layout_panel name="pay_btn_panel"> <button label="Pagar" name="pay_btn"/> </layout_panel> <layout_panel name="call_btn_panel"> diff --git a/indra/newview/skins/default/xui/pt/panel_login.xml b/indra/newview/skins/default/xui/pt/panel_login.xml index 415451b49fd0d99aca5de5fbe21a93925fee3248..61cdbaef13f04f06042aab7a69609b3ba8f5669d 100644 --- a/indra/newview/skins/default/xui/pt/panel_login.xml +++ b/indra/newview/skins/default/xui/pt/panel_login.xml @@ -12,12 +12,19 @@ Primeiro nome: </text> <line_editor label="Nome" name="first_name_edit" tool_tip="[SECOND_LIFE] First Name"/> + <text name="last_name_text"> + Sobrenome: + </text> <line_editor label="Sobrenome" name="last_name_edit" tool_tip="[SECOND_LIFE] Last Name"/> + <text name="password_text"> + Senha: + </text> <check_box label="Lembrar senha" name="remember_check"/> <text name="start_location_text"> Começar em: </text> <combo_box name="start_location_combo"> + <combo_box.item label="Última posição" name="MyLastLocation"/> <combo_box.item label="Minha casa" name="MyHome"/> </combo_box> <button label="conectar" name="connect_btn"/> @@ -26,6 +33,9 @@ <text name="create_new_account_text"> Cadastre-se </text> + <text name="forgot_password_text"> + Esqueceu seu nome ou senha? + </text> <text name="login_help"> Precisa de ajuda ao conectar? </text> diff --git a/indra/newview/skins/default/xui/pt/panel_main_inventory.xml b/indra/newview/skins/default/xui/pt/panel_main_inventory.xml index f64b9f319f0dbaf98f115c40246123a21055b007..104c3bface2bb5c7a9eee257fd54567d40a2f76f 100644 --- a/indra/newview/skins/default/xui/pt/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/pt/panel_main_inventory.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Coisas" name="main inventory panel"> - <panel.string name="Title"> - Coisas + <panel.string name="ItemcountFetching"> + Reunindo [ITEM_COUNT] itens ... [FILTER] </panel.string> - <filter_editor label="Filtro" name="inventory search editor"/> - <tab_container name="inventory filter tabs"> - <inventory_panel label="Todos os itens" name="All Items"/> - <inventory_panel label="Itens recentes" name="Recent Items"/> - </tab_container> - <panel name="bottom_panel"> - <button name="options_gear_btn" tool_tip="Mostrar opções adicionais"/> - <button name="add_btn" tool_tip="Adicionar novo item"/> - <dnd_button name="trash_btn" tool_tip="Remover item selecionado"/> - </panel> + <panel.string name="ItemcountCompleted"> + [ITEM_COUNT] itens [FILTER] + </panel.string> + <text name="ItemcountText"> + Itens: + </text> <menu_bar name="Inventory Menu"> <menu label="Arquivo" name="File"> <menu_item_call label="Abrir" name="Open"/> @@ -48,7 +44,7 @@ <menu_item_call label="Nova tatuagem" name="New Tattoo"/> </menu> <menu label="Nova parte do corpo" name="New Body Parts"> - <menu_item_call label="Nova silhueta" name="New Shape"/> + <menu_item_call label="Nova forma" name="New Shape"/> <menu_item_call label="Nova pele" name="New Skin"/> <menu_item_call label="Novo cabelo" name="New Hair"/> <menu_item_call label="Novos olhos" name="New Eyes"/> @@ -61,4 +57,14 @@ <menu_item_check label="Pastas do sistema no topo" name="System Folders To Top"/> </menu> </menu_bar> + <filter_editor label="Filtro" name="inventory search editor"/> + <tab_container name="inventory filter tabs"> + <inventory_panel label="Todos os itens" name="All Items"/> + <inventory_panel label="Itens recentes" name="Recent Items"/> + </tab_container> + <panel name="bottom_panel"> + <button name="options_gear_btn" tool_tip="Mostrar opções adicionais"/> + <button name="add_btn" tool_tip="Adicionar novo item"/> + <dnd_button name="trash_btn" tool_tip="Remover item selecionado"/> + </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_media_settings_general.xml b/indra/newview/skins/default/xui/pt/panel_media_settings_general.xml index 9815b8d0b4d345d90429990dc1ba2973f9ffc9ef..43c08200363f00e3f8ea06dcdd0e0eb101c0d8a4 100644 --- a/indra/newview/skins/default/xui/pt/panel_media_settings_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_media_settings_general.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Público geral" name="Media Settings General"> +<panel label="Geral" name="Media Settings General"> <text name="home_label"> Página web: </text> diff --git a/indra/newview/skins/default/xui/pt/panel_nearby_media.xml b/indra/newview/skins/default/xui/pt/panel_nearby_media.xml index a81d3e19f88dcdf8b98a9261c6ec775017694059..34db606d8b10812e590fe85743b20210bd3496bd 100644 --- a/indra/newview/skins/default/xui/pt/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/pt/panel_nearby_media.xml @@ -19,10 +19,17 @@ <button label="Mais >>" label_selected="Menos <<" name="more_less_btn" tool_tip="Controles avançados"/> </panel> <panel name="nearby_media_panel"> + <text name="nearby_media"> + MÃdia por perto + </text> + <text name="show"> + Mostrar: + </text> <combo_box name="show_combo"> <combo_box.item label="Tudo" name="All"/> <combo_box.item label="Neste lote" name="WithinParcel"/> <combo_box.item label="Fora deste lote" name="OutsideParcel"/> + <combo_box.item label="Nos outros avatares" name="OnOthers"/> </combo_box> <scroll_list name="media_list"> <scroll_list.columns label="Proximidade" name="media_proximity"/> @@ -31,10 +38,10 @@ <scroll_list.columns label="Nome" name="media_name"/> <scroll_list.columns label="Depurar" name="media_debug"/> </scroll_list> - <panel> + <panel name="media_controls_panel"> <layout_stack name="media_controls"> <layout_panel name="stop"> - <button name="stop_btn" tool_tip="Para mÃdia selecionada"/> + <button name="stop_btn" tool_tip="Parar mÃdia selecionada"/> </layout_panel> <layout_panel name="play"> <button name="play_btn" tool_tip="Tocar mÃdia selecionada"/> diff --git a/indra/newview/skins/default/xui/pt/panel_people.xml b/indra/newview/skins/default/xui/pt/panel_people.xml index 50617887577a5f422c34be59988345ecd490368b..1516a2bb6566d202724ef573452852199023fbc7 100644 --- a/indra/newview/skins/default/xui/pt/panel_people.xml +++ b/indra/newview/skins/default/xui/pt/panel_people.xml @@ -7,6 +7,8 @@ <string name="no_friends" value="Nenhum amigo"/> <string name="people_filter_label" value="Filtro de pessoas"/> <string name="groups_filter_label" value="Filtro de grupos"/> + <string name="no_filtered_groups_msg" value="[secondlife:///app/search/groups Tente encontrar o grupo na Busca]"/> + <string name="no_groups_msg" value="[secondlife:///app/search/groups Tente procurar grupos que lhe interessam]"/> <filter_editor label="Filtro" name="filter_input"/> <tab_container name="tabs"> <panel label="PROXIMIDADE" name="nearby_panel"> @@ -26,7 +28,7 @@ <button name="del_btn" tool_tip="Remover a pessoa selecionada da sua lista de amigos"/> </panel> <text name="no_friends_msg"> - Para adicionar amigos, use a [secondlife:///app/search/people busca de pessoas] ou clique em um usuário para adicioná-lo. + Para adicionar amigos, use a [secondlife:///app/search/people busca de pessoas] ou clique em um residente para adicioná-lo. Para conhecer mais gente, use [secondlife:///app/worldmap o Mapa]. </text> </panel> @@ -46,12 +48,12 @@ Para conhecer mais gente, use [secondlife:///app/worldmap o Mapa]. </tab_container> <panel name="button_bar"> <button label="Perfil" name="view_profile_btn" tool_tip="Exibir fotografia, grupos e outras informações dos residentes"/> - <button label="MI" name="im_btn" tool_tip="Abrir sessão de mensagem instantânea"/> + <button label="MI" name="im_btn" tool_tip="Iniciar MI"/> <button label="Chamada" name="call_btn" tool_tip="Ligar para este residente"/> <button label="Compartilhar" name="share_btn"/> <button label="Teletransporte" name="teleport_btn" tool_tip="Oferecer teletransporte"/> <button label="Perfil do grupo" name="group_info_btn" tool_tip="Exibir informação de grupo"/> - <button label="Bate- papo de grupo" name="chat_btn" tool_tip="abrir sessão de bate- papo"/> + <button label="Bate-papo de grupo" name="chat_btn" tool_tip="Iniciar bate-papo"/> <button label="Ligar para o grupo" name="group_call_btn" tool_tip="Ligar para este grupo"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_place_profile.xml b/indra/newview/skins/default/xui/pt/panel_place_profile.xml index 453c56d2807b24024e31e643454f0ddb8d34cf3a..03f997f31bd0fb580a90db3c60c7ba64d55888eb 100644 --- a/indra/newview/skins/default/xui/pt/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/pt/panel_place_profile.xml @@ -6,7 +6,7 @@ <string name="available" value="disponÃvel"/> <string name="allocated" value="alocados"/> <string name="title_place" value="Perfil da região"/> - <string name="title_teleport_history" value="Histórico de teletransportes"/> + <string name="title_teleport_history" value="Teletransportes"/> <string name="not_available" value="(N\A)"/> <string name="unknown" value="(Desconhecido)"/> <string name="public" value="(público)"/> @@ -51,12 +51,12 @@ <accordion_tab name="parcel_characteristics_tab" title="Lote"> <panel name="parcel_characteristics_panel"> <text name="rating_label" value="Classificação:"/> - <text name="rating_value" value="(Desconhecido)"/> + <text name="rating_value" value="desconhecido"/> <text name="voice_label" value="Voz:"/> <text name="voice_value" value="Ligar"/> <text name="fly_label" value="Voar:"/> <text name="fly_value" value="Ligar"/> - <text name="push_label" value="Push:"/> + <text name="push_label" value="Empurrar:"/> <text name="push_value" value="Desligar"/> <text name="build_label" value="Construir:"/> <text name="build_value" value="Ligar"/> @@ -70,10 +70,17 @@ <accordion_tab name="region_information_tab" title="Região"> <panel name="region_information_panel"> <text name="region_name_label" value="Região:"/> + <text name="region_name" value="Alcelândia"/> <text name="region_type_label" value="Tipo:"/> + <text name="region_type" value="Alce"/> <text name="region_rating_label" value="Classificação:"/> + <text name="region_rating" value="Adulto"/> <text name="region_owner_label" value="Proprietário:"/> + <text name="region_owner" value="moose Van Moose"/> <text name="region_group_label" value="Grupo:"/> + <text name="region_group"> + The Mighty Moose of mooseville soundvillemoose + </text> <button label="Região/Propriedade" name="region_info_btn"/> </panel> </accordion_tab> @@ -93,7 +100,7 @@ <text name="primitives_label" value="Prims:"/> <text name="parcel_scripts_label" value="Scripts:"/> <text name="terraform_limits_label" value="Limite de terraplenagem:"/> - <text name="subdivide_label" value="Juntar/subdividir:"/> + <text name="subdivide_label" value="Capacidade de juntar/subdividir:"/> <text name="resale_label" value="Revenda:"/> <text name="sale_to_label" value="À venda para:"/> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_places.xml b/indra/newview/skins/default/xui/pt/panel_places.xml index d9045e1a3706b59030314434247d6d69106a5f43..9da4201c85fb537288c34e0e71d32b0d250da58a 100644 --- a/indra/newview/skins/default/xui/pt/panel_places.xml +++ b/indra/newview/skins/default/xui/pt/panel_places.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Lugares" name="places panel"> <string name="landmarks_tab_title" value="MEUS MARCOS"/> - <string name="teleport_history_tab_title" value="HISTÓRICO DE TELETRANSPORTES"/> + <string name="teleport_history_tab_title" value="TELETRANSPORTES"/> <filter_editor label="Filtrar meus lugares" name="Filter"/> <panel name="button_panel"> <button label="Teletransportar" name="teleport_btn" tool_tip="Teletransportar para a área selecionada"/> diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_advanced.xml b/indra/newview/skins/default/xui/pt/panel_preferences_advanced.xml index 7ed64404e63aff241c5e18e0f3bf2b0edb6e0eea..f30c218c818ce4ac591b0bf53f7c0718a884eece 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_advanced.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_advanced.xml @@ -3,6 +3,9 @@ <panel.string name="aspect_ratio_text"> [NUM]:[DEN] </panel.string> + <panel.string name="middle_mouse"> + Botão do meio do mouse + </panel.string> <slider label="Ângulo de visão" name="camera_fov"/> <slider label="Distância" name="camera_offset_scale"/> <text name="heading2"> @@ -13,17 +16,17 @@ <check_box label="Mostre-me em visão de mouse" name="first_person_avatar_visible"/> <check_box label="Teclas de seta sempre me movem" name="arrow_keys_move_avatar_check"/> <check_box label="Dê dois toques e pressione para correr" name="tap_tap_hold_to_run"/> - <check_box label="Mover os lábios do avatar quando estiver falando" name="enable_lip_sync"/> + <check_box label="Mover os lábios do avatar ao falar" name="enable_lip_sync"/> <check_box label="Balão de bate-papo" name="bubble_text_chat"/> <slider label="Opacidade" name="bubble_chat_opacity"/> - <color_swatch name="background" tool_tip="Escolha a cor do balão de bate-papo"/> + <color_swatch name="background" tool_tip="Cor do balão de bate-papo"/> <check_box label="Mostrar erros de script" name="show_script_errors"/> <radio_group name="show_location"> <radio_item label="Bate-papo local" name="0"/> <radio_item label="Janelas separadas" name="1"/> </radio_group> - <check_box label="Tecla liga/desliga da minha voz:" name="push_to_talk_toggle_check" tool_tip="Quando em modo de alternância, pressione e solte o botão UMA vez para ligar e desligar o microfone. Quando em modo de alternância, o microfone só transmite sua enquanto o botão estiver pressionado."/> - <line_editor label="Botao apertar e falar" name="modifier_combo"/> - <button label="Definir chave" name="set_voice_hotkey_button"/> + <check_box label="Tecla liga/desliga da minha voz:" name="push_to_talk_toggle_check" tool_tip="Quando em modo de alternância, pressione e solte o botão UMA vez para ligar e desligar o microfone. Quando em modo de alternância, o microfone só transmite sua voz quando o botão estiver pressionado."/> + <line_editor label="Botão apertar e falar" name="modifier_combo"/> + <button label="Definir tecla" name="set_voice_hotkey_button"/> <button label="Botão do meio do mouse" name="set_voice_middlemouse_button" tool_tip="Redefinir como botão do meio do mouse"/> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_chat.xml b/indra/newview/skins/default/xui/pt/panel_preferences_chat.xml index d9b18724e2a9009b6ba95fd43c6dd7ec49279d4f..e566fde27cfefe63abceda442c5683b89ad57083 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_chat.xml @@ -1,10 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Chat" name="chat"> + <text name="font_size"> + Tamanho da fonte: + </text> <radio_group name="chat_font_size"> <radio_item label="Pequeno" name="radio" value="0"/> - <radio_item label="Média" name="radio2" value="1"/> + <radio_item label="Médio" name="radio2" value="1"/> <radio_item label="Grande" name="radio3" value="2"/> </radio_group> + <text name="font_colors"> + Cor da fonte: + </text> <color_swatch label="Você" name="user"/> <text name="text_box1"> Eu @@ -38,8 +44,14 @@ URLs </text> <check_box initial_value="true" label="Executar animação digitada quando estiver conversando" name="play_typing_animation"/> - <check_box label="Envie MIs por email quando eu estiver desconectado" name="send_im_to_email"/> - <radio_group name="chat_window" tool_tip="Exibir cada bate-papo em uma janela separada, ou exibir todos em uma única janela com uma aba para cada pessoa (requer reinÃcio)"> + <check_box label="Enviar MIs por email se estiver desconectado" name="send_im_to_email"/> + <text name="show_ims_in_label"> + Mostrar MIs em: + </text> + <text name="requires_restart_label"> + (Reinicie para ativar) + </text> + <radio_group name="chat_window" tool_tip="Exibir cada bate-papo em uma janela separada ou exibir todos em uma única janela com uma aba para cada pessoa (requer reinÃcio)"> <radio_item label="Janelas separadas" name="radio" value="0"/> <radio_item label="Guias" name="radio2" value="1"/> </radio_group> diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_general.xml b/indra/newview/skins/default/xui/pt/panel_preferences_general.xml index 7a3e69c988c6b2196c49242d5dfb6ab9790801e1..5c69fa8de1342627f16dc737ec88049d2e815440 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_general.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Geral" name="general_panel"> <text name="language_textbox"> - Linguagem: + Idioma: </text> <combo_box name="language_combobox"> <combo_box.item label="Padrão" name="System Default Language"/> @@ -20,20 +20,20 @@ (Reinicie para mostrar o novo idioma) </text> <text name="maturity_desired_prompt"> - Eu quero acessar conteúdo classificado: + Quero acessar conteúdo: </text> <text name="maturity_desired_textbox"/> <combo_box name="maturity_desired_combobox"> - <combo_box.item label="PG, Mature e Adult" name="Desired_Adult"/> - <combo_box.item label="PG e Mature" name="Desired_Mature"/> - <combo_box.item label="PG" name="Desired_PG"/> + <combo_box.item label="Geral, Moderado e Adulto" name="Desired_Adult"/> + <combo_box.item label="Geral e Moderado" name="Desired_Mature"/> + <combo_box.item label="Geral" name="Desired_PG"/> </combo_box> <text name="start_location_textbox"> - Ponto de partida: + Posição inicial: </text> <combo_box name="start_location_combo"> - <combo_box.item label="Minha Última Localidade" name="MyLastLocation" tool_tip="Por padrão, registrar na minha última localidade."/> - <combo_box.item label="Minha Casa" name="MyHome" tool_tip="Como padrão, registrar na minha casa."/> + <combo_box.item label="Última localização" name="MyLastLocation" tool_tip="Voltar ao lugar onde estava antes."/> + <combo_box.item label="Meu inÃcio" name="MyHome" tool_tip="Voltar ao meu inÃcio."/> </combo_box> <check_box initial_value="true" label="Mostrar ao entrar" name="show_location_checkbox"/> <text name="name_tags_textbox"> @@ -45,7 +45,7 @@ <radio_item label="Brevemente" name="radio3" value="2"/> </radio_group> <check_box label="Mostrar meu nome" name="show_my_name_checkbox1"/> - <check_box initial_value="true" label="Nomes pequenos" name="small_avatar_names_checkbox"/> + <check_box initial_value="true" label="Nome curto" name="small_avatar_names_checkbox"/> <check_box label="Mostrar cargo" name="show_all_title_checkbox1"/> <text name="effects_color_textbox"> Meus efeitos: 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 f220bb156f8d8266aee07013b7b1193d21549f63..f03063d05b20509a33345231a9a8f48504339dbf 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml @@ -28,19 +28,22 @@ <text name="Cache location"> Localização do cache: </text> - <button label="Navegar" label_selected="Navegar" name="set_cache"/> + <button label="Procurar" label_selected="Procurar" name="set_cache"/> <button label="Redefinir" label_selected="Redefinir" name="reset_cache"/> <text name="Web:"> Web: </text> <radio_group name="use_external_browser"> - <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="0"/> <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="1"/> + <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> + <check_box initial_value="verdadeiro" label="Habilitar plugins" name="browser_plugins_enabled"/> + <check_box initial_value="verdadeiro" label="Aceitar cookies" name="cookies_enabled"/> + <check_box initial_value="verdadeiro" label="Habilitar Javascript" name="browser_javascript_enabled"/> <check_box initial_value="false" label="Ativar web proxy" name="web_proxy_enabled"/> <text name="Proxy location"> Localização do proxy: </text> <line_editor name="web_proxy_editor" tool_tip="O nome ou endereço IP do proxy da sua preferência"/> - <spinner label="Número da porta:" name="web_proxy_port"/> + <spinner label="Porta:" name="web_proxy_port"/> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_region_estate.xml b/indra/newview/skins/default/xui/pt/panel_region_estate.xml index 0f173ab21acf4713600eb144dacb2c150d81fb04..e5d394865cfda98fb9af01d56690c92abba4b82a 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_estate.xml @@ -39,7 +39,7 @@ </string> <button label="?" name="abuse_email_address_help"/> <button label="Aplicar" name="apply_btn"/> - <button label="Chutar usuário da propriedade..." name="kick_user_from_estate_btn"/> + <button label="Expulsar da propriedade..." name="kick_user_from_estate_btn"/> <button label="Enviar mensagem à Propriedade" name="message_estate_btn"/> <text name="estate_manager_label"> Gerentes da propriedade: diff --git a/indra/newview/skins/default/xui/pt/panel_region_general.xml b/indra/newview/skins/default/xui/pt/panel_region_general.xml index 1a06d91aa84e1551dbedfcc5133fea8facd28811..d1a5eaa11e730741d441e885e11ec7ce8e6dd11d 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_general.xml @@ -19,35 +19,25 @@ desconhecido </text> <check_box label="Bloquear Terraform" name="block_terraform_check"/> - <button label="?" name="terraform_help"/> <check_box label="Bloquear Vôo" name="block_fly_check"/> - <button label="?" name="fly_help"/> <check_box label="Permitir Dano" name="allow_damage_check"/> - <button label="?" name="damage_help"/> <check_box label="Restringir Empurrar" name="restrict_pushobject"/> - <button label="?" name="restrict_pushobject_help"/> <check_box label="Permitir Revenda de Terra" name="allow_land_resell_check"/> - <button label="?" name="land_resell_help"/> <check_box label="Permitir Unir/Dividir Terra" name="allow_parcel_changes_check"/> - <button label="?" name="parcel_changes_help"/> <check_box label="Bloquear Mostrar Terra na Busca" name="block_parcel_search_check" tool_tip="Permitir que as pessoas vejam esta região e seus lotes nos resultados de busca"/> - <button label="?" name="parcel_search_help"/> <spinner label="Limit do Agente" name="agent_limit_spin"/> - <button label="?" name="agent_limit_help"/> <spinner label="Objeto Bonus" name="object_bonus_spin"/> - <button label="?" name="object_bonus_help"/> <text label="Maturidade" name="access_text"> Classificação: </text> - <combo_box label="Mature" name="access_combo"> - <combo_box.item label="Adult" name="Adult"/> - <combo_box.item label="Mature" name="Mature"/> - <combo_box.item label="PG" name="PG"/> - </combo_box> - <button label="?" name="access_help"/> + <icons_combo_box label="Mature" name="access_combo"> + <icons_combo_box.item label="Adult" name="Adult" value="42"/> + <icons_combo_box.item label="Mature" name="Mature" value="21"/> + <icons_combo_box.item label="PG" name="PG" value="13"/> + </icons_combo_box> <button label="Aplicar" name="apply_btn"/> - <button label="Teletransportar um usuário para Casa..." name="kick_btn"/> - <button label="Teletransportar Todos os Usuários..." name="kick_all_btn"/> + <button label="Teletransportar um residente para inÃcio..." name="kick_btn"/> + <button label="Teletransportar todos para inÃcio..." name="kick_all_btn"/> <button label="Enviar Mensagem para a Região..." name="im_btn"/> <button label="Gerenciar Telehub..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_region_general_layout.xml b/indra/newview/skins/default/xui/pt/panel_region_general_layout.xml index 89fcb05658fef4019b6183c44ed89aa5d8f6dab4..d2d5fb649cac94f96147c611e5a6f9e5664b8530 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_general_layout.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_general_layout.xml @@ -36,7 +36,7 @@ <combo_box.item label="Geral" name="PG"/> </combo_box> <button label="Aplicar" name="apply_btn"/> - <button label="Teletransportar para inÃcio..." name="kick_btn"/> + <button label="Teletransportar um residente para inÃcio..." name="kick_btn"/> <button label="Teletransportar todos para inÃcio..." name="kick_all_btn"/> <button label="Enviar mensagem para região..." name="im_btn"/> <button label="Gerenciar telehub..." name="manage_telehub_btn"/> diff --git a/indra/newview/skins/default/xui/pt/panel_region_texture.xml b/indra/newview/skins/default/xui/pt/panel_region_texture.xml index 7f37919af2c3dd7688f80f20c0c9f5edb7e75e28..35928ccc67320b7b0c9f936620008428f0fbb0c3 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_texture.xml @@ -25,16 +25,16 @@ Escalas de Elevação de Terreno </text> <text name="height_text_lbl6"> - Sudeste + Noroeste </text> <text name="height_text_lbl7"> - Noroeste + Nordeste </text> <text name="height_text_lbl8"> Sudoeste </text> <text name="height_text_lbl9"> - Noroeste + Sudeste </text> <spinner label="Baixo" name="height_start_spin_0"/> <spinner label="Baixo" name="height_start_spin_1"/> diff --git a/indra/newview/skins/default/xui/pt/panel_status_bar.xml b/indra/newview/skins/default/xui/pt/panel_status_bar.xml index a320d9d56d842639ed43180aeb9e3442287d265e..ae2879f4a95b179d0cda2f05b0f5222f15ef7f9b 100644 --- a/indra/newview/skins/default/xui/pt/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/pt/panel_status_bar.xml @@ -22,7 +22,7 @@ L$ [AMT] </panel.string> <button label="" label_selected="" name="buycurrency" tool_tip="Meu saldo"/> - <button label="Comprar L$" name="buyL" tool_tip="Comprar mais L$"/> + <button label="Comprar" name="buyL" tool_tip="Comprar mais L$"/> <text name="TimeText" tool_tip="Hora atual (PacÃfico)"> 24:00 AM PST </text> diff --git a/indra/newview/skins/default/xui/pt/sidepanel_task_info.xml b/indra/newview/skins/default/xui/pt/sidepanel_task_info.xml index 7981cd106f0cc132701c43dec091adb0899f18ba..919373001839d9c3214877d008af155251cc02a7 100644 --- a/indra/newview/skins/default/xui/pt/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/pt/sidepanel_task_info.xml @@ -38,7 +38,7 @@ </panel.string> <text name="title" value="Perfil do objeto"/> <text name="where" value="(inworld)"/> - <panel label=""> + <panel label="" name="properties_panel"> <text name="Name:"> Nome: </text> @@ -54,12 +54,15 @@ <text name="Owner:"> Proprietário: </text> + <text name="Owner Name"> + Erica Linden + </text> <text name="Group_label"> Grupo: </text> <button name="button set group" tool_tip="Selecione o grupo que terá acesso à autorização do objeto"/> <name_box initial_value="Carregando..." name="Group Name Proxy"/> - <button label="Doar" label_selected="Doar" name="button deed" tool_tip="Ao doar este item, o próximo dono terá permissões de próximo dono. Objetos de grupos podem ser doados por um oficial do grupo."/> + <button label="Doar" label_selected="Doar" name="button deed" tool_tip="Ao doar este item, o próximo dono terá permissões de próximo dono. Objetos de grupos podem ser doados por um oficial do grupo."/> <text name="label click action"> Clique para: </text> @@ -121,5 +124,6 @@ <button label="Abrir" name="open_btn"/> <button label="Pagar" name="pay_btn"/> <button label="Comprar" name="buy_btn"/> + <button label="Detalhes" name="details_btn"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/pt/strings.xml b/indra/newview/skins/default/xui/pt/strings.xml index 195345abc0846e1bfb54ae923273fa054eb310a7..493432e44b57f11428dc16e9f160badb651e9181 100644 --- a/indra/newview/skins/default/xui/pt/strings.xml +++ b/indra/newview/skins/default/xui/pt/strings.xml @@ -8,16 +8,31 @@ SECOND LIFE </string> <string name="SUPPORT_SITE"> - Portal de Apoio do Second Life + Portal de Supporte Second Life </string> <string name="StartupDetectingHardware"> Detectando hardware... </string> <string name="StartupLoading"> - Carregando + Carregando [APP_NAME]... + </string> + <string name="StartupClearingCache"> + Limpando o cache... + </string> + <string name="StartupInitializingTextureCache"> + Iniciando cache de texturas... + </string> + <string name="StartupInitializingVFS"> + Iniciando VFS... + </string> + <string name="ProgressRestoring"> + Restaurando... + </string> + <string name="ProgressChangingResolution"> + Alterando a resolução... </string> <string name="LoginInProgress"> - Fazendo Login. [APP_NAME] pode parecer congelado. Por favor, aguarde. + Fazendo login. [APP_NAME] pode parecer congelado. Por favor, aguarde. </string> <string name="LoginInProgressNoFrozen"> Logando... @@ -29,7 +44,7 @@ Executando manutenção da conta... </string> <string name="LoginAttempt"> - Falha na tentativa anterior de login. Fazendo Login, tentativa [NUMBER] + Falha na tentativa anterior de login. Login, tentativa [NUMBER] </string> <string name="LoginPrecaching"> Carregando mundo... @@ -47,10 +62,10 @@ Verificando arquivos cache (pode levar de 60-90 segundos)... </string> <string name="LoginProcessingResponse"> - Processando Resposta... + Processando resposta... </string> <string name="LoginInitializingWorld"> - Inicializando Mundo... + Inicializando mundo... </string> <string name="LoginDecodingImages"> Decodificando imagens... @@ -59,13 +74,13 @@ Inicializando o QuickTime... </string> <string name="LoginQuicktimeNotFound"> - O QuickTime não foi encontrado - incapaz de inicializar. + O QuickTime não foi encontrado - falha ao iniciar. </string> <string name="LoginQuicktimeOK"> O QuickTime foi inicializado com sucesso. </string> <string name="LoginWaitingForRegionHandshake"> - Aguardando o handshake com a região... + Aguardando handshake com a região... </string> <string name="LoginConnectingToRegion"> Conectando à região... @@ -74,7 +89,10 @@ Baixando roupas... </string> <string name="LoginFailedNoNetwork"> - Erro de Rede: Não foi possÃvel estabelecer a conexão, verifique sua conexão de rede. + Erro de rede: Não foi possÃvel estabelecer a conexão, verifique sua conexão de rede. + </string> + <string name="LoginFailed"> + Falha do login. </string> <string name="Quit"> Sair @@ -85,6 +103,24 @@ <string name="AgentLostConnection"> Esta região pode estar passando por problemas. Por favor, verifique sua conexão com a internet. </string> + <string name="SavingSettings"> + Salvando configurações... + </string> + <string name="LoggingOut"> + Saindo... + </string> + <string name="ShuttingDown"> + Fechando... + </string> + <string name="YouHaveBeenDisconnected"> + Você foi desconectado da região onde estava. + </string> + <string name="SentToInvalidRegion"> + Você foi enviado para uma região inválida. + </string> + <string name="TestingDisconnect"> + Teste de desconexão + </string> <string name="TooltipPerson"> Pessoa </string> @@ -107,22 +143,22 @@ ConstruÃdo por Grupo </string> <string name="TooltipFlagNoBuild"> - Não é Permitido Construir + Não é permitido construir </string> <string name="TooltipFlagNoEdit"> ConstruÃdo por Grupo </string> <string name="TooltipFlagNotSafe"> - Não é Seguro + Não é seguro </string> <string name="TooltipFlagNoFly"> - Não é Permitido Voar + Não é permitido voar </string> <string name="TooltipFlagGroupScripts"> Scripts de Grupo </string> <string name="TooltipFlagNoScripts"> - Não são Permitidos Scripts + Não são permitidos scripts </string> <string name="TooltipLand"> Terreno: @@ -131,14 +167,32 @@ Apenas um item único pode ser arrastado para este local </string> <string name="TooltipHttpUrl"> - Clique para ver essa página web + Clique para ver a página web </string> <string name="TooltipSLURL"> - Clique para ver a informação desta localização + Clique para ver os dados desta localização </string> <string name="TooltipAgentUrl"> Clique para ver o perfil deste residente </string> + <string name="TooltipAgentMute"> + Clique para silenciar este residente + </string> + <string name="TooltipAgentUnmute"> + Clique para desfazer silenciar neste residente + </string> + <string name="TooltipAgentIM"> + Clique para enviar uma MI para este residente + </string> + <string name="TooltipAgentPay"> + Clique para pagar este residente + </string> + <string name="TooltipAgentOfferTeleport"> + Clique para enviar um pedido de amizade a este residente + </string> + <string name="TooltipAgentRequestFriend"> + Clique para enviar um pedido de amizade a este residente + </string> <string name="TooltipGroupUrl"> Clique para ver a descrição deste Grupo </string> @@ -146,7 +200,7 @@ Clique para ver a descrição deste evento </string> <string name="TooltipClassifiedUrl"> - Clique para ver este classificado + Clique para ver este anúncio </string> <string name="TooltipParcelUrl"> Clique para ver a descrição desta parcela @@ -161,15 +215,34 @@ Clique para ver esta localização no mapa </string> <string name="TooltipSLAPP"> - Clique para ativar no secondlife:// commando + Clique para ativar no secondlife:// comando </string> <string name="CurrentURL" value="URL atual: [CurrentURL]"/> + <string name="TooltipPrice" value="L$[PRICE]-"/> <string name="SLurlLabelTeleport"> Teletransportar para </string> <string name="SLurlLabelShowOnMap"> Mostrar no mapa para </string> + <string name="SLappAgentMute"> + Silenciar + </string> + <string name="SLappAgentUnmute"> + Desfazer silenciar + </string> + <string name="SLappAgentIM"> + MI + </string> + <string name="SLappAgentPay"> + Pagar + </string> + <string name="SLappAgentOfferTeleport"> + Oferecer teletransporte para + </string> + <string name="SLappAgentRequestFriend"> + Pedido de amizade + </string> <string name="BUTTON_CLOSE_DARWIN"> Fechar (⌘W) </string> @@ -201,7 +274,7 @@ Buscando... </string> <string name="ReleaseNotes"> - Notas de Distribuição + Notas de versão </string> <string name="LoadingData"> Carregando... @@ -270,7 +343,7 @@ objeto </string> <string name="note card"> - notecard + anotação </string> <string name="folder"> pasta @@ -320,6 +393,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link da pasta + </string> <string name="AvatarAway"> Distante </string> @@ -354,7 +430,7 @@ Entediado </string> <string name="anim_bow"> - Saudar curvando + Reverência </string> <string name="anim_clap"> Aplaudir @@ -414,10 +490,10 @@ Impaciente </string> <string name="anim_jumpforjoy"> - Pular de Alegria + Pular de alegria </string> <string name="anim_kissmybutt"> - Beije meu Bumbum + Beije meu bumbum </string> <string name="anim_express_kiss"> Beijar @@ -438,7 +514,7 @@ Nya-nya-nya </string> <string name="anim_punch_onetwo"> - Soco Um-Dois + Soco um-dois </string> <string name="anim_express_open_mouth"> Abrir a boca @@ -453,10 +529,10 @@ Apontar para si </string> <string name="anim_punch_l"> - Socar Esquerda + Soco esquerdo </string> <string name="anim_punch_r"> - Socar Direita + Soco direito </string> <string name="anim_rps_countdown"> RPS contar @@ -495,16 +571,16 @@ Fumar à toa </string> <string name="anim_smoke_inhale"> - Inalar Fumaça + Inalar fumaça </string> <string name="anim_smoke_throw_down"> - Expelir Fumaça + Expelir fumaça </string> <string name="anim_express_surprise"> Surpresa </string> <string name="anim_sword_strike_r"> - Golpe de Espada + Golpe de espada </string> <string name="anim_angry_tantrum"> Enraivecer @@ -561,7 +637,7 @@ grita: </string> <string name="ringing"> - Conectando à conversa de Voz no mundo + Conectando à conversa de voz no mundo </string> <string name="connected"> Conectado @@ -615,13 +691,13 @@ Controle sua camera </string> <string name="SIM_ACCESS_PG"> - PG + Público geral </string> <string name="SIM_ACCESS_MATURE"> - Mature + Moderado </string> <string name="SIM_ACCESS_ADULT"> - Adult + Adulto </string> <string name="SIM_ACCESS_DOWN"> Desconectado @@ -633,7 +709,7 @@ (desconhecido) </string> <string name="all_files"> - Todos os Arquivos + Todos os arquivos </string> <string name="sound_files"> Sons @@ -657,10 +733,10 @@ Imagens Bitmap </string> <string name="avi_movie_file"> - Arquivo de filme AVI + Arquivo de vÃdeo AVI </string> <string name="xaf_animation_file"> - Arquivo de Animação XAF + Arquivo de animação XAF </string> <string name="xml_file"> Arquivo XML @@ -669,25 +745,25 @@ Arquivo RAW </string> <string name="compressed_image_files"> - Imagens Compactadas + Imagens compactadas </string> <string name="load_files"> - Carregar Arquivos + Carregar arquivos </string> <string name="choose_the_directory"> - Escolher Diretório + Selecionar pasta </string> <string name="AvatarSetNotAway"> - deixar como não away + deixar como ausente </string> <string name="AvatarSetAway"> - deixar como Away + deixar como ausente </string> <string name="AvatarSetNotBusy"> - deixar como não Ocupado + deixar como não ocupado </string> <string name="AvatarSetBusy"> - Deixar como Busy + Deixar como ocupado </string> <string name="shape"> Silhueta @@ -705,7 +781,7 @@ Camisa </string> <string name="pants"> - calças + Calças </string> <string name="shoes"> Sapatos @@ -720,22 +796,25 @@ Luvas </string> <string name="undershirt"> - camiseta + Camiseta </string> <string name="underpants"> - roupa debaixo + Roupa de baixo </string> <string name="skirt"> - saia + Saia </string> <string name="alpha"> Alpha </string> <string name="tattoo"> - Tattoo + Tatuagem </string> <string name="invalid"> - inválido + Inválido + </string> + <string name="NewWearable"> + Novo [WEARABLE_ITEM] </string> <string name="next"> Próximo @@ -768,7 +847,7 @@ Oferta de teletransporte </string> <string name="StartUpNotifications"> - [%d] Novas notificações chegaram enquanto você estava fora... + Novas notificações chegaram enquanto você estava fora... </string> <string name="OverflowInfoChannelString"> Você tem mais [%d] notificações @@ -825,32 +904,33 @@ Nenhum conteúdo </string> <string name="WornOnAttachmentPoint" value="(vestido em [ATTACHMENT_POINT])"/> - <string name="Chat" value="Bate papo :"/> - <string name="Sound" value="Som :"/> - <string name="Wait" value="--- Aguarde :"/> - <string name="AnimFlagStop" value="Parar animação :"/> - <string name="AnimFlagStart" value="Iniciar animação :"/> - <string name="Wave" value="Aceno"/> + <string name="ActiveGesture" value="[GESLABEL] (ativado)"/> + <string name="Chat" value="Bate papo"/> + <string name="Sound" value="Som"/> + <string name="Wait" value="--- Aguarde"/> + <string name="AnimFlagStop" value="Parar animação"/> + <string name="AnimFlagStart" value="Iniciar animação"/> + <string name="Wave" value="Acenar"/> <string name="HelloAvatar" value="Olá, avatar!"/> - <string name="ViewAllGestures" value="Ver tudo >>"/> + <string name="ViewAllGestures" value="Ver todos>>"/> <string name="Animations" value="Animações,"/> <string name="Calling Cards" value="Cartões de visitas,"/> <string name="Clothing" value="Vestuário,"/> <string name="Gestures" value="Gestos,"/> - <string name="Landmarks" value="Landmarks,"/> - <string name="Notecards" value="Notecards,"/> + <string name="Landmarks" value="Marcos"/> + <string name="Notecards" value="Anotações"/> <string name="Objects" value="Objetos,"/> <string name="Scripts" value="Scripts,"/> - <string name="Sounds" value="Sons,"/> - <string name="Textures" value="Texturas,"/> - <string name="Snapshots" value="Fotografias,"/> + <string name="Sounds" value="Sons"/> + <string name="Textures" value="Texturas"/> + <string name="Snapshots" value="Fotografias"/> <string name="No Filters" value="Não"/> - <string name="Since Logoff" value="- desde desligado"/> + <string name="Since Logoff" value="- Desde desligado"/> <string name="InvFolder My Inventory"> - Meu Inventorio + Meu inventário </string> <string name="InvFolder My Favorites"> - Meus Favoritos + Meus favoritos </string> <string name="InvFolder Library"> Biblioteca @@ -862,10 +942,10 @@ Sons </string> <string name="InvFolder Calling Cards"> - Cartões de Visitas + Cartões de visitas </string> <string name="InvFolder Landmarks"> - Landmarks + Marcos </string> <string name="InvFolder Scripts"> Scripts @@ -877,31 +957,31 @@ Objetos </string> <string name="InvFolder Notecards"> - Notecards + Anotações </string> <string name="InvFolder New Folder"> - Nova Pasta + Nova pasta </string> <string name="InvFolder Inventory"> Inventário </string> <string name="InvFolder Uncompressed Images"> - Imagens Descompactadas + Imagens descompactadas </string> <string name="InvFolder Body Parts"> - Partes do Corpo + Corpo </string> <string name="InvFolder Trash"> Lixo </string> <string name="InvFolder Photo Album"> - Ãlbum de Fotografias + Ãlbum de fotografias </string> <string name="InvFolder Lost And Found"> Achados e Perdidos </string> <string name="InvFolder Uncompressed Sounds"> - Sons Descompactados + Sons descompactados </string> <string name="InvFolder Animations"> Animações @@ -913,10 +993,13 @@ Favoritos </string> <string name="InvFolder Current Outfit"> - Vestimanta Atual + Look atual </string> <string name="InvFolder My Outfits"> - Minhas Vestimentas + Meus looks + </string> + <string name="InvFolder Accessories"> + Acessórios </string> <string name="InvFolder Friends"> Amigos @@ -988,7 +1071,7 @@ Espinha </string> <string name="Pelvis"> - Pelvis + Pélvis </string> <string name="Mouth"> Boca @@ -1045,10 +1128,10 @@ Estômago </string> <string name="Left Pec"> - Pec esquerdo + Peitoral E </string> <string name="Right Pec"> - Pec direito + Peitoral D </string> <string name="YearsMonthsOld"> [AGEYEARS] [AGEMONTHS] de idade @@ -1126,19 +1209,19 @@ Empregado da Linden Lab </string> <string name="PaymentInfoUsed"> - Info de Pagamento usada + Dados de pagamento usados </string> <string name="PaymentInfoOnFile"> - Info de Pagamento no Arquivo + Dados de pagamento fornecidos </string> <string name="NoPaymentInfoOnFile"> - Nenhuma Info de Pagamento no Arquivo + Nenhum dado de pagamento </string> <string name="AgeVerified"> - Idade-verificada + Idade comprovada </string> <string name="NotAgeVerified"> - Idade não-verificada + Idade não comprovada </string> <string name="Center 2"> Centro 2 @@ -1165,7 +1248,7 @@ Inferior direito </string> <string name="CompileQueueDownloadedCompiling"> - Downloaded, agora compilando + Baixado, agora compilando </string> <string name="CompileQueueScriptNotFound"> Script não encontrado no servidor. @@ -1183,7 +1266,7 @@ Falha desconhecida para download </string> <string name="CompileQueueTitle"> - Progresso do Recompilamento + Progresso do recompilamento </string> <string name="CompileQueueStart"> recompilar @@ -1192,7 +1275,7 @@ Reset Progresso </string> <string name="ResetQueueStart"> - reset + Zerar </string> <string name="RunQueueTitle"> Definir funcionamento do progresso @@ -1216,7 +1299,7 @@ Salvo. </string> <string name="ObjectOutOfRange"> - Script (objecto fora de alcance) + Script (objeto fora de alcance) </string> <string name="GodToolsObjectOwnedBy"> Objeto [OBJECT] de propriedade de [OWNER] @@ -1244,10 +1327,10 @@ Total </string> <string name="NoGroupDataFound"> - Não ha dados de grupo para o grupo + Não há dados de grupo </string> <string name="IMParentEstate"> - propriedade dos pais + Propriedade-pai </string> <string name="IMMainland"> continente @@ -1435,6 +1518,12 @@ <string name="PanelContentsNewScript"> Novo Script </string> + <string name="PanelContentsTooltip"> + Conteúdo do objeto + </string> + <string name="BusyModeResponseDefault"> + O residente para o qual escreveu está no modo 'ocupado', ou seja, ele prefere não receber nada no momento. Sua mensagem será exibida como uma MI mais tarde. + </string> <string name="MuteByName"> (por nome) </string> @@ -1448,10 +1537,10 @@ (grupo) </string> <string name="RegionNoCovenant"> - Não ha Contrato fornecido para essa Região. + Não foi definido um contrato para essa região. </string> <string name="RegionNoCovenantOtherOwner"> - Não ha Contrato fornecido para essa Região. O terreno nesta região está sendo vendido pelo Proprietário, não pela Linden Lab. Favor contatar o Proprietário da região para detalhes de venda. + Não foi definido um contrato para essa Região. O terreno nesta região está sendo vendido pelo Proprietário, não pela Linden Lab. Favor contatar o Proprietário da região para detalhes de venda. </string> <string name="covenant_last_modified"> Última modificação: @@ -1492,19 +1581,19 @@ possuÃdo pelo grupo </string> <string name="InvOfferOwnedByUnknownGroup"> - possuÃdo por um grupo desconhecido + de um grupo desconhecido </string> <string name="InvOfferOwnedBy"> - possuÃdo por + de </string> <string name="InvOfferOwnedByUnknownUser"> - possuÃdo por usuário desconhecido + de usuário desconhecido </string> <string name="InvOfferGaveYou"> deu a você </string> <string name="InvOfferYouDecline"> - Você declina + Você recusa </string> <string name="InvOfferFrom"> de @@ -1531,7 +1620,7 @@ pagou prêmio para o evento </string> <string name="GroupMoneyBalance"> - Balanço + Saldo </string> <string name="GroupMoneyCredits"> Créditos @@ -1549,7 +1638,10 @@ Cancelar </string> <string name="UploadingCosts"> - Uploading [%s] custos + Carregar [NAME] custa L$ [AMOUNT] + </string> + <string name="BuyingCosts"> + Isso custa L$ [AMOUNT] </string> <string name="UnknownFileExtension"> Extensão de arquivo desconhecida [.%s] @@ -1559,10 +1651,10 @@ Expected .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Bloquear </string> <string name="AddLandmarkNavBarMenu"> - Adicionar Landmark... + Adicionar marco... </string> <string name="EditLandmarkNavBarMenu"> - Editar Landmark... + Editar marco... </string> <string name="accel-mac-control"> ⌃ @@ -1670,7 +1762,7 @@ Expected .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Locação Linden </string> <string name="Adult"> - Adult + Adulto </string> <string name="Arts&Culture"> Artes e Cultura @@ -1682,13 +1774,13 @@ Expected .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Educacional </string> <string name="Gaming"> - Jogos + Games </string> <string name="Hangout"> Moradia </string> <string name="Newcomer Friendly"> - Amigável a Novos Usuários + Para recém-chegados </string> <string name="Parks&Nature"> Parques & Natureza @@ -1730,10 +1822,10 @@ Se a mensagem persistir, reinicie o computador e tente novamente. Se o error persistir, pode ser necessário desinstalar completamente [APP_NAME] e reinstalá-lo. </string> <string name="MBFatalError"> - Erro Fatal + Erro fatal </string> <string name="MBRequiresAltiVec"> - [APP_NAME] exige um processador com AltiVec (G4 ou superior). + [APP_NAME] exige processador com AltiVec (G4 ou superior). </string> <string name="MBAlreadyRunning"> [APP_NAME] já está em execução. @@ -1741,7 +1833,7 @@ Verifique a sua barra de tarefas para obter uma cópia do programa minimizado. Se a mensagem persistir, reinicie o computador. </string> <string name="MBFrozenCrashed"> - [APP_NAME] parece ter congelado ou falhado na execução anterior. Você gostaria de enviar um relatório de falha? + [APP_NAME] parece ter congelado ou falhado na execução anterior. Enviar relatório de falha? </string> <string name="MBAlert"> Alerta @@ -1795,7 +1887,7 @@ Também não se esqueça de definir seu monitor para True Color (32-bit), em pai Se você continuar a receber esta mensagem, contate o [SUPPORT_SITE]. </string> <string name="MBPixelFmtSetErr"> - ão é possÃvel definir o formato de pixel + Não é possÃvel definir o formato de pixel </string> <string name="MBGLContextErr"> Não é possÃvel criar o contexto de renderização GL @@ -1809,7 +1901,7 @@ Se você continuar a receber esta mensagem, contate o [SUPPORT_SITE]. If you continue to receive this message, contact the [SUPPORT_SITE]. </string> <string name="5 O'Clock Shadow"> - Sombra descuidada + Barba por fazer </string> <string name="All White"> Todo branco @@ -1818,10 +1910,10 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Olhos de Anime </string> <string name="Arced"> - arqueado + Arqueados </string> <string name="Arm Length"> - Comprimento do Braço + Comprimento do braço </string> <string name="Attached"> Anexado @@ -1839,7 +1931,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Franja </string> <string name="Beady Eyes"> - Olhos malévolos + Olhos pequenos </string> <string name="Belly Size"> Tamanho da barriga @@ -1848,7 +1940,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Grande </string> <string name="Big Butt"> - Traseiro Grande + Bunda grande </string> <string name="Big Hair Back"> Cabelo volumoso: Trás @@ -1857,7 +1949,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Cabelo volumoso: Frente </string> <string name="Big Hair Top"> - cabelo volumoso: Topo + Cabelo volumoso: Topo </string> <string name="Big Head"> cabeça grande @@ -1866,7 +1958,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Peitorais grandes </string> <string name="Big Spikes"> - espinhos grandes + Pontas grandes </string> <string name="Black"> Negro @@ -1875,40 +1967,40 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Loiro </string> <string name="Blonde Hair"> - Cabelo Loiro + Cabelo loiro </string> <string name="Blush"> Blush </string> <string name="Blush Color"> - cor do Blush + Cor do blush </string> <string name="Blush Opacity"> - Opacidade do Blush + Opacidade do blush </string> <string name="Body Definition"> - definição do Corpo + Definição do corpo </string> <string name="Body Fat"> - Gordura corporal + Gordura </string> <string name="Body Freckles"> - Sardas do corpo + Sardas </string> <string name="Body Thick"> Corpo cheio </string> <string name="Body Thickness"> - Espessura do corpo + Ossatura </string> <string name="Body Thin"> Corpo magro </string> <string name="Bow Legged"> - pernas arqueadas + Pernas arqueadas </string> <string name="Breast Buoyancy"> - Flexibilidade dos seios + Caimento dos seios </string> <string name="Breast Cleavage"> Separação dos seios @@ -1923,7 +2015,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Largo </string> <string name="Brow Size"> - tamanho da sobrancelha + Tamanho da sobrancelha </string> <string name="Bug Eyes"> Olhos saltados @@ -1947,25 +2039,25 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Tamanho do traseiro </string> <string name="bustle skirt"> - Movimentação de saia + Saia armada </string> <string name="no bustle"> - Sem movimento + Saia reta </string> <string name="more bustle"> - Mais movimento + Mais </string> <string name="Chaplin"> Chaplin </string> <string name="Cheek Bones"> - Maças do rosto + Maçãs do rosto </string> <string name="Chest Size"> Tamanho do peito </string> <string name="Chin Angle"> - ângulo do queixo + Ângulo do queixo </string> <string name="Chin Cleft"> Fissura do queixo @@ -2013,7 +2105,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Direita fechada </string> <string name="Coin Purse"> - Pubis + Pouco volume </string> <string name="Collar Back"> Colarinho posterior @@ -2034,7 +2126,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Nariz torto </string> <string name="Cuff Flare"> - bainha larga + Bainha larga </string> <string name="Dark"> Escuro @@ -2043,13 +2135,13 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Verde escuro </string> <string name="Darker"> - mais escuro + Mais escuro </string> <string name="Deep"> Profundidade </string> <string name="Default Heels"> - Salto Padrão + Salto padrão </string> <string name="Dense"> Densidade @@ -2061,10 +2153,10 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Curvado para baixo </string> <string name="Duffle Bag"> - pubis + Mais volume </string> <string name="Ear Angle"> - ângulo da orelha + Ângulo da orelha </string> <string name="Ear Size"> Tamanho da orelha @@ -2091,7 +2183,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Abertura dos olhos </string> <string name="Eye Pop"> - Olho Saltado + Olho saltado </string> <string name="Eye Size"> Tamanho dos olhos @@ -2103,7 +2195,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Arco da sobrancelha </string> <string name="Eyebrow Density"> - densidade da sobrancelha + Densidade da sobrancelha </string> <string name="Eyebrow Height"> Altura da sobrancelha @@ -2166,7 +2258,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Tamanho dos pés </string> <string name="Forehead Angle"> - ângulo da testa + Ângulo da testa </string> <string name="Forehead Heavy"> Testa pronunciada @@ -2199,7 +2291,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Dedos da luva </string> <string name="Glove Length"> - comprimento das luvas + Comprimento das luvas </string> <string name="Hair"> Cabelo @@ -2238,7 +2330,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Tamanho das mãos </string> <string name="Handlebars"> - bigode + Bigode </string> <string name="Head Length"> Comprimento da cabeça @@ -2262,7 +2354,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Altura </string> <string name="High"> - alto + Alto </string> <string name="High Heels"> Salto alto @@ -2271,7 +2363,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Maxilar alto </string> <string name="High Platforms"> - Plataformas alta + Plataformas altas </string> <string name="High and Tight"> Alto e justo @@ -2307,7 +2399,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Comprimento da blusa </string> <string name="Jacket Wrinkles"> - Dobras da Blusa + Dobras da jaqueta </string> <string name="Jaw Angle"> Ângulo da mandÃbula @@ -2349,7 +2441,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Menos </string> <string name="Less Body Fat"> - Menos gordura corporal + Menos gordura </string> <string name="Less Curtains"> Menos barba @@ -2364,7 +2456,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Menos gravidade </string> <string name="Less Love"> - Menos cintura + Menos excesso </string> <string name="Less Muscles"> Menos músculos @@ -2397,7 +2489,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Fenda dos lábios </string> <string name="Lip Cleft Depth"> - Prfundidade da fenda dos lábios + Profundidade da fenda dos lábios </string> <string name="Lip Fullness"> Volume dos lábios @@ -2454,37 +2546,37 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Pantalonas </string> <string name="Loose Shirt"> - Saia folgada + Camisa folgada </string> <string name="Loose Sleeves"> - Manga longa + Mangas folgadas </string> <string name="Love Handles"> Pneu </string> <string name="Low"> - baixo + Baixo </string> <string name="Low Heels"> Salto baixo </string> <string name="Low Jaw"> - maxilar baixo + Maxilar baixo </string> <string name="Low Platforms"> Plataformas baixas </string> <string name="Low and Loose"> - baixo e solto + Baixo e solto </string> <string name="Lower"> - diminuir + Mais baixo </string> <string name="Lower Bridge"> - nariz baixo + Mais baixa </string> <string name="Lower Cheeks"> - bochechas abaixadas + Bochechas abaixadas </string> <string name="Male"> Masculino @@ -2499,7 +2591,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Mais blush </string> <string name="More Body Fat"> - Mais gordura corporal + Mais gordura </string> <string name="More Curtains"> Mais barba @@ -2553,7 +2645,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Mais vertical </string> <string name="More Volume"> - Mais Volume + Mais volume </string> <string name="More soul"> Mais alma @@ -2604,16 +2696,16 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Espessura do pescoço </string> <string name="No Blush"> - Sem Blush + Sem blush </string> <string name="No Eyeliner"> Sem delineador </string> <string name="No Eyeshadow"> - Sem Sombra dos olhos + Sem sombra </string> <string name="No Lipgloss"> - Sem brilho labial + Sem brilho </string> <string name="No Lipstick"> Sem batom @@ -2628,7 +2720,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Sem vermelho </string> <string name="No Spikes"> - Sem espinhos + Sem pontas </string> <string name="No White"> Sem branco @@ -2709,10 +2801,10 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Sombra externa </string> <string name="Overbite"> - Overbite + Má oclusão </string> <string name="Package"> - Pubis + Púbis </string> <string name="Painted Nails"> Unhas pintadas @@ -2724,7 +2816,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Cavalo da calça </string> <string name="Pants Fit"> - Pants Fit + Caimento das calças </string> <string name="Pants Length"> Comprimento das calças @@ -2739,10 +2831,10 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Parte </string> <string name="Part Bangs"> - Parts da franja + Divisão da franja </string> <string name="Pectorals"> - Peitoral + Peitorais </string> <string name="Pigment"> Pigmento @@ -2787,7 +2879,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Pálpebras inchadas </string> <string name="Rainbow Color"> - Cor do arco iris + Cor do arco Ãris </string> <string name="Red Hair"> Cabelo ruivo @@ -2814,7 +2906,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Cabelo desalinhado </string> <string name="Saddle Bags"> - Saddle Bags + Culote </string> <string name="Scrawny Leg"> Pernas magricelas @@ -2823,7 +2915,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Separar </string> <string name="Shallow"> - raso + Raso </string> <string name="Shear Back"> Trás rente @@ -2847,22 +2939,22 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Rente frente </string> <string name="Shift Left"> - Deslocar à esquerda + Deslocar p/ esquerda </string> <string name="Shift Mouth"> Deslocar boca </string> <string name="Shift Right"> - Deslocar direita + Deslocar p/ direita </string> <string name="Shirt Bottom"> - Deslocar inferior + Barra da camisa </string> <string name="Shirt Fit"> - Deslocar ajuste + Ajuste da camisa </string> <string name="Shirt Wrinkles"> - Deslocar dobras + +/- amassada </string> <string name="Shoe Height"> Altura do sapato @@ -3126,7 +3218,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. Ver mais informações sobre a localização atual </string> <string name="LocationCtrlComboBtnTooltip"> - Meu histórico de localizações + Histórico de localizações </string> <string name="UpdaterWindowTitle"> [APP_NAME] Atualização @@ -3266,4 +3358,120 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. <string name="unread_chat_multiple"> [SOURCES] disseram alguma coisa </string> + <string name="paid_you_ldollars"> + [NAME] lhe pagou L$ [AMOUNT] + </string> + <string name="you_paid_ldollars"> + You pagou L$[AMOUNT] por [REASON] a [NAME]. + </string> + <string name="you_paid_ldollars_no_reason"> + You pagou L$[AMOUNT] a [NAME]. + </string> + <string name="you_paid_ldollars_no_name"> + You pagou L$[AMOUNT] por [REASON]. + </string> + <string name="for a parcel of land"> + por uma parcela + </string> + <string name="for a land access pass"> + por um passe de acesso + </string> + <string name="for deeding land"> + para doar um terreno + </string> + <string name="to create a group"> + para criar um grupo + </string> + <string name="to join a group"> + para entrar em um grupo + </string> + <string name="to upload"> + para carregar + </string> + <string name="giving"> + Dando L$ [AMOUNT] + </string> + <string name="uploading_costs"> + O upload custa L$ [AMOUNT] + </string> + <string name="this_costs"> + Isso custa L$ [AMOUNT] + </string> + <string name="buying_selected_land"> + Comprando terreno selecionado L$ [AMOUNT] + </string> + <string name="this_object_costs"> + Esse objeto custa L$ [AMOUNT] + </string> + <string name="group_role_everyone"> + Todos + </string> + <string name="group_role_officers"> + Oficiais + </string> + <string name="group_role_owners"> + Proprietários + </string> + <string name="uploading_abuse_report"> + Carregando... + +Denunciar abuso + </string> + <string name="New Shape"> + Nova forma + </string> + <string name="New Skin"> + Nova pele + </string> + <string name="New Hair"> + Novo cabelo + </string> + <string name="New Eyes"> + Novos olhos + </string> + <string name="New Shirt"> + Nova camisa + </string> + <string name="New Pants"> + Novas calças + </string> + <string name="New Shoes"> + Novos sapatos + </string> + <string name="New Socks"> + Novas meias + </string> + <string name="New Jacket"> + Nova blusa + </string> + <string name="New Gloves"> + Novas luvas + </string> + <string name="New Undershirt"> + Nova camiseta + </string> + <string name="New Underpants"> + Novas roupa de baixo + </string> + <string name="New Skirt"> + Nova saia + </string> + <string name="New Alpha"> + Novo alpha + </string> + <string name="New Tattoo"> + Nova tatuagem + </string> + <string name="Invalid Wearable"> + Item inválido + </string> + <string name="New Script"> + Novo script + </string> + <string name="New Folder"> + Nova pasta + </string> + <string name="Contents"> + Conteúdo + </string> </strings> diff --git a/indra/newview/skins/default/xui/pt/teleport_strings.xml b/indra/newview/skins/default/xui/pt/teleport_strings.xml index 1a0461082b2d5f8c2ac1c54b1afd7f3e65245a63..92ffee02333bf5d734eb8dfc0ab3dcf39097d469 100644 --- a/indra/newview/skins/default/xui/pt/teleport_strings.xml +++ b/indra/newview/skins/default/xui/pt/teleport_strings.xml @@ -59,6 +59,9 @@ Se você continuar a receber esta mensagem, por favor consulte o [SUPPORT_SITE]. <message name="completing"> Completando teletransporte. </message> + <message name="completed_from"> + Teletransporte de [T_SLURL] concluÃdo + </message> <message name="resolving"> Identificando destino. </message> diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 3f379fcf75bb9aae6b078194e3e5231a9612467e..18ac10fe389ef2f91ae46f89605914d8d7056ee0 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -479,8 +479,8 @@ def package_finish(self): grid_vars_template = """ OutFile "%(installer_file)s" !define INSTFLAGS "%(flags)s" - !define INSTNAME "SecondLife" - !define SHORTCUT "Second Life" + !define INSTNAME "SecondLifeViewer2" + !define SHORTCUT "Second Life Viewer 2" !define URLNAME "secondlife" Caption "Second Life ${VERSION}" """ @@ -686,7 +686,7 @@ def construct(self): def package_finish(self): - channel_standin = 'Second Life' # hah, our default channel is not usable on its own + channel_standin = 'Second Life Viewer 2' # hah, our default channel is not usable on its own if not self.default_channel(): channel_standin = self.channel() diff --git a/indra/test/llpermissions_tut.cpp b/indra/test/llpermissions_tut.cpp index 4eadc64b5af5340196533c595bbd491112c8001f..d5795ef4a081c080c07af5cee9fbba3ceaef53e2 100644 --- a/indra/test/llpermissions_tut.cpp +++ b/indra/test/llpermissions_tut.cpp @@ -61,7 +61,7 @@ namespace tut uuid2 == LLUUID::null && uuid3 == LLUUID::null)); ensure("LLPermission Get Functions failed", (permissions.getMaskBase() == PERM_ALL && permissions.getMaskOwner() == PERM_ALL && permissions.getMaskGroup() == PERM_ALL && permissions.getMaskEveryone() == PERM_ALL && permissions.getMaskNextOwner() == PERM_ALL)); - ensure("Ownership functions failed", (permissions.isGroupOwned() == FALSE && permissions.isOwned() == FALSE)); + ensure("Ownership functions failed", ((! permissions.isGroupOwned()) && (! permissions.isOwned()))); } template<> template<> @@ -204,7 +204,7 @@ namespace tut LLPermissions perm1; LLUUID uuid; BOOL is_group_owned = FALSE; - ensure("1:getOwnership:failed ", (FALSE == perm1.getOwnership(uuid,is_group_owned))); + ensure("1:getOwnership:failed ", ! perm1.getOwnership(uuid,is_group_owned)); LLPermissions perm; LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); @@ -213,11 +213,11 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); perm.getOwnership(uuid,is_group_owned); - ensure("2:getOwnership:failed ", ((uuid == owner) && (FALSE == is_group_owned))); + ensure("2:getOwnership:failed ", ((uuid == owner) && (! is_group_owned))); perm.init(creator,LLUUID::null,lastOwner,group); perm.getOwnership(uuid,is_group_owned); - ensure("3:getOwnership:failed ", ((uuid == group) && (TRUE == is_group_owned))); + ensure("3:getOwnership:failed ", ((uuid == group) && is_group_owned)); } template<> template<> @@ -240,17 +240,17 @@ namespace tut LLUUID agent("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806"); LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); - bool is_atomic = TRUE; - ensure("setOwnerAndGroup():failed ", (TRUE == perm.setOwnerAndGroup(agent,owner,group,is_atomic))); + bool is_atomic = true; + ensure("setOwnerAndGroup():failed ", perm.setOwnerAndGroup(agent,owner,group,is_atomic)); LLUUID owner2("68edcf47-ccd7-45b8-9f90-1649d7f12807"); LLUUID group2("9c8eca51-53d5-42a7-bb58-cef070395db9"); // cant change - agent need to be current owner - ensure("setOwnerAndGroup():failed ", (FALSE == perm.setOwnerAndGroup(agent,owner2,group2,is_atomic))); + ensure("setOwnerAndGroup():failed ", ! perm.setOwnerAndGroup(agent,owner2,group2,is_atomic)); // should be able to change - agent and owner same as current owner - ensure("setOwnerAndGroup():failed ", (TRUE == perm.setOwnerAndGroup(owner,owner,group2,is_atomic))); + ensure("setOwnerAndGroup():failed ", perm.setOwnerAndGroup(owner,owner,group2,is_atomic)); } template<> template<> @@ -259,7 +259,7 @@ namespace tut LLPermissions perm; LLUUID agent; LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); - ensure("deedToGroup():failed ", (TRUE == perm.deedToGroup(agent,group))); + ensure("deedToGroup():failed ", perm.deedToGroup(agent,group)); } template<> template<> void permission_object_t::test<11>() @@ -268,12 +268,12 @@ namespace tut LLUUID agent; BOOL set = 1; U32 bits = PERM_TRANSFER | PERM_MODIFY; - ensure("setBaseBits():failed ", (TRUE == perm.setBaseBits(agent, set, bits))); - ensure("setOwnerBits():failed ", (TRUE == perm.setOwnerBits(agent, set, bits))); + ensure("setBaseBits():failed ", perm.setBaseBits(agent, set, bits)); + ensure("setOwnerBits():failed ", perm.setOwnerBits(agent, set, bits)); LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8"); - ensure("setBaseBits():failed ", (FALSE == perm.setBaseBits(agent1, set, bits))); - ensure("setOwnerBits():failed ", (FALSE == perm.setOwnerBits(agent1, set, bits))); + ensure("setBaseBits():failed ", ! perm.setBaseBits(agent1, set, bits)); + ensure("setOwnerBits():failed ", ! perm.setOwnerBits(agent1, set, bits)); } template<> template<> @@ -284,14 +284,14 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); BOOL set = 1; U32 bits = 10; - ensure("setGroupBits():failed ", (TRUE == perm.setGroupBits(agent,group, set, bits))); - ensure("setEveryoneBits():failed ", (TRUE == perm.setEveryoneBits(agent,group, set, bits))); - ensure("setNextOwnerBits():failed ", (TRUE == perm.setNextOwnerBits(agent,group, set, bits))); - - LLUUID agent1("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); - ensure("setGroupBits():failed ", (FALSE == perm.setGroupBits(agent1,group, set, bits))); - ensure("setEveryoneBits():failed ", (FALSE == perm.setEveryoneBits(agent1,group, set, bits))); - ensure("setNextOwnerBits():failed ", (FALSE == perm.setNextOwnerBits(agent1,group, set, bits))); + ensure("setGroupBits():failed ", perm.setGroupBits(agent,group, set, bits)); + ensure("setEveryoneBits():failed ", perm.setEveryoneBits(agent,group, set, bits)); + ensure("setNextOwnerBits():failed ", perm.setNextOwnerBits(agent,group, set, bits)); + + LLUUID agent1("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); + ensure("setGroupBits():failed ", ! perm.setGroupBits(agent1,group, set, bits)); + ensure("setEveryoneBits():failed ", ! perm.setEveryoneBits(agent1,group, set, bits)); + ensure("setNextOwnerBits():failed ", ! perm.setNextOwnerBits(agent1,group, set, bits)); } template<> template<> @@ -301,14 +301,14 @@ namespace tut LLUUID agent; LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); U32 bits = 10; - ensure("allowOperationBy():failed ", (TRUE == perm.allowOperationBy(bits,agent,group))); + ensure("allowOperationBy():failed ", perm.allowOperationBy(bits,agent,group)); LLUUID agent1("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806"); LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); perm.init(creator,owner,lastOwner,group); - ensure("allowOperationBy():failed ", (TRUE == perm.allowOperationBy(bits,agent1,group))); + ensure("allowOperationBy():failed ", perm.allowOperationBy(bits,agent1,group)); } template<> template<> @@ -321,15 +321,12 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); LLUUID agent; - ensure("1:allowModifyBy():failed ", (TRUE == perm.allowModifyBy(agent))); - ensure("2:allowModifyBy():failed ", (TRUE == perm.allowModifyBy(agent,group))); + ensure("1:allowModifyBy():failed ", perm.allowModifyBy(agent)); + ensure("2:allowModifyBy():failed ", perm.allowModifyBy(agent,group)); - U32 val1 = 0x7FFFFFFF; - S32 sVal = 1 << 14; - sVal = val1 & sVal; LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8"); - ensure("3:allowModifyBy():failed ", (sVal == perm.allowModifyBy(agent1))); - ensure("4:allowModifyBy():failed ", (sVal == perm.allowModifyBy(agent1,group))); + ensure("3:allowModifyBy():failed ", perm.allowModifyBy(agent1)); + ensure("4:allowModifyBy():failed ", perm.allowModifyBy(agent1,group)); } template<> template<> @@ -342,15 +339,12 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); LLUUID agent; - ensure("1:allowCopyBy():failed ", (TRUE == perm.allowModifyBy(agent))); - ensure("2:allowCopyBy():failed ", (TRUE == perm.allowModifyBy(agent,group))); + ensure("1:allowCopyBy():failed ", perm.allowModifyBy(agent)); + ensure("2:allowCopyBy():failed ", perm.allowModifyBy(agent,group)); - U32 val1 = 0x7FFFFFFF; - S32 sVal = 1 << 15; - sVal = val1 & sVal; LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8"); - ensure("3:allowCopyBy():failed ", (sVal == perm.allowCopyBy(agent1))); - ensure("4:allowCopyBy():failed ", (sVal == perm.allowCopyBy(agent1,group))); + ensure("3:allowCopyBy():failed ", perm.allowCopyBy(agent1)); + ensure("4:allowCopyBy():failed ", perm.allowCopyBy(agent1,group)); } template<> template<> @@ -363,15 +357,12 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); LLUUID agent; - ensure("1:allowMoveBy():failed ", (TRUE == perm.allowMoveBy(agent))); - ensure("2:allowMoveBy():failed ", (TRUE == perm.allowMoveBy(agent,group))); + ensure("1:allowMoveBy():failed ", perm.allowMoveBy(agent)); + ensure("2:allowMoveBy():failed ", perm.allowMoveBy(agent,group)); - U32 val1 = 0x7FFFFFFF; - S32 sVal = 1 << 19; - sVal = val1 & sVal; LLUUID agent1("9c8eca51-53d5-42a7-bb58-cef070395db8"); - ensure("3:allowMoveBy():failed ", (sVal == perm.allowMoveBy(agent1))); - ensure("4:allowMoveBy():failed ", (sVal == perm.allowMoveBy(agent1,group))); + ensure("3:allowMoveBy():failed ", perm.allowMoveBy(agent1)); + ensure("4:allowMoveBy():failed ", perm.allowMoveBy(agent1,group)); } template<> template<> @@ -383,20 +374,17 @@ namespace tut LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); LLUUID agent; - ensure("1:allowMoveBy():failed ", (TRUE == perm.allowTransferTo(agent))); + ensure("1:allowMoveBy():failed ", perm.allowTransferTo(agent)); perm.init(creator,owner,lastOwner,group); - U32 val1 = 0x7FFFFFFF; - S32 sVal = 1 << 13; - sVal = val1 & sVal; - ensure("2:allowMoveBy():failed ", (sVal == perm.allowTransferTo(agent))); + ensure("2:allowMoveBy():failed ", perm.allowTransferTo(agent)); } template<> template<> void permission_object_t::test<18>() { LLPermissions perm,perm1; - ensure("1:Operator==:failed ", perm == perm1); + ensure_equals("1:Operator==:failed ", perm, perm1); LLUUID creator("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); LLUUID owner("68edcf47-ccd7-45b8-9f90-1649d7f12806"); @@ -404,7 +392,7 @@ namespace tut LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); perm = perm1; - ensure("2:Operator==:failed ", perm == perm1); + ensure_equals("2:Operator==:failed ", perm, perm1); } template<> template<> @@ -416,7 +404,7 @@ namespace tut LLUUID lastOwner("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); LLUUID group("9c8eca51-53d5-42a7-bb58-cef070395db8"); perm.init(creator,owner,lastOwner,group); - ensure("2:Operator==:failed ", perm != perm1); + ensure_not_equals("2:Operator==:failed ", perm, perm1); } template<> template<> @@ -453,7 +441,7 @@ namespace tut } perm1.importFile(fp); fclose(fp); - ensure("exportFile()/importFile():failed to export and import the data ", perm1 == perm); + ensure_equals("exportFile()/importFile():failed to export and import the data ", perm1, perm); } template<> template<> @@ -479,7 +467,7 @@ namespace tut std::istringstream istream(ostream.str()); perm1.importLegacyStream(istream); - ensure("exportLegacyStream()/importLegacyStream():failed to export and import the data ", perm1 == perm); + ensure_equals("exportLegacyStream()/importLegacyStream():failed to export and import the data ", perm1, perm); } template<> template<> @@ -502,7 +490,7 @@ namespace tut stream1 << perm; perm1.init(creator,owner,lastOwner,group); stream2 << perm1; - ensure("1:operator << failed",(stream1.str() == stream2.str())); + ensure_equals("1:operator << failed", stream1.str(), stream2.str()); } template<> template<> @@ -533,19 +521,19 @@ namespace tut { LLAggregatePermissions AggrPermission; LLAggregatePermissions AggrPermission1; - ensure("getU8() function failed", (AggrPermission.getU8() == 0)); - ensure("isEmpty() function failed", (AggrPermission.isEmpty() == TRUE)); + ensure_equals("getU8() function failed", AggrPermission.getU8(), 0); + ensure("isEmpty() function failed", AggrPermission.isEmpty()); AggrPermission.getValue(PERM_TRANSFER); ensure_equals("getValue() function failed", AggrPermission.getValue(PERM_TRANSFER), 0x00); AggrPermission.aggregate(PERM_ITEM_UNRESTRICTED); - ensure("aggregate() function failed", (AggrPermission.isEmpty() == FALSE)); + ensure("aggregate() function failed", ! AggrPermission.isEmpty()); AggrPermission1.aggregate(AggrPermission); - ensure("aggregate() function failed", (AggrPermission1.isEmpty() == FALSE)); + ensure("aggregate() function failed", ! AggrPermission1.isEmpty()); std::ostringstream stream1; stream1 << AggrPermission; - ensure("operator<< failed", (stream1.str() == "{PI_COPY=All, PI_MODIFY=All, PI_TRANSFER=All}")); + ensure_equals("operator<< failed", stream1.str(), "{PI_COPY=All, PI_MODIFY=All, PI_TRANSFER=All}"); } } diff --git a/indra/test_apps/llplugintest/bookmarks.txt b/indra/test_apps/llplugintest/bookmarks.txt index b8b83df38667abe008b2afaa9b0160c09c24b739..2ff64f217f57aa331aee5b21c465c50b30e73d34 100644 --- a/indra/test_apps/llplugintest/bookmarks.txt +++ b/indra/test_apps/llplugintest/bookmarks.txt @@ -18,20 +18,20 @@ (Flash) Scribd,http://www.scribd.com/doc/14427744/Second-Life-Quickstart-Guide (Flash) MAME,http://yvern.com/fMAME/fMAME.html (QT) Local sample,file:///C|/Program Files/QuickTime/Sample.mov -(QT) Movie - Watchmen Trailer,http://movies.apple.com/movies/wb/watchmen/watchmen-tlr2_480p.mov -(QT) Movie - Transformers - Revenge of the Fallen,http://movies.apple.com/movies/paramount/transformers2/transformersrevengeofthefallen-tlr1_h.320.mov -(QT) Movie - Terminator Salvation,http://movies.apple.com/movies/wb/terminatorsalvation/terminatorsalvation-tlr3_h.320.mov -(QT) Movie - Angels and Demons,http://movies.apple.com/movies/sony_pictures/angelsanddemons/angelsanddemons-video_h.320.mov -(QT) Movie - Sin City Trailer,http://movies.apple.com/movies/miramax/sin_city/sin_city_480.mov -(QT) Movie - The Incredibles Trailer,http://movies.apple.com/movies/disney/the_incredibles/the_incredibles-tlr_a480.mov +(QT) Movie - Watchmen Trailer,http://trailers.apple.com/movies/wb/watchmen/watchmen-tlr2_480p.mov +(QT) Movie - Transformers - Revenge of the Fallen,http://trailers.apple.com/movies/paramount/transformers2/transformersrevengeofthefallen-tlr1_h.320.mov +(QT) Movie - Terminator Salvation,http://trailers.apple.com/movies/wb/terminatorsalvation/terminatorsalvation-tlr3_h.320.mov +(QT) Movie - Angels and Demons,http://trailers.apple.com/movies/sony_pictures/angelsanddemons/angelsanddemons-video_h.320.mov +(QT) Movie - Sin City Trailer,http://trailers.apple.com/movies/miramax/sin_city/sin_city_480.mov +(QT) Movie - The Incredibles Trailer,http://trailers.apple.com/movies/disney/the_incredibles/the_incredibles-tlr_a480.mov (QT) Movie - Streaming Apple Event,http://stream.qtv.apple.com/events/mar/0903lajkszg/m_090374535329zdwg_650_ref.mov (QT) Movie - MPEG-4 from Amazon S3,http://s3.amazonaws.com/callum-linden/flashdemo/interactive_flash_demo.mp4 -(QT) Movie - Star Trek,http://movies.apple.com/movies/paramount/star_trek/startrek-tlr3_h.320.mov -(QT) Movie - Ice Age 3,http://movies.apple.com/movies/fox/ice_age_iii/iceage3-tlrd_h.320.mov -(QT) Movie - AstroBoy,http://movies.apple.com/movies/summit/astroboy/astroboy-tsr_h.320.mov -(QT) Movie - Ante Up,http://movies.apple.com/movies/independent/anteup/anteup_h.320.mov -(QT) Movie - Every Little Step,http://movies.apple.com/movies/sony/everylittlestep/everylittlestep-clip_h.320.mov -(QT) Movie - The Informers,http://movies.apple.com/movies/independent/theinformers/theinformers_h.320.mov +(QT) Movie - Star Trek,http://trailers.apple.com/movies/paramount/star_trek/startrek-tlr3_h.320.mov +(QT) Movie - Ice Age 3,http://trailers.apple.com/movies/fox/ice_age_iii/iceage3-tlrd_h.320.mov +(QT) Movie - AstroBoy,http://trailers.apple.com/movies/summit/astroboy/astroboy-tsr_h.320.mov +(QT) Movie - Ante Up,http://trailers.apple.com/movies/independent/anteup/anteup_h.320.mov +(QT) Movie - Every Little Step,http://trailers.apple.com/movies/sony/everylittlestep/everylittlestep-clip_h.320.mov +(QT) Movie - The Informers,http://trailers.apple.com/movies/independent/theinformers/theinformers_h.320.mov (QT) Animated GIF,http://upload.wikimedia.org/wikipedia/commons/4/44/Optical.greysquares.arp-animated.gif (QT) Apple Text Descriptors,http://ubrowser.com/tmp/apple_text.txt (EX) Example Plugin,example://blah diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index e5a846f15a110e882d31aa0465225fc4939de3c7..5677308fb0bf2b135fe50f18e235f1e2f12414cf 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -1593,8 +1593,8 @@ void LLMediaPluginTest::addMediaPanel( std::string url ) } std::string user_data_path = std::string( cwd ) + "/"; #endif - - media_source->init( launcher_name, plugin_name, false, user_data_path ); + media_source->setUserDataPath(user_data_path); + media_source->init( launcher_name, plugin_name, false ); media_source->setDisableTimeout(mDisableTimeout); // make a new panel and save parameters @@ -1831,7 +1831,8 @@ void LLMediaPluginTest::replaceMediaPanel( mediaPanel* panel, std::string url ) std::string user_data_path = std::string( cwd ) + "/"; #endif - media_source->init( launcher_name, plugin_name, false, user_data_path ); + media_source->setUserDataPath(user_data_path); + media_source->init( launcher_name, plugin_name, false ); media_source->setDisableTimeout(mDisableTimeout); // make a new panel and save parameters diff --git a/install.xml b/install.xml index 3cd40d8893f857e915d61cb9b6516b890ca4f92d..0f4ab373f56f02c7a19db06a5b62e1df1b3cb59f 100644 --- a/install.xml +++ b/install.xml @@ -298,25 +298,6 @@ </map> </map> </map> - <key>pulseaudio</key> - <map> - <key>copyright</key> - <string>Copyright 2004-2006 Lennart Poettering, Copyright 2006 Pierre Ossman (ossman@cendio.se) for Cendio AB</string> - <key>description</key> - <string>pulseaudio: headers only</string> - <key>license</key> - <string>lgpl</string> - <key>packages</key> - <map> - <key>linux</key> - <map> - <key>md5sum</key> - <string>30cb00069fe2a545fbf7be1070386236</string> - <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/linux-pulse-headers-0.9.14.tar.bz2</uri> - </map> - </map> - </map> <key>elfio</key> <map> <key>license</key> @@ -967,23 +948,23 @@ anguage Infrstructure (CLI) international standard</string> <key>darwin</key> <map> <key>md5sum</key> - <string>95f44f0023dddc80be4398fc4f213861</string> + <string>ada82d41467cdb7f8e25a442f58b6963</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-4.6-darwin-20100208.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-4.6-darwin-20100318.tar.bz2</uri> </map> <key>linux</key> <map> <key>md5sum</key> - <string>4b1913c509ea8bec78523960700d7005</string> + <string>7e7cd450525da133a459c659ea19207d</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-linux-20100304.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-linux-20100322.tar.bz2</uri> </map> <key>windows</key> <map> <key>md5sum</key> - <string>1e9798dc424a6f6c2bea50649bbcc7ae</string> + <string>93b49cfea365fe082eda3e466a9beec3</string> <key>url</key> - <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100210.tar.bz2</uri> + <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100318.tar.bz2</uri> </map> </map> </map> @@ -1285,6 +1266,25 @@ anguage Infrstructure (CLI) international standard</string> </map> </map> </map> + <key>pulseaudio</key> + <map> + <key>copyright</key> + <string>Copyright 2004-2006 Lennart Poettering, Copyright 2006 Pierre Ossman (ossman@cendio.se) for Cendio AB</string> + <key>description</key> + <string>pulseaudio: headers only</string> + <key>license</key> + <string>lgpl</string> + <key>packages</key> + <map> + <key>linux</key> + <map> + <key>md5sum</key> + <string>30cb00069fe2a545fbf7be1070386236</string> + <key>url</key> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/linux-pulse-headers-0.9.14.tar.bz2</uri> + </map> + </map> + </map> <key>quicktime</key> <map> <key>copyright</key> @@ -1386,23 +1386,23 @@ anguage Infrstructure (CLI) international standard</string> <key>darwin</key> <map> <key>md5sum</key> - <string>bce6f58d3d63bda049bb7059583ed8e8</string> + <string>38d836fa53d073b9f197eecd0f5615f0</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8016-darwin-20100225.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8181-darwin-20100319.tar.bz2</uri> </map> <key>linux</key> <map> <key>md5sum</key> - <string>12aac7288af3565ac2730796cb6d8de6</string> + <string>dd8dd1c223ecb8b232bf626cca6c63ac</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8016-linux-20100225.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8181-linux-20100319.tar.bz2</uri> </map> <key>windows</key> <map> <key>md5sum</key> - <string>8af04ae8c536e8db80f67e6e5305fb61</string> + <string>8b4ce60f25823cd38896cb3b7eb0dd43</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8016-windows-20100225.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-3.1.0001.8181-windows-20100319.tar.bz2</uri> </map> </map> </map>