diff options
35 files changed, 720 insertions, 722 deletions
diff --git a/indra/llui/llfocusmgr.cpp b/indra/llui/llfocusmgr.cpp index 3899897c5f..b8142216fc 100644 --- a/indra/llui/llfocusmgr.cpp +++ b/indra/llui/llfocusmgr.cpp @@ -88,6 +88,12 @@ void LLFocusMgr::releaseFocusIfNeeded( const LLView* view ) void LLFocusMgr::setKeyboardFocus(LLUICtrl* new_focus, BOOL lock, BOOL keystrokes_only) { + // notes if keyboard focus is changed again (by onFocusLost/onFocusReceived) + // making the rest of our processing unnecessary since it will already be + // handled by the recursive call + static bool focus_dirty; + focus_dirty = false; + if (mLockedView && (new_focus == NULL || (new_focus != mLockedView && !new_focus->hasAncestor(mLockedView)))) @@ -104,6 +110,8 @@ void LLFocusMgr::setKeyboardFocus(LLUICtrl* new_focus, BOOL lock, BOOL keystroke mLastKeyboardFocus = mKeyboardFocus; mKeyboardFocus = new_focus; + // list of the focus and it's ancestors + view_handle_list_t old_focus_list = mCachedKeyboardFocusList; view_handle_list_t new_focus_list; // walk up the tree to root and add all views to the new_focus_list @@ -111,42 +119,53 @@ void LLFocusMgr::setKeyboardFocus(LLUICtrl* new_focus, BOOL lock, BOOL keystroke { if (ctrl) { - new_focus_list.push_front(ctrl->getHandle()); + new_focus_list.push_back(ctrl->getHandle()); } } - view_handle_list_t::iterator new_focus_iter = new_focus_list.begin(); - view_handle_list_t::iterator old_focus_iter = mCachedKeyboardFocusList.begin(); - - // compare the new focus sub-tree to the old focus sub-tree - // iterate through the lists in lockstep until we get to a non-common ancestor - while ((new_focus_iter != new_focus_list.end()) && - (old_focus_iter != mCachedKeyboardFocusList.end()) && - ((*new_focus_iter) == (*old_focus_iter))) + // remove all common ancestors since their focus is unchanged + while (!new_focus_list.empty() && + !old_focus_list.empty() && + new_focus_list.back() == old_focus_list.back()) { - new_focus_iter++; - old_focus_iter++; + new_focus_list.pop_back(); + old_focus_list.pop_back(); } - - // call onFocusLost on all remaining in the old focus list - while (old_focus_iter != mCachedKeyboardFocusList.end()) - { - if (old_focus_iter->get() != NULL) { - old_focus_iter->get()->onFocusLost(); + + // walk up the old focus branch calling onFocusLost + // we bubble up the tree to release focus, and back down to add + for (view_handle_list_t::iterator old_focus_iter = old_focus_list.begin(); + old_focus_iter != old_focus_list.end() && !focus_dirty; + old_focus_iter++) + { + LLView* old_focus_view = old_focus_iter->get(); + if (old_focus_view) + { + mCachedKeyboardFocusList.pop_front(); + old_focus_view->onFocusLost(); } - old_focus_iter++; } - // call onFocusReceived on all remaining in the new focus list - while (new_focus_iter != new_focus_list.end()) + // walk down the new focus branch calling onFocusReceived + for (view_handle_list_t::reverse_iterator new_focus_riter = new_focus_list.rbegin(); + new_focus_riter != new_focus_list.rend() && !focus_dirty; + new_focus_riter++) + { + LLView* new_focus_view = new_focus_riter->get(); + if (new_focus_view) + { + mCachedKeyboardFocusList.push_front(new_focus_view->getHandle()); + new_focus_view->onFocusReceived(); + } + } + + // if focus was changed as part of an onFocusLost or onFocusReceived call + // stop iterating on current list since it is now invalid + if (focus_dirty) { - new_focus_iter->get()->onFocusReceived(); - new_focus_iter++; + return; } - // cache the new focus list for next time - swap(mCachedKeyboardFocusList, new_focus_list); - #ifdef _DEBUG mKeyboardFocusName = new_focus ? new_focus->getName() : std::string("none"); #endif @@ -181,6 +200,8 @@ void LLFocusMgr::setKeyboardFocus(LLUICtrl* new_focus, BOOL lock, BOOL keystroke { lockFocus(); } + + focus_dirty = true; } diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index eeb127c878..d1eb94c371 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -2011,6 +2011,7 @@ bool LLFloaterIMPanel::onConfirmForceCloseError(const LLSD& notification, const LLIMFloater::LLIMFloater(const LLUUID& session_id) : LLFloater(session_id), + mControlPanel(NULL), mSessionID(session_id), mLastMessageIndex(-1), mDialog(IM_NOTHING_SPECIAL), @@ -2018,6 +2019,20 @@ LLIMFloater::LLIMFloater(const LLUUID& session_id) mInputEditor(NULL), mPositioned(false) { + LLIMModel::LLIMSession* session = get_if_there(LLIMModel::instance().sSessionsMap, mSessionID, (LLIMModel::LLIMSession*)NULL); + if(session) + { + mDialog = session->mType; + } + + if (mDialog == IM_NOTHING_SPECIAL) + { + mFactoryMap["panel_im_control_panel"] = LLCallbackMap(createPanelIMControl, this); + } + else + { + mFactoryMap["panel_im_control_panel"] = LLCallbackMap(createPanelGroupControl, this); + } // LLUICtrlFactory::getInstance()->buildFloater(this, "floater_im_session.xml"); } @@ -2089,22 +2104,19 @@ LLIMFloater::~LLIMFloater() //virtual BOOL LLIMFloater::postBuild() { - LLPanelIMControlPanel* im_control_panel = getChild<LLPanelIMControlPanel>("panel_im_control_panel"); - LLIMModel::LLIMSession* session = get_if_there(LLIMModel::instance().sSessionsMap, mSessionID, (LLIMModel::LLIMSession*)NULL); if(session) { mOtherParticipantUUID = session->mOtherParticipantID; - im_control_panel->setAvatarId(session->mOtherParticipantID); - mDialog = session->mType; + mControlPanel->setID(session->mOtherParticipantID); } LLButton* slide_left = getChild<LLButton>("slide_left_btn"); - slide_left->setVisible(im_control_panel->getVisible()); + slide_left->setVisible(mControlPanel->getVisible()); slide_left->setClickedCallback(boost::bind(&LLIMFloater::onSlide, this)); LLButton* slide_right = getChild<LLButton>("slide_right_btn"); - slide_right->setVisible(!im_control_panel->getVisible()); + slide_right->setVisible(!mControlPanel->getVisible()); slide_right->setClickedCallback(boost::bind(&LLIMFloater::onSlide, this)); mInputEditor = getChild<LLLineEditor>("chat_editor"); @@ -2131,6 +2143,30 @@ BOOL LLIMFloater::postBuild() return TRUE; } + + +// static +void* LLIMFloater::createPanelIMControl(void* userdata) +{ + LLIMFloater *self = (LLIMFloater*)userdata; + self->mControlPanel = new LLPanelIMControlPanel(); + LLUICtrlFactory::getInstance()->buildPanel(self->mControlPanel, "panel_im_control_panel.xml"); + self->mControlPanel->setVisible(FALSE); + return self->mControlPanel; +} + + +// static +void* LLIMFloater::createPanelGroupControl(void* userdata) +{ + LLIMFloater *self = (LLIMFloater*)userdata; + self->mControlPanel = new LLPanelGroupControlPanel(); + LLUICtrlFactory::getInstance()->buildPanel(self->mControlPanel, "panel_group_control_panel.xml"); + self->mControlPanel->setVisible(FALSE); + return self->mControlPanel; +} + + const U32 UNDOCK_LEAP_HEIGHT = 12; const U32 DOCK_ICON_HEIGHT = 6; @@ -2147,6 +2183,7 @@ void LLIMFloater::onFocusLost() } + //virtual void LLIMFloater::setDocked(bool docked, bool pop_on_undock) { @@ -2203,17 +2240,22 @@ void LLIMFloater::updateMessages() for (; iter != iter_end; ++iter) { LLSD msg = *iter; - - message << msg["from"].asString() << " : " << msg["time"].asString() << "\n " << msg["message"].asString() << "\n"; - + + message << "[" << msg["time"].asString() << "] " << msg["from"].asString() << ": \n"; + mHistoryEditor->appendColoredText(message.str(), false, false, LLUIColorTable::instance().getColor("LtGray_50")); + message.str(""); + + message << msg["message"].asString() << "\n"; + mHistoryEditor->appendColoredText(message.str(), false, false, LLUIColorTable::instance().getColor("IMChatColor")); + message.str(""); + mLastMessageIndex = msg["index"].asInteger(); } - mHistoryEditor->appendText(message.str(), false, false); mHistoryEditor->setCursorAndScrollToEnd(); } - } + // static void LLIMFloater::onInputEditorFocusReceived( LLFocusableElement* caller, void* userdata ) { diff --git a/indra/newview/llimpanel.h b/indra/newview/llimpanel.h index dcb0f2416f..8650d8fa07 100644 --- a/indra/newview/llimpanel.h +++ b/indra/newview/llimpanel.h @@ -47,6 +47,7 @@ class LLInventoryItem; class LLInventoryCategory; class LLIMSpeakerMgr; class LLPanelActiveSpeakers; +class LLPanelChatControlPanel; class LLVoiceChannel : public LLVoiceClientStatusObserver { @@ -405,9 +406,11 @@ private: static void onInputEditorFocusLost(LLFocusableElement* caller, void* userdata); static void onInputEditorKeystroke(LLLineEditor* caller, void* userdata); void setTyping(BOOL typing); - - void onSlide(); + void onSlide(); + static void* createPanelIMControl(void* userdata); + static void* createPanelGroupControl(void* userdata); + LLPanelChatControlPanel* mControlPanel; LLUUID mSessionID; S32 mLastMessageIndex; EInstantMessage mDialog; diff --git a/indra/newview/llpanelimcontrolpanel.cpp b/indra/newview/llpanelimcontrolpanel.cpp index 45fe625a13..d34ca88fc6 100644 --- a/indra/newview/llpanelimcontrolpanel.cpp +++ b/indra/newview/llpanelimcontrolpanel.cpp @@ -37,11 +37,9 @@ #include "llavataractions.h" #include "llavatariconctrl.h" #include "llbutton.h" - -static LLRegisterPanelClassWrapper<LLPanelIMControlPanel> t_im_control_panel("panel_im_control_panel"); +#include "llfloatergroupinfo.h" LLPanelIMControlPanel::LLPanelIMControlPanel() -: LLPanel() { } @@ -81,7 +79,34 @@ void LLPanelIMControlPanel::onShareButtonClicked() // *TODO: Implement } -void LLPanelIMControlPanel::setAvatarId(const LLUUID& avatar_id) +void LLPanelIMControlPanel::setID(const LLUUID& avatar_id) { getChild<LLAvatarIconCtrl>("avatar_icon")->setValue(avatar_id); } + + + +BOOL LLPanelGroupControlPanel::postBuild() +{ + childSetAction("group_info_btn", boost::bind(&LLPanelGroupControlPanel::onGroupInfoButtonClicked, this)); + childSetAction("call_btn", boost::bind(&LLPanelGroupControlPanel::onCallButtonClicked, this)); + + return TRUE; +} + +void LLPanelGroupControlPanel::onGroupInfoButtonClicked() +{ + LLFloaterGroupInfo::showFromUUID(mGroupID); +} + + +void LLPanelGroupControlPanel::onCallButtonClicked() +{ + // *TODO: Implement +} + + +void LLPanelGroupControlPanel::setID(const LLUUID& id) +{ + mGroupID = id; +} diff --git a/indra/newview/llpanelimcontrolpanel.h b/indra/newview/llpanelimcontrolpanel.h index be3b2d3130..e82942a31d 100644 --- a/indra/newview/llpanelimcontrolpanel.h +++ b/indra/newview/llpanelimcontrolpanel.h @@ -35,7 +35,19 @@ #include "llpanel.h" -class LLPanelIMControlPanel : public LLPanel + +class LLPanelChatControlPanel : public LLPanel +{ +public: + LLPanelChatControlPanel() {}; + ~LLPanelChatControlPanel() {}; + + // sets the group or avatar UUID + virtual void setID(const LLUUID& avatar_id)= 0; +}; + + +class LLPanelIMControlPanel : public LLPanelChatControlPanel { public: LLPanelIMControlPanel(); @@ -43,7 +55,7 @@ public: BOOL postBuild(); - void setAvatarId(const LLUUID& avatar_id); + void setID(const LLUUID& avatar_id); private: void onViewProfileButtonClicked(); @@ -52,4 +64,24 @@ private: void onShareButtonClicked(); }; + +class LLPanelGroupControlPanel : public LLPanelChatControlPanel +{ +public: + LLPanelGroupControlPanel() {}; + ~LLPanelGroupControlPanel() {}; + + BOOL postBuild(); + + void setID(const LLUUID& id); + +private: + void onGroupInfoButtonClicked(); + void onCallButtonClicked(); + + LLUUID mGroupID; +}; + + + #endif // LL_LLPANELIMCONTROLPANEL_H 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 f058cf0468..53c53dd707 100644 --- a/indra/newview/skins/default/xui/da/floater_world_map.xml +++ b/indra/newview/skins/default/xui/da/floater_world_map.xml @@ -52,6 +52,6 @@ <button label="Vis destination" label_selected="Vis destination" name="Show Destination" tool_tip="Centrér kortet på valgte lokation"/> <button label="Slet" label_selected="Slet" name="Clear" tool_tip="Stop søg"/> <button label="Vis min position" label_selected="Vis min position" name="Show My Location" tool_tip="Centrer kortet på din avatars lokation"/> - <button label="Kopiér SLURL til udklipsholder" name="copy_slurl" tool_tip="Kopierer den nuværende lokation som et SLURL, så det kan bruges på nettet."/> + <button label="Kopiér SLurl til udklipsholder" name="copy_slurl" tool_tip="Kopierer den nuværende lokation som et SLurl, så det kan bruges på nettet."/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_world_map.xml b/indra/newview/skins/default/xui/de/floater_world_map.xml index 555b78b837..fecaf3eaff 100644 --- a/indra/newview/skins/default/xui/de/floater_world_map.xml +++ b/indra/newview/skins/default/xui/de/floater_world_map.xml @@ -52,6 +52,6 @@ <button label="Gesuchte Position" label_selected="Ziel anzeigen" name="Show Destination" tool_tip="Karte auf ausgewählte Position zentrieren"/> <button label="Löschen" label_selected="Löschen" name="Clear" tool_tip="Verfolgung abschalten"/> <button label="Meine Position" label_selected="Wo bin ich?" name="Show My Location" tool_tip="Karte auf Position Ihres Avatars zentrieren"/> - <button font="SansSerifSmall" label="SLURL in die Zwischenablage kopieren" name="copy_slurl" tool_tip="Kopiert die aktuelle Position als SLURL zur Verwendung im Web."/> + <button font="SansSerifSmall" label="SLurl in die Zwischenablage kopieren" name="copy_slurl" tool_tip="Kopiert die aktuelle Position als SLurl zur Verwendung im Web."/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/de/notifications.xml b/indra/newview/skins/default/xui/de/notifications.xml index e920b2451f..6c103f7e37 100644 --- a/indra/newview/skins/default/xui/de/notifications.xml +++ b/indra/newview/skins/default/xui/de/notifications.xml @@ -2072,12 +2072,12 @@ Möchten Sie den Bechäftigt-Modus verlassen, bevor Sie diese Transaktion abschl <usetemplate ignoretext="Beim Leeren von Inventar und Fundstückeordner-" name="okcancelignore" notext="Nein" yestext="Ja"/> </notification> <notification name="CopySLURL"> - Die folgende SLURL wurde in die Zwischenablage kopiert: + Die folgende SLurl wurde in die Zwischenablage kopiert: [SLURL] Veröffentlichen Sie sie auf einer Website, um anderen den Zugang zu diesem Ort zu erleichtern, oder testen Sie sie, indem Sie sie in die Adressleiste Ihres Browsers kopieren. <form name="form"> - <ignore name="ignore" text="Beim Kopieren einer SLURL in die Zwischenablage"/> + <ignore name="ignore" text="Beim Kopieren einer SLurl in die Zwischenablage"/> </form> </notification> <notification name="GraphicsPreferencesHelp"> @@ -2598,7 +2598,7 @@ Gehen Sie zu „Help Island Public“ und wiederholen sie das Tutorial. <notification name="ImproperPaymentStatus"> Die für den Zutritt zu dieser Region erforderlichen Zahlungsinformationen liegen nicht vor. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> Sie müssen alterüberprüft sein, um diese Region betreten zu können. </notification> <notification name="MustGetAgeParcel"> diff --git a/indra/newview/skins/default/xui/en/floater_env_settings.xml b/indra/newview/skins/default/xui/en/floater_env_settings.xml index 8bb67d0d4b..5aa7809208 100644 --- a/indra/newview/skins/default/xui/en/floater_env_settings.xml +++ b/indra/newview/skins/default/xui/en/floater_env_settings.xml @@ -162,13 +162,4 @@ name="EnvAdvancedWaterButton" top_delta="0" width="137" /> - <button - follows="left|top" - height="18" - label="?" - layout="topleft" - left="570" - name="EnvSettingsHelpButton" - top="22" - width="18" /> </floater> 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 4d7fa45a47..61c98299a0 100644 --- a/indra/newview/skins/default/xui/en/floater_im_session.xml +++ b/indra/newview/skins/default/xui/en/floater_im_session.xml @@ -20,9 +20,7 @@ top="16"
left="2">
<layout_panel
- class="panel_im_control_panel"
name="panel_im_control_panel"
- filename="panel_im_control_panel.xml"
layout="topleft"
top_delta="-3"
min_width="96"
diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml index 40847b28fe..1629727d56 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -93,7 +93,7 @@ function="Edit.EnableCustomizeAvatar" /> </menu_item_call> <menu_item_check - label="My Inventory" + label="My Things" layout="topleft" name="Inventory" shortcut="control|I"> @@ -138,7 +138,7 @@ <menu_item_separator layout="topleft" /> <menu_item_call - label="Exit Second Life" + label="Quit Second Life" layout="topleft" name="Quit" shortcut="control|Q"> @@ -173,15 +173,15 @@ </menu_item_call> <menu_item_separator layout="topleft" /> - <menu_item_call + <!--menu_item_call label="Chat" layout="topleft" name="Chat"> <menu_item_call.on_click function="World.Chat" /> - </menu_item_call> + </menu_item_call--> <menu_item_check - label="Nearby Chat" + label="Local Chat" layout="topleft" name="Nearby Chat" shortcut="control|H"> @@ -192,10 +192,8 @@ function="Floater.Toggle" parameter="nearby_chat" /> </menu_item_check> - <menu_item_separator - layout="topleft" /> <menu_item_check - label="Active Speakers" + label="Nearby Speakers" layout="topleft" name="Active Speakers"> <menu_item_check.on_check @@ -270,7 +268,7 @@ <menu_item_separator layout="topleft" /> <menu_item_call - label="About Land" + label="Place Information" layout="topleft" name="About Land"> <menu_item_call.on_click @@ -353,8 +351,7 @@ <menu_item_check.on_check function="Floater.Visible" parameter="mini_map" /> - <menu_item_check.on_click - function="Floater.Toggle" + <menu_item_check.on_clickde parameter="mini_map" /> </menu_item_check> <menu_item_separator @@ -370,7 +367,68 @@ </menu_item_call> <menu_item_separator layout="topleft" /> - <menu_item_check + <menu + create_jump_keys="true" + label="Sun Settings" + layout="topleft" + name="Environment Settings" + tear_off="true"> + <menu_item_call + label="Sunrise" + layout="topleft" + name="Sunrise"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="sunrise" /> + </menu_item_call> + <menu_item_call + label="Midday" + layout="topleft" + name="Noon" + shortcut="control|shift|Y"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="noon" /> + </menu_item_call> + <menu_item_call + label="Sunset" + layout="topleft" + name="Sunset" + shortcut="control|shift|N"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="sunset" /> + </menu_item_call> + <menu_item_call + label="Midnight" + layout="topleft" + name="Midnight"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="midnight" /> + </menu_item_call> + <menu_item_call + label="Use region settings" + layout="topleft" + name="Revert to Region Default"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="default" /> + </menu_item_call> + <menu_item_separator + layout="topleft" /> + <menu_item_call + label="Environment Editor" + layout="topleft" + name="Environment Editor"> + <menu_item_call.on_click + function="World.EnvSettings" + parameter="editor" /> + </menu_item_call> + </menu> + <menu_item_separator + layout="topleft" /> + <menu_item_check label="Build" layout="topleft" name="Build" @@ -433,6 +491,8 @@ function="ShowFloater" parameter="complaint reporter" /> </menu_item_call> + <menu_item_separator + layout="topleft" /> <menu_item_call label="About Second Life" layout="topleft" @@ -1245,65 +1305,6 @@ layout="topleft" /> <menu create_jump_keys="true" - label="Environment Settings" - layout="topleft" - name="Environment Settings" - tear_off="true"> - <menu_item_call - label="Sunrise" - layout="topleft" - name="Sunrise"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="sunrise" /> - </menu_item_call> - <menu_item_call - label="Midday" - layout="topleft" - name="Noon" - shortcut="control|shift|Y"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="noon" /> - </menu_item_call> - <menu_item_call - label="Sunset" - layout="topleft" - name="Sunset" - shortcut="control|shift|N"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="sunset" /> - </menu_item_call> - <menu_item_call - label="Midnight" - layout="topleft" - name="Midnight"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="midnight" /> - </menu_item_call> - <menu_item_call - label="Revert to Region Default" - layout="topleft" - name="Revert to Region Default"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="default" /> - </menu_item_call> - <menu_item_separator - layout="topleft" /> - <menu_item_call - label="Environment Editor" - layout="topleft" - name="Environment Editor"> - <menu_item_call.on_click - function="World.EnvSettings" - parameter="editor" /> - </menu_item_call> - </menu> - <menu - create_jump_keys="true" label="Performance Tools" layout="topleft" name="Performance Tools" @@ -1824,7 +1825,7 @@ function="Advanced.ShowDebugSettings" parameter="all" /> </menu_item_call> - <menu_item_check + <menu_item_check label="Debug (QA) Mode" layout="topleft" name="Debug Mode" diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 17bb961308..8460e98fa3 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -745,6 +745,7 @@ You need to enter both the First and Last name of your avatar. You need an account to enter [SECOND_LIFE]. Would you like to create one now? <url option="0" + name="url" openexternally = "1"> http://secondlife.com/registration/ @@ -810,7 +811,7 @@ Delete pick [PICK]? name="PromptGoToEventsPage" type="alertmodal"> Go to the [SECOND_LIFE] events web page? - <url option="0"> + <url option="0" name="url"> http://secondlife.com/events/ </url> @@ -890,7 +891,7 @@ The new skin will appear after you restart [SECOND_LIFE]. name="GoToAuctionPage" type="alertmodal"> Go to the [SECOND_LIFE] web page to see auction details or make a bid? - <url option="0"> + <url option="0" name="url"> http://secondlife.com/auctions/auction-detail.php?id=[AUCTION_ID] </url> @@ -1205,7 +1206,7 @@ Please move all objects to be acquired onto the same region. [EXTRA] Go to [_URL] for information on purchasing currency? - <url option="0"> + <url option="0" name="url"> http://secondlife.com/app/currency/ </url> @@ -2360,7 +2361,7 @@ Return to www.secondlife.com to create a new account? We're having trouble connecting. There may be a problem with your internet connection or the Second Life servers. You can either check your internet connection and try again in a few minutes, click Help to connect to our support site, or click Teleport to attempt to teleport home. - <url option="1"> + <url option="1" name="url"> http://secondlife.com/support/ </url> @@ -4958,7 +4959,7 @@ Automatically wear the clothing you create? You must be age-verified to visit this area. Visit the Second Life website and verify your age? [_URL] - <url option="0"> + <url option="0" name="url"> https://secondlife.com/account/verification.php </url> diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index 91039539f9..5e2e2267f6 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -166,8 +166,8 @@ image_unselected="camera_presets/camera_presets_arrow_right.png" image_disabled_selected="camera_presets/camera_presets_arrow_right.png" image_disabled="camera_presets/camera_presets_arrow_right.png" + name="snapshot_settings" tool_tip="Snapshot Settings" /> - /> <split_button.item image_selected="camera_presets/camera_presets_snapshot.png" image_unselected="camera_presets/camera_presets_snapshot.png" diff --git a/indra/newview/skins/default/xui/en/panel_group_control_panel.xml b/indra/newview/skins/default/xui/en/panel_group_control_panel.xml new file mode 100644 index 0000000000..66a3a75cc4 --- /dev/null +++ b/indra/newview/skins/default/xui/en/panel_group_control_panel.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<panel name="panel_im_control_panel"
+ width="96"
+ height="215"
+ border="false">
+ <avatar_list
+ width="90"
+ column_padding="0"
+ draw_heading="true"
+ draw_stripes="false"
+ follows="left|top|bottom|right"
+ layout="topleft"
+ left="3"
+ name="speakers_list"
+ search_column="1"
+ sort_column="2"
+ top="10"
+ height="150" />
+
+ <button name="group_info_btn"
+ label="Group Info"
+ left_delta="3"
+ width="90"
+ height="20" />
+
+ <button name="call_btn"
+ label="Call"
+ width="90"
+ height="20" />
+
+</panel>
diff --git a/indra/newview/skins/default/xui/en/panel_group_general.xml b/indra/newview/skins/default/xui/en/panel_group_general.xml index b9a384bf8f..454236f5ad 100644 --- a/indra/newview/skins/default/xui/en/panel_group_general.xml +++ b/indra/newview/skins/default/xui/en/panel_group_general.xml @@ -2,13 +2,13 @@ <panel border="true" follows="all" - height="514" + height="500" label="General" class="panel_group_general" layout="topleft" left="1" name="general_tab" - top="514" + top="500" width="280"> <panel.string name="help_text"> @@ -40,105 +40,57 @@ Hover your mouse over the options for more help. name="help_button" top="8" width="20" /> --> - <line_editor + <name_box follows="left|top" - font="SansSerifSmall" - prevalidate_callback="asci" - halign="left" height="16" - label="Type your new group name here" + initial_value="(retrieving)" layout="topleft" left="10" - max_length="35" - name="group_name_editor" - top="8" - width="235" /> - <text - type="string" - length="1" - follows="left|top" - font="SansSerifSmall" - height="16" - layout="topleft" - left_delta="0" - name="group_name" - top_delta="0" - width="240"> - Type your new group name here - </text> + name="founder_name" + top_pad="10" + width="100" /> <text type="string" length="1" follows="left|top" height="16" layout="topleft" - left_delta="0" + left_pad="10" name="prepend_founded_by" - top_pad="4" - width="270"> - Founded by: + top_delta="0" + width="140"> + , Founder </text> - <name_box - follows="left|top" - height="16" - initial_value="(retrieving)" - layout="topleft" - left="30" - name="founder_name" - top_pad="0" - width="133" /> + <text_editor type="string" length="1" follows="left|top" - halign="left" - height="125" + left="10" + height="75" hide_scrollbar="true" layout="topleft" max_length="511" name="charter" - right="275" - top_pad="0" - width="170" + top_pad="4" + width="260" word_wrap="true"> Group Charter </text_editor> - <texture_picker - follows="left|top" - height="96" - label="" - layout="topleft" - left_delta="-95" - name="insignia" - tool_tip="Click to choose a picture" - top_delta="1" - width="85" /> - <text - follows="left|top" - type="string" - length="1" - height="16" - layout="topleft" - name="group_charter_label" - right="275" - top="190" - width="170"> - Group Charter - </text> - <button + <!--<button follows="left|top" - height="22" + height="20" font="SansSerifSmall" label="Join (L$0)" label_selected="Join (L$0)" layout="topleft" left="10" name="join_button" - top="160" + top_pad="10" width="85" /> <button follows="left|top" - height="22" + height="20" font="SansSerifSmall" label="Details" label_selected="Detailed View" @@ -146,31 +98,20 @@ Hover your mouse over the options for more help. left_delta="0" name="info_button" top_delta="0" - width="85" /> + width="85" /> --> <text follows="left|top" type="string" length="1" - font="SansSerif" + font="SansSerifBig" + tool_tip="Owners are shown in bold." height="16" layout="topleft" left_delta="0" name="text_owners_and_visible_members" - top_pad="30" - width="270"> - Owners & Visible Members - </text> - <text - follows="left|top" - type="string" - length="1" - height="16" - layout="topleft" - left_delta="0" - name="text_owners_are_shown_in_bold" - top_pad="0" + top_pad="10" width="270"> - (Owners are shown in bold) + Members </text> <name_list column_padding="0" @@ -186,48 +127,75 @@ Hover your mouse over the options for more help. <name_list.columns label="Member Name" name="name" - relative_width="0.45" /> + relative_width="0.6" /> <name_list.columns label="Title" name="title" - relative_width="0.3" /> - <name_list.columns - label="Last Login" - name="online" - relative_width="0.25" /> - </name_list> + relative_width="0.4" /> + </name_list> <text follows="left|top" height="16" type="string" length="1" top_pad="10" - font="SansSerif" + font="SansSerifBig" layout="topleft" name="text_group_preferences"> Group Preferences </text> - <panel - background_opaque="true" - bevel_style="in" - border="true" - follows="left|top" - height="125" - layout="topleft" - left_delta="0" - name="preferences_container" - top_pad="0" - width="263"> + <text + follows="left|top" + type="string" + length="1" + height="16" + layout="topleft" + left_delta="0" + name="active_title_label" + top_pad="8" + width="240"> + My Active Title + </text> + <combo_box + follows="left|top" + height="20" + layout="topleft" + left_delta="0" + name="active_title" + tool_tip="Sets the title that appears in your avatar's name tag when this group is active." + top_pad="0" + width="240" /> <check_box height="16" - initial_value="true" - label="Show in search" + font="SansSerifSmall" + label="Receive notices" layout="topleft" - left="4" - name="show_in_group_list" - tool_tip="Let people see this group in search results." - top="4" - width="90" /> + left_delta="0" + name="receive_notices" + tool_tip="Sets whether you want to receive Notices from this group. Uncheck this box if this group is spamming you." + top_pad="5" + width="240" /> + <check_box + height="16" + label="Show in my profile" + layout="topleft" + left_delta="0" + name="list_groups_in_profile" + tool_tip="Sets whether you want to show this group in your Profile" + top_pad="5" + width="240" /> + <panel + background_visible="true" + bevel_style="in" + border="true" + bg_alpha_color="FloaterUnfocusBorderColor" + follows="left|top" + height="125" + layout="topleft" + left_delta="0" + name="preferences_container" + top_pad="10" + width="263"> <check_box follows="right|top" height="16" @@ -235,12 +203,12 @@ Hover your mouse over the options for more help. layout="topleft" left_delta="0" name="open_enrollement" - tool_tip="Sets whether this group allows new members to join without being invited." + tool_tip="Sets whether this group allows new members to join without being invited." top_pad="5" width="90" /> <check_box height="16" - label="Enrollment fee: L$" + label="Enrollment fee:" layout="topleft" left_delta="0" name="check_enrollment_fee" @@ -253,7 +221,8 @@ Hover your mouse over the options for more help. halign="left" height="16" increment="1" - label_width="10" + label_width="20" + label="L$" layout="topleft" left="25" max_val="99999" @@ -261,53 +230,25 @@ Hover your mouse over the options for more help. name="spin_enrollment_fee" tool_tip="New members must pay this fee to join the group when Enrollment Fee is checked." top_delta="-2" - width="65" /> + width="75" /> <check_box height="16" - font="SansSerifSmall" - label="Receive notices" - layout="topleft" - left="5" - name="receive_notices" - tool_tip="Sets whether you want to receive Notices from this group. Uncheck this box if this group is spamming you." - top_pad="5" - width="240" /> - <check_box - height="16" - label="List in my profile" - layout="topleft" - left="5" - name="list_groups_in_profile" - tool_tip="Sets whether you want to list this group in your Profile" - top_pad="5" - width="240" /> - <text - type="string" - length="1" - height="16" + initial_value="true" + label="Show in search" layout="topleft" - left="145" - name="active_title_label" - top="4" - width="95"> - My Active Title - </text> + left="4" + name="show_in_group_list" + tool_tip="Let people see this group in search results." + top_pad="4" + width="90" /> <combo_box height="20" layout="topleft" left_delta="0" - name="active_title" - tool_tip="Sets the title that appears in your avatar's name tag when this group is active." - top_pad="0" - width="110" /> - <combo_box - height="20" - layout="topleft" - left_delta="0" name="group_mature_check" tool_tip="Sets whether your group information is considered mature." top_pad="10" - width="120"> + width="240"> <combo_box.item label="Select Mature -" name="select_mature" diff --git a/indra/newview/skins/default/xui/en/panel_group_notices.xml b/indra/newview/skins/default/xui/en/panel_group_notices.xml index 2e5f2dcb0b..c4dc4fcea9 100644 --- a/indra/newview/skins/default/xui/en/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/en/panel_group_notices.xml @@ -2,12 +2,12 @@ <panel border="true" follows="all" - height="530" + height="485" label="Notices" layout="topleft" left="1" name="notices_tab" - top="530" + top="485" width="280"> <panel.string name="help_text"> @@ -32,7 +32,7 @@ the General tab. name="help_button" top="8" width="20" /> --> - <text + <!--<text follows="left|top" type="string" length="1" @@ -44,19 +44,19 @@ the General tab. top_pad="10" width="269"> Group Notices Archive - </text> + </text> --> <text follows="left|top" type="string" length="1" word_wrap="true" - height="73" + height="40" layout="topleft" - left_delta="0" + left_delta="10" name="lbl2" - top_pad="4" + top_pad="10" width="270"> - Notices are kept for 14 days. Click the notice below if you wish to view. Click the 'Refresh' button to check if new notices have been received. Notice lists are limited to 200 notices per group on a daily basis. + Notices are kept for 14 days. Notice lists are limited to 200 notices per group on a daily basis. </text> <scroll_list follows="left|top" @@ -127,7 +127,7 @@ the General tab. layout="topleft" left="0" name="panel_create_new_notice" - top="250" + top_pad="10" width="265"> <text follows="left|top" @@ -153,8 +153,8 @@ the General tab. left_delta="0" name="lbl2" top_pad="4" - width="196"> - You must enter a subject to send a notice. You can add a single item to a notice by dragging it from your inventory to this panel. Attached items must be copiable and transferrable, and you can't send a folder. + width="195"> + You can add a single item to a notice by dragging it from your inventory to this panel. Attached items must be copiable and transferrable, and you can't send a folder. </text> <text follows="left|top" @@ -288,7 +288,7 @@ the General tab. layout="topleft" left="0" name="panel_view_past_notice" - top="250" + top="197" width="265"> <text type="string" diff --git a/indra/newview/skins/default/xui/en/panel_notes.xml b/indra/newview/skins/default/xui/en/panel_notes.xml index e616389c36..016aa64927 100644 --- a/indra/newview/skins/default/xui/en/panel_notes.xml +++ b/indra/newview/skins/default/xui/en/panel_notes.xml @@ -2,100 +2,95 @@ <panel bevel_style="in" follows="left|top|right|bottom" - height="570" - width="295" - border="false" + height="420" + label="Notes & Privacy" layout="topleft" left="0" + name="panel_notes" top="0" - label="Notes & Privacy" - name="panel_notes"> + width="285"> <scroll_container color="DkGray2" follows="left|top|right|bottom" - height="570" - width="265" + height="350" layout="topleft" - left="5" - top_pad="0" - bevel_style="in" - opaque="true" + left="2" name="profile_scroll" - reserve_scroll_corner="false"> - <text - type="string" - length="1" - follows="left|top" - font="SansSerifBold" - height="16" - width="225" - left="0" - name="status_message" - text_color="white" - top=""> - My private notes: - </text> - <text_editor - height="200" - follows="left|top" - width="243" - hide_scrollbar="true" - left="10" - max_length="1000" - name="notes_edit" - text_color="black" - top_pad="10" - word_wrap="true" /> - <text - type="string" - length="1" - follows="left|top" - font="SansSerifBold" - height="16" - width="225" - left="10" - name="status_message2" - text_color="white" - top_pad="30"> - Let this person: - </text> - <check_box - enabled="false" - follows="left|top" - width="230" - height="20" - label="See my online status" - left="20" - top_pad="10" - name="status_check" /> - <check_box - enabled="false" - follows="left|top" - width="230" - height="20" - label="See me on the map" - left="20" - top_pad="10" - name="map_check"/> - <check_box - enabled="false" - follows="left|top" - width="230" - height="20" - label="Edit, delete or take my objects" - left="20" - top_pad="10" - name="objects_check" /> + opaque="true" + top="0" + width="284"> + <text + follows="left|top" + font="SansSerifBold" + height="16" + layout="topleft" + left="10" + name="status_message" + text_color="white" + top="0" + value="My private notes:" + width="230" /> + <text_editor + follows="left|top" + height="200" + hide_scrollbar="true" + layout="topleft" + left="10" + max_length="1000" + name="notes_edit" + text_color="black" + top_pad="10" + width="255" + word_wrap="true" /> + <text + follows="left|top" + font="SansSerifBold" + height="16" + layout="topleft" + left="10" + name="status_message2" + text_color="white" + top_pad="10" + value="Let this person:" + width="225" /> + <check_box + enabled="false" + height="20" + label="See my online status" + layout="topleft" + left="20" + name="status_check" + top_pad="0" + width="230" /> + <check_box + enabled="false" + height="20" + label="See me on the map" + layout="topleft" + left="20" + name="map_check" + top_pad="0" + width="230" /> + <check_box + enabled="false" + height="20" + label="Edit, delete or take my objects" + layout="topleft" + left="20" + name="objects_check" + top_pad="0" + width="230" /> </scroll_container> <panel follows="bottom|left" height="30" - width="280" layout="topleft" left="10" + name="notes_buttons_panel" top_pad="5" - name="notes_buttons_panel"> + width="280"> <button + enabled="false" follows="bottom|left" font="SansSerifSmallBold" height="25" @@ -103,19 +98,18 @@ layout="topleft" left="0" name="teleport_btn" - enabled="false" top="0" width="75" /> <button + enabled="false" follows="bottom|left" font="SansSerifSmallBold" height="25" - label="Show on Map" + label="Map" layout="topleft" - left_pad="0" name="show_on_map_btn" - enabled="false" top="0" - width="105" /> + left_pad="5" + width="85" /> </panel> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_pick_info.xml b/indra/newview/skins/default/xui/en/panel_pick_info.xml index 1425246540..0075eef9ef 100644 --- a/indra/newview/skins/default/xui/en/panel_pick_info.xml +++ b/indra/newview/skins/default/xui/en/panel_pick_info.xml @@ -1,69 +1,62 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel - follows="left|top|right|bottom" bevel_style="in" + follows="left|top|right|bottom" height="625" - width="280" layout="topleft" left="0" name="panel_pick_info" - top="0"> + top="0" + width="265"> <text - type="string" - length="1" follows="top" font="SansSerifHugeBold" height="15" layout="topleft" - left="40" + left="0" name="title" text_color="white" top="0" - width="150"> - Pick Info - </text> - <button + value="Pick Info" + width="150" /> + <button follows="top|right" - right="-25" - top="10" - width="20" height="20" image_overlay="BackArrow_Off" layout="topleft" name="back_btn" - picture_style="true" /> + picture_style="true" + right="-25" + top="10" + width="20" /> <panel - follows="left|right|top|bottom" - min_height="300" - width="280" - layout="topleft" background_visible="true" bg_alpha_color="DkGray2" - left="10" - top="30"> + follows="left|right|top|bottom" + layout="topleft" + left="0" + min_height="300" + top="30" + width="265"> <texture_picker enabled="false" follows="left|top|right" - height="150" + height="300" layout="topleft" left="10" name="pick_snapshot" - right="-10" - top="10" /> + top="10" + width="260" /> <text - type="string" - length="1" follows="left|top" + font="SansSerifBigBold" height="15" layout="topleft" left="10" name="Name:" - text_color="white"> - Name: - </text> + text_color="white" + value="Name:" /> <text - type="string" - length="1" follows="left|top|right" height="15" layout="topleft" @@ -71,25 +64,20 @@ name="pick_name" right="-10" text_color="white" - word_wrap="true"> - [name] - </text> + value="[name]" + word_wrap="true" /> <text - type="string" follows="left|top" + font="SansSerifBigBold" height="15" layout="topleft" left="10" name="description_label" text_color="white" top_pad="20" - v_pad="0" - valign="center"> - Description: - </text> + valign="center" + value="Description:" /> <text - type="string" - length="1" follows="left|top|right" height="60" layout="topleft" @@ -98,42 +86,38 @@ right="-10" text_color="white" valign="center" - word_wrap="true"> - [description] - </text> + value="[description]" + width="260" + word_wrap="true" /> <text - type="string" - length="1" follows="left|top" + font="SansSerifBigBold" height="20" layout="topleft" left="10" name="location_label" text_color="white" top_pad="20" - valign="bottom"> - Location: - </text> + valign="bottom" + value="Location:" /> <text - type="string" follows="left|top" height="30" layout="topleft" left="10" name="pick_location" text_color="white" - valign="center"> - [loading...] - </text> + valign="center" + value="[loading...]" /> </panel> <panel + bottom="660" follows="left|right|bottom" height="30" layout="topleft" left="8" name="buttons" - right="-10" - bottom="660"> + right="-10"> <button follows="bottom|left" font="SansSerifSmallBold" @@ -150,7 +134,6 @@ height="25" label="Teleport" layout="topleft" - left_pad="0" name="teleport_btn" top="0" width="80" /> @@ -160,20 +143,8 @@ height="25" label="Show on Map" layout="topleft" - left_pad="0" name="show_on_map_btn" top="0" width="100" /> - <button - enabled="false" - follows="bottom|left" - font="SansSerifSmallBold" - height="25" - label="Verb" - layout="topleft" - left_pad="0" - name="verb_btn" - top="0" - width="50" /> </panel> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_pick_list_item.xml b/indra/newview/skins/default/xui/en/panel_pick_list_item.xml index 78bec6035f..0bfdb12806 100644 --- a/indra/newview/skins/default/xui/en/panel_pick_list_item.xml +++ b/indra/newview/skins/default/xui/en/panel_pick_list_item.xml @@ -1,57 +1,57 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel - border="false" + bevel_style="none" follows="top|left|right|bottom" - top="0" + height="120" + layout="topleft" left="0" - height="100" - width="265" - name="picture_item"> + name="picture_item" + top="0" + width="275"> <texture_picker allow_no_texture="true" default_image_name="None" enabled="false" follows="left|top" - height="100" - width="100" + height="120" layout="topleft" - left="10" - bottom_pad="10" + left="5" mouse_opaque="false" name="picture" tab_stop="false" - top="10" /> + top="5" + width="120" /> <text follows="top|left|right" - font="SansSerifTiny" height="16" layout="topleft" - left="120" + left="135" name="picture_name" - top="10" text_color="white" + top="5" use_ellipses="true" - width="120" /> + width="120" + word_wrap="true" /> <text follows="top|left|right" - font="SansSerifTiny" - height="60" - width="140" - top_pad="0" + height="75" layout="topleft" + left="135" name="picture_descr" + top_pad="10" use_ellipses="true" + width="130" word_wrap="true" /> <button follows="top|right" height="16" - image_selected="Info" - image_unselected="Info" + image_selected="Info_Press" + image_unselected="Info_Off" layout="topleft" name="info_chevron" picture_style="true" + right="262" tab_stop="false" - top="6" - left="233" + top="3" width="16" /> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_picks.xml b/indra/newview/skins/default/xui/en/panel_picks.xml index 2be9f900da..47cfd8e129 100644 --- a/indra/newview/skins/default/xui/en/panel_picks.xml +++ b/indra/newview/skins/default/xui/en/panel_picks.xml @@ -1,53 +1,32 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel - bevel_style="in" follows="left|top|right|bottom" - height="570" - width="295" - border="false" + height="420" + label="Picks" layout="topleft" left="0" + name="panel_picks" top="0" - label="Picks" - name="panel_picks"> + width="285"> <scroll_container color="DkGray2" follows="left|top|right|bottom" - height="570" - width="265" + height="350" layout="topleft" - left="5" - top_pad="0" - bevel_style="in" - opaque="true" + left="2" name="profile_scroll" - reserve_scroll_corner="false"> -<!-- below is a special title shown for the Agent on the "Picks" tab - <text - type="string" - length="1" - follows="top" - font="SansSerifBold" - height="35" - width="250" - layout="topleft" - left="10" - name="pick_title_agent" - text_color="white" - top_pad="25" - visible="false" - word_wrap="true"> - Tell everyone about your favorite Second Life places... - </text>--> + opaque="true" + top="0" + width="284"> <panel height="115" - width="265" layout="topleft" left="0" name="back_panel" - top="0" /> + top="0" + width="284" /> </scroll_container> - <panel + <panel background_visible="true" bevel_style="none" enabled="false" @@ -55,17 +34,14 @@ height="30" label="bottom_panel" layout="topleft" - left="0" name="edit_panel" - visible="false" - top_pad="0" - width="280"> + top_pad="5" + width="284"> <button enabled="false" follows="bottom|left" font="SansSerifBigBold" height="18" - hover_glow_amount="0.15" image_selected="OptionsMenu_Press" image_unselected="OptionsMenu_Off" layout="topleft" @@ -80,7 +56,6 @@ height="18" image_disabled="AddItem_Off" image_disabled_selected="AddItem_Press" - hover_glow_amount="0.15" image_selected="AddItem_Press" image_unselected="AddItem_Off" layout="topleft" @@ -96,7 +71,6 @@ height="18" image_disabled="TrashItem_Off" image_disabled_selected="TrashItem_Press" - hover_glow_amount="0.15" image_selected="TrashItem_Press" image_unselected="TrashItem_Off" layout="topleft" @@ -109,32 +83,17 @@ <panel follows="bottom|left" height="30" - width="280" layout="topleft" - left="10" - top_pad="5" - name="buttons_cucks"> + name="buttons_cucks" + width="284"> <button - follows="bottom|left" - font="SansSerifSmallBold" - height="25" - label="Teleport" - layout="topleft" - left="0" - name="teleport_btn" enabled="false" - top="0" - width="75" /> - <button follows="bottom|left" font="SansSerifSmallBold" height="25" - label="Show on Map" + label="Map" layout="topleft" - left_pad="0" name="show_on_map_btn" - enabled="false" - top="0" - width="105" /> + width="85" /> </panel> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_places.xml b/indra/newview/skins/default/xui/en/panel_places.xml index 1a88cc55ec..73cd988103 100644 --- a/indra/newview/skins/default/xui/en/panel_places.xml +++ b/indra/newview/skins/default/xui/en/panel_places.xml @@ -19,37 +19,36 @@ background_image="TextField_Search_Off" follows="left|top|right" font="SansSerif" - height="20" + height="23" label="Filter" layout="topleft" left="15" name="Filter" text_color="black" - text_pad_left="23" + text_pad_left="26" top="3" - width="270" /> + width="256" /> <button follows="left|top|right" - font="SansSerifBigBold" height="13" image_selected="Search" image_unselected="Search" layout="topleft" - left="23" + left="20" name="landmark_search" picture_style="true" scale_image="false" - top="5" + top="8" width="13" /> <tab_container - follows="all" + follows="left|top|right|bottom" height="326" layout="topleft" - left="10" + left="9" name="Places Tabs" tab_position="top" - top_pad="19" - width="280" /> + top_pad="15" + width="285" /> <button follows="bottom|left" font="SansSerifSmallBold" @@ -73,9 +72,10 @@ image_unselected="widgets/ComboButton_Off.png" label="▼" layout="topleft" - left_pad="0" + top_pad="0" name="folder_menu_btn" visible="false" + left_pad="5" width="20" /> <button follows="bottom|left" @@ -84,40 +84,28 @@ label="Teleport" layout="topleft" left="10" + top_pad="0" name="teleport_btn" - top_delta="0" width="80" /> <button follows="bottom|left" font="SansSerifSmallBold" height="25" - label="Show on Map" + label="Map" layout="topleft" - left_pad="0" name="map_btn" - top_delta="0" - width="110" /> + left_pad="5" + width="80" /> <button enabled="false" follows="bottom|left" font="SansSerifSmallBold" height="25" + left_pad="5" label="Share" layout="topleft" - left_pad="0" name="share_btn" - top_delta="0" width="60" /> - <button - follows="bottom|right" - font="SansSerifSmallBold" - height="25" - label="▼" - layout="topleft" - left_pad="0" - name="overflow_btn" - top_delta="0" - width="30" /> <panel class="panel_place_info" filename="panel_place_info.xml" @@ -125,6 +113,5 @@ layout="topleft" left="0" name="panel_place_info" - top="-200" visible="false" /> </panel> diff --git a/indra/newview/skins/default/xui/en/panel_profile_view.xml b/indra/newview/skins/default/xui/en/panel_profile_view.xml index a14d8bbc6b..6d7cabc5c0 100644 --- a/indra/newview/skins/default/xui/en/panel_profile_view.xml +++ b/indra/newview/skins/default/xui/en/panel_profile_view.xml @@ -1,60 +1,55 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel background_visible="true" - follows="left|top|right|bottom" - width="305" - height="650" - label="Profile" - bevel_style="in" + follows="all" + height="550" layout="topleft" - left="0" + min_height="350" + min_width="240" name="panel_target_profile" - top="0"> + width="305"> <text + follows="top|left|right" + font="SansSerifHugeBold" + height="20" layout="topleft" - top="0" left="10" - width="250" - height="20" - font="SansSerifHugeBold" + name="user_name" text_color="white" - follows="top|left|right" - mouse_opaque="true" - name="user_name">(Loading...)</text> + top="0" + value="(Loading...)" + width="250" /> <text - layout="topleft" - width="100" + follows="top|left" height="16" + layout="topleft" left="10" - top_pad="5" - font="SansSerifTiny" + name="status" text_color="LtGray_50" - follows="top|left" - mouse_opaque="true" - name="status">Online</text> + top_pad="5" + value="Online" + width="100" /> <button + follows="top|right" + height="25" + image_overlay="BackArrow_Off" layout="topleft" name="back" + picture_style="true" right="-10" - top="0" - width="25" - height="25" - label="" tab_stop="false" - follows="top|right" - image_selected="" - image_unselected="" - image_overlay="BackArrow_Off" /> + top="0" + width="25" /> <tab_container follows="left|top|right|bottom" - height="550" - width="306" - tab_min_width="75" + height="420" layout="topleft" left="10" name="tabs" + tab_min_width="75" tab_position="top" - top_pad="20"> + top_pad="15" + width="285"> <panel class="panel_profile" filename="panel_profile.xml" diff --git a/indra/newview/skins/default/xui/en/panel_side_tray_tab_caption.xml b/indra/newview/skins/default/xui/en/panel_side_tray_tab_caption.xml index 4ae90380f8..fa455dffb0 100644 --- a/indra/newview/skins/default/xui/en/panel_side_tray_tab_caption.xml +++ b/indra/newview/skins/default/xui/en/panel_side_tray_tab_caption.xml @@ -1,15 +1,21 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<panel name="sidetray_tab_panel" - bottom="0" height="25" left="0" background_visible="false" - bg_visible="false" border="false" border_visible="false" - bg_opaque_color="0.7 0.3 0.7 1.0" - follows="left|top|right" - mouse_opaque="true"> - <text type="string" length="1" bg_visible="false" border_visible="false" - bottom="0" enabled="true" follows="left|top" - height="20" left="10" - font="SansSerifBold" halign="left" - name="sidetray_tab_title" width="100"> - Side Panel - </text> +<panel + background_visible="true" + bottom="0" + follows="left|top|right" + height="20" + layout="topleft" + left="0" + name="sidetray_tab_panel"> + <text + follows="left|top" + font="SansSerifHuge" + height="16" + layout="topleft" + left="10" + name="sidetray_tab_title" + text_color="white" + top="4" + value="Side Panel" + width="255" /> </panel> 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 d7ffe9205d..bb5738be27 100644 --- a/indra/newview/skins/default/xui/fr/floater_world_map.xml +++ b/indra/newview/skins/default/xui/fr/floater_world_map.xml @@ -66,6 +66,6 @@ <button label="Afficher la destination" label_selected="Afficher la destination" name="Show Destination" tool_tip="Centrer la carte sur l'endroit sélectionné" width="165"/> <button label="Effacer" label_selected="Effacer" left="-270" name="Clear" tool_tip="Arrêter de suivre"/> <button label="Afficher mon emplacement" label_selected="Afficher mon emplacement" name="Show My Location" tool_tip="Centrer la carte sur l'emplacement de votre avatar" width="165"/> - <button label="Copier la SLURL dans le presse-papiers" left="-270" name="copy_slurl" tool_tip="Copier l'emplacement actuel comme SLURL pour l'utiliser sur le Web." width="262"/> + <button label="Copier la SLurl dans le presse-papiers" left="-270" name="copy_slurl" tool_tip="Copier l'emplacement actuel comme SLurl pour l'utiliser sur le Web." width="262"/> <slider label="Zoom" left="-270" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/fr/notifications.xml b/indra/newview/skins/default/xui/fr/notifications.xml index ac8d0cc605..30092a426f 100644 --- a/indra/newview/skins/default/xui/fr/notifications.xml +++ b/indra/newview/skins/default/xui/fr/notifications.xml @@ -2068,12 +2068,12 @@ Souhaitez-vous quitter le mode occupé avant de terminer cette transaction ? <usetemplate ignoretext="Losque vous videz le dossier Objets trouvés dans votre inventaire" name="okcancelignore" notext="Non" yestext="Oui"/> </notification> <notification name="CopySLURL"> - La SLURL suivante a été copiée dans votre presse-papiers : + La SLurl suivante a été copiée dans votre presse-papiers : [SLURL] Mettez-la dans une page web pour permettre aux autres résidents d'accéder facilement à cet endroit ou bien collez-la dans la barre d'adresse de votre navigateur. <form name="form"> - <ignore name="ignore" text="Lorsque vous copiez une SLURL dans votre presse-papier"/> + <ignore name="ignore" text="Lorsque vous copiez une SLurl dans votre presse-papier"/> </form> </notification> <notification name="GraphicsPreferencesHelp"> @@ -2595,7 +2595,7 @@ Pour répéter le didacticiel, veuillez aller sur Help Island Public. <notification name="ImproperPaymentStatus"> Vous n'avez pas le statut de paiement approprié pour pénétrer dans cette région. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> Pour pouvoir pénétrer dans cette région, vous devez avoir procédé à la vérification de votre âge. </notification> <notification name="MustGetAgeParcel"> 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 088c8a7189..9b2fc5aff1 100644 --- a/indra/newview/skins/default/xui/it/floater_world_map.xml +++ b/indra/newview/skins/default/xui/it/floater_world_map.xml @@ -54,6 +54,6 @@ <button font="SansSerifSmall" left_delta="91" width="135" label="Mostra destinazione" label_selected="Mostra destinazione" name="Show Destination" tool_tip="Centra la mappa sul luogo prescelto"/> <button font="SansSerifSmall" label="Pulisci" label_selected="Pulisci" name="Clear" tool_tip="Togli traccia"/> <button font="SansSerifSmall" left_delta="91" width="135" label="Mostra la mia posizione" label_selected="Mostra la mia posizione" name="Show My Location" tool_tip="Centra la mappa alla posizione del tuo avatar"/> - <button font="SansSerifSmall" label="Copia lo SLURL negli appunti" name="copy_slurl" tool_tip="Copia l'attuale posizione quale SLURL utilizzabile nel web."/> + <button font="SansSerifSmall" label="Copia lo SLurl negli appunti" name="copy_slurl" tool_tip="Copia l'attuale posizione quale SLurl utilizzabile nel web."/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/it/notifications.xml b/indra/newview/skins/default/xui/it/notifications.xml index 786bfdf7ef..a9edf6766e 100644 --- a/indra/newview/skins/default/xui/it/notifications.xml +++ b/indra/newview/skins/default/xui/it/notifications.xml @@ -174,7 +174,7 @@ Vuoi davvero dare i diritti di modifica ai residenti selezionati? Non si possono rimuovere membri da quel ruolo. I membri devono dimettersi volontariamente dal ruolo. Confermi l'operazione? - <usetemplate ignoretext="Quando si aggiungono membri al ruolo di proprietario" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando si aggiungono membri al ruolo di proprietario del gruppo." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="AssignDangerousActionWarning"> Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. @@ -195,7 +195,7 @@ Aggiungi questo potere a '[ROLE_NAME]'? <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> </notification> <notification name="ClickPublishHelpLand"> - Selezionare "Pubblica in Ricerca" + Selezionare 'Pubblica in Ricerca' Marcando questo campo si mostrerà: - questo terreno nei risultati di ricerca - gli oggetti pubblici di questo terreno @@ -225,7 +225,7 @@ Marcando questo campo si mostrerà: Non puoi rendere questo terreno visibile nella ricerca perchè è in una regione che non lo consente. </notification> <notification name="ClickPublishHelpAvatar"> - Scegliendo "Mostra in Ricerca" verrà mostrato: + Scegliendo 'Mostra in Ricerca' verrà mostrato: - il mio profilo nei risultati della ricerca - un link al mio profilo nelle pagine pubbliche del gruppo </notification> @@ -383,7 +383,7 @@ Hai bisogno di un account per entrare in [SECOND_LIFE]. Ne vuoi creare uno adess Compila il tuo annuncio e clicca 'Pubblica...' per aggiungerlo al database. Ti verrà chiesto un prezzo da pagare quando clicchi su Pubblica. Pagare un prezzo più alto fa sì che il tuo annuncio compaia più in alto nella lista, e che sia più facile da trovare quando la gente ricerca per parole chiavi. - <usetemplate ignoretext="Mentre si aggiunge un annuncio" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando si aggiunge una inserzione." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="DeleteClassified"> Cancella annuncio '[NAME]'? @@ -493,14 +493,14 @@ Vuoi visitare [_URL] per maggiori informazioni? <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=it </url> - <usetemplate ignoretext="Mentre sto individuando hardware non supportato" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando sto individuando hardware non supportato." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="UnknownGPU"> Il tuo sistema contiene una scheda grafica che attualmente non supportiamo. Questo succede spesso con nuovi prodotti che non siamo riusciti a verificare. Probabilmente Second Life funzionerà correttamente ma forse dovrai modificare le impostazioni grafiche in modo appropriato. (Modifica > Preferenze > Grafica). <form name="form"> - <ignore name="ignore" text="Mentre stavo valutando una scheda grafica sconosciuta"/> + <ignore name="ignore" text="Quando sto valutando una scheda grafica sconosciuta"/> </form> </notification> <notification name="DisplaySettingsNoShaders"> @@ -736,7 +736,7 @@ Spiacenti, ma non hai accesso nel luogo di destinazione richiesto. Gli oggetti da te indossati non sono ancoa arrivati. Attendi ancora qualche secondo o scollegati e ricollegati prima di provare a teleportarti. </notification> <notification name="too_many_uploads_tport"> -La gestione dati della regione è al momento occupata e la tua richiesta di teletrasporto non può essere soddisfatta entro breve tempo. Per favore prova di nuovo tra qualche minuto o spostati in un'area meno affollata. +Il server della regione è al momento occupato e la tua richiesta di teletrasporto non può essere soddisfatta entro breve tempo. Per favore prova di nuovo tra qualche minuto o spostati in un'area meno affollata. </notification> <notification name="expired_tport"> Spiacenti, il sistema non riesce a soddisfare la tua richiesta di teletrasporto entro un tempo ragionevole. Riprova tra qualche minuto. @@ -1127,7 +1127,7 @@ Il tuo avatar è stato spostato in una regione vicina. I tuoi vestiti stanno ancora scaricandosi. Puoi usare [SECOND_LIFE] normalmente e gli altri utenti ti vedranno correttamente. <form name="form"> - <ignore name="ignore" text="se gli abiti ci impiegano troppo tempo a scaricarsi"/> + <ignore name="ignore" text="Qualora gli abiti impieghino troppo tempo a caricarsi."/> </form> </notification> <notification name="FirstRun"> @@ -1150,9 +1150,9 @@ Puoi controllare la tua connessione internet e riprovare fra qualche minuto, opp <notification name="WelcomeChooseSex"> Il tuo avatar apparirà fra un attimo. -Usa le frecce per camminare. -Premi F1 in qualunque momento per aiuto o per apprendere altre cose su [SECOND_LIFE]. -Scegli l'avatar maschile o femminile. Puoi sempre cambiare idea più tardi. +Usa le frecce per muoverti. +Premi F1 in qualunque momento per la guida o per apprendere altre cose di [SECOND_LIFE]. +Scegli un avatar maschile o femminile. Puoi sempre cambiare idea più tardi. <usetemplate name="okcancelbuttons" notext="Femminile" yestext="Maschile"/> </notification> <notification name="NotEnoughCurrency"> @@ -1190,13 +1190,13 @@ Scegli solo un oggetto e riprova. Impossibile impostare le texture della regione: La texture del terreno [TEXTURE_NUM] ha una profondità di bit pari a [TEXTURE_BIT_DEPTH] non corretta. -Sostituisci la texture [TEXTURE_NUM] con una a 24-bit 512x512 o una immagine più piccola e quindi clicca nuovamente su "Applica". +Sostituisci la texture [TEXTURE_NUM] con una a 24-bit 512x512 o una immagine più piccola e quindi clicca nuovamente su 'Applica'. </notification> <notification name="InvalidTerrainSize"> Impossibile impostare le texture di regione: La texture del terreno [TEXTURE_NUM] è troppo grande se a [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. -Sostituisci la texture [TEXTURE_NUM] con una a 24-bit 512x512 oppure con una immagine più piccola e quindi clicca di nuovo "Applica". +Sostituisci la texture [TEXTURE_NUM] con una a 24-bit 512x512 oppure con una immagine più piccola e quindi clicca di nuovo 'Applica'. </notification> <notification name="RawUploadStarted"> Importazione iniziata. Può impiegare fino a due minuti, a seconda della velocità della tua connessione. @@ -1285,53 +1285,53 @@ Vuoi avviarne lo scaricamento nella tua cartella applicazioni? <notification name="DeedObjectToGroup"> La cessione di questo oggetto farà in modo che il gruppo: * Riceva i L$ pagati all'oggetto - <usetemplate ignoretext="Quando cedi oggetti ai gruppi" name="okcancelignore" notext="Annulla" yestext="Cedi"/> + <usetemplate ignoretext="Quando cedi oggetti ai gruppi." name="okcancelignore" notext="Annulla" yestext="Cedi"/> </notification> <notification name="WebLaunchExternalTarget"> Apri il tuo browser web per vedere questo contenuto? - <usetemplate ignoretext="Quando apri il browser di sistema per vedere una pagina web" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando apri il browser di sistema per vedere una pagina web." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchJoinNow"> Vuoi andare su www.secondlife.com per gestire il tuo account? - <usetemplate ignoretext="Quando lanci il browser web per gestire il tuo account" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per gestire il tuo account." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchBugReport101"> Visita la Wiki di [SECOND_LIFE] per imparare a segnalare un bug correttamente. - <usetemplate ignoretext="Quando lanci il browser web per vedere la Wiki di segnalazione bug base" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere come segnalare bug nella wiki." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchSecurityIssues"> Visita la Wiki di [SECOND_LIFE] per i dettagli su come segnalare un problema di sicurezza. - <usetemplate ignoretext="Quando lanci il browser web per vedere la Wiki sui problemi di sicurezza" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere la Wiki sui problemi di sicurezza." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchQAWiki"> Visita il controllo di qualità Wiki [SECOND_LIFE]. - <usetemplate ignoretext="Quando lanci il browser web per vedere il controllo di qualità Wiki" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere il controllo di qualità Wiki." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchPublicIssue"> Visita il registro pubblico dei problemi di [SECOND_LIFE], dove puoi segnalare bug ed altri problemi. - <usetemplate ignoretext="Quando lanci il browser web per vedere il registro pubblico dei problemi" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere il registro pubblico dei problemi." name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="WebLaunchPublicIssueHelp"> Visita la Wiki di [SECOND_LIFE] per le informazioni su come usare il registro pubblico dei problemi. - <usetemplate ignoretext="Quando lanci il browser web per vedere la Wiki del registro pubblico dei problemi" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere la Wiki del registro pubblico dei problemi." name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="WebLaunchSupportWiki"> Vai al blog ufficiale Linden, per le ultime notizie ed informazioni. - <usetemplate ignoretext="Quando lanci il browser web per vedere il blog" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere il blog." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchLSLGuide"> Vai alla guida dello scripting per l'aiuto sullo scripting? - <usetemplate ignoretext="Quando lanci il browser web per vedere la guida dello scripting" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere la guida dello scripting." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="WebLaunchLSLWiki"> Vai al portale LSL per aiuto sullo scripting? - <usetemplate ignoretext="Quando lanci il browser web per vedere il portale LSL" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + <usetemplate ignoretext="Quando lanci il browser web per vedere il portale LSL." name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="ReturnToOwner"> Confermi di voler restituire gli oggetti selezionati ai loro proprietari? Gli oggetti trasferibili ceduti al gruppo, verranno restituiti ai proprietari precedenti. *ATTENZIONE* Gli oggetti ceduti non trasferibili verranno cancellati! - <usetemplate ignoretext="Quando restituisci gli oggetti ai loro proprietari" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando restituisci gli oggetti ai loro proprietari." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="GroupLeaveConfirmMember"> Sei attualmente un membro del gruppo [GROUP]. @@ -1369,7 +1369,7 @@ Vuoi cancellare quell'elemento? <notification name="BusyModeSet"> Impostata la modalità 'Occupato'. La chat e i messaggi verranno nascosti. I messaggi IM riceveranno la risposta impostata per la modalità 'Occupato'. Tutte le offerte di teleport verranno declinate. Tutte le offerte di inventario andranno nel cestino. - <usetemplate ignoretext="Quando si imposta la modalità occupato" name="okignore" yestext="OK"/> + <usetemplate ignoretext="Quando imposti la modalità 'occupato'." name="okignore" yestext="OK"/> </notification> <notification name="JoinedTooManyGroupsMember"> Sei membro di troppi gruppi per poterti unire ad uno nuovo. @@ -1442,7 +1442,7 @@ Per abbandonare un gruppo seleziona l'opzione 'Gruppi..' dal menu </notification> <notification name="TeleportFromLandmark"> Confermi di volerti teleportare? - <usetemplate ignoretext="Quando ti teleporti da un landmark nell'inventario" name="okcancelignore" notext="Annulla" yestext="Teleportati"/> + <usetemplate ignoretext="Quando ti teleporti da un landmark dell'inventario." name="okcancelignore" notext="Annulla" yestext="Teleportati"/> </notification> <notification label="Manda un messaggio a tutti nella tua proprietà" name="MessageEstate"> Scrivi un annuncio breve che verrà mandato a tutti quelli che sono in questo momento nella tua proprietà. @@ -1526,7 +1526,7 @@ Vuoi andare alla Knowledge Base per ulteriori informazioni sulle categorie di ac name="okcancelignore" yestext="Vai alla Knowledge Base" notext="Chiudi" - ignoretext="Quando l'entrata nella regione è bloccata a causa delle categorie di accesso"/> + ignoretext="Quando l'entrata nella regione è bloccata a causa delle categorie di accesso."/> </notification> <notification name="RegionEntryAccessBlocked_Notify"> Non sei ammesso in questa regione a causa della tua categoria d'accesso. @@ -1543,7 +1543,7 @@ Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue pr default="true" name="Cancel" text="Chiudi"/> - <ignore name="ignore" text="Quando l'entrata nella regione è bloccata a causa delle preferenze sulle categorie di accesso"/> + <ignore name="ignore" text="Quando l'entrata in una regione è bloccata a causa delle preferenze delle categorie di accesso."/> </form> </notification> <notification name="LandClaimAccessBlocked"> @@ -1565,7 +1565,7 @@ Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di acc name="okcancelignore" yestext="Vai alla Knowledge Base" notext="Chiudi" - ignoretext="Quando la presa di possesso della terra è bloccata a causa delle categorie di accesso"/> + ignoretext="Quando l'acquisizione della terra è bloccata a causa delle categorie di accesso."/> </notification> <notification name="LandClaimAccessBlocked_Notify"> Non puoi prendere possesso di questa terra a causa della tua categoria di accesso. @@ -1578,7 +1578,7 @@ Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue pr name="okcancelignore" yestext="Cambia le preferenze" notext="Chiudi" - ignoretext="Quando la presa di possesso della terra è bloccata a causa delle preferenze sulle categorie di accesso"/> + ignoretext="Quando l'acquisizione della terra è bloccata a causa delle preferenze delle categorie di accesso."/> </notification> <notification name="LandBuyAccessBlocked"> Non puoi acquistare questo terreno a causa della tua categoria di accesso. Questo può essere dovuto ad una mancanza di informazioni valide che confermino la tua età. @@ -1599,7 +1599,7 @@ Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di acc name="okcancelignore" yestext="Vai alla Knowledge Base" notext="Chiudi" - ignoretext="Quando un acquisto di terra è bloccato a causa delle categorie di accesso"/> + ignoretext="Quando un acquisto di terra è bloccato a causa delle categorie di accesso."/> </notification> <notification name="LandBuyAccessBlocked_Notify"> Non puoi acquistare questa land a causa della tua categoria di accesso. @@ -1612,7 +1612,7 @@ Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue pr name="okcancelignore" yestext="Cambia le preferenze" notext="Chiudi" - ignoretext="Quando un acquisto di terra è bloccato a causa delle preferenze sulle categorie di accesso"/> + ignoretext="Quando un acquisto di terra è bloccato a causa delle preferenze sulle categorie di accesso."/> </notification> <notification name="TooManyPrimsSelected"> "Hai selezionato troppi prims. Seleziona [MAX_PRIM_COUNT] o meno prims e riprova." @@ -1757,9 +1757,9 @@ Se questa opzione è selezionato i compratori possono rivendere i loro terreni i Impostazione base: Non consentire </notification> <notification label="Disabilita gli script" name="HelpRegionDisableScripts"> - Se le prestazioni di una sim sono basse, probabilmente è colpa di uno script. Apri la 'barra delle statistiche' (Ctrl-Shift-1). Controlla il FPS della fisica del simulatore. -Se è più basso di 45, apri il pannello "Tempi" collocato ln fondo alla 'barra delle statistiche' -Se il tempo per gli script è di 25 ms o più alto, clicca sul bottone 'individua script pesanti'. Ti verrà dato il nome e l'ubicazione degli script che probabilmente causano una cattiva prestazione. + Se le prestazioni di una sim sono basse, probabilmente è colpa di uno script. Apri la 'Barra delle statistiche' (Ctrl-Shift-1). Controlla il FPS della fisica del simulatore. +Se è più basso di 45, apri il pannello 'Time' (Tempi) collocato ln fondo alla 'Barra delle statistiche' +Se il tempo per gli script è di 25 ms o più alto, clicca sul bottone 'Visualizza l'elenco degli script più pesanti...'. Ti verrà dato il nome e l'ubicazione degli script che probabilmente causano una cattiva prestazione. Selezionare la casella della disabilitazione script e, premendo il bottone applica, disabilitare temporaneamente tutti gli script in questa regione. Questo è necessario per poterti recare verso l'ubicazione dello script definito nell'elenco come 'script più pesante'. Una volta arrivato all'oggetto, studia lo script per capire se è quello che sta causando il problema. Potresti dover contattare il proprietario dello script oppure cancellare o restituire l'oggetto. Disabilita la casella e quindi premere applica per riattivare gli script nella regione. @@ -1768,10 +1768,10 @@ Impostazione base: spento </notification> <notification label="Disabilita le collisioni" name="HelpRegionDisableCollisions"> Quando le prestazioni della sim sono basse, può darsi che la colpa sia di oggetti fisici. -Apri la 'barra delle statistiche' (Ctrl-Shift-1). +Apri la 'Barra delle statistiche' (Ctrl-Shift-1). Controlla il FPS della fisica del simulatore. -Se è più basso di 45, apri il pannello "Tempi" collocato in fondo alla 'barra delle statistiche'. -Se il tempo della sim (fisica) risulta 20 ms o più, clicca sul bottone "mostra gli oggetti che collidono di più". +Se è più basso di 45, apri il pannello 'Time' (Tempi) collocato in fondo alla 'Barra delle statistiche'. +Se il tempo della sim (fisica) risulta 20 ms o più, clicca sul bottone 'mostra gli oggetti che collidono di più'. Ti verranno dati il nome e l'ubicazione degli oggetti fisici che possono causare una cattiva prestazione. Selezionare la casella disabilita collisioni e, premendo il bottone applica, disabilitare temporaneamente le collisioni oggetto-oggetto. Questo è necessario per poterti recare verso l'ubicazione dell'oggetto che sta collidendo eccessivamente. @@ -1791,11 +1791,11 @@ Impostazione base: spento </notification> <notification label="Oggetti con maggiori collisioni" name="HelpRegionTopColliders"> Mostra una lista di oggetti che sperimentano la maggior quantità di potenziali collisioni oggetto-oggetto. Questi oggetti possono abbassare le prestazioni. -Seleziona Vista > Barra Statistiche e guarda sotto Simulatore > Tempi > Tempo Sim (fisica) per controllare se un tempo di più di 20 ms è impiegato nella fisica. +Seleziona Visualizza > Barra della statistiche e guarda sotto Simulator (Simulatore) > Time (Tempi) > Physics Time (Tempo Sim fisica) per controllare se un tempo di più di 20 ms è impiegato nella fisica. </notification> <notification label="Script pesanti" name="HelpRegionTopScripts"> Mostra una lista degli oggetti che occupano la maggior parte del loro tempo eseguendo script LSL. Questi oggetti possono abbassare le prestazioni. -Seleziona Vista > Barra statistiche e guarda sotto Simulatore > Tempi > Tempo Script per controllare se un tempo di più di 20 ms è impiegato per gli script. +Seleziona Visualizza > Barra della statistiche e guarda sotto Simulator (Simulatore) > Time (Tempi) > Script Time (Tempo Script) per controllare se un tempo di più di 20 ms è impiegato per gli script. </notification> <notification label="Fai ripartire la regione" name="HelpRegionRestart"> Fai ripartire i processi del server che gestisce questa regione dopo un avvertimento di due minuti. Tutti i residenti nella regione verranno scollegati. @@ -1898,7 +1898,7 @@ Impostazione base: spento Un regolamento può essere usato per comunicare regole, linee guida, informazioni culturali o semplicemente ciò che ti aspetti dal possibile compratore. Questo può includere impostazioni in zone, regolamenti architettonici, opzioni di pagamento o qualunque altra informazione che ritieni importante che il nuovo proprietario debba aver visto e accettato prima dell'acquisto. -Il compratore deve accettare il regolamento selezionando la casella appropriata per poter completare l'acquisto. I regolamenti delle proprietà sono sempre visibili nella finestra "Informazioni sul terreno" in tutti gli appezzamenti in cui è stato impostato. +Il compratore deve accettare il regolamento selezionando la casella appropriata per poter completare l'acquisto. I regolamenti delle proprietà sono sempre visibili nella finestra 'Informazioni sul terreno' in tutti gli appezzamenti in cui è stato impostato. </notification> <notification label="Impossibile comprare oggetti" name="BuyObjectOneOwner"> Impossibile comprare oggetti da proprietari diversi nello stesso momento. @@ -1959,7 +1959,7 @@ Il contenuto verrà copiato nel tuo inventario. <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmPurchase"> - Questa transazione farà: + Questa transazione ti permetterà di: [ACTION] Confermi di voler procedere all'acquisto? @@ -1987,19 +1987,19 @@ Hai aggiornato l'ubicazione di questo preferito ma gli altri dettagli conse Questi elementi verranno trasferiti nel tuo inventario, ma non copiati. Trasferisci gli elementi nell'inventario? - <usetemplate ignoretext="Quando si trasferiscono, dagli oggetti all'inventario, elementi non copiabili" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando si trasferiscono elementi non copiabili, dagli oggetti all'inventario." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="MoveInventoryFromScriptedObject"> Hai selezionato elementi dell'inventario non copiabili. Questi elementi verranno trasferiti nel tuo inventario, non verranno copiati. Dato che questo oggetto è scriptato, il trasferimento di questi elementi nel tuo inventario potrebbe causare un malfunzionamento degli script. Trasferisci gli elementi nell'inventario? - <usetemplate ignoretext="Quando si trasferiscono oggetti scriptati non copiabili nell'inventario" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando si trasferiscono oggetti scriptati non copiabili nell'inventario." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="ClickActionNotPayable"> Attenzione: L'azione di pagamento automatico al click è stata impostata, ma funzionerà solo se aggiungi uno script con un evento money(). <form name="form"> - <ignore name="ignore" text="Quando imposti il "Pagamento" di oggetti senza l'evento money()"/> + <ignore name="ignore" text="Quando imposti il 'Pagamento' di oggetti senza l'evento money()"/> </form> </notification> <notification name="OpenObjectCannotCopy"> @@ -2007,7 +2007,7 @@ Trasferisci gli elementi nell'inventario? </notification> <notification name="WebLaunchAccountHistory"> Vai nel sito web di Second Life per vedere il tuo estratto conto? - <usetemplate ignoretext="Quando carichi la pagina web dell'estratto conto" name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> + <usetemplate ignoretext="Quando carichi la pagina web dell'estratto conto." name="okcancelignore" notext="Annulla" yestext="Vai alla pagina"/> </notification> <notification name="ClickOpenF1Help"> Visita il sito di supporto di Second Life? @@ -2104,7 +2104,7 @@ La Linden Lab C'è già un oggetto indossato in questo punto del corpo. Vuoi sostituirlo con l'oggetto selezionato? <form name="form"> - <ignore name="ignore" save_option="true" text="Quando avviene la sostituzione di un oggetto indossato già esistente"/> + <ignore name="ignore" save_option="true" text="Quando avviene la sostituzione di un oggetto indossato già esistente."/> <button name="Yes" text="OK"/> <button name="No" text="Annulla"/> </form> @@ -2114,14 +2114,14 @@ Vuoi sostituirlo con l'oggetto selezionato? Desideri abbandonare la modalità 'Occupato' prima di completare questa transazione? <form name="form"> - <ignore name="ignore" save_option="true" text="Quando avviene il pagamento di una persona o oggetto in modalità 'Occupato'"/> + <ignore name="ignore" save_option="true" text="Quando avviene il pagamento di una persona o di un oggetto in modalità 'Occupato'."/> <button name="Yes" text="OK"/> <button name="No" text="Abbandona"/> </form> </notification> <notification name="ConfirmEmptyTrash"> Confermi di volere permanentemente rimuovere il contenuto del tuo cartella Cestino? - <usetemplate ignoretext="Quando svuoti la cartella cestino del tuo inventario" name="okcancelignore" notext="Annulla" yestext="OK"/> + <usetemplate ignoretext="Quando svuoti la cartella cestino del tuo inventario." name="okcancelignore" notext="Annulla" yestext="OK"/> </notification> <notification name="ConfirmClearBrowserCache"> Confermi di voler pulire la cache del tuo browser? @@ -2137,15 +2137,15 @@ Desideri abbandonare la modalità 'Occupato' prima di completare quest </notification> <notification name="ConfirmEmptyLostAndFound"> Confermi di volere rimuovere permanentemente il contenuto della tua cartalla Persi e ritrovati? - <usetemplate ignoretext="Quando cancelli la cartella persi e ritrovati del tuo inventario" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando cancelli la cartella degli oggetti perduti e ritrovati del tuo inventario." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="CopySLURL"> - Lo SLURL seguente è stato copiato nei tuoi appunti: + Lo SLurl seguente è stato copiato nei tuoi appunti: [SLURL] Lo puoi inserire in una pagina web per dare ad altri modo di accedere a questo posto o puoi provare a copiarla nella barra indirizzi del tuo browser web. <form name="form"> - <ignore name="ignore" text="Quando copi lo SLURL negli appunti"/> + <ignore name="ignore" text="Quando copi uno SLurl negli appunti."/> </form> </notification> <notification name="GraphicsPreferencesHelp"> @@ -2196,30 +2196,30 @@ Dettaglio del terreno: Imposta la quantità di dettagli che vuoi vedere per le t <notification name="EnvSettingsHelpButton"> Queste impostazioni modificano il modo in cui l'ambiente viene visto localmente sul tuo computer. La tua scheda grafica deve supportare gli effetti atmosferici per poter accedere a tutte le impostazioni. -Modifica il cursore "Ora del Giorno " per cambiare la fase giornaliera locale sul client. +Modifica il cursore 'Ora del Giorno' per cambiare la fase giornaliera locale sul client. -Modifica il cursore "Intensità delle nuvole" per controllare la quantità di nuvole che coprono il cielo. +Modifica il cursore 'Intensità delle nuvole' per controllare la quantità di nuvole che coprono il cielo. -Scegli un colore nella tavolozza colori per il "colore dell'acqua" per cambiare il colore dell'acqua. +Scegli un colore nella tavolozza colori per il 'colore dell'acqua' per cambiare il colore dell'acqua. -Modifica il cursore "Nebbiosità dell'acqua" per controllare quanto densa è la nebbia sott'acqua. +Modifica il cursore 'Nebbiosità dell'acqua' per controllare quanto densa è la nebbia sott'acqua. -Clicca "Usa l'ora della proprietà" per sincronizzare il tempo del giorno con l'ora del giorno della regione e collegarle stabilmente. +Clicca 'Usa l'ora della proprietà' per sincronizzare il tempo del giorno con l'ora del giorno della regione e collegarle stabilmente. -Clicca "Cielo avanzato" per visualizzare un editor con le impostazioni avanzate per il cielo. +Clicca 'Cielo avanzato' per visualizzare un editor con le impostazioni avanzate per il cielo. -Clicca "Acqua Avanzata" per visualizzare un editor con le impostazini avanzate per l'acqua. +Clicca 'Acqua Avanzata' per visualizzare un editor con le impostazini avanzate per l'acqua. </notification> <notification name="HelpDayCycle"> L'editor del Ciclo Giorno/Notte permette di controllare il cielo durante il ciclo giornaliero di Second Life. Questo è il ciclo che è usato dal cursore dell'editor base dell'ambiente. -L'editor del ciclo giorno/notte funziona impostando i fotogrammi chiave. Questi sono nodi (rappresentati da tacche grige sul grafico temporale) che hanno delle preregolazioni associate del cielo. Man mano che l'ora del giorno procede, il cielo di WindLight"si anima" interpolando i valori fra questi fotogrammi chiave. +L'editor del ciclo giorno/notte funziona impostando i fotogrammi chiave. Questi sono nodi (rappresentati da tacche grige sul grafico temporale) che hanno delle preregolazioni associate del cielo. Man mano che l'ora del giorno procede, il cielo di WindLight'si anima' interpolando i valori fra questi fotogrammi chiave. La freccia gialla sopra la linea del tempo rappresenta la tua vista corrente, basata sull'ora del giorno. Cliccandola e spostandola vedrai come il giorno si animerebbe. Si può aggiungere o cancellare fotogrammi chiave cliccando sui tasti 'Aggiungi Fotogramma Chiave' e 'Cancella Fotogramma Chiave' alla destra della linea del tempo. Si possono impostare le posizioni temporali dei fotogrammi chiave spostandole lungo la linea del tempo o impostando il loro valore a mano nella finestra di impostazione dei fotogrammi chiave. All'interno della finestra di impostazione si può associare il fotogramma chiave con le impostazioni corrispondenti di Wind Light. -La durata del ciclo definisce la durata complessiva di un "giorno". Impostando questo ad un valore basso (per esempio, 2 minuti) tutto il ciclo di 24 ore verrà completato in solo 2 minuti reali! Una volta soddisfatto dell tua linea del tempo e le impostazioni dei fotogrammi chiave, usa i bottoni Play e Stop per vederne in anteprima i risultati. Attenzione: si può sempre spostare la freccia gialla indicatrice del tempo sopra la linea del tempo per vedere il ciclo animarsi interattivamente. Scegliendo invece il pulsanto 'Usa il tempo della regione' ci si sincronizza con il le durate del ciclo definite per questa regione. +La durata del ciclo definisce la durata complessiva di un 'giorno'. Impostando questo ad un valore basso (per esempio, 2 minuti) tutto il ciclo di 24 ore verrà completato in solo 2 minuti reali! Una volta soddisfatto dell tua linea del tempo e le impostazioni dei fotogrammi chiave, usa i bottoni Play e Stop per vederne in anteprima i risultati. Attenzione: si può sempre spostare la freccia gialla indicatrice del tempo sopra la linea del tempo per vedere il ciclo animarsi interattivamente. Scegliendo invece il pulsanto 'Usa il tempo della regione' ci si sincronizza con il le durate del ciclo definite per questa regione. Una volta soddisfatto del ciclo giornaliero, puoi salvarlo o ricaricarlo con i bottoni 'Salva test del giorno' e 'Carica il test del giorno'. Attualmente è possibile definire un solo ciclo giorno/notte </notification> @@ -2239,7 +2239,7 @@ E' utile per simulare scene con un livello alto di fumo e di inquinamento d E' anche utile per simulare la nebbia e la foschia al mattino. </notification> <notification name="HelpDensityMult"> - Il moltiplicatore di densità può essere usato per influenzare la densità atmosferica generale. Con valori bassi, crea la sensazione di "aria sottile", con valori alti crea un effetto molto pesante, annebbiato. + Il moltiplicatore di densità può essere usato per influenzare la densità atmosferica generale. Con valori bassi, crea la sensazione di 'aria sottile', con valori alti crea un effetto molto pesante, annebbiato. </notification> <notification name="HelpDistanceMult"> Modifica la distanza percepita da WindLight. @@ -2248,7 +2248,7 @@ Valori più grandi di 1 simulano distanze più grandi per effetti atmosferici pi </notification> <notification name="HelpMaxAltitude"> Altitudine Massima modifica i calcoli di altezza che fa WindLight quando calcola l'illuminazione atmosferica. -In periodi successivi del giorno, è utile per modificare quanto "profondo" appaia il tramonto. +In periodi successivi del giorno, è utile per modificare quanto 'profondo' appaia il tramonto. </notification> <notification name="HelpSunlightColor"> Modifica il colore e l'intensità della luce diretta nella scena. @@ -2257,8 +2257,8 @@ In periodi successivi del giorno, è utile per modificare quanto "profondo& Modifica il colore e l'intensità della luce atmosferica ambientale nella scena. </notification> <notification name="HelpSunGlow"> - Il cursore Dimensione controlla la dimensione del sole. -Lo slider "Focus" controlla quanto è offuscato il sole sopra il cielo. + Il cursore Grandezza controlla la dimensione del sole. +Il cursore Focus controlla quanto è offuscato il sole sopra il cielo. </notification> <notification name="HelpSceneGamma"> Modifica la distribuzione di luci e ombre nello schermo. @@ -2392,7 +2392,7 @@ D (Densità) controlla quanto gonfie o spezzettate appaiono le nuvole. </notification> <notification name="AutoWearNewClothing"> Vuoi indossare automaticamente i vestiti che crei? - <usetemplate ignoretext="Indossa automaticamente i nuovi vestiti." name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando Indossi automaticamente nuovi vestiti." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="NotAgeVerified"> La tua età deve essere verificata per poter entrare in questo territorio. @@ -2402,7 +2402,7 @@ Vuoi visitare il sito di Second Life per verificare la tua eta? <url name="url" option="0"> https://secondlife.com/account/verification.php </url> - <usetemplate ignoretext="Avviso per mancanza della verifica dell'età" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando hai un avviso per mancanza della verifica dell'età." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="Cannot enter parcel: no payment info on file"> Questo terreno richiede che tu abbia registrato le tue informazioni di pagamento prima che tu possa accedervi. @@ -2412,7 +2412,7 @@ Vuoi visitare il sito di Second Life per impostarle? <url name="url" option="0"> https://secondlife.com/account/index.php?lang=it </url> - <usetemplate ignoretext="Avviso per mancanza di informazioni di pagamento registrato" name="okcancelignore" notext="No" yestext="Si"/> + <usetemplate ignoretext="Quando hai un avviso per mancanza di informazioni di pagamento registrate." name="okcancelignore" notext="No" yestext="Si"/> </notification> <notification name="MissingString"> La stringa [STRING_NAME] non è presente in strings.xml @@ -2673,7 +2673,7 @@ Vai alla 'Help Island Public' per ripetere il tutorial. <notification name="ImproperPaymentStatus"> Non hai una impostazioni di pagamento corrette per entrare in questa regione. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> Devi avere un'età verificata per entrare in questa regione. </notification> <notification name="MustGetAgeParcel"> diff --git a/indra/newview/skins/default/xui/ja/floater_world_map.xml b/indra/newview/skins/default/xui/ja/floater_world_map.xml index c6385980ef..f7fe65bb72 100644 --- a/indra/newview/skins/default/xui/ja/floater_world_map.xml +++ b/indra/newview/skins/default/xui/ja/floater_world_map.xml @@ -53,6 +53,6 @@ <button label="目的地を表示" label_selected="目的地を表示" name="Show Destination" tool_tip="選択したロケーションを地図の中心にする"/> <button label="クリア" label_selected="クリア" name="Clear" tool_tip="トラッキングを停止"/> <button label="現在地を表示" label_selected="現在地を表示" name="Show My Location" tool_tip="あなたのアバターのロケーションを地図の中心にする"/> - <button label="SLURLをクリップボードにコピー" name="copy_slurl" tool_tip="現在地をSLURLとしてコピーし、ウェブで使用"/> + <button label="SLurlをクリップボードにコピー" name="copy_slurl" tool_tip="現在地をSLurlとしてコピーし、ウェブで使用"/> <slider label="ズーム" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/ja/notifications.xml b/indra/newview/skins/default/xui/ja/notifications.xml index c20a4f50b4..b33d883dc4 100644 --- a/indra/newview/skins/default/xui/ja/notifications.xml +++ b/indra/newview/skins/default/xui/ja/notifications.xml @@ -2299,13 +2299,13 @@ Linden Lab <usetemplate ignoretext="持ち物内の「遺失物」フォルダを空にするとき" name="okcancelignore" notext="いいえ" yestext="はい"/> </notification> <notification name="CopySLURL"> - 以下のSLURLがクリップボードにコピーされました。 + 以下のSLurlがクリップボードにコピーされました。 [SLURL] 他の人がアクセスしやすいようにウェブ・ページに載せたり、 ブラウザのアドレス・バーに貼り付けて、自分でアクセスしてみましょう。 <form name="form"> - <ignore name="ignore" text="SLURLをクリップボードにコピーするとき"/> + <ignore name="ignore" text="SLurlをクリップボードにコピーするとき"/> </form> </notification> <notification name="GraphicsPreferencesHelp"> @@ -2869,7 +2869,7 @@ Second Life のウェブサイトにアクセスして、設定しますか? <notification name="ImproperPaymentStatus"> この地域(リージョン)に入るために適した支払いステータスがありません。 </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> この地域(リージョン)に入るには年齢確認済みである必要があります。 </notification> <notification name="MustGetAgeParcel"> @@ -3200,7 +3200,7 @@ Macの場合は、Cmd-Opt-Shift-Dを押してください。 [FIRST] [LAST]に持ち物を渡したため、 無視設定が自動的に解除されました。 </notification> <notification name="VoiceInviteGroup"> - [NAME]が、グループ[GROUP]とのボイスチャットコールに参加しました。 + [NAME]が、 グループ[GROUP]とのボイスチャットコールに参加しました。 コールに参加するには「受け入れる」をクリックし、招待を断るときは「拒否」をクリックしてください。このコールをしている人をミュートにする場合は「ミュート」をクリックしてください。 <form name="form"> <button name="Accept" text="受け入れる"/> @@ -3209,7 +3209,7 @@ Macの場合は、Cmd-Opt-Shift-Dを押してください。 </form> </notification> <notification name="VoiceInviteAdHoc"> - [NAME]が、会議チャットでボイスチャットコールに参加しました。 + [NAME]が、 会議チャットでボイスチャットコールに参加しました。 コールに参加するには「受け入れる」をクリックし、招待を断るときは「拒否」をクリックしてください。 このユーザーをミュート(消声)する場合は「ミュート」をクリックしてください。 <form name="form"> <button name="Accept" text="受け入れる"/> @@ -3218,7 +3218,7 @@ Macの場合は、Cmd-Opt-Shift-Dを押してください。 </form> </notification> <notification name="InviteAdHoc"> - [NAME]が、あなたを会議チャットに招待しています。 + [NAME]が、 あなたを会議チャットに招待しています。 チャットに参加するには「受け入れる」をクリックし、招待を断るときは「拒否」をクリックしてください。このユーザーをミュート(消声)する場合は「ミュート」をクリックしてください。 <form name="form"> <button name="Accept" text="受け入れる"/> diff --git a/indra/newview/skins/default/xui/nl/floater_world_map.xml b/indra/newview/skins/default/xui/nl/floater_world_map.xml index 1205884062..4385442cd3 100644 --- a/indra/newview/skins/default/xui/nl/floater_world_map.xml +++ b/indra/newview/skins/default/xui/nl/floater_world_map.xml @@ -49,6 +49,6 @@ <button label="Toon bestemming" label_selected="Toon bestemming" name="Show Destination" tool_tip="Centreer kaart op geselecteerde locatie"/> <button label="Verwijder" label_selected="Verwijder" name="Clear" tool_tip="Stop volgen"/> <button label="Toon mijn locatie" label_selected="Toon mijn locatie" name="Show My Location" tool_tip="Centreer kaart op de locatie van uw avatar"/> - <button label="Kopieer SLURL naar klembord" name="copy_slurl" tool_tip="Kopieert huidige locatie als SLURL, zodat deze op het web gebruikt kan worden."/> + <button label="Kopieer SLurl naar klembord" name="copy_slurl" tool_tip="Kopieert huidige locatie als SLurl, zodat deze op het web gebruikt kan worden."/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/nl/notifications.xml b/indra/newview/skins/default/xui/nl/notifications.xml index c64c2cd021..d6f13f1f33 100644 --- a/indra/newview/skins/default/xui/nl/notifications.xml +++ b/indra/newview/skins/default/xui/nl/notifications.xml @@ -245,7 +245,7 @@ Naar de Second Life website gaan voor meer informatie over partner schap? * Klik op Laden > 'Thuis pagina URL' om terug te keren naar het web profiel van deze Inwoner indien U verder genavigeerd bent. Indien u uw eigen profiel bekijkt, kunt U elke willekeurige URL opgeven als uw web profiel en op OK klikken om het in te stellen. -Andere Inwoners kunnen de door U opgegeven URL bezoeken indien zijn uw profiel bekijken. +Andere Inwoners kunnen de door U opgegeven URL bezoeken indien zij uw profiel bekijken. </notification> <notification name="JoinGroupCanAfford"> Deelname aan deze groep kost L$[COST]. @@ -418,10 +418,10 @@ Betaalde advertentiekosten zullen niet worden terug gestort. <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> </notification> <notification name="CacheWillClear"> - De Cache zal geleegd worden als u [SECOND_LIFE] opnieuw start. + De cache zal geleegd worden als u [SECOND_LIFE] opnieuw start. </notification> <notification name="CacheWillBeMoved"> - De Cache zal verplaatst worden als u [SECOND_LIFE] opnieuw start. + De cache zal verplaatst worden als u [SECOND_LIFE] opnieuw start. Opmerking: Dit zal de Cache legen. </notification> <notification name="ChangeConnectionPort"> @@ -1541,7 +1541,7 @@ Ga naar de kennisbank voor meer informatie over inhoudscategorieën? U wordt niet in die regio toegelaten vanwege uw inhoudscategorie. U kunt klikken op 'Wijzig voorkeur' om uw inhoudscategorie voorkeur nu te verhogen en toegelaten te worden. U zult in staat zijn om [REGIONMATURITY] inhoud te zoeken en benaderen vanaf dit moment. Wanneer u later deze instelling wilt wijzigen, ga dan naar Bewerken > Voorkeuren... > Algemeen. - <form> + <form name="form"> <button name="OK" text="Wijzig voorkeur"/> @@ -1549,7 +1549,7 @@ U kunt klikken op 'Wijzig voorkeur' om uw inhoudscategorie voorkeur nu default="true" name="Cancel" text="Sluiten"/> - <ignore text="Wanneer regiotoegang wordt geblokkeerd vanwege de inhoudscategorie voorkeur"/> + <ignore name="ignore" text="Wanneer regiotoegang wordt geblokkeerd vanwege de inhoudscategorie voorkeur"/> </form> </notification> <notification name="LandClaimAccessBlocked"> @@ -2137,7 +2137,7 @@ Wilt u de Niet Storen Modus verlaten voordat u deze transactie completeert? <usetemplate ignoretext="Bij verwijderen van de inhoud uit de inventaris vuilnisbak map" name="okcancelignore" notext="Annuleren" yestext="OK"/> </notification> <notification name="ConfirmClearBrowserCache"> - Weet u zeker dat u uw browser cache wilt legen? + Weet u zeker dat u uw browsercache wilt legen? <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ja"/> </notification> <notification name="ConfirmClearCookies"> @@ -2153,34 +2153,34 @@ Wilt u de Niet Storen Modus verlaten voordat u deze transactie completeert? <usetemplate ignoretext="Bij legen van uw inventaris Verloren en Gevonden map" name="okcancelignore" notext="Nee" yestext="Ja"/> </notification> <notification name="CopySLURL"> - De volgende SLURL is gekopieerd naar uw klem bord: + De volgende SLurl is gekopieerd naar uw klem bord: [SLURL] Plaats het in een web pagina om anderen eenvoudig toegang te verschaffen naar de locatie of test het zelf door het te plakken in de adres balk van uw web browser. <form name="form"> - <ignore name="ignore" text="Bij kopiëren van een SLURL naar het klem bord"/> + <ignore name="ignore" text="Bij kopiëren van een SLurl naar het klem bord"/> </form> </notification> <notification name="GraphicsPreferencesHelp"> - Dit venster bepaald de venster afmetingen, resolutie en kwaliteit van de client's grafische weergave. De Voorkeuren > Grafische interface laat u kiezen uit vier grafische niveaus: Laag, Middel, Hoog en Ultra. U kunt ook uw grafische instellingen aanpassen met het aan vinken van het Custom vakje en de volgende instellingen manipuleren: + Dit venster bepaald de venster afmetingen, resolutie en kwaliteit van de client's grafische weergave. De Voorkeuren > Grafische interface laat u kiezen uit vier grafische niveaus: Laag, Middel, Hoog en Ultra. U kunt ook uw grafische instellingen aanpassen met het aan vinken van het Aangepast vakje en de volgende instellingen manipuleren: Shaders: In of uitschakelen van de verschillende typen pixel shaders. -Reflectie Detail: Stelt het type objecten in hetgeen water kan reflecteren. +Reflectiedetail: Stelt het type objecten in hetgeen water kan reflecteren. -Avatar Weergave: Stelt de opties in die van invloed zijn op hoe de client een avatar zal renderen. +Avatarweergave: Stelt de opties in die van invloed zijn op hoe de client een avatar zal renderen. -Zicht bereik: Beïnvloed tot hoe ver objecten vanaf uw zichtpunt worden weergegeven in de scène. +Zichtbereik: Beïnvloed tot hoe ver objecten vanaf uw zichtpunt worden weergegeven in de scène. Maximaal Aantal Particles: Stelt het maximaal aantal particles in die u tegelijk kunt zien op uw scherm. -Nabewerking Kwaliteit: Stelt de resolutie in waarmee Gloei wordt weergegeven. +Nabewerkingskwaliteit: Stelt de resolutie in waarmee Gloei wordt weergegeven. -Maas Detail: Stelt de hoeveelheid detail of het aantal driehoeken in gebruikt voor de weergave van bepaalde objecten. Een hogere waarde zal langer nemen om weer te gegeven, maar zorgen voor objecten met meer detail. +Maasdetail: Stelt de hoeveelheid detail of het aantal driehoeken in gebruikt voor de weergave van bepaalde objecten. Een hogere waarde zal langer nemen om weer te gegeven, maar zorgen voor objecten met meer detail. -Licht Detail: Bepaald welke typen lichten u wenst weer te geven. +Lichtdetail: Bepaald welke typen lichten u wenst weer te geven. -Terrein Detail: Stelt de hoeveelheid detail in die u wilt zien voor het terrein textuur. +Terreindetail: Stelt de hoeveelheid detail in die u wilt zien voor het terrein textuur. </notification> <notification name="WLSavePresetAlert"> Wilt u de opgeslagen voor instellingen overschrijven? @@ -2671,7 +2671,7 @@ Gaat u alstublieft naar de kennisbank voor details over het betreden van gebiede <notification name="ImproperPaymentStatus"> U heeft niet de juiste betalingstatus om deze regio binnen te gaan. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> U moet leeftijd geverifieerd zijn om deze regio binnen te gaan. </notification> <notification name="MustGetAgeParcel"> 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 c18c529c94..42befb1aff 100755 --- a/indra/newview/skins/default/xui/pl/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pl/floater_world_map.xml @@ -54,6 +54,6 @@ <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."/> + <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"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/notifications.xml b/indra/newview/skins/default/xui/pl/notifications.xml index e2b26bf0d1..74f92ba1c0 100644 --- a/indra/newview/skins/default/xui/pl/notifications.xml +++ b/indra/newview/skins/default/xui/pl/notifications.xml @@ -2088,12 +2088,12 @@ Chcesz wyłączyć Tryb Pracy przed zakończeniem tej tranzakcji? <usetemplate ignoretext="Usuwając szafę z Twojego foldera Zgubione i Znalezione" 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 pamięci podręcznej: [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ć. <form name="form"> - <ignore name="ignore" text="Kopiując SLURL do pamięci podręcznej"/> + <ignore name="ignore" text="Kopiując SLurl do pamięci podręcznej"/> </form> </notification> <notification name="GraphicsPreferencesHelp"> @@ -2617,7 +2617,7 @@ Odwiedź 'Help Island Public' by powtórzyć szkolenie. <notification name="ImproperPaymentStatus"> Nie posiadasz odpowiedniego statusu płatniczego by uzyskać dostęp do regionu. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> By odwiedzić ten region, Twoje konto musi zostać poddane weryfikacji wieku. </notification> <notification name="MustGetAgeParcel"> 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 0fb8684077..bc4b5462ef 100644 --- a/indra/newview/skins/default/xui/pt/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pt/floater_world_map.xml @@ -48,6 +48,6 @@ <button font="SansSerifSmall" left_delta="91" width="135" label="Mostrar destino" label_selected="Mostrar Destino" name="Show Destination" tool_tip="Centralizar mapa na posição selecionada"/> <button font="SansSerifSmall" label="Limpar" label_selected="Limpar" name="Clear" tool_tip="Parar de percorrer"/> <button font="SansSerifSmall" left_delta="91" width="135" label="Mostra minha localização" label_selected="Mostra minha localização" name="Show My Location" tool_tip="Centraliza o mapa na posição do seu Avatar"/> - <button font="SansSerifSmall" label="Copiar SLURL para área de transferência" name="copy_slurl" tool_tip="Copia a posição atual como SLURL para ser usada na Web"/> + <button font="SansSerifSmall" label="Copiar SLurl para área de transferência" name="copy_slurl" tool_tip="Copia a posição atual como SLurl para ser usada na Web"/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/pt/notifications.xml b/indra/newview/skins/default/xui/pt/notifications.xml index a88ab65c7a..26c5f9debf 100644 --- a/indra/newview/skins/default/xui/pt/notifications.xml +++ b/indra/newview/skins/default/xui/pt/notifications.xml @@ -174,7 +174,7 @@ Você deseja permitir que os residentes selecionados tenham direito de edição? Membros não podem ser removidos dessa função. Os membros podem, eles próprios, recusar a função. Deseja continuar? - <usetemplate ignoretext="Quando adcionar membro ao grupo como dono" name="okcancelignore" notext="Não" yestext="Sim"/> + <usetemplate ignoretext="Quando adicionar membro ao grupo como dono" name="okcancelignore" notext="Não" yestext="Sim"/> </notification> <notification name="AssignDangerousActionWarning"> Você está prestes a adicionar a habilidade '[ACTION_NAME]' para a função '[ROLE_NAME]' @@ -954,7 +954,7 @@ Se o problema persistir, por favor clicar sobre 'Ferramentas > Bug Repor Você foi deslogado do [SECOND_LIFE]: [MESSAGE] Você ainda pode olhar o bate-papo e as mensagens instantâneas existentes, clicando em 'Exibir IM & bate-papo'. Caso contrário, clique em 'Sair' para sair do [SECOND_LIFE] imediatamente. - <usetemplate name="okcancelbuttons" notext="Sair" yestext="Ver Mensagem Instantânea & Bate- Papo"/> + <usetemplate name="okcancelbuttons" notext="Sair" yestext="Exibir IM & bate-papo"/> </notification> <notification name="OnlyOfficerCanBuyLand"> Não é possível comprar o terreno para o grupo: @@ -1100,7 +1100,7 @@ Transferir propriedade destes [AREA] m² de terreno para o grupo '[GROUP_NA Configurações de display foram ajustadas para níveis de segurança porque você especificou -- opção de segurança. </notification> <notification name="DisplaySetToRecommended"> - Configurações de display foram ajustadas para nível recomendado basedo na configuração do seu sistema. + Configurações de display foram ajustadas para nível recomendado baseado na configuração do seu sistema. </notification> <notification name="ErrorMessage"> [ERROR_MESSAGE] @@ -1517,7 +1517,7 @@ Ir para o Banco de Conhecimento para maiores informações sobre Classificaçõe Você não é permitido nessa região devido à sua preferência de Classificação de maturidade. Você pode clicar em 'Mudar Preferência' para aumentar sua preferência de Classificação de maturidade agora e permitir sua entrada. Você estará habilitado a buscar e acessar conteúdo [REGIONMATURITY] a partir de agora. Se você desejar mais tarde voltar à configuração anterior, vá para Editar > Preferencias... > Geral. - <form> + <form name="form"> <button name="OK" text="Mudar Preferência"/> @@ -1525,7 +1525,7 @@ Você pode clicar em 'Mudar Preferência' para aumentar sua preferên default="true" name="Cancel" text="Fechar"/> - <ignore text="Quando a entrada na Região está bloqueada devido à preferência de Classificação de maturidade"/> + <ignore name="ignore" text="Quando a entrada na Região está bloqueada devido à preferência de Classificação de maturidade"/> </form> </notification> <notification name="LandClaimAccessBlocked"> @@ -2109,7 +2109,7 @@ Você gostaria de deixar o modo Ocupado antes de completar esta transação? <usetemplate ignoretext="Ao esvaziar pasta Achados e Perdidos do seu inventário" name="okcancelignore" notext="Não" yestext="Sim"/> </notification> <notification name="CopySLURL"> - A seguinte SLURL foi copiada para o seu clipboard: + A seguinte SLurl foi copiada para o seu clipboard: [SLURL] Coloque-a em uma página web para dar aos outros um fácil acesso a este local ou tente você, colando-a na barra de endereços do seu navegador. @@ -2118,9 +2118,9 @@ Coloque-a em uma página web para dar aos outros um fácil acesso a este local o </form> </notification> <notification name="GraphicsPreferencesHelp"> - Este painel controla o tamanho da janela, resolução e a qualidade dos gráficos do computador cliente. O Preferências > Interface Gráfica permite escolher entre quatro níveis gráficos: Baixo, Médio, Alto e Ultra. Você também pode personalizar suas configurações de gráficos selecionando a opção Custom e manipulando as seguintes definições: + Este painel controla o tamanho da janela, resolução e a qualidade dos gráficos do computador cliente. O Preferências > Interface Gráfica permite escolher entre quatro níveis gráficos: Baixo, Médio, Alto e Ultra. Você também pode personalizar suas configurações de gráficos selecionando a opção Padrão e manipulando as seguintes definições: -Sombreamento: Ativar ou desativar vários tipos de sobreadores de pixel. +Sombreamento: Ativar ou desativar vários tipos de sombreadores de pixel. Detalhes de Reflexão: Define os tipos de objetos que a água pode refletir. @@ -2360,7 +2360,7 @@ Gostaria de visitar o site do Second Life para verificação de idade? [_URL] <url name="url" option="0"> - https://secondlife.com/account/verification.php + https://secondlife.com/account/verification.php?lang=pt </url> <usetemplate ignoretext="Alertar sobre a falta de verificação de idade" name="okcancelignore" notext="Não" yestext="Sim"/> </notification> @@ -2370,7 +2370,7 @@ Gostaria de visitar o site do Second Life para configurá-lo? [_URL] <url name="url" option="0"> - https://secondlife.com/account/ + https://secondlife.com/account/index.php?lang=pt </url> <usetemplate ignoretext="Avisar sobre a falta de informação de pagamento." name="okcancelignore" notext="Não" yestext="Sim"/> </notification> @@ -2627,7 +2627,7 @@ Vá para a Ilha de Ajuda Pública para repetir este tutorial. <notification name="ImproperPaymentStatus"> Você não tem o status de pagamento adequado para entrar nesta região. </notification> - <notification name="MustGetAgeRgion"> + <notification name="MustGetAgeRegion"> Você precisa ter sua idade verificada para entrar nesta região. </notification> <notification name="MustGetAgeParcel"> |