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.h b/indra/llcommon/llsys.h index f1dda1b2e22ebca0c45440fc55ce40f5eb2a41ab..c2c45bec9a2a01ea8ce735a70d4d0995176a0a56 100644 --- a/indra/llcommon/llsys.h +++ b/indra/llcommon/llsys.h @@ -122,6 +122,7 @@ class LL_COMMON_API LLMemoryInfo U32 getPhysicalMemoryClamped() const; ///< Memory size in clamped bytes }; + LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info); LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info); LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& 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/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 d48f4ad0f5e3c99b1485442caeecce0156edf8f7..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, const std::string &language_code) +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,language_code); + + // 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 ce49241e84f7dc91a9393a3cb68440560cb7e8cd..79356beb6843081048c2221d00dd035007eba878 100644 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -51,9 +51,7 @@ class LLPluginClassMedia : public LLPluginProcessParentOwner // 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, - const std::string &language_code); + bool debug); // undoes everything init() didm called by the media manager when destroying a source virtual void reset(); @@ -177,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 9b43ec0e3eedee89e4a8caacbdc87fc2d48fd380..ccaf95b36ded8c072865cb1a954041650126dce1 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -155,8 +155,6 @@ void LLPluginProcessChild::idle(void) { setState(STATE_PLUGIN_INITIALIZING); LLPluginMessage message("base", "init"); - message.setValue("user_data_path", mUserDataPath); - message.setValue("language_code", mLanguageCode); sendMessageToPlugin(message); } break; @@ -329,8 +327,6 @@ void LLPluginProcessChild::receiveMessageRaw(const std::string &message) if(message_name == "load_plugin") { mPluginFile = parsed.getValue("file"); - mUserDataPath = parsed.getValue("user_data_path"); - mLanguageCode = parsed.getValue("language_code"); } else if(message_name == "shm_add") { diff --git a/indra/llplugin/llpluginprocesschild.h b/indra/llplugin/llpluginprocesschild.h index af76ec1fa53a0c848d2f225bb605ac59705cf3e4..0e5e85406a671fa00f0b33ac1357e5ca17695e8a 100644 --- a/indra/llplugin/llpluginprocesschild.h +++ b/indra/llplugin/llpluginprocesschild.h @@ -98,9 +98,6 @@ class LLPluginProcessChild: public LLPluginMessagePipeOwner, public LLPluginInst std::string mPluginFile; - std::string mUserDataPath; - std::string mLanguageCode; - LLPluginInstance *mInstance; typedef std::map<std::string, LLPluginSharedMemory*> sharedMemoryRegionsType; diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp index 0ce2c759bace238aa0d9dbab26d64447e0faae67..895c858979026645dfc5632e6707ae2cc7fd773e 100644 --- a/indra/llplugin/llpluginprocessparent.cpp +++ b/indra/llplugin/llpluginprocessparent.cpp @@ -98,15 +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, const std::string &language_code) +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; - mLanguageCode = language_code; - + mDebug = debug; setState(STATE_INITIALIZED); } @@ -363,8 +360,6 @@ void LLPluginProcessParent::idle(void) { LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_INTERNAL, "load_plugin"); message.setValue("file", mPluginFile); - message.setValue("user_data_path", mUserDataPath); - message.setValue("language_code", mLanguageCode); sendMessage(message); } diff --git a/indra/llplugin/llpluginprocessparent.h b/indra/llplugin/llpluginprocessparent.h index 23702814c8b9168e1a6804185b3d386d250c76ae..cc6c513615747283dfd71c9e504841168697ffb3 100644 --- a/indra/llplugin/llpluginprocessparent.h +++ b/indra/llplugin/llpluginprocessparent.h @@ -61,9 +61,7 @@ class LLPluginProcessParent : public LLPluginMessagePipeOwner void init(const std::string &launcher_filename, const std::string &plugin_filename, - bool debug, - const std::string &user_data_path, - const std::string &language_code); + bool debug); void idle(void); @@ -148,9 +146,6 @@ class LLPluginProcessParent : public LLPluginMessagePipeOwner std::string mPluginFile; - std::string mUserDataPath; - std::string mLanguageCode; - 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/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 0247935a7cd82f53077deb903e6aa616d6fcc61e..0959722aa695971f2654c3397e6b8681487ac463 100644 --- a/indra/llui/llaccordionctrltab.cpp +++ b/indra/llui/llaccordionctrltab.cpp @@ -828,9 +828,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 59b551a16d33947b52d3d51ef2806be19edd7d44..6a1e3a9425b200e55b0232d2d611839b34f29edd 100644 --- a/indra/llui/llbutton.h +++ b/indra/llui/llbutton.h @@ -217,7 +217,7 @@ class LLButton 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 c1d512e14827854b9c3f1702faedce2fe996ea5e..3a8efadaa48c002dde797827121f538f877003b5 100644 --- a/indra/llui/llcombobox.cpp +++ b/indra/llui/llcombobox.cpp @@ -706,14 +706,17 @@ void LLComboBox::onListMouseUp() void LLComboBox::onItemSelected(const LLSD& data) { - setValue(data); - - if (mAllowTextEntry && mLastSelectedIndex != -1) + mLastSelectedIndex = getCurrentIndex(); + if (mLastSelectedIndex != -1) { - gFocusMgr.setKeyboardFocus(mTextEntry); - mTextEntry->selectAll(); - } + setLabel(getSelectedItemLabel()); + if (mAllowTextEntry) + { + gFocusMgr.setKeyboardFocus(mTextEntry); + mTextEntry->selectAll(); + } + } // hiding the list reasserts the old value stored in the text editor/dropdown button hideList(); @@ -1080,24 +1083,6 @@ LLIconsComboBox::LLIconsComboBox(const LLIconsComboBox::Params& p) mLabelColumnIndex(p.label_column) {} -void LLIconsComboBox::setValue(const LLSD& value) -{ - BOOL found = mList->selectByValue(value); - if (found) - { - LLScrollListItem* item = mList->getFirstSelected(); - if (item) - { - setLabel(getSelectedItemLabel()); - } - mLastSelectedIndex = mList->getFirstSelectedIndex(); - } - else - { - mLastSelectedIndex = -1; - } -} - const std::string LLIconsComboBox::getSelectedItemLabel(S32 column) const { mButton->setImageOverlay(LLComboBox::getSelectedItemLabel(mIconColumnIndex), mButton->getImageOverlayHAlign()); diff --git a/indra/llui/llcombobox.h b/indra/llui/llcombobox.h index 965061ead2ded4e41ac8c5200d90b340a6e45b5a..f0bd432f3a482e24a3813d75295b3a460081902f 100644 --- a/indra/llui/llcombobox.h +++ b/indra/llui/llcombobox.h @@ -221,7 +221,6 @@ class LLComboBox LLPointer<LLUIImage> mArrowImage; LLUIString mLabel; BOOL mHasAutocompletedText; - S32 mLastSelectedIndex; private: BOOL mAllowTextEntry; @@ -232,6 +231,7 @@ class LLComboBox commit_callback_t mTextEntryCallback; commit_callback_t mSelectionCallback; boost::signals2::connection mTopLostSignalConnection; + S32 mLastSelectedIndex; }; // A combo box with icons for the list of items. @@ -247,7 +247,6 @@ class LLIconsComboBox Params(); }; - /*virtual*/ void setValue(const LLSD& value); /*virtual*/ const std::string getSelectedItemLabel(S32 column = 0) const; private: diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 966bd2e85d95dc4b409bb0c75aee75796eff4901..104ae19eda7480c64e515d90d1619564da4175ba 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -1355,7 +1355,6 @@ void LLFloater::bringToFront( S32 x, S32 y ) // virtual void LLFloater::setVisibleAndFrontmost(BOOL take_focus) { - LLUI::clearPopups(); setVisible(TRUE); setFrontmost(take_focus); } diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 0d56c5ed3131b2cfa6b9449e45fb834649fc42fc..fb4a9d032d6b1c5009ce6b35b1879cda0a04085a 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -3455,7 +3455,7 @@ LLView* const LLMenuHolderGL::getVisibleMenu() const for ( child_list_const_iter_t child_it = getChildList()->begin(); child_it != getChildList()->end(); ++child_it) { LLView* viewp = *child_it; - if (viewp->getVisible() && dynamic_cast<LLMenuBarGL*>(viewp) == NULL) + if (viewp->getVisible() && dynamic_cast<LLMenuGL*>(viewp) != NULL) { return viewp; } @@ -3478,8 +3478,7 @@ BOOL LLMenuHolderGL::hideMenus() for ( child_list_const_iter_t child_it = getChildList()->begin(); child_it != getChildList()->end(); ++child_it) { LLView* viewp = *child_it; - // clicks off of menu do not hide menu bar - if (dynamic_cast<LLMenuBarGL*>(viewp) == NULL && viewp->getVisible()) + if (dynamic_cast<LLMenuGL*>(viewp) != NULL && viewp->getVisible()) { viewp->setVisible(FALSE); } 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/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 18ec5b51dd00b4ddb1ea109de7fb61f421701da3..77caaaa425e6f079c544c29b9ea8e165a66ef280 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -630,9 +630,7 @@ void LLScrollListCtrl::calcColumnWidths() LLScrollListCell* cellp = (*iter)->getColumn(column->mIndex); if (!cellp) continue; - // get text value width only for text cells - column->mMaxContentWidth = cellp->isText() ? - llmax(LLFontGL::getFontSansSerifSmall()->getWidth(cellp->getValue().asString()) + mColumnPadding + COLUMN_TEXT_PADDING, column->mMaxContentWidth) : column->mMaxContentWidth; + column->mMaxContentWidth = llmax(LLFontGL::getFontSansSerifSmall()->getWidth(cellp->getValue().asString()) + mColumnPadding + COLUMN_TEXT_PADDING, column->mMaxContentWidth); } max_item_width += column->mMaxContentWidth; 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 d7bbb8a56e1f73c9bc28e3b6b148ee1d6454e3f9..56d7a63832c3fb495d22eb15d33e7652f513392a 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -246,7 +246,7 @@ LLTextBase::~LLTextBase() { // Menu, like any other LLUICtrl, is deleted by its parent - gMenuHolder - clearSegments(); + mSegments.clear(); } void LLTextBase::initFromParams(const LLTextBase::Params& p) @@ -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) @@ -1824,11 +1829,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); - 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 + 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 + || newline) // or this line ends with a newline, set doc pos to newline char { // Figure out which character we're nearest to. S32 offset; @@ -1852,6 +1864,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 5121ef5351518c5560ea090fea3a98034a7f3fb8..b049895526393e6a04818a03b7f00bc41981381c 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -207,7 +207,7 @@ void gl_rect_2d(S32 left, S32 top, S32 right, S32 bottom, BOOL filled ) // 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 35428e422723f8c61bc9c7e43bd63d9e9d1d4b5c..e8e345967309ac3f6ecceba36391a0899f70c846 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -310,7 +310,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"); } @@ -323,6 +322,38 @@ void LLUrlEntryAgent::onAgentNameReceived(const LLUUID& id, callObservers(id.asString(), first + " " + last); } +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) @@ -346,6 +377,31 @@ std::string LLUrlEntryAgent::getLabel(const std::string &url, const LLUrlLabelCa } else if (gCacheName->getFullName(agent_id, full_name)) { + // customize label string based on agent SLapp suffix + if (LLStringUtil::endsWith(url, "/mute")) + { + return LLTrans::getString("SLappAgentMute") + " " + full_name; + } + 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 diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h index c947ef7259cdcd1215230f79ad1206f930408426..84d09687798ef8bed89e66092844d710d1662ea9 100644 --- a/indra/llui/llurlentry.h +++ b/indra/llui/llurlentry.h @@ -169,6 +169,7 @@ class LLUrlEntryAgent : public LLUrlEntryBase public: LLUrlEntryAgent(); /*virtual*/ std::string getLabel(const std::string &url, const LLUrlLabelCallback &cb); + /*virtual*/ std::string getTooltip(const std::string &string) const; private: void onAgentNameReceived(const LLUUID& id, const std::string& first, const std::string& last, BOOL is_group); 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/llwindow.cpp b/indra/llwindow/llwindow.cpp index b77deb003f4f5fd21ecfc52e222787c99cc2b2bf..1c6c9e6e9d210ba202c7ab1794cbf207aedd38ce 100644 --- a/indra/llwindow/llwindow.cpp +++ b/indra/llwindow/llwindow.cpp @@ -407,30 +407,3 @@ BOOL LLWindowManager::isWindowValid(LLWindow *window) { return sWindowList.find(window) != sWindowList.end(); } - -S32 LLDisplayInfo::getDisplayWidth() const -{ -#if LL_WINDOWS - return LLWindowWin32::getDisplayWidth(); -#elif LL_DARWIN - return LLWindowMacOSX::getDisplayWidth(); -#elif LL_SDL - return LLWindowSDL::getDisplayWidth(); -#else - return 1024; //*FIXME -#endif -} - -S32 LLDisplayInfo::getDisplayHeight() const -{ -#if LL_WINDOWS - return LLWindowWin32::getDisplayHeight(); -#elif LL_DARWIN - return LLWindowMacOSX::getDisplayHeight(); -#elif LL_SDL - return LLWindowSDL::getDisplayHeight(); -#else - return 768; //*FIXME -#endif -} - diff --git a/indra/llwindow/llwindow.h b/indra/llwindow/llwindow.h index b769f5071bc3c71634625a67c8e52e4c08c85023..55b221e7161fe6a6682ded12a40b63ab9fe341d6 100644 --- a/indra/llwindow/llwindow.h +++ b/indra/llwindow/llwindow.h @@ -281,19 +281,4 @@ extern const std::string gURLProtocolWhitelistHandler[]; void simpleEscapeString ( std::string& stringIn ); -//============================================================================= -// -// CLASS LLDisplayInfo -class 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 -}; - #endif // _LL_window_h_ diff --git a/indra/llwindow/llwindowmacosx-objc.h b/indra/llwindow/llwindowmacosx-objc.h index ed8c874dcbf79c6ffe03cf45beb3e2a1939e034f..ed5d7b1e74545230c1208d52186ffc30fb9bc201 100644 --- a/indra/llwindow/llwindowmacosx-objc.h +++ b/indra/llwindow/llwindowmacosx-objc.h @@ -40,5 +40,4 @@ void setupCocoa(); CursorRef createImageCursor(const char *fullpath, int hotspotX, int hotspotY); OSErr releaseImageCursor(CursorRef ref); OSErr setImageCursor(CursorRef ref); -void getScreenSize(int* width, int* height); -void getVisibleScreen(int *x, int *y, int* width, int* height); + diff --git a/indra/llwindow/llwindowmacosx-objc.mm b/indra/llwindow/llwindowmacosx-objc.mm index 5cab2619fdb2206bef0c091cbce7ad652c6b9eab..59b25e17268ca57fc4c4d90b0bf46ac7bb601a49 100644 --- a/indra/llwindow/llwindowmacosx-objc.mm +++ b/indra/llwindow/llwindowmacosx-objc.mm @@ -116,22 +116,3 @@ OSErr setImageCursor(CursorRef ref) return noErr; } -void getScreenSize(int* width, int* height) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - NSRect screen_rect = [[NSScreen mainScreen] frame]; - if (width) *width = (int)(screen_rect.size.width); - if (height) *height = (int)(screen_rect.size.height); - [pool release]; -} - -void getVisibleScreen(int *x, int *y, int* width, int* height) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - NSRect visible_rect = [[NSScreen mainScreen] visibleFrame]; - if (width) *width = (int)(visible_rect.size.width); - if (height) *height = (int)(visible_rect.size.height); - if (x) *x = (int)(visible_rect.origin.x); - if (y) *y = (int)(visible_rect.origin.y); - [pool release]; -} diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 924acaf14829cfec84b86973bab60a43c3119d6e..022b97f481fa1979f3c2349284f3ec4071c1a68c 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -1122,33 +1122,7 @@ BOOL LLWindowMacOSX::getMaximized() BOOL LLWindowMacOSX::maximize() { - if (mWindow) - { - // *HACK: Because Mac OSX doesn't have a concept of a "maximized" window, we just - // stretch it out to the visible screen size. - Rect win_rect; - - int visible_x; - int visible_y; - int visible_width; - int visible_height; - int screen_width; - int screen_height; - - getScreenSize(&screen_width, &screen_height); - getVisibleScreen(&visible_x, &visible_y, &visible_width, &visible_height); - - int mac_os_menu_bar_height = screen_height - (visible_height + visible_y); - ::SetRect(&win_rect, - visible_x, - mac_os_menu_bar_height, - visible_width + visible_x, - visible_height + mac_os_menu_bar_height); - - ::SetWindowBounds(mWindow, kWindowStructureRgn, &win_rect); - - return TRUE; - } + // TODO return FALSE; } @@ -2807,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; @@ -2909,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; @@ -2950,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); @@ -3490,26 +3473,6 @@ MASK LLWindowMacOSX::modifiersToMask(SInt16 modifiers) return mask; } -// static -S32 LLWindowMacOSX::getDisplayWidth() -{ - S32 width = 1024; - // Need to invoke cocoa before use getScreenSize() - setupCocoa(); - getScreenSize(&width, NULL); - return width; -} - -// static -S32 LLWindowMacOSX::getDisplayHeight() -{ - S32 height = 768; - // Need to invoke cocoa before use getScreenSize() - setupCocoa(); - getScreenSize(NULL, &height); - return height; -} - #if LL_OS_DRAGDROP_ENABLED OSErr LLWindowMacOSX::dragTrackingHandler(DragTrackingMessage message, WindowRef theWindow, diff --git a/indra/llwindow/llwindowmacosx.h b/indra/llwindow/llwindowmacosx.h index 86036a261c54c4d8b53db8e5ba95a80567a21eb7..7c6b32402960b161d7ca22bc8857b052b0f931c5 100644 --- a/indra/llwindow/llwindowmacosx.h +++ b/indra/llwindow/llwindowmacosx.h @@ -123,8 +123,6 @@ class LLWindowMacOSX : public LLWindow // Provide native key event data /*virtual*/ LLSD getNativeKeyData(); - static S32 getDisplayWidth(); - static S32 getDisplayHeight(); protected: LLWindowMacOSX(LLWindowCallbacks* callbacks, diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index cb4e04511ca119a95ea216a42bf3a5cb416d5401..1f705f9e60b156cfde44c4d1f750bad39c22f18b 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -187,47 +187,6 @@ Display* LLWindowSDL::get_SDL_Display(void) } #endif // LL_X11 -// static -S32 LLWindowSDL::getDisplayWidth() -{ -#if LL_GTK - if (LLWindowSDL::ll_try_gtk_init()) - { - return gdk_screen_width(); - } -#endif // LL_GTK - -#if LL_X11 - Display *display = XOpenDisplay(NULL); - int screen_num = DefaultScreen(display); - S32 width = DisplayWidth(display, screen_num); - XCloseDisplay(display); - return width; -#endif //LL_X11 - - return 1024; -} - -// static -S32 LLWindowSDL::getDisplayHeight() -{ -#if LL_GTK - if (LLWindowSDL::ll_try_gtk_init()) - { - return gdk_screen_height(); - } -#endif // LL_GTK - -#if LL_X11 - Display *display = XOpenDisplay(NULL); - int screen_num = DefaultScreen(display); - S32 height = DisplayHeight(display, screen_num); - XCloseDisplay(display); - return height; -#endif //LL_X11 - - return 768; -} LLWindowSDL::LLWindowSDL(LLWindowCallbacks* callbacks, const std::string& title, S32 x, S32 y, S32 width, @@ -950,68 +909,7 @@ BOOL LLWindowSDL::getMaximized() if (mWindow) { -#if LL_X11 - if (mSDL_Display) - { - maybe_lock_display(); - - // Return data in the specified format, XA_ATOM. - U8* prop; - // Actual format of the property. - int format; - // Actual number of items stored in the prop return data. - unsigned long nitems; - // Number of bytes remaining to be read in the property if a partial read was performed. - unsigned long bytes_after; - // Atom identifier that defines the actual type of the property. - Atom type; - - // Atom used to obtain list of hints describing the window state. - Atom wm_state = XInternAtom(mSDL_Display, "_NET_WM_STATE", False); - - // Atoms indicates that the window is vertically/horizontally maximized. - Atom max_vert = XInternAtom(mSDL_Display, "_NET_WM_STATE_MAXIMIZED_VERT", False); - Atom max_horz = XInternAtom(mSDL_Display, "_NET_WM_STATE_MAXIMIZED_HORZ", False); - - // How many atoms in which we interested are present in list of hints. - U32 pass = 0; - - do - { - nitems = 0; - bytes_after = 0; - type = None; - if ( (XGetWindowProperty (mSDL_Display, - mSDL_XWindowID, - wm_state, - 0, UINT_MAX, - False, XA_ATOM, - &type, &format, - &nitems, &bytes_after, - &prop) == Success) - && type != None ) - { - Atom *atoms = (Atom *)prop; - for (unsigned long i=0; i<nitems; ++i) - { - if (atoms[i] == max_horz) - ++pass; - else if (atoms[i] == max_vert) - ++pass; - } - XFree (atoms); - } - else - { - break; - } - } while (bytes_after > 0); - - result = (pass == 2); - - maybe_unlock_display(); - } -#endif // LL_X11 + // TODO } return(result); @@ -1019,103 +917,7 @@ BOOL LLWindowSDL::getMaximized() BOOL LLWindowSDL::maximize() { -#if LL_X11 - if (mSDL_Display && !mFullscreen) - { - maybe_lock_display(); - - BOOL is_maximize_allowed = FALSE; - - // Check if maximize is allowed - { - // Return data in the specified format, XA_ATOM. - U8* prop; - // Actual format of the property. - int format; - // Actual number of items stored in the prop return data. - unsigned long nitems; - // Number of bytes remaining to be read in the property if a partial read was performed. - unsigned long bytes_after; - // Atom identifier that defines the actual type of the property. - Atom type; - - // Atom used to obtain a list of atoms indicating user operations that the Window Manager supports for this window. - Atom allowed_act = XInternAtom(mSDL_Display, "_NET_WM_ALLOWED_ACTIONS", False); - - // Atoms that indicates that the window may be vertically/horizontally maximized. - Atom max_vert_act = XInternAtom(mSDL_Display, "_NET_WM_ACTION_MAXIMIZE_HORZ", False); - Atom max_horz_act = XInternAtom(mSDL_Display, "_NET_WM_ACTION_MAXIMIZE_VERT", False); - - // How many atoms in which we interested are present in list of hints. - U32 pass = 0; - - do - { - nitems = 0; - bytes_after = 0; - type = None; - if ( (XGetWindowProperty (mSDL_Display, - mSDL_XWindowID, - allowed_act, - 0, UINT_MAX, - False, XA_ATOM, - &type, &format, - &nitems, &bytes_after, - &prop) == Success) - && type != None ) - { - Atom *atoms = (Atom *)prop; - for (unsigned long i=0; i<nitems; ++i) - { - if (atoms[i] == max_vert_act) - ++pass; - else if (atoms[i] == max_horz_act) - ++pass; - } - XFree (atoms); - } - else - { - break; - } - } while (bytes_after > 0); - - is_maximize_allowed = (pass == 2); - } - - // Send maximize event to X11 system - if (is_maximize_allowed) - { - XEvent xev; - - // Atom describing the window state. - Atom wm_state = XInternAtom(mSDL_Display, "_NET_WM_STATE", False); - - // Atoms indicates that the window is vertically/horizontally maximized. - Atom max_vert = XInternAtom(mSDL_Display, "_NET_WM_STATE_MAXIMIZED_VERT", False); - Atom max_horz = XInternAtom(mSDL_Display, "_NET_WM_STATE_MAXIMIZED_HORZ", False); - - memset(&xev, 0, sizeof(xev)); - xev.type = ClientMessage; - xev.xclient.window = mSDL_XWindowID; - xev.xclient.message_type = wm_state; - xev.xclient.format = 32; - xev.xclient.data.l[0] = 1; // add/set property - xev.xclient.data.l[1] = max_vert; - xev.xclient.data.l[2] = max_horz; - xev.xclient.data.l[3] = 0; - xev.xclient.data.l[4] = 0; - - XSendEvent(mSDL_Display, - DefaultRootWindow(mSDL_Display), - False, - SubstructureNotifyMask, &xev); - } - - maybe_unlock_display(); - return is_maximize_allowed; - } -#endif // LL_X11 + // TODO return FALSE; } diff --git a/indra/llwindow/llwindowsdl.h b/indra/llwindow/llwindowsdl.h index 2311a361fab380fc8b631a46be96fdffaae18c5c..e6bdd46a77f204fd232da297663fde2985ee1b71 100644 --- a/indra/llwindow/llwindowsdl.h +++ b/indra/llwindow/llwindowsdl.h @@ -148,9 +148,6 @@ class LLWindowSDL : public LLWindow static Display* get_SDL_Display(void); #endif // LL_X11 - static S32 getDisplayWidth(); - static S32 getDisplayHeight(); - protected: LLWindowSDL(LLWindowCallbacks* callbacks, const std::string& title, int x, int y, int width, int height, U32 flags, diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 4be5d06c2b59bc67654a6516a409676d40d284d3..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")); @@ -3714,16 +3720,5 @@ std::vector<std::string> LLWindowWin32::getDynamicFallbackFontList() return std::vector<std::string>(); } -// static -S32 LLWindowWin32::getDisplayWidth() -{ - return ::GetSystemMetrics(SM_CXVIRTUALSCREEN); -} - -// static -S32 LLWindowWin32::getDisplayHeight() -{ - return ::GetSystemMetrics(SM_CYVIRTUALSCREEN); -} #endif // LL_WINDOWS diff --git a/indra/llwindow/llwindowwin32.h b/indra/llwindow/llwindowwin32.h index c221ec0192be8750e79b4cb5dce225a1439c62f6..9d5773577202a06547903ac686cb112ebf1b2ed3 100644 --- a/indra/llwindow/llwindowwin32.h +++ b/indra/llwindow/llwindowwin32.h @@ -120,9 +120,6 @@ class LLWindowWin32 : public LLWindow static std::vector<std::string> getDynamicFallbackFontList(); - static S32 getDisplayWidth(); - static S32 getDisplayHeight(); - protected: LLWindowWin32(LLWindowCallbacks* callbacks, const std::string& title, const std::string& name, int x, int y, int width, int height, U32 flags, 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 4c2dd64bb6f2beba8b7e70fb30bcb78238bbb8b6..033c4ba2f33559aa076b94c408be619c925152b4 100644 --- a/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp +++ b/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp @@ -986,33 +986,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") { @@ -1077,7 +1050,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 afde904be652804a3446f7ee60afc6f0631efb61..0462fce236273bf22fa727c5575a904d15b1189c 100644 --- a/indra/media_plugins/webkit/media_plugin_webkit.cpp +++ b/indra/media_plugins/webkit/media_plugin_webkit.cpp @@ -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; + }; - // tell LLQtWebKit about the size of the browser window - LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight ); + return false; + }; - // observer events that LLQtWebKit emits - LLQtWebKit::getInstance()->addObserver( mBrowserWindowId, this ); + //////////////////////////////////////////////////////////////////////////////// + // + bool initBrowserWindow() + { + // already initialized + if ( mInitState > INIT_STATE_INITIALIZED ) + return true; - // append details to agent string - LLQtWebKit::getInstance()->setBrowserAgentId( "LLPluginMedia Web Browser" ); + // 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); + } + + // 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 ); + + // 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 8edf766132ff07fc4adba854856756dd4b695adf..9f474a39bc264341ef91f31fe6aec22718f7b720 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> @@ -10347,7 +10369,7 @@ <key>Type</key> <string>Boolean</string> <key>Value</key> - <integer>0</integer> + <integer>1</integer> </map> <key>VivoxDebugLevel</key> <map> @@ -10655,7 +10677,7 @@ <key>Type</key> <string>S32</string> <key>Value</key> - <integer>700</integer> + <integer>738</integer> </map> <key>WindowMaximized</key> <map> @@ -10677,7 +10699,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/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 11874559713bbe19b44dfeaeee8cc1c22e5042b3..aecdcc370275cd3462d90b918f3a0ab33be2eeb7 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); } diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index f2d15757c94aa01de21773a5579e14c6f0c573e8..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; } diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 2384e6c5ba802f2f9b34cc7b2f6eada3625924e8..11c252406a36999c3c295b1c03a9d8919c85a3ba 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -304,10 +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; -//should account for Windows task bar -static const S32 FIRST_RUN_WINDOW_HIGHT = 738; //---------------------------------------------------------------------------- // List of entries from strings.xml to always replace @@ -2374,35 +2371,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_HIGHT; - - //if screen resolution is lower then first run width/height then show maximized - LLDisplayInfo display_info; - if(display_info.getDisplayWidth() <= FIRST_RUN_WINDOW_WIDTH - || display_info.getDisplayHeight()<=FIRST_RUN_WINDOW_HIGHT) - { - 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(); @@ -2413,7 +2387,7 @@ bool LLAppViewer::initWindow() gViewerWindow->toggleFullscreen(FALSE); } - if (show_maximized) + if (gSavedSettings.getBOOL("WindowMaximized")) { gViewerWindow->mWindow->maximize(); gViewerWindow->getWindow()->setNativeAspectRatio(gSavedSettings.getF32("FullScreenAspectRatio")); diff --git a/indra/newview/llassetuploadresponders.cpp b/indra/newview/llassetuploadresponders.cpp index 80cf8f1d61f15bf8fb04228ee84f434e371b1f13..844179621946a61850453ae15b800c2a3cbcfb8c 100644 --- a/indra/newview/llassetuploadresponders.cpp +++ b/indra/newview/llassetuploadresponders.cpp @@ -182,7 +182,10 @@ void LLAssetUploadResponder::uploadFailure(const LLSD& content) // deal with L$ errors if (reason == "insufficient funds") { - LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("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 e1c96d4a167f0ad77d661773b3e11a2229851376..efdfbb8d20986b438c61ea4dc2d11d4474df4e99 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,15 @@ 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); + mEditor->appendText("[" + chat.mTimeStr + "] ", mEditor->getText().size() != 0, style_params); if (utf8str_trim(chat.mFromName).size() != 0) @@ -734,7 +750,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,7 +759,9 @@ 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) @@ -758,7 +776,7 @@ 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(); } } @@ -817,7 +835,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/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 0f3c176cead9648a0a761dc59144bfba29140c07..42a7eeff26c88d3c0eafe2c1fc276f1dc806b382 100644 --- a/indra/newview/llfloaterreporter.cpp +++ b/indra/newview/llfloaterreporter.cpp @@ -84,6 +84,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 122bdc8bc739b35ce2157642955d7ee7b6551f23..daba3d8460605fc69c403075c1625d8ca3ca5451 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"); - LLPanelScriptLimitsRegionMemory* panel_memory = (LLPanelScriptLimitsRegionMemory*)tab->getChild<LLPanel>("script_limits_region_memory_panel"); - panel_memory->setRegionSummary(content); + 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); } @@ -597,7 +633,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; } @@ -734,8 +770,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) @@ -754,7 +788,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionSummary(LLSD content) } else { - llinfos << "summary doesn't contain memory info" << llendl; + llwarns << "summary doesn't contain memory info" << llendl; return; } @@ -772,7 +806,7 @@ void LLPanelScriptLimitsRegionMemory::setRegionSummary(LLSD content) } else { - llinfos << "summary doesn't contain urls info" << llendl; + llwarns << "summary doesn't contain urls info" << llendl; return; } @@ -919,8 +953,6 @@ void LLPanelScriptLimitsRegionMemory::clearList() // static void LLPanelScriptLimitsRegionMemory::onClickRefresh(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickRefresh" << llendl; - LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -930,6 +962,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(); @@ -969,7 +1008,6 @@ void LLPanelScriptLimitsRegionMemory::showBeacon() // static void LLPanelScriptLimitsRegionMemory::onClickHighlight(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickHighlight" << llendl; LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -1075,7 +1113,6 @@ void LLPanelScriptLimitsRegionMemory::returnObjects() // static void LLPanelScriptLimitsRegionMemory::onClickReturn(void* userdata) { - llinfos << "LLPanelRegionGeneralInfo::onClickReturn" << llendl; LLFloaterScriptLimits* instance = LLFloaterReg::getTypedInstance<LLFloaterScriptLimits>("script_limits"); if(instance) { @@ -1178,6 +1215,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() @@ -1218,7 +1261,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; } @@ -1236,7 +1279,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; } @@ -1267,16 +1310,23 @@ 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 0cba4d72f2f5adce3b627013ca54bd3151d75f7b..3c32b9f701b5f2f8db192f23ee6f5d35f5e08394 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/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index d3e3d2b57bb7f78bc85383bd56fb013730191e6d..bb4c75d3ac68d2a1455d377d1c315f5f5856cfef 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -255,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) 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 2dfc57532a6dfc9f123da24864a4a6f778b003b7..288895be8c8f9d21e4904004e1d09713a9ac4cb0 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -629,10 +629,10 @@ 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) + if (!session) { llwarns << "session " << session_id << "does not exist " << llendl; return; @@ -640,7 +640,7 @@ void LLIMModel::getMessages(const LLUUID& session_id, std::list<LLSD>& messages, int i = session->mMsgs.size() - start_index; - for (std::list<LLSD>::iterator iter = session->mMsgs.begin(); + for (std::list<LLSD>::iterator iter = session->mMsgs.begin(); iter != session->mMsgs.end() && i > 0; iter++) { @@ -649,6 +649,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; @@ -660,6 +670,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); @@ -738,13 +755,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 c4a8dd076e7465be54a7b7282f46b5dbc4bfc47f..475d407bead072179b8f956fdd6d19845d5f0f7b 100644 --- a/indra/newview/llimview.h +++ b/indra/newview/llimview.h @@ -195,6 +195,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 14bc4376fee75a370eeb35e1e7f84fde903deda6..35cb9b3468ca89527feff770055f1e19421b47d6 100644 --- a/indra/newview/llinspectavatar.cpp +++ b/indra/newview/llinspectavatar.cpp @@ -564,7 +564,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) { @@ -575,13 +574,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 ceeffea1c9eac1748cbf18ea2274c829410a7b31..6fedd9ac4d5c49f7d8c8b25a053e9d1f1c0ea11d 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -103,7 +103,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", @@ -3808,7 +3808,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 { @@ -4157,7 +4159,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 @@ -5356,7 +5358,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 ec83a1fd6d3849cb3bbc85a1229c5fc29c992821..d7720b735c6f6484178f9f9a32dee2e5ab3b4eb1 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -293,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/llmutelist.cpp b/indra/newview/llmutelist.cpp index 2d3c4b187e83fbec896cd88285048ab16b46e578..95094f6b52cc44e08764cfc14e4eb796a6f692e6 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -128,68 +128,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() diff --git a/indra/newview/llmutelist.h b/indra/newview/llmutelist.h index e1e81a24b4c353e8cb7ac2e8e4c3f39c654856b3..7cb11e603142f415bf4fa7920edc97269fa5a0ee 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 883d4cdf4b6e26b9e4b1ffd83a74cf26e9076f6f..7a538e372b960165f9cff9c839c5ec71187e8242 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 88bb769109530adc7ab6af0b19d325ac356f8725..d3ad61128dbf8e5bb369da209ee6e97348bca1ec 100644 --- a/indra/newview/llnotificationhandlerutil.cpp +++ b/indra/newview/llnotificationhandlerutil.cpp @@ -127,7 +127,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) @@ -137,11 +139,15 @@ bool LLHandlerUtil::canLogToIM(const LLNotificationPtr& notification) || PAYMENT_RECIVED == 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 @@ -158,19 +164,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) @@ -178,19 +190,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 { @@ -201,8 +252,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()) @@ -250,13 +309,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()); } } } @@ -324,7 +383,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; } @@ -343,11 +411,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 57b478ffef23d539b10613e940c3c7c6dd51807c..a0ba2f739b07a28e8fa8f9cec4ecd104331afb64 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -495,6 +495,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)); @@ -504,6 +505,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)); @@ -698,6 +700,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 021e1f5159a28118a86d12f00670a28a8057c131..70a7bf644b79bc307f2f77fc25d4403f6f392fa9 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -1893,7 +1893,7 @@ void LLPanelClassifiedEdit::resetControls() LLPanelClassifiedInfo::resetControls(); getChild<LLComboBox>("category")->setCurrentByIndex(0); - getChild<LLIconsComboBox>("content_type")->setCurrentByIndex(0); + getChild<LLComboBox>("content_type")->setCurrentByIndex(0); childSetValue("auto_renew", false); childSetValue("price_for_listing", MINIMUM_PRICE_FOR_LISTING); childSetEnabled("price_for_listing", TRUE); @@ -1928,7 +1928,7 @@ U32 LLPanelClassifiedEdit::getContentType() void LLPanelClassifiedEdit::setContentType(U32 content_type) { - LLIconsComboBox* ct_cb = getChild<LLIconsComboBox>("content_type"); + LLComboBox* ct_cb = getChild<LLComboBox>("content_type"); ct_cb->setCurrentByIndex(content_type); ct_cb->resetDirty(); } @@ -1988,7 +1988,7 @@ U8 LLPanelClassifiedEdit::getFlags() { bool auto_renew = childGetValue("auto_renew").asBoolean(); - LLComboBox* content_cb = getChild<LLIconsComboBox>("content_type"); + LLComboBox* content_cb = getChild<LLComboBox>("content_type"); bool mature = content_cb->getCurrentIndex() == CB_ITEM_MATURE; return pack_classified_flags_request(auto_renew, false, mature, false); diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp index 220ea2813d1690b2b7b06e1b81760fe4b8fc20d8..6ff784db0a74ab3f2c3987180986221bc2af961e 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) @@ -776,6 +777,11 @@ void LLLandmarksPanel::onAddAction(const LLSD& userdata) const //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,10 +923,6 @@ bool LLLandmarksPanel::isActionEnabled(const LLSD& userdata) const return false; } } - else if (!root_folder_view && "category" != command_name) - { - return false; - } else if ( "paste" == command_name || "cut" == command_name || "copy" == command_name @@ -938,11 +940,11 @@ bool LLLandmarksPanel::isActionEnabled(const LLSD& userdata) const ) { // disable some commands for multi-selection. EXT-1757 - return root_folder_view->getSelectedCount() == 1; + return root_folder_view && root_folder_view->getSelectedCount() == 1; } else if ("rename" == command_name) { - return root_folder_view->getSelectedCount() == 1 && canSelectedBeModified(command_name); + return root_folder_view && root_folder_view->getSelectedCount() == 1 && canSelectedBeModified(command_name); } else if("category" == command_name) { diff --git a/indra/newview/llpanellandmarks.h b/indra/newview/llpanellandmarks.h index 2b46ba99333e43c16b80f0552be9d0c5f45d4931..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); @@ -169,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/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 9e92ee337fdcd602b3278000e444549eb8b287b5..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(LLTrans::getString("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, @@ -1578,7 +1588,7 @@ void LLPanelObjectInventory::reset() 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); diff --git a/indra/newview/llpanelpicks.cpp b/indra/newview/llpanelpicks.cpp index 4ac57bc7a4a22807fe91e439dbbc2be2d707b8c1..bde8d0288552e6f16b4b322a22437c70293f9816 100644 --- a/indra/newview/llpanelpicks.cpp +++ b/indra/newview/llpanelpicks.cpp @@ -828,7 +828,11 @@ void LLPanelPicks::onPanelClassifiedSave(LLPanelClassifiedEdit* panel) else if(panel->isNewWithErrors()) { LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); - c_item->fillIn(panel); + llassert(c_item); + if (c_item) + { + c_item->fillIn(panel); + } } else { @@ -971,6 +975,11 @@ void LLPanelPicks::onPanelClassifiedEdit() } LLClassifiedItem* c_item = dynamic_cast<LLClassifiedItem*>(mClassifiedsList->getSelectedItem()); + llassert(c_item); + if (!c_item) + { + return; + } LLSD params; params["classified_id"] = c_item->getClassifiedId(); diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index cdd79b1559208107990db46617f76fa59c74ba0b..1a1650c38b283dcdc62ee77eb891095f29ec5c99 100644 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -567,9 +567,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(LLTrans::getString("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/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/llprogressview.cpp b/indra/newview/llprogressview.cpp index 120b584cd95099fcd98b41c9b1de3a5e6e431262..9b5e38d0aa1311e8ac83d1d0597cb6a885351546 100644 --- a/indra/newview/llprogressview.cpp +++ b/indra/newview/llprogressview.cpp @@ -68,15 +68,16 @@ const F32 TOTAL_LOGIN_TIME = 10.f; // seconds, wild guess at time from GL contex S32 gLastStartAnimationFrame = 0; // human-style indexing, first image = 1 const S32 ANIMATION_FRAMES = 1; //13; +static LLRegisterPanelClassWrapper<LLProgressView> r("progress_view"); + + // XUI: Translate -LLProgressView::LLProgressView(const LLRect &rect) +LLProgressView::LLProgressView() : LLPanel(), mPercentDone( 0.f ), mMouseDownInActiveArea( false ), mUpdateEvents("LLProgressView") { - LLUICtrlFactory::getInstance()->buildPanel(this, "panel_progress.xml"); - reshape(rect.getWidth(), rect.getHeight()); mUpdateEvents.listen("self", boost::bind(&LLProgressView::handleUpdate, this, _1)); } @@ -92,6 +93,9 @@ BOOL LLProgressView::postBuild() getChild<LLTextBox>("message_text")->setClickedCallback(onClickMessage, this); + // hidden initially, until we need it + LLPanel::setVisible(FALSE); + sInstance = this; return TRUE; } @@ -126,19 +130,23 @@ BOOL LLProgressView::handleKeyHere(KEY key, MASK mask) void LLProgressView::setVisible(BOOL visible) { + // hiding progress view if (getVisible() && !visible) { - mFadeTimer.start(); + // hiding progress view, so show menu bars + LLUI::getRootView()->getChildView("menu_bar_holder")->setVisible(TRUE); } + // showing progress view else if (!getVisible() && visible) { - gViewerWindow->addPopup(this); - + // showing progress view, so hide menu bars + LLUI::getRootView()->getChildView("menu_bar_holder")->setVisible(FALSE); + setFocus(TRUE); mFadeTimer.stop(); mProgressTimer.start(); - LLPanel::setVisible(visible); + LLPanel::setVisible(TRUE); } } @@ -148,7 +156,7 @@ void LLProgressView::draw() static LLTimer timer; // Paint bitmap if we've got one - glPushMatrix(); + glPushMatrix(); if (gStartTexture) { LLGLSUIDefault gls_ui; @@ -189,7 +197,7 @@ void LLProgressView::draw() // Fade is complete, release focus gFocusMgr.releaseFocusIfNeeded( this ); LLPanel::setVisible(FALSE); - gViewerWindow->removePopup(this); + mFadeTimer.stop(); gStartTexture = NULL; } diff --git a/indra/newview/llprogressview.h b/indra/newview/llprogressview.h index 6853674d88f2c1a82c84d0e3527b6ac69cae4bed..374b14be83c522bdc97a8cd70fb1b989d9866ab3 100644 --- a/indra/newview/llprogressview.h +++ b/indra/newview/llprogressview.h @@ -44,7 +44,7 @@ class LLProgressBar; class LLProgressView : public LLPanel { public: - LLProgressView(const LLRect& rect); + LLProgressView(); virtual ~LLProgressView(); BOOL postBuild(); 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/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 717a8bda1e561e8fa1a94625da302058ac252781..6cf9c6b95d8d4dfc56d87860813a101a0e8b400e 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/lltexturecache.cpp b/indra/newview/lltexturecache.cpp index 49770030c6f741167b065f1d5a06aea498264018..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,36 +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 { - mTexturesSizeMap[entry.mID] = entry.mBodySize; - } - else if(mTexturesSizeMap.find(entry.mID) != mTexturesSizeMap.end() && mTexturesSizeMap[entry.mID] > 0) + 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) { - llerrs << "mTexturesSizeMap / mHeaderIDMap corrupted." << llendl ; + //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) ; } } } @@ -1160,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; @@ -1175,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(); @@ -1207,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(); } } @@ -1280,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; @@ -1298,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); } } } @@ -1315,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); @@ -1332,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; @@ -1343,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 @@ -1356,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 @@ -1370,7 +1417,7 @@ void LLTextureCache::readHeaderCache() } else { - writeEntriesAndClose(entries); + //entries are not changed, nothing here. } } } @@ -1398,6 +1445,7 @@ void LLTextureCache::purgeAllTextures(bool purge_directories) } if (purge_directories) { + gDirUtilp->deleteFilesInDir(mTexturesDirName,mask); LLFile::rmdir(mTexturesDirName); } } @@ -1435,7 +1483,6 @@ void LLTextureCache::purgeTextures(bool validate) U32 num_entries = openAndReadEntries(entries); if (!num_entries) { - writeEntriesAndClose(entries); return; // nothing to purge } @@ -1509,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); } } @@ -1568,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; } @@ -1582,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 @@ -1722,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 e6d13a7613636c693b59f1e5445906c9368d4b51..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,6 +54,8 @@ S32 BUTTON_WIDTH = 90; const LLFontGL* LLToastNotifyPanel::sFont = NULL; const LLFontGL* LLToastNotifyPanel::sFontSmall = NULL; +LLToastNotifyPanel::button_click_signal_t LLToastNotifyPanel::sButtonClickSignal; + LLToastNotifyPanel::LLToastNotifyPanel(LLNotificationPtr& notification, const LLRect& rect) : LLToastPanel(notification), mTextBox(NULL), @@ -60,7 +63,8 @@ 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) @@ -193,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() { @@ -265,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); } } @@ -342,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) { @@ -354,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 152975e7dead9bb14a9a962666f6d5323753ec2a..a8d2d0323614ee041737951316a700004403ee94 100644 --- a/indra/newview/lltoastnotifypanel.h +++ b/indra/newview/lltoastnotifypanel.h @@ -65,6 +65,7 @@ class LLToastNotifyPanel: public LLToastPanel virtual ~LLToastNotifyPanel(); LLPanel * getControlPanel() { return mControlPanel; } + void setCloseNotificationOnDestroy(bool close) { mCloseNotificationOnDestroy = close; } protected: LLButton* createButton(const LLSD& form_element, BOOL is_option); @@ -76,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); @@ -90,6 +91,13 @@ class LLToastNotifyPanel: public LLToastPanel */ 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 @@ -98,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; @@ -111,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 2f4a69a53c4fb021c156d9fa6ab4b4ec63bc4b9d..d15db536e6c2e53ddd61463217b23fe83d247cda 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -412,24 +412,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: @@ -964,7 +964,7 @@ BOOL LLToolPie::handleTooltipObject( LLViewerObject* hover_object, std::string l } } } - + // 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 @@ -972,9 +972,9 @@ BOOL LLToolPie::handleTooltipObject( LLViewerObject* hover_object, std::string l bool needs_tip = (!is_media_displaying || for_sale) && - (has_media || - needs_tooltip(nodep) || - needs_tooltip(LLSelectMgr::getInstance()->getPrimaryHoverNode())); + (has_media || + needs_tooltip(nodep) || + needs_tooltip(LLSelectMgr::getInstance()->getPrimaryHoverNode())); if (show_all_object_tips || needs_tip) { diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 64dcd62a6a0e1f260036c9e01004334193e48578..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,8 +1371,22 @@ LLPluginClassMedia* LLViewerMediaImpl::newSourceFromMediaType(std::string media_ { LLPluginClassMedia* media_source = new LLPluginClassMedia(owner); media_source->setSize(default_width, default_height); - std::string language_code = LLUI::getLanguage(); - if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"), user_data_path, language_code)) + 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; } @@ -1320,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 1d58daba2ce5047a8d98b7ec1c80276f3113e8ad..5598a589cc62f56b35d2afbc3d6e818028de8fc3 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -86,6 +86,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() @@ -435,7 +436,8 @@ void init_menus() gMenuBarView->setRect(LLRect(0, top, 0, top - MENU_BAR_HEIGHT)); gMenuBarView->setBackgroundColor( color ); - gMenuHolder->addChild(gMenuBarView); + LLView* menu_bar_holder = gViewerWindow->getRootView()->getChildView("menu_bar_holder"); + menu_bar_holder->addChild(gMenuBarView); gViewerWindow->setMenuBackgroundColor(false, LLViewerLogin::getInstance()->isInProductionGrid()); @@ -470,9 +472,10 @@ void init_menus() gLoginMenuBarView = LLUICtrlFactory::getInstance()->createFromFile<LLMenuBarGL>("menu_login.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance()); gLoginMenuBarView->arrangeAndClear(); LLRect menuBarRect = gLoginMenuBarView->getRect(); - gLoginMenuBarView->setRect(LLRect(menuBarRect.mLeft, menuBarRect.mTop, gViewerWindow->getRootView()->getRect().getWidth() - menuBarRect.mLeft, menuBarRect.mBottom)); + menuBarRect.setLeftTopAndSize(0, menu_bar_holder->getRect().getHeight(), menuBarRect.getWidth(), menuBarRect.getHeight()); + gLoginMenuBarView->setRect(menuBarRect); gLoginMenuBarView->setBackgroundColor( color ); - gMenuHolder->addChild(gLoginMenuBarView); + menu_bar_holder->addChild(gLoginMenuBarView); // tooltips are on top of EVERYTHING, including menus gViewerWindow->getRootView()->sendChildToFront(gToolTipView); @@ -3273,7 +3276,9 @@ void handle_buy_object(LLSaleInfo sale_info) if (price > 0 && price > gStatusBar->getBalance()) { - LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("this_object_costs"), price); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", price); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("this_object_costs", args), price); return; } @@ -4403,8 +4408,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 @@ -7047,7 +7054,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 00762894cda7e04ecca7cbaeb28600f0cbd0b62c..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(LLTrans::getString("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 af0af9cd0e57940b817ff25d6b997362bc289d3a..7ba9c54e5334fb4e5fe877a575669d587ae12212 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -105,6 +105,7 @@ #include "llpanelplaceprofile.h" #include <boost/algorithm/string/split.hpp> // +#include <boost/regex.hpp> #if LL_WINDOWS // For Windows specific error handler #include "llwindebug.h" // For the invalid message handler @@ -272,7 +273,9 @@ void give_money(const LLUUID& uuid, LLViewerRegion* region, S32 amount, BOOL is_ } else { - LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("giving"), amount); + LLStringUtil::format_map_t args; + args["AMOUNT"] = llformat("%d", amount); + LLFloaterBuyCurrency::buyCurrency(LLTrans::getString("giving", args), amount); } } @@ -1081,6 +1084,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; @@ -1572,7 +1590,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"; @@ -3083,7 +3105,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; } @@ -4501,8 +4523,64 @@ void process_money_balance_reply( LLMessageSystem* msg, void** ) payload["from_id"] = from_id; LLNotificationsUtil::add("PaymentRecived", 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); } @@ -5489,6 +5567,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 b5642d07a520c47228059148fe2f4515e784d76a..6c8346df86d77e16df9db434d3af69c2af28124c 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -4029,7 +4029,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 133b6ee8c97a8d114c52a735dffe38eb636d4843..9fbffdac35e0afbf4f3120985f6d68792a4a8830 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -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; diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index adac4b9b40f63c9f0a74ac53bd53d7435a6c0bfd..d91833fd22fef44399b609455d38f1c4300bd9c3 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1351,7 +1351,8 @@ LLViewerWindow::LLViewerWindow( mStatesDirty(false), mIsFullscreenChecked(false), mCurrResolutionIndex(0), - mViewerWindowListener(new LLViewerWindowListener(this)) + mViewerWindowListener(new LLViewerWindowListener(this)), + mProgressView(NULL) { LLNotificationChannel::buildChannel("VW_alerts", "Visible", LLNotificationFilters::filterBy<std::string>(&LLNotification::getType, "alert")); LLNotificationChannel::buildChannel("VW_alertmodal", "Visible", LLNotificationFilters::filterBy<std::string>(&LLNotification::getType, "alertmodal")); @@ -1588,8 +1589,7 @@ void LLViewerWindow::initBase() gToolTipView = getRootView()->getChild<LLToolTipView>("tooltip view"); // Add the progress bar view (startup view), which overrides everything - mProgressView = new LLProgressView(full_window); - getRootView()->addChild(mProgressView); + mProgressView = getRootView()->getChild<LLProgressView>("progress_view"); setShowProgress(FALSE); setProgressCancelButtonVisible(FALSE); @@ -1608,8 +1608,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"); diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 32c24b3ebd3b1d666e78cbf674f293ff74c8bfb6..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"; diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 5ba13efca298258feda86853164327e056c85b6b..9bb85d2bd5379f9a9e6bf7dde68550d7a3da98c8 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -4598,7 +4598,15 @@ void LLVoiceClient::participantUpdatedEvent( { participant->mPower = 0.0f; } - participant->mVolume = volume; + + // *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/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 d45d6155dde786c8b9ec107eb36c1b1336dec077..fcf5cfadb260279d319ab68c898a6e68cf36427e 100644 --- a/indra/newview/skins/default/colors.xml +++ b/indra/newview/skins/default/colors.xml @@ -392,7 +392,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/icons/SL_Logo.png b/indra/newview/skins/default/textures/icons/SL_Logo.png index c9fbde987a6615c783207ad967cb0c6c49670d04..8342d7cfee55aeb3558946099eff623cb577d48d 100644 Binary files a/indra/newview/skins/default/textures/icons/SL_Logo.png and b/indra/newview/skins/default/textures/icons/SL_Logo.png differ diff --git a/indra/newview/skins/default/textures/navbar/BuyArrow_Over.png b/indra/newview/skins/default/textures/navbar/BuyArrow_Over.png index 95913dd55ba23810831b09edc29f8431b7a99008..0b3f252ccf61f02f9f42bb639233f4e2da074a21 100644 Binary files a/indra/newview/skins/default/textures/navbar/BuyArrow_Over.png and b/indra/newview/skins/default/textures/navbar/BuyArrow_Over.png differ diff --git a/indra/newview/skins/default/textures/navbar/BuyArrow_Press.png b/indra/newview/skins/default/textures/navbar/BuyArrow_Press.png index a02675502a9ef97a7a5085c8b34ca5b38cc690b0..5c4c150bed9a2c4d04e552f18d7dfd6070b5c9d7 100644 Binary files a/indra/newview/skins/default/textures/navbar/BuyArrow_Press.png and b/indra/newview/skins/default/textures/navbar/BuyArrow_Press.png differ diff --git a/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Off.png b/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Off.png index 1e7d7beafa0a4053b66b613e88b236484337a7f8..421f5e17057f17e5d108d924111aca6f58b07b04 100644 Binary files a/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Off.png and b/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Off.png differ diff --git a/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Selected.png b/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Selected.png index a70d3abbbf8f381b4aa5576b417d1578baa7e36b..293aeef5e65d2600cbe959ec509c26514bb7587d 100644 Binary files a/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Selected.png and b/indra/newview/skins/default/textures/taskpanel/TabIcon_Home_Selected.png differ diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml index b1594816b21fb20b59a796d6d4571fae76960801..a3e5361e763782c91a36c0d73876c79e459155f0 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" /> 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..8525b324ab564ac1dc2bd50f7b1b23d4e7eabc6d 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"/> @@ -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_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_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..65f3f67a70272729bd981d598ef4b7a03e88b1af 100644 --- a/indra/newview/skins/default/xui/da/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/da/floater_windlight_options.xml @@ -1,18 +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="AVANCERET OPSÆTNING FOR HIMMEL"> <text name="KeyFramePresetsText"> Faste indstillinger: </text> - <button label="Ny" label_selected="Ny" name="WLNewPreset" /> - <button label="Gem" label_selected="Gem" name="WLSavePreset" /> - <button label="Slet" label_selected="Slet" name="WLDeletePreset" /> - <button label="Dags cyklus" label_selected="Dags cyklus" name="WLDayCycleMenuButton" /> + <button label="Ny" label_selected="Ny" name="WLNewPreset"/> + <button label="Gem" label_selected="Gem" name="WLSavePreset"/> + <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> - <button label="?" name="WLBlueHorizonHelp" /> + <button label="?" name="WLBlueHorizonHelp"/> <text name="BHText2"> R </text> @@ -25,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"> Dis - horisont </text> - <button label="?" name="WLHazeHorizonHelp" /> - <slider label="" name="WLHazeHorizon" /> + <button label="?" name="WLHazeHorizonHelp"/> + <slider label="" name="WLHazeHorizon"/> <text name="BDensText2"> BlÃ¥ - tæthed </text> - <button label="?" name="WLBlueDensityHelp" /> + <button label="?" name="WLBlueDensityHelp"/> <text name="BHText6"> R </text> @@ -50,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"> Dis - intensitet </text> - <button label="?" name="WLHazeDensityHelp" /> - <slider label="" name="WLHazeDensity" /> + <button label="?" name="WLHazeDensityHelp"/> + <slider label="" name="WLHazeDensity"/> <text name="DensMultText"> Densitet faktor </text> - <button label="?" name="WLDensityMultHelp" /> - <slider label="" name="WLDensityMult" /> + <button label="?" name="WLDensityMultHelp"/> + <slider label="" name="WLDensityMult"/> <text name="WLDistanceMultText"> Distance faktor </text> - <button label="?" name="WLDistanceMultHelp" /> - <slider label="" name="WLDistanceMult" /> + <button label="?" name="WLDistanceMultHelp"/> + <slider label="" name="WLDistanceMult"/> <text name="MaxAltText"> Maximum højde </text> - <button label="?" name="WLMaxAltitudeHelp" /> - <slider label="" name="WLMaxAltitude" /> + <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> - <button label="?" name="WLSunlightColorHelp" /> + <button label="?" name="WLSunlightColorHelp"/> <text name="BHText"> R </text> @@ -92,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"> Sol/MÃ¥ne position </text> - <button label="?" name="WLTimeOfDayHelp" /> - <slider label="" name="WLSunAngle" /> + <button label="?" name="WLTimeOfDayHelp"/> + <slider label="" name="WLSunAngle"/> <text name="WLAmbientText"> Omgivende </text> - <button label="?" name="WLAmbientHelp" /> + <button label="?" name="WLAmbientHelp"/> <text name="BHText5"> R </text> @@ -117,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"> Øst vinkel </text> - <button label="?" name="WLEastAngleHelp" /> - <slider label="" name="WLEastAngle" /> + <button label="?" name="WLEastAngleHelp"/> + <slider label="" name="WLEastAngle"/> <text name="SunGlowText"> Sol glød </text> - <button label="?" name="WLSunGlowHelp" /> - <slider label="Fokus " name="WLGlowB" /> - <slider label="Størr. " name="WLGlowR" /> + <button label="?" name="WLSunGlowHelp"/> + <slider label="Fokus " name="WLGlowB"/> + <slider label="Størr. " name="WLGlowR"/> <text name="SceneGammaText"> Lysintensitet (gamma) </text> - <button label="?" name="WLSceneGammaHelp" /> - <slider label="" name="WLGamma" /> + <button label="?" name="WLSceneGammaHelp"/> + <slider label="" name="WLGamma"/> <text name="WLStarText"> Stjerne intensitet </text> - <button label="?" name="WLStarBrightnessHelp" /> - <slider label="" name="WLStarAlpha" /> + <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> - <button label="?" name="WLCloudColorHelp" /> + <button label="?" name="WLCloudColorHelp"/> <text name="BHText"> R </text> @@ -160,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"> Skyer XY/Tæthed </text> - <button label="?" name="WLCloudDensityHelp" /> + <button label="?" name="WLCloudDensityHelp"/> <text name="BHText5"> X </text> @@ -177,23 +177,23 @@ <text name="BHText7"> T </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"> Skydække </text> - <button label="?" name="WLCloudCoverageHelp" /> - <slider label="" name="WLCloudCoverage" /> + <button label="?" name="WLCloudCoverageHelp"/> + <slider label="" name="WLCloudCoverage"/> <text name="WLCloudScaleText"> Skystørrelse </text> - <button label="?" name="WLCloudScaleHelp" /> - <slider label="" name="WLCloudScale" /> + <button label="?" name="WLCloudScaleHelp"/> + <slider label="" name="WLCloudScale"/> <text name="WLCloudDetailText"> Sky detaljer(XY/tæthed) </text> - <button label="?" name="WLCloudDetailHelp" /> + <button label="?" name="WLCloudDetailHelp"/> <text name="BHText8"> X </text> @@ -203,23 +203,23 @@ <text name="BHText10"> T </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"> Sky drift X </text> - <button label="?" name="WLCloudScrollXHelp" /> - <check_box label="LÃ¥s" name="WLCloudLockX" /> - <slider label="" name="WLCloudScrollX" /> + <button label="?" name="WLCloudScrollXHelp"/> + <check_box label="LÃ¥s" name="WLCloudLockX"/> + <slider label="" name="WLCloudScrollX"/> <text name="WLCloudScrollYText"> Sky drift Y </text> - <button label="?" name="WLCloudScrollYHelp" /> - <check_box label="LÃ¥s" name="WLCloudLockY" /> - <slider label="" name="WLCloudScrollY" /> - <check_box label="Benyt simple skyer" name="DrawClassicClouds" /> - <button label="?" name="WLClassicCloudsHelp" /> + <button label="?" name="WLCloudScrollYHelp"/> + <check_box label="LÃ¥s" name="WLCloudLockY"/> + <slider label="" name="WLCloudScrollY"/> + <check_box label="Benyt simple skyer" name="DrawClassicClouds"/> + <button label="?" name="WLClassicCloudsHelp"/> </panel> </tab_container> <string name="WLDefaultSkyNames"> 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_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/notifications.xml b/indra/newview/skins/default/xui/da/notifications.xml index 9193bd43e8e82d171afd6e8bdc92b6749c8f3e8f..ea3527d63be06e388dd199c0dd07ccb4f5c2798e 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. @@ -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..28f89364573cb576f0c29503fd211f1fd1c3df60 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_editor name="classified_desc" value="[description]"/> + <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_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_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_chat.xml b/indra/newview/skins/default/xui/da/panel_preferences_chat.xml index 3345bceff741a9b503c7a937ef6910e794a0da9c..df71e29cb950ea8254332f23eec73fd1b16f7700 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 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..7941553adecb4aefb172fbbc4429069e92b1f81c 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="Spark en beboer ud af 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_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_task_info.xml b/indra/newview/skins/default/xui/da/sidepanel_task_info.xml index add2fa3c731963d9728603a5836ef5c4000f104b..4642c11d218c95cb54ed5a19e9544219c4e76e02 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ø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> <panel name="perms_inv"> <text name="perm_modify"> Du kan redigere dette objekt @@ -60,26 +85,33 @@ <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="Del" 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="Overfør" 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..e2bb7751b22c84ea0a9c0b733a30bbeab43b5be2 100644 --- a/indra/newview/skins/default/xui/da/strings.xml +++ b/indra/newview/skins/default/xui/da/strings.xml @@ -161,6 +161,7 @@ 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> @@ -734,6 +735,9 @@ <string name="invalid"> ugyldig </string> + <string name="NewWearable"> + Ny [WEARABLE_ITEM] + </string> <string name="next"> Næste </string> @@ -765,7 +769,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) @@ -1432,6 +1436,9 @@ <string name="PanelContentsNewScript"> Nyt script </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> 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..81c2f97263192327449ddc22a5eded5328220a05 100644 --- a/indra/newview/skins/default/xui/de/floater_about_land.xml +++ b/indra/newview/skins/default/xui/de/floater_about_land.xml @@ -443,6 +443,9 @@ Nur große Parzellen können in der Suche aufgeführt werden. <panel.string name="access_estate_defined"> (Durch Grundstück 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 </panel.string> 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_tos.xml b/indra/newview/skins/default/xui/de/floater_tos.xml index e11b453b419bc84cf44aded7c5ac878902f20303..d9f15e19f77fd11753787f63993ce1b9e3919112 100644 --- a/indra/newview/skins/default/xui/de/floater_tos.xml +++ b/indra/newview/skins/default/xui/de/floater_tos.xml @@ -9,9 +9,9 @@ <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 Servicebedinungen 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/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/notifications.xml b/indra/newview/skins/default/xui/de/notifications.xml index 864e579c3da7f70a14008277c907f919f1c1e79a..71accab699f924f3d501091d902b5ac804c32249 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, 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> @@ -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] @@ -1435,9 +1435,9 @@ Chat und Instant Messages werden ausgeblendet. Instant Messages (Sofortnachricht </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. + Sie sind im Begriff, ein Grundstück 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"/> @@ -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_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..ad26f7124592933d78f8ca513034cafbf83d1488 100644 --- a/indra/newview/skins/default/xui/de/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/de/panel_nearby_media.xml @@ -19,10 +19,17 @@ <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_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_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/strings.xml b/indra/newview/skins/default/xui/de/strings.xml index fc01b6946109518def0377b87ca20026eb05d2e8..35077621199b18a294b3cb7cd1b4ec22352e2118 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> @@ -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> @@ -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 2764befeac0e2136e571a5e49d1b0fcb5071970c..33977e9f1a6989fbe20d290ca5001f96ec2a2cbc 100644 --- a/indra/newview/skins/default/xui/en/floater_about_land.xml +++ b/indra/newview/skins/default/xui/en/floater_about_land.xml @@ -275,7 +275,7 @@ Leyla Linden </text> left_pad="4" right="-10" name="Set..." - width="50" + width="90" top_delta="-2"/> <check_box enabled="false" @@ -407,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" @@ -486,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" @@ -499,7 +499,7 @@ Leyla Linden </text> left="10" name="Scripts..." top_pad="1" - width="100" /> + width="150" /> <button enabled="false" follows="left|top" @@ -516,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" @@ -1056,7 +1056,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 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_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_tools.xml b/indra/newview/skins/default/xui/en/floater_tools.xml index 12d169b70a5ba8ae9682090db2f4564cb770855f..c27b2511122d6edbcc284f9cb36ef171453a5176 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 @@ -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,8 +756,8 @@ help_topic="toolbox_general_tab" name="General" top="16" - width="280"> - <panel.string + width="295"> +<panel.string name="text deed continued"> Deed </panel.string> @@ -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 85853f39bbb377e3d09ea67fde8483b9079895a6..e8f9d65be50f65794167e18c42c50d57984d4b3b 100644 --- a/indra/newview/skins/default/xui/en/main_view.xml +++ b/indra/newview/skins/default/xui/en/main_view.xml @@ -143,12 +143,19 @@ <panel mouse_opaque="false" follows="left|right|top" name="status_bar_container" - tab_stop="false" + tab_stop="false" height="19" left="0" top="0" width="1024" visible="false"/> + <view mouse_opaque="false" + follows="all" + name="menu_bar_holder" + left="0" + top="0" + width="1024" + height="768"/> <notify_box_view top="0" follows="all" height="768" @@ -156,6 +163,33 @@ name="notify_container" tab_group="-2" width="1024"/> + <panel top="0" + follows="all" + height="768" + mouse_opaque="true" + name="progress_view" + filename="panel_progress.xml" + 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" @@ -169,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_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 158e764eaed1b6e111f0aa40745ce583cfc96df3..a08bc1606613c2d79da2a225e0f8f5fcd2de1e25 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -177,7 +177,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/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 e70a0512d610758800bff2451665e50748704415..58c5c11e51c919121ac0204bbaad0889717cae30 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -74,12 +74,15 @@ name="talk" top="5" 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="left" + halign="center" name="speak_btn" label="Speak" label_selected="Speak" - pad_left="12" + pad_right="22" + use_ellipses="true" /> <show_button> <show_button.init_callback 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 26be8440e7c0663f4f2a331d87c5546fa8debb2d..dff2b9a214f2f1c35bb595bb117b82f79358d064 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_profile.xml @@ -146,7 +146,7 @@ layout="topleft" left="123" top="25" - max_length="512" + max_length="511" name="sl_description_edit" width="157" word_wrap="true"> @@ -200,7 +200,7 @@ height="102" layout="topleft" left="123" - max_length="512" + max_length="254" top="157" name="fl_description_edit" width="157" 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_login.xml b/indra/newview/skins/default/xui/en/panel_login.xml index 627e616af5b0c939c3a56a488bbc2936e568885f..d1e0746d9dc785d380330f63b190c08970fca5e1 100644 --- a/indra/newview/skins/default/xui/en/panel_login.xml +++ b/indra/newview/skins/default/xui/en/panel_login.xml @@ -216,7 +216,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..c7768c6eb624e0ae3d9b0a962a4bc62e32607ba6 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,8 +46,8 @@ left="10" mouse_opaque="false" name="Inventory Menu" - top="0" - visible="true" + top="+10" + visible="true" width="290"> <menu height="101" @@ -377,30 +402,30 @@ <filter_editor text_pad_left="10" follows="left|top|right" - height="23" + height="23" label="Filter Inventory" layout="topleft" left="10" -max_length="300" + max_length="300" name="inventory search editor" - top="26" + top="+31" width="303" /> <tab_container - bg_opaque_color="DkGray2" + bg_opaque_color="DkGray2" bg_alpha_color="DkGray2" background_visible="true" background_opaque="true" -follows="all" -halign="center" - height="305" - layout="topleft" - left="6" - name="inventory filter tabs" - tab_height="30" - tab_position="top" - tab_min_width="100" - top_pad="10" - width="315"> + follows="all" + halign="center" + height="300" + layout="topleft" + left="6" + name="inventory filter tabs" + tab_height="30" + tab_position="top" + tab_min_width="100" + top_pad="10" + width="315"> <inventory_panel bg_opaque_color="DkGray2" bg_alpha_color="DkGray2" 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_general.xml b/indra/newview/skins/default/xui/en/panel_preferences_general.xml index d11aebe943d409d06106fef755fbad6db109a1f4..e667fa9a2b0a0dde0724e23055219847b520c3e1 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_general.xml @@ -365,12 +365,12 @@ use_ellipses="false" hover="false" commit_on_focus_lost = "true" - follows="left|top" + follows="left|top|right" 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_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/sidepanel_item_info.xml b/indra/newview/skins/default/xui/en/sidepanel_item_info.xml index 12c06504caf1c0d37fdf20760f691b7c4dcf0541..e5382e1e3f6ef3d59421dff445e4530dabc5ba40 100644 --- a/indra/newview/skins/default/xui/en/sidepanel_item_info.xml +++ b/indra/newview/skins/default/xui/en/sidepanel_item_info.xml @@ -399,6 +399,7 @@ top_pad="10" top_pad="10"/> </panel> <panel + follows="bottom|left" height="30" layout="topleft" name="button_panel" diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index 1df3e21de3f88fcc8cce3e5b9f9020b6df0ac0b1..0c73b8d7692eef339fb731053adee4e7e10e170c 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -56,7 +56,9 @@ <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 --> @@ -79,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> @@ -95,6 +103,14 @@ <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> @@ -1837,6 +1853,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> @@ -1893,6 +1910,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> @@ -2122,6 +2140,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> @@ -2184,7 +2203,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 @@ -3035,14 +3055,48 @@ If you continue to receive this message, contact the [SUPPORT_SITE]. <!-- Financial operations strings --> <string name="paid_you_ldollars">[NAME] paid you L$[AMOUNT]</string> - <string name="giving">Giving</string> - <string name="uploading_costs">Uploading costs</string> - <string name="this_costs">This costs</string> - <string name="buying_selected_land">Buying selected land</string> - <string name="this_object_costs">This object costs"</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..792858306db094aba86f0dae0fef22c7db4804a1 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,17 +316,17 @@ 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"> + <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"> + <text name="allow_label4"> Ejecutar scripts: </text> <check_box label="Todos los residentes" left="255" name="check other scripts"/> @@ -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_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_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_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_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_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_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/notifications.xml b/indra/newview/skins/default/xui/es/notifications.xml index f99bb277cbae049bf9645e0e1724c02716a10960..db1cc1caead970f8865882db5169b9afcb27cccd 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. @@ -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 @@ -1309,8 +1308,8 @@ Esta actualización no es obligatoria, pero te sugerimos instalarla para mejorar <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. @@ -1351,7 +1350,7 @@ 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. @@ -1371,7 +1370,7 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue </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). @@ -1381,7 +1380,7 @@ Se ocultará el chat y los mensajes instantáneos (éstos recibirán tu Respue </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. @@ -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] @@ -1431,11 +1430,11 @@ 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 hará que se trastorne el servidor. -¿Proceder? +¿Continuar? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> </notification> <notification label="Cambiar el acceso a un estado Linden" name="ChangeLindenAccess"> @@ -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! @@ -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. 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..f583cf29575c31fa8d1dc5356510e1768fb0b9da 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 name="classified_location_label" value="Localización:"/> <text_editor name="classified_location" value="[cargando...]"/> + <text name="content_type_label" value="Tipo de contenido:"/> <text_editor name="content_type" value="[tipo de contenido]"/> + <text name="category_label" value="CategorÃa:"/> <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 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 1a7040d01f5249154f0923f94450d6e05966234e..0e4f118605011260936471819ad8952797c11f19 100644 --- a/indra/newview/skins/default/xui/es/panel_login.xml +++ b/indra/newview/skins/default/xui/es/panel_login.xml @@ -24,7 +24,7 @@ Empezar en: </text> <combo_box name="start_location_combo"> - <combo_box.item label="Mi última localización" name="MyLastLocation"/> + <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"/> 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..55e3df5a0a7e2c2b13f3041f7420a3cda6e62145 100644 --- a/indra/newview/skins/default/xui/es/panel_people.xml +++ b/indra/newview/skins/default/xui/es/panel_people.xml @@ -7,6 +7,8 @@ <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"> 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..39bf247a476f9297a2009b311476a12f154fbd91 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"> 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..34b78b468bc9b5f2ab9522280d9123783812378f 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_chat.xml @@ -1,7 +1,7 @@ <?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"/> @@ -9,7 +9,7 @@ <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_setup.xml b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml index 2465612a64321b0bc421bda00d2a5ac13fda9b7c..fe9736f758a2f9e6572721e91d851739c9b78054 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml @@ -34,9 +34,12 @@ 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: 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..923201e4f30cabbf3afda608c999d462552840c9 100644 --- a/indra/newview/skins/default/xui/es/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/es/sidepanel_task_info.xml @@ -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..a2da9932bd556a50f3833f82506d3f096809915d 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> @@ -85,6 +103,24 @@ <string name="AgentLostConnection"> Esta región puede estar teniendo problemas. Por favor, compruebe su 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 </string> @@ -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 :"/> @@ -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] @@ -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 b5acd6299aaeec4a9e4b5a69bc0fa685db9d0fc3..16ed27817eaf68c19425b083248c76eb7d6dea9a 100644 --- a/indra/newview/skins/default/xui/fr/floater_about_land.xml +++ b/indra/newview/skins/default/xui/fr/floater_about_land.xml @@ -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_buy_currency.xml b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml index c7437c460385a3362dd4686681bd8b15ce81dc54..d7ec0b4885005ebd75096630c15d83154ffc6a02 100644 --- a/indra/newview/skins/default/xui/fr/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml @@ -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 @@ -60,7 +60,7 @@ le Lindex... </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_day_cycle_options.xml b/indra/newview/skins/default/xui/fr/floater_day_cycle_options.xml index 15cc6cd1ba0bfc3f3ddc4fd7a3a38fbea9751ba1..951670ec7ea3c045ffb3f42bd6f333f9519eda25 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 @@ -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_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_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_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_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..ff4a40b1ce356c08701f17b438fb2a775621f182 100644 --- a/indra/newview/skins/default/xui/fr/menu_viewer.xml +++ b/indra/newview/skins/default/xui/fr/menu_viewer.xml @@ -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_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_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_nearby_media.xml b/indra/newview/skins/default/xui/fr/panel_nearby_media.xml index a1c4c92618fba6ed974876de9e5af95c66dd308c..6bf8a94c68676c5cc3d5880a431b715771e045c6 100644 --- a/indra/newview/skins/default/xui/fr/panel_nearby_media.xml +++ b/indra/newview/skins/default/xui/fr/panel_nearby_media.xml @@ -19,10 +19,17 @@ <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édia près de vous + </text> + <text name="show"> + Afficher : + </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="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_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 7e6e96aa4939ca3aaa4b261a37aff6982326b98e..64635fbac0a7330474989632452bf26077a44067 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_chat.xml @@ -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_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/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 c031762d4b81b87bafa6fed4c7e323dabbfe1be3..9bb18b15594866e04bd56165e17d57beaf4b2983 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> @@ -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é [NAME] [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"> + Donne [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 767f727d4040538fafe781806516fc07ef938d4a..495c24f5e9e822a2dea7cf60b79fc57ee103b2c3 100644 --- a/indra/newview/skins/default/xui/it/floater_about.xml +++ b/indra/newview/skins/default/xui/it/floater_about.xml @@ -1,5 +1,5 @@ <?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]] @@ -8,7 +8,7 @@ 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> @@ -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..f7d203d1e6ffc0da0e138a1735d586499e1802dd 100644 --- a/indra/newview/skins/default/xui/it/floater_about_land.xml +++ b/indra/newview/skins/default/xui/it/floater_about_land.xml @@ -81,10 +81,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,11 +128,12 @@ 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.string name="can_resell"> @@ -231,7 +234,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 +242,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 +250,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 +258,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 +306,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."/> @@ -386,9 +389,6 @@ Solamente terreni più grandi possono essere abilitati nella ricerca. </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> <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 +400,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,8 +418,10 @@ 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="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 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="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"> @@ -437,8 +437,8 @@ Media: <text name="Only Allow"> Accesso ristretto ai Residenti verificati con: </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 on File [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_animation_preview.xml b/indra/newview/skins/default/xui/it/floater_animation_preview.xml index f483b196248edbb7183d55a92e553467b41a7e98..c3ee23898c14a947394e1e4c0995daed81d3db68 100644 --- a/indra/newview/skins/default/xui/it/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/it/floater_animation_preview.xml @@ -106,6 +106,9 @@ 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> 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_textures.xml b/indra/newview/skins/default/xui/it/floater_avatar_textures.xml index e5ce07f3000d62bab04e54e824fcd99c102dc48e..b2c963929fed4da8677edbe942a1d0939b26b201 100644 --- a/indra/newview/skins/default/xui/it/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/it/floater_avatar_textures.xml @@ -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_bulk_perms.xml b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml index 26890dc2093afbb2eddbdc43866b6ba9b836d94f..12ebd8f114b53603755cc48eec8ade18bdf8ed13 100644 --- a/indra/newview/skins/default/xui/it/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml @@ -49,6 +49,6 @@ <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="OK" name="apply"/> <button label="Cancella" name="close"/> </floater> 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..79b8836f3e14962638a484fb26144f0f0ef1bdf3 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_currency.xml @@ -37,7 +37,7 @@ Calcolando... </text> <text name="buy_action"> - [NAME] [PRICE]L$ + [ACTION] </text> <text name="total_label"> Il mio saldo sarà @@ -46,7 +46,7 @@ [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. 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 e9c53347462f2b65ad65e1d55e6f5ea2ab74a0aa..5829fb2fc73dc3d689f429fdf6bc6755cffc7d1d 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="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"> + Hai selezionato una terra posseduta da un altro utente. +Prova a selezionare un'area 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> @@ -107,133 +236,4 @@ Questo lotto consiste in 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"> - Sei proprietario di [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"> - Acquista L$ [AMOUNT] per circa [LOCAL_AMOUNT], - </string> - <string name="parcel_meters"> - Questo lotto è di [AMOUNT] m² - </string> - <string name="premium_land"> - Questo terreno è premium, e costerà come [AMOUNT] m². - </string> - <string name="discounted_land"> - Questo terreno è scontato, e costerà come [AMOUNT] m². - </string> - <string name="meters_supports_object"> - [AMOUNT] m² -consente [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] -([PREZZO_PER_MQ] L$/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_camera.xml b/indra/newview/skins/default/xui/it/floater_camera.xml index 182f82f17ff6fee81509932e5b9ec854df4abec8..629d245ab629e78e993a7ed440509ca6ad95778c 100644 --- a/indra/newview/skins/default/xui/it/floater_camera.xml +++ b/indra/newview/skins/default/xui/it/floater_camera.xml @@ -10,22 +10,22 @@ Muovi la telecamera su e giù e a sinistra e destra </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="Guardare dall'avatar"/> <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..63859c01832c664753fcc6b8200d2529870c6a86 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,7 +24,7 @@ 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"/> diff --git a/indra/newview/skins/default/xui/it/floater_customize.xml b/indra/newview/skins/default/xui/it/floater_customize.xml index 63e08444cd85e3b567c04f991cb6649020972c98..1ace781a7ed88c5d07c2a4288a4b5f40c285e6d5 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> @@ -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 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 moficare questa vestibilità . </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 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="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" name="Alpha"> <text name="title"> [DESC] </text> @@ -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 nuova alpha" label_selected="Crea nuova alpha" name="Create New"/> <text name="no modify instructions"> - Non hai i permessi per moficare questa vestibilità . + Non hai i permessi per modificare questa vestibilità . </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 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="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_event.xml b/indra/newview/skins/default/xui/it/floater_event.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9355b6fcc7bad16eaa56b056e8e88cfb00d32f2 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_event.xml @@ -0,0 +1,48 @@ +<?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> + <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"> + 10/10/2010 + </text> + <text name="event_duration"> + 1 ora + </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"/> + </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_god_tools.xml b/indra/newview/skins/default/xui/it/floater_god_tools.xml new file mode 100644 index 0000000000000000000000000000000000000000..cdc77c71c24b7d640e25ec54287f69d36af1549a --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_god_tools.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="godtools floater" title="GOD TOOLS"> + <tab_container name="GodTools Tabs"> + <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_help_browser.xml b/indra/newview/skins/default/xui/it/floater_help_browser.xml index 9a158c5216dfb6abd73ca728f3fb6c1e305649cf..93da2a37c993a68d0a35d4805a20d91146324ae3 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.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..8981539f8fc1b7e7352a4f3866ddec646eccf562 100644 --- a/indra/newview/skins/default/xui/it/floater_im.xml +++ b/indra/newview/skins/default/xui/it/floater_im.xml @@ -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. 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_incoming_call.xml b/indra/newview/skins/default/xui/it/floater_incoming_call.xml index fc7b8de6f402e196ac782a2fb86f66c769cfe39a..22aed7a69cebd7ae8a7fab94a12cc5f1821362cf 100644 --- a/indra/newview/skins/default/xui/it/floater_incoming_call.xml +++ b/indra/newview/skins/default/xui/it/floater_incoming_call.xml @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <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 </floater.string> @@ -12,6 +15,9 @@ <floater.string name="VoiceInviteAdHoc"> ha aggiunto una chiamata in Voice Chat ad una conferenza in chat. </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? </text> diff --git a/indra/newview/skins/default/xui/it/floater_inventory.xml b/indra/newview/skins/default/xui/it/floater_inventory.xml index e332891ed2ebf1bd1b6ac6be448b5ec011d5f654..2aa67959885f5592eff5aa6692c0e29ad72868c7 100644 --- a/indra/newview/skins/default/xui/it/floater_inventory.xml +++ b/indra/newview/skins/default/xui/it/floater_inventory.xml @@ -1,13 +1,13 @@ <?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"> Completato 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..e5bd37450199b80be299b47e6c388c6229df7eb3 100644 --- a/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml +++ b/indra/newview/skins/default/xui/it/floater_live_lsleditor.xml @@ -1,7 +1,7 @@ <?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 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_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..543640319e60de2ac772f19c6827bd75cfff5734 100644 --- a/indra/newview/skins/default/xui/it/floater_moveview.xml +++ b/indra/newview/skins/default/xui/it/floater_moveview.xml @@ -21,8 +21,8 @@ <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""/> + <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)"/> </panel> 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 f179364080b46e5c20d0ab569505ef2ad9d9e353..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,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="outgoing call" title="CHIAMATA IN CORSO"> + <floater.string name="lifetime"> + 5 + </floater.string> <floater.string name="localchat"> Chat vocale nei dintorni </floater.string> @@ -21,6 +24,15 @@ <text name="noanswer"> 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"> Chiusura chat [CURRENT_CHAT]. </text> 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 97e04c8bf4e93e5a2dad9e53d2d9c1a898bb5864..37f549b5da077bafd80205a9fe27d2993bd490a6 100644 --- a/indra/newview/skins/default/xui/it/floater_pay_object.xml +++ b/indra/newview/skins/default/xui/it/floater_pay_object.xml @@ -15,7 +15,7 @@ </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"/> 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_preferences.xml b/indra/newview/skins/default/xui/it/floater_preferences.xml index a76b9e3e27d14bbb11db5c37cf8cd424b267860d..9854f993446898249c92de6f8c6266cc8180851e 100644 --- a/indra/newview/skins/default/xui/it/floater_preferences.xml +++ b/indra/newview/skins/default/xui/it/floater_preferences.xml @@ -6,7 +6,7 @@ <panel label="Generale" name="general"/> <panel label="Grafica" name="display"/> <panel label="Privacy" name="im"/> - <panel label="Suono" name="audio"/> + <panel label="Audio e media" name="audio"/> <panel label="Chat" name="chat"/> <panel label="Notifiche" name="msgs"/> <panel label="Configurazione" name="input"/> 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..41d4fdfce2e3266314d6dd8314def40a7c5ac5b5 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> 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..726152d147eb07b88fab4a560f22226c39ba4d48 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_notecard.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_notecard.xml @@ -1,10 +1,10 @@ <?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] 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..7f437c87dd6d9e05fb4b64d130251b4b057bbeca 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_sound.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_sound.xml @@ -6,6 +6,6 @@ <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="Riproduci in Second Life" label_selected="Riproduci in Second Life" 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"/> </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..e59f707ce73ca36bc2a3df0c9d4b162e894a2efb 100644 --- a/indra/newview/skins/default/xui/it/floater_preview_texture.xml +++ b/indra/newview/skins/default/xui/it/floater_preview_texture.xml @@ -12,6 +12,9 @@ <text name="dimensions"> [WIDTH]px x [HEIGHT]px </text> + <text name="aspect_ratio"> + Antreprima rapporto di visualizzazione + </text> <combo_box name="combo_aspect_ratio" tool_tip="Anteprima del rapporto d'aspetto impostato"> <combo_item name="Unconstrained"> Libero @@ -38,7 +41,7 @@ 2:1 </combo_item> </combo_box> - <button label="OK" name="keep"/> - <button label="Cancella" name="discard"/> + <button label="OK" name="Keep"/> + <button label="Elimina" name="Discard"/> <button label="Salva come:" name="save_tex_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_report_abuse.xml b/indra/newview/skins/default/xui/it/floater_report_abuse.xml index 2692779e7c060bf31ebc95d78423047d6fd18397..4827cc739d1e7552149864d1d51b013ab80698ec 100644 --- a/indra/newview/skins/default/xui/it/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/it/floater_report_abuse.xml @@ -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"/> 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_select_key.xml b/indra/newview/skins/default/xui/it/floater_select_key.xml index 181b7d529203fdd8f8098db258662e3ef0db7394..c8c0f94c4627768cea949e41fbf55b8002fd1695 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 un tasto per definirlo come comando di attivazione della funzione Parla. </text> </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..3dc7ee010ee2054055ecae0830e02014bc8f0a4e 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> + <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..9399741b016ce39cb40de98080a71f4b3051c624 100644 --- a/indra/newview/skins/default/xui/it/floater_snapshot.xml +++ b/indra/newview/skins/default/xui/it/floater_snapshot.xml @@ -4,12 +4,12 @@ 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"/> @@ -19,8 +19,8 @@ <flyout_button_item label="Salva come..." 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_sys_well.xml b/indra/newview/skins/default/xui/it/floater_sys_well.xml index 057d3657d0497b7cebee87d910d3cd952fe7755d..1acdfa28150149d6026391da7efad8b9bcad4f88 100644 --- a/indra/newview/skins/default/xui/it/floater_sys_well.xml +++ b/indra/newview/skins/default/xui/it/floater_sys_well.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="sys_well_window" title="NOTIFICHE"> <string name="title_im_well_window"> - SESSIONE IM + CONVERSAZIONI </string> <string name="title_notification_well_window"> NOTIFICHE 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..06418fa0ee8a75bd1c3b6462aeda8335c0706a6a 100644 --- a/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml +++ b/indra/newview/skins/default/xui/it/floater_texture_ctrl.xml @@ -1,20 +1,20 @@ <?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"/> <string name="pick title"> 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 bc7f2197d0117c392f06d93d02b8cf45d5908037..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"> - Sei pregato di leggere attentamente i seguenti Termini del servizio. Per continuare l'accesso a [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..c2375f357adf36a02f8ffa16df321c4052504103 100644 --- a/indra/newview/skins/default/xui/it/floater_voice_controls.xml +++ b/indra/newview/skins/default/xui/it/floater_voice_controls.xml @@ -13,13 +13,14 @@ Chiama 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_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..a8e07f73a44f537ff8ca88de26115a0c2f8cf742 100644 --- a/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml +++ b/indra/newview/skins/default/xui/it/floater_whitelist_entry.xml @@ -1,5 +1,5 @@ <?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> 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..d4e5c73746d42a16fabba8a1fd5afa05c0e68993 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,30 @@ 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> + <text name="me_label"> Io </text> - <check_box label="Residenti" name="people_chk"/> - <check_box label="Punto informativo" name="infohub_chk"/> - <text name="infohub_label"> - Infohub + <text name="person_label"> + Persona </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 + <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"/> - <text name="Home_label"> - Casa - </text> - <text name="events_label"> - Eventi: + <text name="pg_label"> + Generale </text> - <check_box label="PG" name="event_chk"/> - <check_box initial_value="true" label="Mature" name="event_mature_chk"/> <text name="mature_label"> - Mature + Moderato </text> - <check_box label="Adult" name="event_adult_chk"/> - </panel> - <panel - name="layout_panel_3"> - <text name="find_on_map_label"> - 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"/> - </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> - <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"/> - </panel> - <panel - name="layout_panel_5"> - <text name="zoom_label"> - Zoom + <text name="adult_label"> + Adulto </text> </panel> - <panel - name="layout_panel_6"> - <slider label="Zoom" name="zoom slider"/> + <panel> + <button name="Clear" tool_tip="Elimina le linee di monitoraggio e reimposta la mappa"/> </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..cfc1d66c8765653d0835a48f107f1afc691294c3 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="Altro" 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_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..d89741f8d092fcb7f2c006e40d923945dda3908b 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="Togli >" name="Take Off >"> <context_menu label="Abiti >" name="Clothes >"> - <menu_item_call label="Gonna" name="Shirt"/> + <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"/> <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 8e51af0d9f71694cb749a21a3b7e0758b13aec34..9662f6f93737c5b307e283c2794966cc6fe0802c 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory.xml @@ -10,7 +10,7 @@ <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_item_call label="Nuova Maglietta" name="New Shirt"/> @@ -46,9 +46,10 @@ <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"/> @@ -57,13 +58,11 @@ <menu_item_call label="Incolla" name="Paste"/> <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 punto di riferimento" name="About Landmark"/> - <menu_item_call label="Esegui inworld" name="Animation Play"/> + <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 e458944f79353b08af560d702c280115324975d5..05f53f44ba77c4618450d17ea48d3be524158da0 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory_add.xml @@ -8,7 +8,7 @@ </menu> <menu_item_call label="Nuova cartella" name="New Folder"/> <menu_item_call label="Nuovo script" name="New Script"/> - <menu_item_call label="Nuovo appunto" 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_item_call label="Nuova camicia" name="New Shirt"/> 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..e14f5010dc5e682dd6972d43c65b1e0f370b46b6 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 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 label="Test interfaccia utente" name="UI Tests"/> + <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_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..a830218c2d09b686acd19137c2436c1fa815dfae 100644 --- a/indra/newview/skins/default/xui/it/menu_object.xml +++ b/indra/newview/skins/default/xui/it/menu_object.xml @@ -4,21 +4,21 @@ <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"/> + <menu_item_call label="Siediti qui" name="Object Sit"/> + <menu_item_call label="Profilo dell'oggetto" name="Object Inspect"/> <context_menu label="Metti >" 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> - <context_menu label="Togli >" name="Remove"> + <context_menu label="Rimuovi >" name="Remove"> <menu_item_call label="Prendi" name="Pie Object Take"/> - <menu_item_call label="Denuncia abuso" name="Report Abuse..."/> + <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="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..9aa4212d35ea295f6ccbdd39a659152d51ae3b2f 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,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <context_menu name="Participant List 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="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="Disattiva 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_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> 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_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_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..e6d04793c9063ff9c0308fce4985a79dffa6a301 100644 --- a/indra/newview/skins/default/xui/it/menu_viewer.xml +++ b/indra/newview/skins/default/xui/it/menu_viewer.xml @@ -2,67 +2,67 @@ <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_call label="Mostra inventario 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="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_item_check label="Multimedia vicini" name="Nearby Media"/> </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_item_check label="Sposta" name="Movement Controls"/> + <menu_item_check label="Visualizza" name="Camera Controls"/> + <menu_item_call label="Informazioni sui terreni" name="About Land"/> + <menu_item_call label="Regione/proprietà immobiliare" name="Region/Estate"/> + <menu_item_call label="Acquista 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="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> - <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 label="Punti di riferimento" name="Landmarks"> + <menu_item_call label="Crea punto di riferimento qui" name="Create Landmark Here"/> + <menu_item_call label="Imposta come Casa mia" name="Set Home to Here"/> </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="Home" 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="Istantanea" name="Take Snapshot"/> <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="Usa l'ora 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 +71,91 @@ <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_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 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_item_check label="Modifica le parti collegate" name="Edit Linked Parts"/> + <menu_item_call label="Definisci diritti di caricamento predefiniti" name="perm prefs"/> + <menu_item_check label="Mostra autorizzazioni avanzate" 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_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 cerchiando" 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_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> <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_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> - <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_check label="Imposta ncome assente dopo 30 minuti" name="Go Away/AFK When Idle"/> + <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_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 +165,161 @@ <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_item_check label="Mostra IM nella Chat nei dintorni" name="IMInChat"/> <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_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> - <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_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..c087d259a8e9baf7768c4f23fb7296e49ffea2f7 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,6 +41,7 @@ <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"> @@ -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="Sì"/> + </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"> @@ -150,14 +166,21 @@ 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. @@ -324,6 +347,10 @@ Sei sicuro di voler continuare? 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,14 +368,6 @@ 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]. </notification> @@ -424,18 +443,18 @@ 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"/> </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"/> @@ -609,6 +628,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> @@ -657,7 +680,7 @@ 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"> @@ -706,8 +729,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"> @@ -755,13 +778,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à . @@ -883,9 +899,8 @@ Unisci il terreno? Questo normalmente è un problema temporaneo. Riadatta e salva i vestiti e riprova fra qualche minuto. </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,6 +1058,7 @@ 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. @@ -1318,11 +1334,14 @@ La Chat e gli IM verranno nascosti. Gli IM riceveranno la tua risposta di Non Di <usetemplate ignoretext="Cambio il mio stato in 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? <form name="form"> @@ -1384,7 +1403,7 @@ 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? + Sei sicuro di volere il teleport a <nolink>[LOCATION]</nolink>? <usetemplate ignoretext="Conferma il teleport verso un Landmark" name="okcancelignore" notext="Annulla" yestext="Teleportati"/> </notification> <notification name="TeleportToPick"> @@ -1587,8 +1606,10 @@ 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]. @@ -1707,9 +1728,9 @@ Trasferisci gli elementi nell'inventario? <usetemplate ignoretext="Conferma Uscita" 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. @@ -1945,7 +1966,6 @@ Inseriscilo in una pagina web per dare ad altri un accesso facile a questa ubica </notification> <notification name="UnableToLoadGesture"> Impossibile caricare la gesture [NAME]. -Riprova. </notification> <notification name="LandmarkMissing"> Landmark non trovato nel database. @@ -2035,9 +2055,9 @@ Clicca su un landmark per selezionarlo e quindi clicca 'Teleport' sul (Puoi anche fare doppio-click sul landmark oppure cliccarlo con il tasto destro 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. @@ -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,7 +2141,7 @@ 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. @@ -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,10 +2338,15 @@ 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"/> @@ -2398,14 +2426,6 @@ Consenti questa richiesta? <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! @@ -2413,58 +2433,17 @@ Il tuo saldo in L$ sarà aggiornato al termine dell'elaborazione. Se l&apos 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. - </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. - -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. - </notification> <notification name="MaxListSelectMessage"> È possibile selezionare solo fino a [MAX_SELECT] oggetti da questa lista. </notification> @@ -2571,6 +2550,10 @@ 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 name="okcancelignore" notext="Annulla" yestext="OK"/> + </notification> <notification name="AttachmentSaved"> L'Allegato (Attachment) è stato salvato. </notification> 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 b55a786719b162f6811a59fe448f8885a04afb5f..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="Regolazione voce" 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 c79d73b339f211d2f332ced68089f2682fe49d1e..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"/> + <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..ccefc91ce18911f70a0fc20e96d874e0f8858738 100644 --- a/indra/newview/skins/default/xui/it/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/it/panel_bottomtray.xml @@ -7,8 +7,13 @@ Mostra/nascondi il pannello voice control </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/nascondi gestures"/> </layout_panel> <layout_panel name="movement_panel"> <button label="Sposta" name="movement_btn" tool_tip="Mostra/nascondi i controlli del movimento"/> @@ -19,5 +24,15 @@ <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..839fd81f50090373ccdb7a01d58579abfb0259bc 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,18 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="panel_classified_info"> + <panel.string name="l$_price"> + L$ [PRICE] + </panel.string> <text name="title" value="Info sugli Annunci"/> <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]"/> + <text_editor name="classified_name" value="[nome]"/> + <text_editor name="classified_location" value="[caricando...]"/> + <text_editor name="content_type" value="[tipo di contenuto]"/> + <text_editor 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="price_for_listing" tool_tip="Prezzo di listino."/> + <text_editor name="classified_desc" value="[descrizione]"/> </panel> </scroll_container> <panel name="buttons"> 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 c1a9ce7dd2d52f5cfd98bfb3f675092d3e491af7..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,5 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <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 </text> @@ -22,7 +25,7 @@ </panel> </scroll_container> <panel label="bottom_panel" name="bottom_panel"> - <button label="Salva [WHAT]" name="save_changes_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..92ec6f945088e0d07bec75e7d992c1559e555b31 100644 --- a/indra/newview/skins/default/xui/it/panel_edit_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_edit_profile.xml @@ -34,9 +34,12 @@ </text> <check_box label="Mostrami nei risultati della ricerca" name="show_in_search_checkbox"/> <text name="title_acc_status_text" value="Mio Account:"/> + <text_editor name="acc_status_text" value="Residente. No payment info on file."/> <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:"/> + <panel name="partner_data_panel"> + <name_box initial_value="(recupero)" name="partner_text"/> + </panel> <text name="partner_edit_link" value="[[URL] Modifica]"/> </panel> </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_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_friends.xml b/indra/newview/skins/default/xui/it/panel_friends.xml index ec9d69e65e800290484366a24b0ab6ca05e40555..cfe162a67bfd5fe1fd29a3356b65c6a4dd3d2b66 100644 --- a/indra/newview/skins/default/xui/it/panel_friends.xml +++ b/indra/newview/skins/default/xui/it/panel_friends.xml @@ -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 a1b19b58552204a785184cca4610b23c15a9ecaf..e21f9d2049078f56f72c33eebf3fe636ee25cae7 100644 --- a/indra/newview/skins/default/xui/it/panel_group_general.xml +++ b/indra/newview/skins/default/xui/it/panel_group_general.xml @@ -11,22 +11,40 @@ Muovi il tuo mouse sopra le opzioni per maggiore 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="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"> - Il mio titolo + Il mio titolo: </text> <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"/> + <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"/> 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 a439c3ddb56fc496db0a7cde848ebc7f0321c80e..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,7 +1,7 @@ <?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 modifiche non salvate nella scheda attuale + Ci sono modifiche non salvate </panel.string> <panel.string name="want_apply_text"> Vuoi salvare le modifiche? @@ -12,25 +12,24 @@ <panel.string name="group_join_free"> Gratis </panel.string> - <text name="group_name" value="(Caricamento in corso...)"/> - <line_editor label="Scrivi qui il nome del gruppo" name="group_name_editor"/> - <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"/> - <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> - <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..346945baffdc998f9850d2e8b44920172bcb1919 100644 --- a/indra/newview/skins/default/xui/it/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/it/panel_group_invite.xml @@ -7,16 +7,14 @@ (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> 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..0ad4d9cd02f698e1cd3c5d637fe1b430dc989ea6 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,64 +1,62 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terra & L$" name="land_money_tab"> - <string name="help_text"> + <panel.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"> + </panel.string> + <panel.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"> + </panel.string> + <panel.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> + <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"> + </panel.string> + <panel.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 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"> 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..e1e397392fa29592eca9b0f2066cf389e11429d1 100644 --- a/indra/newview/skins/default/xui/it/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/it/panel_group_notices.xml @@ -40,7 +40,7 @@ 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="Rimuovi" label_selected="Rimuovi allegato" name="remove_attachment" tool_tip="Rimuovi allegato dal tuo avviso"/> <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."/> </panel> @@ -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..ca88723b023a4a8a327c1aa879072d402c463aec 100644 --- a/indra/newview/skins/default/xui/it/panel_group_notify.xml +++ b/indra/newview/skins/default/xui/it/panel_group_notify.xml @@ -4,5 +4,5 @@ <text name="title" value="Nome di chi spedisce / Nome del Gruppo"/> </panel> <text name="attachment" value="Attachment"/> - <button label="Ok" name="btn_ok"/> + <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 1a2934b7ffe37068db24449cb3553643391a9876..78b189656f3b1c3eaa8f02a15a432a0293db2116 100644 --- a/indra/newview/skins/default/xui/it/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/it/panel_group_roles.xml @@ -1,7 +1,7 @@ <?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 le modifiche? @@ -17,7 +17,7 @@ cliccando sui loro nomi. <name_list bottom_delta="-105" height="104" name="member_list"> <name_list.columns label="Socio" name="name"/> <name_list.columns label="Donazioni" name="donated"/> - <name_list.columns label="Online" 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"/> @@ -30,7 +30,7 @@ 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"> Inv_FolderClosed @@ -64,13 +64,13 @@ in questo gruppo. C'è una vasta gamma di 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) @@ -84,7 +84,7 @@ in questo gruppo. C'è una vasta gamma di abilità . <text name="static4"> Ruoli assegnati </text> - <check_box label="Visualizza membri" name="role_visible_in_list" tool_tip="Imposta nella scheda Generale per i membri di questo ruolo la visibilità da parte dei residenti esterni al 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> 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..63fc62809ecdad7ba24b121f10227466773b20ef 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="share_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..3e87a9b2c196d361f17038a4f9aee3029257d0c8 100644 --- a/indra/newview/skins/default/xui/it/panel_landmarks.xml +++ b/indra/newview/skins/default/xui/it/panel_landmarks.xml @@ -2,7 +2,7 @@ <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_landmarks" title="I miei punti di riferimento"/> <accordion_tab name="tab_inventory" title="Mio Inventario"/> <accordion_tab name="tab_library" title="Libreria"/> </accordion> diff --git a/indra/newview/skins/default/xui/it/panel_login.xml b/indra/newview/skins/default/xui/it/panel_login.xml index aec58738b80295564cedbed2d2be36bcc795e765..eeed4650805bb37b922a441d45c9f4476dbe0c68 100644 --- a/indra/newview/skins/default/xui/it/panel_login.xml +++ b/indra/newview/skins/default/xui/it/panel_login.xml @@ -6,33 +6,29 @@ <panel.string name="forgot_password_url"> http://secondlife.com/account/request.php?lang=it </panel.string> - <panel name="login_widgets"> - <text name="first_name_text"> - Nome: - </text> - <line_editor name="first_name_edit" tool_tip="[SECOND_LIFE] Nome"/> - <text name="last_name_text"> - Cognome: - </text> - <line_editor name="last_name_edit" tool_tip="[SECOND_LIFE] Cognome"/> - <text name="password_text"> - Password: - </text> - <button label="Accedi" label_selected="Accedi" name="connect_btn"/> - <text name="start_location_text"> - Luogo di partenza: - </text> - <combo_box name="start_location_combo"> - <combo_box.item label="La mia ultima ubicazione" name="MyLastLocation"/> - <combo_box.item label="La mia casa" name="MyHome"/> - <combo_box.item label="<Scrivi nome regione>" name="Typeregionname"/> - </combo_box> - <check_box label="Ricorda password" name="remember_check"/> - <text name="create_new_account_text"> - Crea nuovo account - </text> - <text name="forgot_password_text"> - Hai dimenticato il nome o la password? - </text> - </panel> + <layout_stack name="login_widgets"> + <layout_panel name="login"> + <text name="first_name_text"> + Nome: + </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="Ricorda" name="remember_check"/> + <text name="start_location_text"> + Inizia da: + </text> + <combo_box name="start_location_combo"> + <combo_box.item label="Casa mia" name="MyHome"/> + </combo_box> + <button label="Accedi" name="connect_btn"/> + </layout_panel> + <layout_panel name="links"> + <text name="create_new_account_text"> + Iscriviti + </text> + <text name="login_help"> + Ti serve aiuto con la fase di accesso? + </text> + </layout_panel> + </layout_stack> </panel> 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 8c2479a01919fe9e137e60047d1824c9c0e22ae8..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 opzioni addizionali"/> - <button name="add_btn" tool_tip="Aggiungi nuovo elemento"/> - <dnd_button name="trash_btn" tool_tip="Rimuovi l'articolo 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"/> @@ -32,7 +28,7 @@ <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="Nuovo appunto" 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_item_call label="Nuova camicia" name="New Shirt"/> @@ -61,4 +57,14 @@ <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..7a0805b936120107cefb2bb45051561ee8857a0e 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"> <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_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..5969c7bdba56582ea4888fd0d725fa4b476b3be9 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"/> <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..2f0d40bb49733852d7802be4e7c5413eb31162bf 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"/> + <pull_button name="back_btn" tool_tip="Ritorna al luogo precedente"/> + <pull_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"/> <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"> + <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 più dei miei Preferiti"/> </favorites_bar> </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..cb805dae4953150b42afb4f41cb583495ee4f774 100644 --- a/indra/newview/skins/default/xui/it/panel_notes.xml +++ b/indra/newview/skins/default/xui/it/panel_notes.xml @@ -13,7 +13,7 @@ </scroll_container> </panel> <panel name="notes_buttons_panel"> - <button label="Aggiungi" name="add_friend" tool_tip="Offrire amicizia ad un residente"/> + <button label="Aggiungi amico" name="add_friend" tool_tip="Offri amicizia a questo residente"/> <button label="IM" name="im" tool_tip="Apri una sessione di 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"/> 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..48fc4302c1251a147059047fdecbd160d6de3c8b 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,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel name="Outfits"> +<panel label="Cose" name="Outfits"> <accordion name="outfits_accordion"> <accordion_tab name="tab_cof" title="Vestiario attuale"/> - <accordion_tab name="tab_outfits" title="Mio Vestiario"/> + <accordion_tab name="tab_outfits" title="Il mio vestiario"/> </accordion> </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..7cfb29f1280ea4571fe31082f342ef4ca929d51a 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 @@ -4,6 +4,6 @@ <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="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..2a1da7e8a4d3a7df11517658f9d7bca6cc279795 100644 --- a/indra/newview/skins/default/xui/it/panel_people.xml +++ b/indra/newview/skins/default/xui/it/panel_people.xml @@ -1,30 +1,30 @@ <?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"/> <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"> <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> </panel> <panel label="GRUPPI" name="groups_panel"> @@ -37,17 +37,17 @@ <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 foto, gruppi, e informazioni di altri residenti"/> + <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"/> </panel> </panel> 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..022901a55cb97ca7bedc27c18bc1868a333a3019 100644 --- a/indra/newview/skins/default/xui/it/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_place_profile.xml @@ -6,7 +6,7 @@ <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="title_teleport_history" value="Cronologia Teleport"/> <string name="not_available" value="(N\D)"/> <string name="unknown" value="(sconosciuto)"/> <string name="public" value="(publico)"/> @@ -41,62 +41,17 @@ <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"> - <panel name="parcel_characteristics_panel"> - <text name="rating_label" value="Valutazione:"/> - <text name="rating_value" value="sconosciuto"/> - <text name="voice_label" value="Voice:"/> - <text name="voice_value" value="On"/> - <text name="fly_label" value="Vola:"/> - <text name="fly_value" value="On"/> - <text name="push_label" value="Spingi:"/> - <text name="push_value" value="Off"/> - <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"/> - </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_owner_label" value="Proprietario:"/> - <text name="region_group_label" value="Gruppo:"/> - <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="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="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="subdivide_label" value="Suddividi/Unisci abilità :"/> - <text name="resale_label" value="Rivendi abilità :"/> - <text name="sale_to_label" value="In vendita a:"/> - </panel> - </accordion_tab> + <accordion_tab name="parcel_characteristics_tab" title="Parcel"/> + <accordion_tab name="region_information_tab" title="Regione"/> + <accordion_tab name="estate_information_tab" title="Proprietà immobiliare"/> + <accordion_tab name="sales_tab" title="In vendita"/> </accordion> </panel> </scroll_container> diff --git a/indra/newview/skins/default/xui/it/panel_places.xml b/indra/newview/skins/default/xui/it/panel_places.xml index 8e50a8b9d96f9a19fc099378dfa26cd0ca223832..b147fe9d3fc58e047a2e5b33f036cff63c05e859 100644 --- a/indra/newview/skins/default/xui/it/panel_places.xml +++ b/indra/newview/skins/default/xui/it/panel_places.xml @@ -2,13 +2,14 @@ <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"/> + <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="Cancella" 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 bb05d549cc0f7027780f44aa510d1820a5791e74..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 bolla" 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"> - Fotocamera: - </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: + 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"/> - <text name="heading3"> - Avatar: - </text> <check_box label="Mostra in modalità Mouselook" name="first_person_avatar_visible"/> <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="Mostra errori degli script" name="show_script_errors"/> + <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="Attiva/disattiva modalità microfono quando premo il tasto di comando Parla:" 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."/> + <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"/> + <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 e5d57cffbe6d5c7e7acbf0b368efc46669f44f87..fd1fd57761bec461c12035b7a77918410f852cea 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_alerts.xml @@ -4,11 +4,11 @@ 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 582ffd43f3c45d896d5fcbb4c0ed25eb49f4c735..b2f4c4d335cd496bc93fd048bef3c93003cf998b 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_chat.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Text Chat" name="chat"> <radio_group name="chat_font_size"> - <radio_item label="Piccola" name="radio"/> - <radio_item label="Media" 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> <color_swatch label="Tuo" name="user"/> <text name="text_box1"> @@ -39,8 +39,14 @@ </text> <check_box initial_value="true" label="Simula la battitura tasti quando scrivi" name="play_typing_animation"/> <check_box label="Quando sono OFF-LINE, spediscimi gli IM in una e-mail" 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"/> + <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 7463c88d96d25539fdcd89b61792faab56f41a12..6bf857366bf95a5348008695479d1cc077d2d194 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_general.xml @@ -40,9 +40,9 @@ 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 in piccolo" name="small_avatar_names_checkbox"/> @@ -50,14 +50,17 @@ <text name="effects_color_textbox"> 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 assenza: </text> - <spinner label="Assente dopo:" name="afk_timeout_spinner"/> - <text name="seconds_textbox"> - secondi - </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..1fc75b2857358ac088f9abd2fcbc9799cbff2452 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml @@ -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: 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..62be52c0523b4cb336bc02ad89517be91e41e9d6 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<panel label="Input & Camera" name="Input panel"> +<panel label="Impostazione" name="Input panel"> <button bottom_delta="-40" label="Altri Dispositivi" name="joystick_setup_button" width="165"/> <text name="Mouselook:"> Mouselook: @@ -18,29 +18,32 @@ kbps </text> <check_box label="Custom port" name="connection_port_enabled"/> - <spinner label="Port number:" name="web_proxy_port"/> + <spinner label="Numero porta:" name="connection_port"/> <text name="cache_size_label_l"> Cache size </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="Browse" label_selected="Browse" name="set_cache"/> + <button label="Resetta" 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="Usa il default system web browser per aiuto, web links, etc. Non raccomandato se utilizzi lo schermo pieno(full screen)." value="1"/> + <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]." 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="Nome o indirizzo IP del proxy che vorresti usare"/> + <spinner label="Port number:" 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 2ac60412ff5e0ac3c8d3ce1813251e38ecb6720c..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,14 +1,21 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Suoni" name="Preference Media panel"> <slider label="Comando volume centrale" name="System Volume"/> - <check_box initial_value="true" label="Spegni suono se minimizzato" name="mute_when_minimized"/> - <slider label="Ambiente" name="Wind Volume"/> + <check_box initial_value="true" label="Disattiva audio quando minimizzato" name="mute_when_minimized"/> <slider label="Pulsanti" name="UI Volume"/> - <slider label="Multimediale" name="Media 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="Voce" name="enable_voice_check"/> - <slider label="Voice" name="Voice 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> 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 9e95fbc600a5750e3cafdb375711f1145d11765f..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,6 +1,47 @@ <?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="URL multimedia"/> <layout_stack name="media_address_url_icons"> @@ -15,14 +56,24 @@ <layout_panel name="media_play_position"> <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 elemento multimediale"/> <slider name="volume_slider" tool_tip="Volume multimedia"/> </layout_panel> - </layout_stack> - <layout_stack> - <panel name="media_progress_indicator"> - <progress_bar name="media_progress_bar" tool_tip="L'elemento multimediale è in caricamento"/> - </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> </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..ae9e8c1f7516e54f79f3796b8aeb84dda6d16042 100644 --- a/indra/newview/skins/default/xui/it/panel_profile.xml +++ b/indra/newview/skins/default/xui/it/panel_profile.xml @@ -21,28 +21,28 @@ <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:"/> + <text name="title_rw_descr_text" value="Mondo reale:"/> </panel> <text name="me_homepage_text"> - Homepage: + Home page: </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_member_text" value="Iscritto dal:"/> + <text name="title_acc_status_text" value="Stato account:"/> + <text name="acc_status_text" value="Residente. Nessuna informazione di pagamento disponibile."/> <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="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 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"/> + <button label="Modifica profilo" name="edit_profile_btn"/> + <button label="Modifica aspetto fisico" name="edit_appearance_btn"/> </panel> </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..f7aeef60b98eff668e8c16f9a760dc7244ea378b 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 inserisci un biglietto per cambiare il Regolamento di questa proprietà immobiliare. </text> <text name="region_section_lbl"> Regione 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 35d683aa9b8c785461b7c5f6600292f796d6157a..d5fe7611b40b7b175513ad7ff4d25fbf4a8011dc 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"> - Consenti l'accesso soltanto ai residenti verificati tramite: + Limita l'accesso agli account verificati con: </text> - <check_box label="Informazioni di pagamento in archivio" name="limit_payment" tool_tip="Espelli residenti non identificati"/> - <check_box label="Verifica 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"/> 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..28b9759a64cd7efc509d94e399799271a5888a68 --- /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 utente..." name="kick_btn"/> + <button label="Teleport a Casa tutti gli utenti..." 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..607ece5fa4926fee5b4ba86a3ebe209d5bb1a2e3 100644 --- a/indra/newview/skins/default/xui/it/panel_region_texture.xml +++ b/indra/newview/skins/default/xui/it/panel_region_texture.xml @@ -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..281c3fbe24d75e196a6edd8f0f726c1e5296a63b 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,25 @@ <!-- 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="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="Trova amici, contatti e persone nelle vicinanze." name="sidebar_people" tab_title="People"> <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="Informazioni sul gruppo" name="panel_group_info_sidetray"/> + <panel label="Residenti e oggetti bloccati" name="panel_block_list_sidetray"/> </panel_container> </sidetray_tab> - <sidetray_tab description="Trova luoghi dove andare e luoghi già visitati." label="Luoghi" name="sidebar_places"> + <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="Modifica il tuo profilo pubblico e le foto." name="sidebar_me"> + <sidetray_tab description="Modifica il tuo profilo pubblico e i preferiti." name="sidebar_me" tab_title="My Profile"> <panel label="Io" name="panel_me"/> </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="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> - <sidetray_tab description="Curiosa nel tuo inventario." name="sidebar_inventory"> - <panel label="Modifica Inventario" name="sidepanel_inventory"/> + <sidetray_tab description="Sfoglia il tuo inventario." name="sidebar_inventory" tab_title="My Inventory"> + <panel label="Modifica inventario" name="sidepanel_inventory"/> </sidetray_tab> </side_tray> 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..1b25dabe0aa8bde175f9d897251f057727fc08d9 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$"/> + <button label="" label_selected="" name="buycurrency" tool_tip="Il mio saldo"/> + <button label="Compra L$" name="buyL" tool_tip="Clicca per comprare più L$"/> <text name="TimeText" tool_tip="Ora attuale (Pacific)"> - 12:00 AM + 24:00, ora del Pacifico </text> + <button name="media_toggle_btn" tool_tip="Attiva/ferma tutti i media (musica, video, pagine Web)"/> <button name="volume_btn" tool_tip="Controllo 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..d3ff722c843f9de8ac0595fc4152ef567f2bb0e9 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 ulteriori opzioni"/> + </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/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..e4f97eacc69d2324219c939c7bd4a8987ae8e0dd 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="Caratteristiche dell'articolo in inventario"> <panel.string name="unknown"> - (Sconosciuto) + (sconosciuto) </panel.string> <panel.string name="public"> (pubblico) @@ -10,7 +10,7 @@ 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] @@ -24,7 +24,7 @@ Descrizione: </text> <text name="LabelCreatorTitle"> - Creatore: + Ideatore: </text> <button label="Profilo..." name="BtnCreator"/> <text name="LabelOwnerTitle"> @@ -35,7 +35,7 @@ Acquisito: </text> <text name="LabelAcquiredDate"> - Wed May 24 12:50:46 2006 + mer 24 maggio 12:50:46 2006 </text> <text name="OwnerLabel"> Tu: @@ -52,7 +52,7 @@ </text> <check_box label="Condividi" name="CheckShareWithGroup"/> <text name="NextOwnerLabel"> - Prossimo Proprietario: + Proprietario successivo: </text> <check_box label="Modifica" name="CheckNextOwnerModify"/> <check_box label="Copia" name="CheckNextOwnerCopy"/> 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..fc18e4fceebc63684eea34bc08b65cf41192dae1 100644 --- a/indra/newview/skins/default/xui/it/sidepanel_task_info.xml +++ b/indra/newview/skins/default/xui/it/sidepanel_task_info.xml @@ -1,5 +1,5 @@ <?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 </panel.string> @@ -36,84 +36,61 @@ <panel.string name="Sale Mixed"> Vendita assortita </panel.string> - <panel name="properties_panel" label=""> - <text name="Name:"> - Nome: + <text name="title" value="Profilo dell'oggetto"/> + <text name="where" value="(in Second Life)"/> + <panel label=""> + <text name="CreatorNameLabel"> + Ideatore: </text> - <text name="Description:"> - Descrizione: + <text name="Creator Name"> + Erica Linden </text> - <text name="Creator:"> - Creatore: - </text> - <text name="Owner:"> - Proprietario: - </text> - <text name="Group:"> + <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."/> - <text name="label click action"> - Clicca 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="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"/> + <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"/> </panel> </panel> diff --git a/indra/newview/skins/default/xui/it/strings.xml b/indra/newview/skins/default/xui/it/strings.xml index 910e6e0960f94bb9ce8a8e81934c0a1f67a619f6..2cde4be8892d7f553f4e18c4e77e85bbfc80b62e 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,33 @@ <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="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 +266,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 +290,6 @@ <string name="AvatarNameWaiting"> (in attesa) </string> - <string name="AvatarNameHippos"> - (hippos) - </string> <string name="GroupNameNone"> (nessuno) </string> @@ -267,19 +336,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 +378,7 @@ immagine targa </string> <string name="trash"> - cestino + Cestino </string> <string name="jpeg image"> immagine jpeg @@ -329,6 +398,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link alla cartella + </string> <string name="AvatarAway"> Assente </string> @@ -546,7 +618,7 @@ Si </string> <string name="texture_loading"> - In Caricamento... + Caricamento in corso... </string> <string name="worldmap_offline"> Offline @@ -581,6 +653,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 +759,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 +792,7 @@ Scarpe </string> <string name="socks"> - Calze + Calzini </string> <string name="jacket"> Giacca @@ -729,7 +804,7 @@ Maglietta intima </string> <string name="underpants"> - slip + Slip </string> <string name="skirt"> Gonna @@ -744,16 +819,16 @@ non valido </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 +837,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 +846,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 +885,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 +944,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 +995,25 @@ di questa texture in inventario. Preferiti </string> <string name="InvFolder Current Outfit"> - Outfit attuale + Vestiario 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 +1040,7 @@ di questa texture in inventario. Luce </string> <string name="KBShift"> - Shift + Maiusc </string> <string name="KBCtrl"> Ctrl @@ -1112,13 +1190,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 +1205,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 +1217,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 +1232,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 +1274,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 +1309,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 +1335,7 @@ di questa texture in inventario. Proprietà principale </string> <string name="IMMainland"> - mainland + continente </string> <string name="IMTeen"> teen @@ -1266,20 +1344,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 +1518,16 @@ 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="MuteByName"> - (per nome) + (in base al nome) </string> <string name="MuteAgent"> - (residente) + (Residente) </string> <string name="MuteObject"> (oggetto) @@ -1302,18 +1536,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 +1558,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 +1622,7 @@ di questa texture in inventario. Saldo </string> <string name="GroupMoneyCredits"> - Crediti + Ringraziamenti </string> <string name="GroupMoneyDebits"> Debiti @@ -1391,32 +1634,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 +1677,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 +1704,7 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Destra </string> <string name="Back"> - Dietro + Indietro </string> <string name="North"> Nord @@ -1476,13 +1725,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 +1743,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 +1788,7 @@ Tipi conosciuti .wav, .tga, .bmp, .jpg, .jpeg, or .bvh Residenziale </string> <string name="Stage"> - Stage + Fase </string> <string name="Other"> Altro @@ -1551,10 +1800,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 +1811,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 +1840,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 +1848,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 +1858,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 +1877,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 +1896,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 +1921,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 +1942,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 +1988,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 +2003,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 +2018,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 +2039,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 +2060,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 +2069,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 +2093,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 +2138,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 +2183,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 +2191,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 +2215,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 +2240,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 +2249,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 +2324,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 +2342,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 +2366,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 +2411,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Forma del mento </string> <string name="Join"> - Avvicinati + Iscriviti </string> <string name="Jowls"> Guance @@ -2297,7 +2441,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 +2483,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 +2519,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 +2531,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 +2542,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 +2567,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 +2576,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 +2585,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 +2660,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Posizione della bocca </string> <string name="Mowhawk"> - Vuoti + Moicana </string> <string name="Muscular"> Muscolatura @@ -2563,9 +2704,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 +2735,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 +2761,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 +2807,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 +2822,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 +2840,7 @@ Se il messaggio persiste, contatta [SUPPORT_SITE]. Pigmento </string> <string name="Pigtails"> - Ciuffi + Codini </string> <string name="Pink"> Rosa @@ -2725,9 +2860,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 +2884,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 +2896,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 +2908,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 +2972,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 +2989,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 +2996,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 +3023,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 +3052,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 +3070,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 +3088,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 +3106,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 +3155,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 +3170,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 +3191,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 +3209,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 +3242,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 +3260,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 +3269,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 +3277,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 +3301,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 +3325,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/ja/floater_about_land.xml b/indra/newview/skins/default/xui/ja/floater_about_land.xml index ceda48109e70c45f23d177bfbcc75181d156bab9..bdd1cc60b7ace345ff934ca492da072adc560087 100644 --- a/indra/newview/skins/default/xui/ja/floater_about_land.xml +++ b/indra/newview/skins/default/xui/ja/floater_about_land.xml @@ -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_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_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_group_land_money.xml b/indra/newview/skins/default/xui/ja/panel_group_land_money.xml index c0449f1221a824db3396503ab3352f90bcf9308a..ef6d8cce47234e3b8f36a27f6f3aec9448da43c5 100644 --- a/indra/newview/skins/default/xui/ja/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/ja/panel_group_land_money.xml @@ -45,7 +45,7 @@ ã‚ãªãŸã®è²¢çŒ®ï¼š </text> <text name="your_contribution_units"> - 平方メートル + m² </text> <text name="your_contribution_max_value"> (最大 [AMOUNT]) diff --git a/indra/newview/skins/default/xui/ja/panel_group_roles.xml b/indra/newview/skins/default/xui/ja/panel_group_roles.xml index db6fe268c75faf058b84f4d576fe26f6e9ac149c..8a629be910a3fb1f93fbd9c2a46b747948508138 100644 --- a/indra/newview/skins/default/xui/ja/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/ja/panel_group_roles.xml @@ -17,7 +17,7 @@ Ctrl ã‚ーを押ã—ãªãŒã‚‰ãƒ¡ãƒ³ãƒãƒ¼åをクリックã™ã‚‹ã¨ <name_list name="member_list"> <name_list.columns label="メンãƒãƒ¼" name="name"/> <name_list.columns label="寄付" name="donated"/> - <name_list.columns label="ステータス" name="online"/> + <name_list.columns label="ãƒã‚°ã‚¤ãƒ³" name="online"/> </name_list> <button label="招待" name="member_invite"/> <button label="追放" name="member_eject"/> @@ -44,7 +44,7 @@ Ctrl ã‚ーを押ã—ãªãŒã‚‰ãƒ¡ãƒ³ãƒãƒ¼åをクリックã™ã‚‹ã¨ <filter_editor label="役割をé¸åˆ¥" name="filter_input"/> <scroll_list name="role_list"> <scroll_list.columns label="役割" name="name"/> - <scroll_list.columns label="肩書ã" name="title"/> + <scroll_list.columns label="タイトル" name="title"/> <scroll_list.columns label="#" name="members"/> </scroll_list> <button label="æ–°ã—ã„役割" name="role_create"/> 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 eae9ac03c373a18abe84c153d04aa85e71f01a3f..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="é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’åœæ¢"/> 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..36cf993ef7a61f45d4a27040459c82274f2dcad1 100644 --- a/indra/newview/skins/default/xui/ja/panel_region_estate.xml +++ b/indra/newview/skins/default/xui/ja/panel_region_estate.xml @@ -16,7 +16,7 @@ ï¼ˆä¸æ˜Žï¼‰ </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] ã‚’ã”覧下ã•ã„。"/> 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..8f27e08f6649932160e16be5ff10245fadb022f8 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"/> diff --git a/indra/newview/skins/default/xui/pl/floater_about.xml b/indra/newview/skins/default/xui/pl/floater_about.xml index 29a5aca90d7569fc5e0bb17aae15ff0dc5419fe0..93a87b8cbc7ec8399f044b9d3c1a0ead2ca46976 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> @@ -43,13 +43,11 @@ Wersja Vivox: [VIVOX_VERSION] </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..77b57391e547fe6b3471ba6c283da34f38acedc3 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,13 +87,15 @@ <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..."/> + <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..." label_selected="Przypisz..." name="Deed..." tool_tip="Prawo przypisania posiadÅ‚oÅ›ci na grupÄ™ może dokonać jedynie oficer 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ż: @@ -43,7 +106,7 @@ <text name="For Sale: Price L$[PRICE]."> Cena: L$[PRICE] (L$[PRICE_PER_SQM]/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> @@ -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ć z PosiadÅ‚oÅ›ci" 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 aukcÄ™."/> + </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"> + <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"> + <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] </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> @@ -224,7 +242,7 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz [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> @@ -253,22 +271,52 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <text name="Object Owners:" width="108"> 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 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> + <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Ä…."/> <text name="allow_label2"> Budowanie: @@ -291,84 +339,36 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <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> <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 Lokacja" 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 Lokacja" 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,30 +376,18 @@ 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" - /> + <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: </text> @@ -408,6 +396,7 @@ Jedynie wiÄ™ksze posiadÅ‚oÅ›ci mogÄ… być umieszczone w bazie wyszukiwarki. URL Mediów: </text> <button label="Ustaw..." label_selected="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="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="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_parcel"/> + <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 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: </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="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 wejÅ›ciówki:" 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..b8eea31e29f198b413370dec169305d20de9e6bf 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"> + Niemożliwość odczytania pliku 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"> + Niemożliwość otworzenia pliku tÅ‚umaczenia. + </floater.string> + <floater.string name="E_ST_NO_XLT_HEADER"> + Niemożliwość przeczytania tÅ‚umaczenia nagłówka. + </floater.string> + <floater.string name="E_ST_NO_XLT_NAME"> + Niemożliwość przeczytania nazw tÅ‚umaczenia. + </floater.string> + <floater.string name="E_ST_NO_XLT_IGNORE"> + Niemożliwość przeczytania tÅ‚umaczenia dla wartoÅ›ci ignorowania. + </floater.string> + <floater.string name="E_ST_NO_XLT_RELATIVE"> + Niemożliwość przeczytania tÅ‚umaczenia wartoÅ›ci relatywnej. + </floater.string> + <floater.string name="E_ST_NO_XLT_OUTNAME"> + Niemożliwość przeczytania nazw wartoÅ›ci tÅ‚umaczenia. + </floater.string> + <floater.string name="E_ST_NO_XLT_MATRIX"> + Niemożliwość przeczytania 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 (L$[AMOUNT])" name="ok_btn"/> + <button label="Anuluj" name="cancel_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..b42464d21290ee3f659800988396aadee5368dd2 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 </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..5bb469c4339b3b03acf2ece79079315c5e49b3c5 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"/> + <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"/> - <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> </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..8e9ae36c052364b0eb640b048d66fb20f9a40a88 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..4b6e8f793bb466d16cedc9f49e78e62e2660bc27 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"/> + <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: + 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..dacd2c23768455fc78e4bd34cb7c085d08bfc04d 100644 --- a/indra/newview/skins/default/xui/pl/floater_buy_contents.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_contents.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="floater_buy_contents" title="KUP ZAWARTOŚĆ"> <text name="contains_text"> [NAME] zawiera: @@ -6,9 +6,9 @@ <text name="buy_text"> Kupić za L$[AMOUNT] 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..ef341677031993f650a8e78ff0cc5656ee98f42a 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 L$ [LINDENS] 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"> + [NAME] [PRICE]L$ </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 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"> + 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..daafd14e1fd472ac84214318c360c8a427616273 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 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..4de00e39f345a3e65e2ab77a4b74719aaf238397 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"> @@ -25,7 +37,7 @@ <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="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..1e89b8bafc4398461b0703c45c18c9be19b19c2c 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Ä™: </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..2246bf9edefae609cbf36f49a619911cae9b8f3a 100644 --- a/indra/newview/skins/default/xui/pl/floater_color_picker.xml +++ b/indra/newview/skins/default/xui/pl/floater_color_picker.xml @@ -21,7 +21,7 @@ <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: </text> diff --git a/indra/newview/skins/default/xui/pl/floater_customize.xml b/indra/newview/skins/default/xui/pl/floater_customize.xml index 0c01d15faff7f26c56805a703fda7cda372b3f5c..5acab606420faf8726e659b7c04a84edc58733d9 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. @@ -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. @@ -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. @@ -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. @@ -156,12 +150,14 @@ z plików roboczych. <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="Wróć" label_selected="Wróć" name="Revert"/> @@ -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,9 +188,9 @@ 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="Wróć" label_selected="Wróć" name="Revert"/> @@ -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,8 +246,7 @@ 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"/> @@ -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,8 +279,7 @@ 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"/> @@ -314,10 +302,9 @@ 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> @@ -326,8 +313,7 @@ z plików roboczych. </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"/> + <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"/> @@ -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,8 +346,7 @@ 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"/> @@ -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,8 +379,7 @@ 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"/> @@ -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,8 +412,7 @@ 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"/> @@ -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="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_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..fb4c505ff36b88ef4f0dc0da87c3743d00f443c4 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 </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..dfdc87b079895b0b2aaa4c5c934d2adaf491ee7b --- /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"> + Moderuj + </floater.string> + <floater.string name="adult"> + Adult + </floater.string> + <floater.string name="general"> + Ogólne + </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..d12ea988157d1f0ed6e717ce7bc6dd563ac15608 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="GESTURY"> + <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 wybranÄ… gesturÄ™"/> + <button name="del_btn" tool_tip="UsuÅ„ gesturÄ™"/> + </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..d3ff60397007b35f5ef2a20e3dcecb6ace193066 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 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="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: </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..85e8194834257252476bec969d1c4b868b3a90c9 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="Filtrowanie Anizotropowe" name="ani"/> <text name="Antialiasing:"> Antialiasing: </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 Bufor Vertexów OpenGL" name="vbo" tool_tip=""/> + <slider label="Pamięć Tekstur (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_image_preview.xml b/indra/newview/skins/default/xui/pl/floater_image_preview.xml index 27f898a66b2c109a9a093703d8e6fb1fc45f1bf3..6c61cfcacf84b1b7f86a4618f3060e27a5cb2709 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..fa2308675ee452e57cc3d56d84788d004736f2cc --- /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..f595f0c7dd8218bda374fda92360d30193e7059b 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..42aebe99d6c2ac2ed73180bc72941786f577a3d0 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 (Fetching [ITEM_COUNT] Obiekty...) [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_joystick.xml b/indra/newview/skins/default/xui/pl/floater_joystick.xml index 22ac458b85d3cbebad9a5b6dd7d597d574c556b0..b0b4f173b299f18f99e98805b01b88e4b6c21528 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"> + <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 width="104" name="YawScale"> + <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 width="104" name="RollScale"> + <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 width="104" name="XDeadZone"> + <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 width="104" name="YDeadZone"> + <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 width="104" name="ZDeadZone"> + <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 width="104" name="PitchDeadZone"> + <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 width="104" name="YawDeadZone"> + <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 width="104" name="RollDeadZone"> + <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 width="104" name="Feathering"> + <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"> + <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"> + <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..cc71c1dc3370b8f764f6e26bbf0cb794cba4607e 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"> + <floater.string name="max_title_msg"> Pomiar Lagów - </string> - <string name="max_width_px"> + </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"> + </floater.string> + <floater.string name="client_draw_distance_cause_msg"> Przyczyna: Dystans rysowania jest za wysoki - </string> - <string name="client_texture_loading_cause_msg"> + </floater.string> + <floater.string name="client_texture_loading_cause_msg"> Przyczyna: Åadowanie obrazu - </string> - <string name="client_texture_memory_cause_msg"> + </floater.string> + <floater.string name="client_texture_memory_cause_msg"> Przyczyna: Za dużo obrazów w pamiÄ™ci - </string> - <string name="client_complex_objects_cause_msg"> + </floater.string> + <floater.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="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"> + </floater.string> + <floater.string name="server_physics_cause_msg"> Przyczyna: Za dużo obiektów fizycznych - </string> - <string name="server_scripts_cause_msg"> + </floater.string> + <floater.string name="server_scripts_cause_msg"> Przyczyna: Za dużo obieków skryptowanych - </string> - <string name="server_net_cause_msg"> + </floater.string> + <floater.string name="server_net_cause_msg"> Przyczyna: Za duży ruch w sieci - </string> - <string name="server_agent_cause_msg"> + </floater.string> + <floater.string name="server_agent_cause_msg"> Przyczyna: Za dużo poruszajÄ…cych siÄ™ awatarów w regionie - </string> - <string name="server_images_cause_msg"> + </floater.string> + <floater.string name="server_images_cause_msg"> Przyczyna: Za dużo kalkulacji obrazu - </string> - <string name="server_generic_cause_msg"> + </floater.string> + <floater.string name="server_generic_cause_msg"> Przyczyna: Symulator Å‚aduje siÄ™ zbyt powoli - </string> - <string name="smaller_label"> + </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..0dc5b9f663a07a52f1e3155574e6d6e7295962a3 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..4a513f146de027d5847af77f77799e5bf116d556 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_moveview.xml b/indra/newview/skins/default/xui/pl/floater_moveview.xml index e28cfd589dfb65fb2702a20c93432d50b89311d1..9f93335177f4b707e1b7cdf8e314b8752b521f07 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..e30fbe3889e88ba0f941052e5a7e8e052982dc51 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..7e55f6db3b37eb1646adc2c24ab979aa0c55f205 --- /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..5522c026314f62f1bea8fa953f01ff59d293e778 --- /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 od [VOICE_CHANNEL_NAME]. [RECONNECT_NEARBY] + </text> + <text name="nearby_P2P_by_other"> + [VOICE_CHANNEL_NAME] has ended the call. [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_postcard.xml b/indra/newview/skins/default/xui/pl/floater_postcard.xml index 8f4018924d0c8d4fbd3075d95504148a53b78dfa..362483e2fdd27da587b5daa741a5b892892b7d47 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> @@ -25,7 +25,7 @@ <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..386d703eb3e1e70da12545478d54316611398aaa 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="Uruchom in-world" 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"/> </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..180cdea6e82095b258e92d25b814a6e021fd3ee1 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="INFORMACJE 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..ba4fa736b133bf4b6e2f2894e469712c04af3d3b 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"> + Gestura: [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="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..8f760d5085dcb7d4047951e550559f040a01c016 --- /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="GESTURA"/> 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..2dc9917435420c89a9a6b26a6fb2f0dbdec3ce00 --- /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="GESTURY"> + <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..74fb0c258eafb940ed363d36af13613bdba28b8f --- /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="GESTURY"/> 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..eb8b5c1a4623ae048001c3dc6ee55c5c2a0287e5 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..230f432e094254f198b7d35b4fcca1b35bd0dce8 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..698a63e74aef38fcb2b9168d636db90264600835 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..ae00f90f164638c983b28af5cdaeef8f2d106a95 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/ESTATE"/> 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..c20decdd0049d6a0919dc0695fdd6c27af53c6ad 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 reset + </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..a2812406a4b6d091c487d8e6a4463889723e5fb6 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..1670becbbb4b8c862fe07ec6213fb54ac86bc071 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..0b15727daae48e265225df11651b1d9a592e0de1 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="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_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..f8a23a6fc3b1ef81686760913682f54a7528a15d 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!): </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..8464343ebb036c33d73706df9837cb6a51f706bc 100644 --- a/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml +++ b/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml @@ -17,7 +17,7 @@ <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..e355813f8353cdbeafc7e51c9b67c292945f1e3f 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"/> @@ -335,13 +323,13 @@ <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"/> @@ -359,22 +347,17 @@ <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."/> + <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 </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Å‚aczyzna" 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,121 +377,96 @@ <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"/> @@ -520,14 +478,20 @@ 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> @@ -536,46 +500,7 @@ <text name="label_parcel_trans"> 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..8d41e0fb134cfcf81942f47cae883beceb65fbda 100644 --- a/indra/newview/skins/default/xui/pl/floater_top_objects.xml +++ b/indra/newview/skins/default/xui/pl/floater_top_objects.xml @@ -1,15 +1,40 @@ <?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"> + Nie odnalezione + </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: @@ -20,36 +45,12 @@ </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="OdÅ›wież" name="refresh_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> </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..f0cd8de6bb8b7a4338941eeac618dedbf6e77a46 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)" 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). 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..27e26119527d74bffd4568beb7894ad7860995dc --- /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..5ea5dbdd0e5a162d6778d1097080962842fb2efe 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: </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 </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 </text> - <button label="?" name="WaterFogDensityHelp" /> - <slider label="" name="WaterFogDensity" /> + <button label="?" name="WaterFogDensityHelp"/> + <slider label="" name="WaterFogDensity"/> <text name="WaterUnderWaterFogModText"> 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Å„ </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 </text> - <button label="?" name="WaterScaleAboveHelp" /> - <slider label="" name="WaterScaleAbove" /> + <button label="?" name="WaterScaleAboveHelp"/> + <slider label="" name="WaterScaleAbove"/> <text name="WaterScaleBelowText"> 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 </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 </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 </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 </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..42a67995f6b82480ff6bd44c41b27fffe0375b61 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..6de121a180909ae2547cc209a5a238e0e2538c08 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: </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 </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 </text> - <button label="?" name="WLHazeHorizonHelp" /> - <slider label="" name="WLHazeHorizon" /> + <button label="?" name="WLHazeHorizonHelp"/> + <slider label="" name="WLHazeHorizon"/> <text name="BDensText2"> 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 </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 </text> - <button label="?" name="WLDensityMultHelp" /> - <slider label="" name="WLDensityMult" /> + <button label="?" name="WLDensityMultHelp"/> + <slider label="" name="WLDensityMult"/> <text name="WLDistanceMultText"> 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ść </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 </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 </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 </text> - <button label="?" name="WLEastAngleHelp" /> - <slider label="" name="WLEastAngle" /> + <button label="?" name="WLEastAngleHelp"/> + <slider label="" name="WLEastAngle"/> <text name="SunGlowText"> 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 </text> - <button label="?" name="WLSceneGammaHelp" /> - <slider label="" name="WLGamma" /> + <button label="?" name="WLSceneGammaHelp"/> + <slider label="" name="WLGamma"/> <text name="WLStarText"> 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 </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 </text> - <button label="?" name="WLCloudCoverageHelp" /> - <slider label="" name="WLCloudCoverage" /> + <button label="?" name="WLCloudCoverageHelp"/> + <slider label="" name="WLCloudCoverage"/> <text name="WLCloudScaleText"> 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ść) </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 </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 </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..13ad1bccc7d26b65d25708f52089b8a2bca446f1 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..6a688391c0ddd21b3b0260bfe6e9c4abf247fd70 100644 --- a/indra/newview/skins/default/xui/pl/inspect_avatar.xml +++ b/indra/newview/skins/default/xui/pl/inspect_avatar.xml @@ -13,7 +13,7 @@ <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"/> 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..822e28ea7e0ebbff634ab51a34d24befe2a018a0 --- /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ź tu + </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ź tu" 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_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_im_well_button.xml b/indra/newview/skins/default/xui/pl/menu_im_well_button.xml new file mode 100644 index 0000000000000000000000000000000000000000..4962ffc356614e321734982e3d42ddaf809226ab --- /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_inspect_avatar_gear.xml b/indra/newview/skins/default/xui/pl/menu_inspect_avatar_gear.xml index 22d81cb8234bb8ec26fc09dda736bfa71d6d43bc..f6ac02f91c77e5d13d4d4a32dc932d43615fcf98 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,6 +7,7 @@ <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"/> @@ -14,4 +15,5 @@ <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_inventory.xml b/indra/newview/skins/default/xui/pl/menu_inventory.xml index 75c84c275dbbd06d6c09481df85d833172136ecf..30fb703584c26f560fa10a7275c9e832b1c80e16 100644 --- a/indra/newview/skins/default/xui/pl/menu_inventory.xml +++ b/indra/newview/skins/default/xui/pl/menu_inventory.xml @@ -46,9 +46,10 @@ <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="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 Link" name="Goto Link"/> <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"/> @@ -57,13 +58,11 @@ <menu_item_call label="Wklej" name="Paste"/> <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="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="Używaj w Åšwiecie" 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..."/> diff --git a/indra/newview/skins/default/xui/pl/menu_login.xml b/indra/newview/skins/default/xui/pl/menu_login.xml index 5084b59397d29d9b1c45173f13b56bf14dc27ae8..be7c8c2102deb9b9c0f8b1a857758726f6f7c741 100644 --- a/indra/newview/skins/default/xui/pl/menu_login.xml +++ b/indra/newview/skins/default/xui/pl/menu_login.xml @@ -21,8 +21,8 @@ </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 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"/> 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..d71611ce912e7878f64aefa64f2ff4078c51d9ed 100644 --- a/indra/newview/skins/default/xui/pl/menu_object.xml +++ b/indra/newview/skins/default/xui/pl/menu_object.xml @@ -5,19 +5,22 @@ <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="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="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..."/> 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..9b60b17ba80dc680ca545c327bdd4f7c029f4dab 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 GÅ‚os" 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"/> + <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_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_nearby.xml b/indra/newview/skins/default/xui/pl/menu_people_nearby.xml index 0f80b56c163e4f4ed41de5b8d3b41f5b77d33191..fcba806e4539e40b4588475d75c0d4490733e48d 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_profile_overflow.xml b/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml index 8405d48e49241449e8a614ce348f339789578d1b..23b41e6be135d00ad2851b8e88f9f643aa0c2bfd 100644 --- a/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml +++ b/indra/newview/skins/default/xui/pl/menu_profile_overflow.xml @@ -2,4 +2,10 @@ <toggleable_menu name="profile_overflow_menu"> <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_viewer.xml b/indra/newview/skins/default/xui/pl/menu_viewer.xml index 2a5842e553ffb30cfb0028f29e22febd2eded0ef..23a17f4edabe326dc5a50b99bb4b9cf8da1d868b 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 Gesturki" 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"/> @@ -76,10 +77,12 @@ </menu> <menu_item_call label="Grupuj" 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_linux.xml b/indra/newview/skins/default/xui/pl/mime_types_linux.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c901809dc752e279810a2548fec3255190a0c35 --- /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ść Strony Internetowej + </label> + <tooltip name="web_tooltip"> + W tym miejscu można zobaczyć zawartość strony internetowej + </tooltip> + <playtip name="web_playtip"> + Pokaż zawartość strony 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/notifications.xml b/indra/newview/skins/default/xui/pl/notifications.xml index 3cf9be507d0068da634ba6706994c9ba13cfe84c..f565a0fa181c7c35f4c0952af9f4497eb8061a61 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? @@ -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> @@ -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,21 +323,30 @@ 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Ä™. 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]? <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"/> @@ -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Ä™? @@ -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,7 +512,7 @@ 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"> @@ -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óznia. 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"/> @@ -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"> @@ -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. @@ -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: * 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] 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. @@ -1925,7 +1668,7 @@ Lokacja tego wyboru zostaÅ‚a zaktualizowana ale pozostaÅ‚e szczegóły zachowaj 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"/> + <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. @@ -1933,47 +1676,29 @@ 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. 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: + 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/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: - -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"> @@ -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 stronei 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="BlockedSLURL"> + SLurl zostaÅ‚ otrzymany z niesprawdzonej przeglÄ…darki i zostaÅ‚ zablokowany dla bezpieczeÅ„stwa. </notification> - <notification name="UnableToOpenCommandURL"> - Wybrany link nie daje siÄ™ otworzyć z tej przeglÄ…darki. + <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_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..043db94c953362e26ca8fa8c34ff9de737c3b09d --- /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="Move" 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..8be5324dd4aa926ba0d80d30a231daf2769358b9 --- /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="Gestura" name="Gesture" 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..b26e9b9294d05311955ac0c53b24cdc695bfd35b --- /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="[nazwa]"/> + <text name="classified_location_label" value="Miejsce:"/> + <text_editor name="classified_location" value="[Å‚adowanie...]"/> + <text name="content_type_label" value="Rodzaj ZawartoÅ›ci:"/> + <text_editor name="content_type" value="[treść]"/> + <text name="category_label" value="Kategoria:"/> + <text_editor name="category" value="[kategoria]"/> + <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..bf3c0f478925ce9d9a9a975ca091cff63fdeebad --- /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..78d61893263c70034e05abe5b4ae96c0758b5aff --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_edit_pick.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel label="Edytuj Ulubione" name="panel_edit_pick"> + <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 Lokalizacje" name="set_to_curr_location_btn"/> + </panel> + </scroll_container> + <panel label="bottom_panel" name="bottom_panel"> + <button label="Zapisz [WHAT]" 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..3f3d32c9fc45fcf7c3913bae32621ae51301b136 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_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..9bd89f0b3655893d5ab8a6cb6953888101fc156c --- /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..0dc955c096fc4bd4bd64d5178ba63e1cc7157439 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"/> + <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 name="spin_enrollment_fee" tool_tip="Nowi czÅ‚onkowie grupy muszÄ… zapÅ‚acić wymaganÄ… opÅ‚atÄ™ by dołączyć do grupy."/> + <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..dd4938d50b5f8a56eef19a3923833ed3048f0c02 --- /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..335fff8458958a0f37bc4c4eb33d8b97dd896971 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"> + (loading...) + </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..c973bcd24f5f83085650ed542e02a6eecf05f1ed 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"> <text name="lbl"> 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..ccd340901526b8f9c15a86bc7d0a899515397387 --- /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="Miejsca Zapisane"/> + <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..e88efdd49d45a4edd041f9406bbd7de842af4968 100644 --- a/indra/newview/skins/default/xui/pl/panel_main_inventory.xml +++ b/indra/newview/skins/default/xui/pl/panel_main_inventory.xml @@ -32,7 +32,7 @@ <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="Nowa Nota" name="New Note"/> <menu_item_call label="NowÄ… GesturkÄ™" name="New Gesture"/> <menu label="Nowe Ubranie" name="New Clothes"> <menu_item_call label="NowÄ… KoszulkÄ™" name="New Shirt"/> 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_security.xml b/indra/newview/skins/default/xui/pl/panel_media_settings_security.xml new file mode 100644 index 0000000000000000000000000000000000000000..a9b5e71a3bfe27f34a12f4be41187cee3c253bcb --- /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..4f0b6dc42cb7c44afbc5f75bac302e5c1d6493c7 --- /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ć zdjecie"/> + <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ć zdjecie"/> + <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..3e6cad59bf0784f069627f395546009181f94033 --- /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 zapisane miejsca tutaj by szybko dostać siÄ™ do swoich ulubionych miejsc w Second Life!"> + <label name="favorites_bar_label" tool_tip="PrzeciÄ…gnij swoje zapisane miejsca 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..84399ac23ab246d7c2e9ff834ee42a6711c4129c --- /dev/null +++ b/indra/newview/skins/default/xui/pl/panel_nearby_media.xml @@ -0,0 +1,60 @@ +<?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 Parceli + </string> + <string name="parcel_audio_name"> + StrumieÅ„ Audio Parceli + </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"> + <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 ParcelÄ…" name="OutsideParcel"/> + </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> + <layout_stack name="media_controls"> + <layout_panel name="stop"> + <button name="stop_btn" tool_tip="Wyłącz 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="GÅ‚oÅ›ność wybranych mediów"/> + </layout_panel> + <layout_panel name="mute"> + <button name="mute_btn" tool_tip="Wycisz wybrane media"/> + </layout_panel> + <layout_panel name="zoom"> + <button name="zoom_btn" tool_tip="Przybliż wybrane media"/> + </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..8eaf152fb67a3c205c79299ece57f20dbc1e3cdd --- /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 Aktualny Stroju" name="wear"/> + <menu_item_call label="Dodaj do Aktualnego Stroju" name="add"/> + <menu_item_call label="UsuÅ„ z Aktualnego Stroju" 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..b92a37907b62f2a5a33d97dec0e8e0fee592f834 100644 --- a/indra/newview/skins/default/xui/pl/panel_people.xml +++ b/indra/newview/skins/default/xui/pl/panel_people.xml @@ -5,15 +5,16 @@ <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="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 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" 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 global search] 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 try the Map]. + </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..5b6df28883fd53aec1d45c901b5a6bdf59fb1438 --- /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="[nazwa]"/> + <text name="pick_location" value="[Å‚adowanie...]"/> + <text name="pick_desc" value="[opis]"/> + </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..22811cd2a12de4311a56f53a229ee9c05b17dab9 --- /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..97e8fe97cda72ba5993e5ca858846652cf3a4653 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,29 @@ <?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"/> + <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..d53a99e8c107764edef0eb232cb92664b7e1f4c5 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..fd3a9114dcbac0d61233a299e56090e30800101c 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,8 @@ </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"/> + <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..37670d3470962ab47ba3df7a6d04af19dee8d2c0 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"> + 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="Odbicia w Wodzie" name="Reflections"/> + <text name="ReflectionDetailText"> + Ustawienia Odbić: + </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"> + Prezentacja Awatarów: + </text> + <check_box initial_value="true" label="Impostoryzacja Awatarowa" name="AvatarImpostors"/> + <check_box initial_value="true" label="Skinning" name="AvatarVertexProgram"/> + <check_box initial_value="true" label="Ubranie Awatarów" name="AvatarCloth"/> + <slider label="Głębia Rysowania:" 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ół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 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"> + Szczgół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="Zresetu" 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..31f8c1a357255fa2e2172887a591a2ff981d61c1 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,47 @@ <?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żywaj wbudowanej przeglÄ…darki." name="internal" tool_tip="Używaj wbudowanej przeglÄ…darki. Ta przeglÄ…darka otworzy nowe okno w [APP_NAME]." value="0"/> + <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_group> + <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..abcb989757427804c21b4901d670f4f2140e09ed 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="Media" name="Media 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="GÅ‚os" name="enable_voice_check"/> - <slider label="GÅ‚os" name="Voice Volume"/> + <check_box label="Odtwarzaj media audio" name="music_enabled"/> + <slider label="Media" name="Media 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..2cfe2ca2ce71abaef7cae0cf598ce35c7dc82abc 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 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..14fa3cd94c960c9e8fcf9ecf37f0a347ab44d65d 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_debug.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_debug.xml @@ -22,13 +22,13 @@ <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="?" name="top_colliders_help"/> 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..78da6564489eee04df015ca355c2fc37841908e5 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,7 +10,7 @@ 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) @@ -24,10 +23,10 @@ do wszystkich Regionów w tym MajÄ…tku. <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="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"/> @@ -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..26076b9a1aae645227562e3ecae7083780c2fbdd 100644 --- a/indra/newview/skins/default/xui/pl/panel_region_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_general.xml @@ -19,35 +19,25 @@ 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"/> <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"> 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="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..6e53e8b7e45515aedeb3bd63df1aae2c35a1de30 --- /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_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..1841e1544e5af876edc16c492085a0f2c2d01f73 --- /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..f1de73c84db2e0bb887de3b3233b805bea3b1132 --- /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_status_bar.xml b/indra/newview/skins/default/xui/pl/panel_status_bar.xml index 9226e67dff0a6a78f5d44c25bbe7918483221cc3..8e03d2a3b95b4b0b3fbbae8e8299b37b660d8c4c 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"> + </panel.string> + <panel.string name="packet_loss_tooltip"> Utracone Pakiety - </string> - <string name="bandwidth_tooltip"> + </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/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..c986179377171af3752cb4b8be26e4a6f5c23ff9 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..2a789015664d5cf1031098829f7006e46493d293 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> @@ -131,7 +134,7 @@ 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="TooltipGroupUrl"> Kliknij by zobaczyć opis tej grupy @@ -158,6 +161,7 @@ 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> @@ -165,7 +169,7 @@ Pokaż na Mapie </string> <string name="BUTTON_CLOSE_DARWIN"> - Zamknij (⌘W) + Zamknij (⌘W) </string> <string name="BUTTON_CLOSE_WIN"> Zamknij (Ctrl+W) @@ -182,9 +186,6 @@ <string name="BUTTON_DOCK"> Przyłącz </string> - <string name="BUTTON_UNDOCK"> - Odłącz - </string> <string name="BUTTON_HELP"> Pokaż Pomoc </string> @@ -209,9 +210,6 @@ <string name="AvatarNameWaiting"> (Å‚adowanie) </string> - <string name="AvatarNameHippos"> - (hippos) - </string> <string name="GroupNameNone"> (brak danych) </string> @@ -572,6 +570,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 +735,9 @@ <string name="invalid"> niewÅ‚aÅ›ciwa funkcja </string> + <string name="NewWearable"> + Nowa [WEARABLE_ITEM] + </string> <string name="next"> NastÄ™pne </string> @@ -764,11 +768,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 +805,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)"/> @@ -1266,11 +1269,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 +1436,14 @@ tej tekstury w swojej szafie <string name="PanelContentsNewScript"> Nowy Skrypt </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 +1474,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> @@ -1391,16 +1559,27 @@ tej tekstury w swojej szafie 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> @@ -1655,39 +1834,15 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <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 - </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 - </string> <string name="Baggy"> Wypchane </string> <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,9 +1855,6 @@ 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 </string> @@ -1877,9 +2029,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Corner Down"> Corner Down </string> - <string name="Corner Normal"> - Corner Normal - </string> <string name="Corner Up"> Corner Up </string> @@ -1889,9 +2038,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Crooked Nose"> Skrzywienie Nosa </string> - <string name="Cropped Hair"> - PrzyciÄ™te WÅ‚osy - </string> <string name="Cuff Flare"> Cuff Flare </string> @@ -1910,15 +2056,9 @@ 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 </string> @@ -1964,9 +2104,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Eye Spacing"> Rozstaw Oczu </string> - <string name="Eyeball Size"> - Wielkość GaÅ‚ki Ocznej - </string> <string name="Eyebrow Arc"> Åuk Brwiowy </string> @@ -1991,36 +2128,9 @@ 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 </string> @@ -2030,30 +2140,9 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <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 - </string> <string name="Female"> Kobieta </string> @@ -2090,24 +2179,9 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <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 </string> @@ -2381,9 +2455,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Long arms"> Dlugie Ramiona </string> - <string name="Longcuffs"> - DÅ‚ugie RÄ™kawy - </string> <string name="Loose Pants"> Luźne Spodnie </string> @@ -2546,9 +2617,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="No Eyeshadow"> Brak Cienia pod PowiekÄ… </string> - <string name="No Heels"> - Brak Obcasów - </string> <string name="No Lipgloss"> Brak PoÅ‚ysku </string> @@ -2606,9 +2674,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Nostril Width"> Wielkość Dziurek w Nosie </string> - <string name="Old"> - Stare - </string> <string name="Opaque"> Intensywność </string> @@ -2708,9 +2773,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,15 +2797,9 @@ 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ść </string> @@ -2753,9 +2809,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Round"> ZaokrÄ…glenie </string> - <string name="Round Forehead"> - ZaokrÄ…glenie na Czole - </string> <string name="Ruddiness"> Rudowatość </string> @@ -2768,24 +2821,12 @@ 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> @@ -2798,15 +2839,9 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Shear Front"> Przednie UsuniÄ™cie WÅ‚osów </string> - <string name="Shear Left"> - UsuniÄ™cie z Lewej Strony - </string> <string name="Shear Left Up"> UsuniÄ™cie od Lewej Strony do Góry </string> - <string name="Shear Right"> - UsuniÄ™cie z Prawej Strony - </string> <string name="Shear Right Up"> UsuniÄ™cie od Prawej Strony do Góry </string> @@ -2867,15 +2902,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <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 </string> @@ -2891,9 +2917,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> @@ -2942,9 +2965,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Socks Length"> DÅ‚ugość Skarpetek </string> - <string name="Some"> - Some - </string> <string name="Soulpatch"> Soulpatch </string> @@ -2963,9 +2983,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Squash Head"> ÅšciÅ›niÄ™ta GÅ‚owa </string> - <string name="Squash/Stretch Head"> - ÅšciÅ›niÄ™ta/RozciÄ…gniÄ™ta GÅ‚owa - </string> <string name="Stretch Head"> RozciÄ…gniÄ™ta GÅ‚owa </string> @@ -2984,18 +3001,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> @@ -3014,9 +3019,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Thick Toe"> Gruby Palec </string> - <string name="Thickness"> - Grubość - </string> <string name="Thin"> WÄ…ski </string> @@ -3047,12 +3049,6 @@ Jeżeli nadal otrzymujesz ten komunikat, skontaktuj siÄ™ z [SUPPORT_SITE]. <string name="Tight Sleeves"> ObcisÅ‚e RÄ™kawy </string> - <string name="Tilt Left"> - PrzesuÅ„ w Lewo - </string> - <string name="Tilt Right"> - PrzesuÅ„ w Prawo - </string> <string name="Toe Shape"> KsztaÅ‚t Palca </string> @@ -3194,6 +3190,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 +3214,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 +3238,37 @@ 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> </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_land.xml b/indra/newview/skins/default/xui/pt/floater_about_land.xml index ebb9bfc32db04f0e7894ff7016137736b8730661..7b943f2f67035de000303bb2f6883d8b3d4b59ba 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> @@ -128,11 +137,11 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se </text> <button label="Comprar Terra..." label_selected="Comprar Terra..." 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 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="Reclamar Terra" name="Reclaim Land..."/> + <button label="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."/> </panel> <panel label="CONTRATO" name="land_covenant_panel"> <panel.string name="can_resell"> @@ -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,7 +250,7 @@ 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: </text> @@ -249,7 +258,7 @@ ou sub-dividida. [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> @@ -426,6 +435,9 @@ MÃdia: <panel.string name="access_estate_defined"> (Definições do terreno) </panel.string> + <panel.string name="allow_public_access"> + Acesso para público: [MATURITY] + </panel.string> <panel.string name="estate_override"> Uma ou mais destas opções está definida no nÃvel de propriedade. </panel.string> 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_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_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_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_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/notifications.xml b/indra/newview/skins/default/xui/pt/notifications.xml index 60113bcf0bb3dbb7566fcc3ef68e03eecf0e2cba..1480343dc17df5078ab7016143bd33829c0c34e0 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 @@ -1287,8 +1286,8 @@ Deixar este grupo? <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Deixar"/> </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. @@ -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..31d9bc2b2667a496695c32495de2376cc541de7b 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 name="classified_location_label" value="Localização:"/> <text_editor name="classified_location" value="[carregando...]"/> + <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="[cliques]"/> + </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="[descrição]"/> + </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_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_main_inventory.xml b/indra/newview/skins/default/xui/pt/panel_main_inventory.xml index f64b9f319f0dbaf98f115c40246123a21055b007..4ba67466149cacdbf31eff1f467be4cd5928de91 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"/> @@ -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_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..66938e8f6f67b009ae709f3b7d2f3fc396229894 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> 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..5c81c7649bb5359e492feecbaacb403e1b897103 100644 --- a/indra/newview/skins/default/xui/pt/panel_place_profile.xml +++ b/indra/newview/skins/default/xui/pt/panel_place_profile.xml @@ -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_preferences_advanced.xml b/indra/newview/skins/default/xui/pt/panel_preferences_advanced.xml index 7ed64404e63aff241c5e18e0f3bf2b0edb6e0eea..95a2e47eba3a03731940c5318dfb4f97013100a1 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"> 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..0c2e67b4d50ad13771d6be22e46afb16f5874a81 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="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 @@ -39,6 +45,12 @@ </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"/> + <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"/> 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..7f6439d1e741c3c4f73bedf7cf1a38fcc8119663 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml @@ -34,9 +34,12 @@ 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: 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..393478de08d7d805eaf000547b367728772c4c4e 100644 --- a/indra/newview/skins/default/xui/pt/strings.xml +++ b/indra/newview/skins/default/xui/pt/strings.xml @@ -14,7 +14,22 @@ 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. @@ -76,6 +91,9 @@ <string name="LoginFailedNoNetwork"> 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 </string> @@ -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> @@ -139,6 +175,24 @@ <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> @@ -164,12 +218,31 @@ Clique para ativar no secondlife:// commando </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> @@ -320,6 +393,9 @@ <string name="symbolic link"> link </string> + <string name="symbolic folder link"> + link da pasta + </string> <string name="AvatarAway"> Distante </string> @@ -737,6 +813,9 @@ <string name="invalid"> inválido </string> + <string name="NewWearable"> + Novo [WEARABLE_ITEM] + </string> <string name="next"> Próximo </string> @@ -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,6 +904,7 @@ Nenhum conteúdo </string> <string name="WornOnAttachmentPoint" value="(vestido em [ATTACHMENT_POINT])"/> + <string name="ActiveGesture" value="[GESLABEL] (ativado)"/> <string name="Chat" value="Bate papo :"/> <string name="Sound" value="Som :"/> <string name="Wait" value="--- Aguarde :"/> @@ -918,6 +998,9 @@ <string name="InvFolder My Outfits"> Minhas Vestimentas </string> + <string name="InvFolder Accessories"> + Acessórios + </string> <string name="InvFolder Friends"> Amigos </string> @@ -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> @@ -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] @@ -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 silhueta + </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/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 7337241cf8e405746aa4b59e084b14fce3b14e33..0f4ab373f56f02c7a19db06a5b62e1df1b3cb59f 100644 --- a/install.xml +++ b/install.xml @@ -948,23 +948,23 @@ anguage Infrstructure (CLI) international standard</string> <key>darwin</key> <map> <key>md5sum</key> - <string>8321cbd098e6e791a02cb00ed3bcff6c</string> + <string>ada82d41467cdb7f8e25a442f58b6963</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-4.6-darwin-20100312.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>ba22560ea01b03c40f3a37013b335f56</string> + <string>7e7cd450525da133a459c659ea19207d</string> <key>url</key> - <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-linux-20100311.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>ee5d242ea468ba9a82d2bf8581aa308d</string> + <string>93b49cfea365fe082eda3e466a9beec3</string> <key>url</key> - <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100312.tar.bz2</uri> + <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100318.tar.bz2</uri> </map> </map> </map> @@ -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>